roleplay/client/shader/hex_common.glsl

10 lines
187 B
GLSL

layout(std430, buffer_reference) readonly buffer HexContext {
mat4 proj;
mat4 view;
};
layout(std430, push_constant) uniform PushConstant {
HexContext context;
float time;
} pc;