mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-18 12:41:07 +02:00
10 lines
259 B
GLSL
10 lines
259 B
GLSL
#version 450 core
|
|
#define GPU_GL450
|
|
#define GPU_SSBO_TRANSFORM_OBJECT
|
|
#define BITFIELD int
|
|
#define LAYOUT(X) layout(X)
|
|
#define LAYOUT_STD140(X) layout(std140, X)
|
|
#ifdef VULKAN
|
|
#define gl_InstanceID gl_InstanceIndex
|
|
#define gl_VertexID gl_VertexIndex
|
|
#endif
|