Learning_GTK4_tree/gsk/vulkan/resources/constants.glsl

13 lines
200 B
Plaintext
Raw Normal View History

2023-12-12 11:36:42 +01:00
#ifndef _CONSTANTS_
#define _CONSTANTS_
layout(push_constant) uniform PushConstants {
mat4 mvp;
vec4 clip_bounds;
vec4 clip_widths;
vec4 clip_heights;
vec2 scale;
} push;
#endif