Added GTX_vec_swizzle, faster compile time swizzling then swizzle operator #558

This commit is contained in:
Christophe Riccio
2016-11-01 22:36:49 +01:00
parent 7157969a05
commit a17f795aaf
5 changed files with 13 additions and 0 deletions

View File

@@ -44,6 +44,7 @@ glmCreateTestGTC(gtx_spline)
glmCreateTestGTC(gtx_string_cast)
glmCreateTestGTC(gtx_type_aligned)
glmCreateTestGTC(gtx_type_trait)
glmCreateTestGTC(gtx_vec_swizzle)
glmCreateTestGTC(gtx_vector_angle)
glmCreateTestGTC(gtx_vector_query)
glmCreateTestGTC(gtx_wrap)

View File

@@ -0,0 +1,10 @@
#include <glm/gtx/vec_swizzle.hpp>
int main()
{
int Error = 0;
return Error;
}