mirror of
https://github.com/SFML/SFML.git
synced 2024-11-28 22:31:09 +08:00
Minor modifications
This commit is contained in:
parent
78910b555e
commit
5a4e8d58af
@ -358,7 +358,7 @@ private:
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Member data
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
float myMatrix[16]; /// 4x4 matrix defining the transformation
|
float myMatrix[16]; ///< 4x4 matrix defining the transformation
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
@ -44,7 +44,7 @@ namespace priv
|
|||||||
#ifdef SFML_DEBUG
|
#ifdef SFML_DEBUG
|
||||||
|
|
||||||
// In debug mode, perform a test on every OpenGL call
|
// In debug mode, perform a test on every OpenGL call
|
||||||
#define GLCheck(call) ((call), sf::priv::GLCheckError(__FILE__, __LINE__))
|
#define GLCheck(call) ((call), sf::priv::GLCheckError(__FILE__, __LINE__))
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ Transform Transform::GetInverse() const
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return Transform();
|
return Identity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user