Added pure test

This commit is contained in:
Christophe Riccio
2016-09-25 10:29:08 +02:00
parent 0675da467a
commit f5f8620056
4 changed files with 437 additions and 0 deletions

View File

@@ -0,0 +1 @@
glmCreateTestGTC(ms_vec2)

14
test/bug/ms_vec2.cpp Normal file
View File

@@ -0,0 +1,14 @@
#define GLM_FORCE_SWIZZLE
#include <glm/vec2.hpp>
struct Foo
{
static glm::vec2 Bar;
};
glm::vec2 Foo::Bar = glm::vec2(1.f, 1.f);
int main()
{
return 1;
}