10 lines
187 B
Plaintext
10 lines
187 B
Plaintext
|
layout(std430, buffer_reference) readonly buffer HexContext {
|
||
|
mat4 proj;
|
||
|
mat4 view;
|
||
|
};
|
||
|
|
||
|
layout(std430, push_constant) uniform PushConstant {
|
||
|
HexContext context;
|
||
|
float time;
|
||
|
} pc;
|