diff --git a/doc/src/data.xml b/doc/src/data.xml index a1767497..a6d432b2 100644 --- a/doc/src/data.xml +++ b/doc/src/data.xml @@ -3,8 +3,9 @@
- - + + + @@ -49,8 +50,9 @@
- - + + + @@ -1524,6 +1526,18 @@ + + + Second update of GLM 0.9.0 with more bug fixes. + It also contains a new extension called GLM_GTX_int_10_10_10_2 to use GLM with OpenGL and + GL_ARB_vertex_type_2_10_10_10_rev. + + + GLM 0.9.0.2 (zip, 809 KB) + GLM 0.9.0.2 (7z, 651 KB) + Submit a bug report + + This revision only fixes few extensions bugs. diff --git a/doc/src/dummy.cpp b/doc/src/dummy.cpp index 7188c829..226a7c76 100644 --- a/doc/src/dummy.cpp +++ b/doc/src/dummy.cpp @@ -1,4 +1,5 @@ #include "../../glm/glm.hpp" // glm::vec3, glm::vec4, glm::ivec4, glm::mat4 +#include struct triangle { @@ -17,12 +18,29 @@ void computeNormal(triangle & Triangle) #include "../../glm/gtc/matrix_projection.hpp" // glm::perspective #include "../../glm/gtc/matrix_transform.hpp" // glm::translate, glm::rotate, glm::scale #include "../../glm/gtc/type_ptr.hpp" // glm::value_ptr +#include "../../glm/gtc/quaternion.hpp" // glm::quat +#include "../../glm/gtx/comparison.hpp" // == != +//#include "../../glm/ext.hpp" glm::vec4 const ClearColor = glm::vec4(glm::vec3(0.0f), 1.0f); glm::ivec4 const Viewport = glm::ivec4(0, 0, 640, 480); void glUniformMatrix4fv(int location, int count, bool transpose, const float * value); +void ticket0023() +{ + std::vector vals; + vals.push_back(1); + vals.push_back(2); + vals.push_back(3); + std::vector::iterator it1, it2; + it1 = vals.begin(); + it2 = vals.end(); + it1 != it2; // <-- Here + glm::vec3 c; + glm::quat q; +} + int main() { //triangle Triangle; @@ -38,5 +56,7 @@ int main() glm::mat4 Model = glm::scale(glm::mat4(1.0f), glm::vec3(0.5f)); glm::mat4 MVP = Projection * View * Model; - glUniformMatrix4fv(LocationMVP, 1, GL_FALSE, glm::value_ptr(MVP)); + //glUniformMatrix4fv(LocationMVP, 1, GL_FALSE, glm::value_ptr(MVP)); + + ticket0023(); } diff --git a/glm/ext.hpp b/glm/ext.hpp index 2f054c4e..f3d29a2e 100644 --- a/glm/ext.hpp +++ b/glm/ext.hpp @@ -41,6 +41,7 @@ #include "./gtx/gradient_paint.hpp" #include "./gtx/handed_coordinate_space.hpp" #include "./gtx/inertia.hpp" +#include "./gtx/int_10_10_10_2.hpp" #include "./gtx/integer.hpp" #include "./gtx/intersect.hpp" #include "./gtx/inverse.hpp" diff --git a/glm/gtx/comparison.hpp b/glm/gtx/comparison.hpp index 8d12d5f6..a035e936 100644 --- a/glm/gtx/comparison.hpp +++ b/glm/gtx/comparison.hpp @@ -28,13 +28,45 @@ namespace glm //! Define == operator for vectors //! From GLM_GTX_comparison extension. - template - bool operator== (vecType const & x, vecType const & y); + template + bool operator== ( + detail::tvec2 const & x, + detail::tvec2 const & y); + + //! Define == operator for vectors + //! From GLM_GTX_comparison extension. + template + bool operator== ( + detail::tvec3 const & x, + detail::tvec3 const & y); + + //! Define == operator for vectors + //! From GLM_GTX_comparison extension. + template + bool operator== ( + detail::tvec4 const & x, + detail::tvec4 const & y); //! Define != operator for vectors //! From GLM_GTX_comparison extension. - template - bool operator!= (vecType const & x, vecType const & y); + template + bool operator!= ( + detail::tvec2 const & x, + detail::tvec2 const & y); + + //! Define != operator for vectors + //! From GLM_GTX_comparison extension. + template + bool operator!= ( + detail::tvec3 const & x, + detail::tvec3 const & y); + + //! Define != operator for vectors + //! From GLM_GTX_comparison extension. + template + bool operator!= ( + detail::tvec4 const & x, + detail::tvec4 const & y); }//namespace comparison }//namespace gtx diff --git a/glm/gtx/int_10_10_10_2.hpp b/glm/gtx/int_10_10_10_2.hpp new file mode 100644 index 00000000..2108d935 --- /dev/null +++ b/glm/gtx/int_10_10_10_2.hpp @@ -0,0 +1,40 @@ +/////////////////////////////////////////////////////////////////////////////////////////////////// +// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net) +/////////////////////////////////////////////////////////////////////////////////////////////////// +// Created : 2010-07-07 +// Updated : 2010-07-07 +// Licence : This source is under MIT License +// File : glm/gtx/int_10_10_10_2.hpp +/////////////////////////////////////////////////////////////////////////////////////////////////// +// Dependency: +// - GLM core +/////////////////////////////////////////////////////////////////////////////////////////////////// + +#ifndef glm_gtx_int_10_10_10_2 +#define glm_gtx_int_10_10_10_2 + +// Dependency: +#include "../glm.hpp" +#include "../gtx/raw_data.hpp" + +namespace glm +{ + namespace gtx{ + //! GLM_GTX_int_10_10_10_2 extension: Add support for integer for core functions + namespace int_10_10_10_2 + { + using namespace gtx::raw_data; + + //! From GLM_GTX_int_10_10_10_2 extension. + //! Cast a vec4 to an u_10_10_10_2. + dword uint10_10_10_2_cast(glm::vec4 const & v); + + }//namespace integer + }//namespace gtx +}//namespace glm + +#include "int_10_10_10_2.inl" + +namespace glm{using namespace gtx::int_10_10_10_2;} + +#endif//glm_gtx_int_10_10_10_2 diff --git a/glm/gtx/int_10_10_10_2.inl b/glm/gtx/int_10_10_10_2.inl new file mode 100644 index 00000000..8ab6a1d2 --- /dev/null +++ b/glm/gtx/int_10_10_10_2.inl @@ -0,0 +1,21 @@ +/////////////////////////////////////////////////////////////////////////////////////////////////// +// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net) +/////////////////////////////////////////////////////////////////////////////////////////////////// +// Created : 2010-07-07 +// Updated : 2010-07-07 +// Licence : This source is under MIT License +// File : glm/gtx/int_10_10_10_2.inl +/////////////////////////////////////////////////////////////////////////////////////////////////// + +namespace glm{ +namespace gtx{ +namespace int_10_10_10_2 +{ + dword uint10_10_10_2_cast(glm::vec4 const & v) + { + return dword(uint(v.x * 2047.f) << 0 | uint(v.y * 2047.f) << 10 | uint(v.z * 2047.f) << 20 | uint(v.w * 3.f) << 30); + } + +}//namespace int_10_10_10_2 +}//namespace gtx +}//namespace glm diff --git a/glm/setup.hpp b/glm/setup.hpp index 9e0bef6d..9ce1b6fc 100644 --- a/glm/setup.hpp +++ b/glm/setup.hpp @@ -17,7 +17,7 @@ #define GLM_VERSION_MAJOR 0 #define GLM_VERSION_MINOR 9 #define GLM_VERSION_PATCH 0 -#define GLM_VERSION_REVISION 1 +#define GLM_VERSION_REVISION 2 /////////////////////////////////////////////////////////////////////////////////////////////////// // Common values diff --git a/readme.txt b/readme.txt index 4003fb7d..b2739796 100644 --- a/readme.txt +++ b/readme.txt @@ -4,6 +4,12 @@ G-Truc Creation www.g-truc.net glm@g-truc.net +============================= +GLM 0.9.0.2: 2010-07-08 +----------------------------- +- Added GLM_GTX_int_10_10_10_2 +- Fixed bugs + ============================= GLM 0.9.0.1: 2010-06-21 -----------------------------