mirror of
https://github.com/holub/mame
synced 2025-05-01 20:27:02 +03:00

(nw) In future, could people please use stable branches when updating 3rd-party libraries, not unstable development snapshots? It will help with stability.
15 lines
160 B
C++
15 lines
160 B
C++
#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 0;
|
|
}
|