mirror of
https://github.com/g-truc/glm.git
synced 2024-11-23 01:14:34 +00:00
Fixed more typos
This commit is contained in:
parent
f21030cce2
commit
0ffce51edf
57
glm/glm.hpp
57
glm/glm.hpp
@ -24,40 +24,37 @@
|
|||||||
#endif//GLM_MESSAGE
|
#endif//GLM_MESSAGE
|
||||||
|
|
||||||
//! GLM namespace, it contains all GLSL based features.
|
//! GLM namespace, it contains all GLSL based features.
|
||||||
namespace glm
|
namespace glm{
|
||||||
|
namespace test
|
||||||
{
|
{
|
||||||
namespace test
|
bool main_bug();
|
||||||
{
|
bool main_core();
|
||||||
bool main_bug();
|
}//namespace test
|
||||||
bool main_core();
|
|
||||||
}//namespace test
|
|
||||||
|
|
||||||
//! GLM core. Namespace that includes all the feature define by GLSL 4.10.6 specification. This namespace is included in glm namespace.
|
//! GLM core. Namespace that includes all the feature define by GLSL 4.10.6 specification. This namespace is included in glm namespace.
|
||||||
namespace core
|
namespace core
|
||||||
{
|
{
|
||||||
//! Scalar, vectors and matrices
|
//! Scalar, vectors and matrices
|
||||||
//! from section 4.1.2 Booleans, 4.1.3 Integers section, 4.1.4 Floats section,
|
//! from section 4.1.2 Booleans, 4.1.3 Integers section, 4.1.4 Floats section,
|
||||||
//! 4.1.5 Vectors and section 4.1.6 Matrices of GLSL 1.30.8 specification.
|
//! 4.1.5 Vectors and section 4.1.6 Matrices of GLSL 1.30.8 specification.
|
||||||
//! This namespace resolves precision qualifier define in section 4.5 of GLSL 1.30.8 specification.
|
//! This namespace resolves precision qualifier define in section 4.5 of GLSL 1.30.8 specification.
|
||||||
namespace type{}
|
namespace type{}
|
||||||
|
|
||||||
//! Some of the functions defined in section 8 Built-in Functions of GLSL 1.30.8 specification.
|
//! Some of the functions defined in section 8 Built-in Functions of GLSL 1.30.8 specification.
|
||||||
//! Angle and trigonometry, exponential, common, geometric, matrix and vector relational functions.
|
//! Angle and trigonometry, exponential, common, geometric, matrix and vector relational functions.
|
||||||
namespace function{}
|
namespace function{}
|
||||||
}
|
}//namespace core
|
||||||
//namespace core
|
|
||||||
|
|
||||||
//! G-Truc Creation stable extensions.
|
//! G-Truc Creation stable extensions.
|
||||||
namespace gtc{}
|
namespace gtc{}
|
||||||
|
|
||||||
//! G-Truc Creation experimental extensions.
|
//! G-Truc Creation experimental extensions.
|
||||||
//! The interface could change between releases.
|
//! The interface could change between releases.
|
||||||
namespace gtx{}
|
namespace gtx{}
|
||||||
|
|
||||||
//! VIRTREV extensions.
|
//! VIRTREV extensions.
|
||||||
namespace img{}
|
namespace virtrev{}
|
||||||
|
}//namespace glm
|
||||||
} //namespace glm
|
|
||||||
|
|
||||||
#include "./core/_detail.hpp"
|
#include "./core/_detail.hpp"
|
||||||
#include "./core/type.hpp"
|
#include "./core/type.hpp"
|
||||||
@ -78,7 +75,7 @@ namespace glm
|
|||||||
using namespace core::type;
|
using namespace core::type;
|
||||||
using namespace core::type::precision;
|
using namespace core::type::precision;
|
||||||
using namespace core::function;
|
using namespace core::function;
|
||||||
} //namespace glm
|
}//namespace glm
|
||||||
|
|
||||||
////////////////////
|
////////////////////
|
||||||
// check type sizes
|
// check type sizes
|
||||||
@ -98,4 +95,4 @@ namespace glm
|
|||||||
GLM_STATIC_ASSERT(sizeof(glm::detail::float64) == 8, "float64 size isn't 8 bytes on this platform");
|
GLM_STATIC_ASSERT(sizeof(glm::detail::float64) == 8, "float64 size isn't 8 bytes on this platform");
|
||||||
#endif//GLM_STATIC_ASSERT_NULL
|
#endif//GLM_STATIC_ASSERT_NULL
|
||||||
|
|
||||||
#endif //glm_glm
|
#endif//glm_glm
|
||||||
|
Loading…
Reference in New Issue
Block a user