mirror of
https://github.com/libretro/RetroArch
synced 2025-03-13 16:18:37 +00:00
14 lines
177 B
GLSL
14 lines
177 B
GLSL
#version 450
|
|
layout(constant_id = 0) const int ARR_SIZE = 1;
|
|
|
|
layout(binding = 0, set = 1, std140) uniform u_
|
|
{
|
|
vec4 u_0[ARR_SIZE];
|
|
};
|
|
|
|
void main()
|
|
{
|
|
gl_Position = u_0[0];
|
|
}
|
|
|