virtualx-engine/tests/python_build/fixtures/rd_glsl/vertex_fragment.glsl
2024-02-18 13:31:05 -07:00

26 lines
281 B
GLSL

#[vertex]
#version 450
#VERSION_DEFINES
#include "_included.glsl"
layout(location = 0) out vec2 uv_interp;
void main() {
uv_interp = vec2(0, 1);
}
#[fragment]
#version 450
#VERSION_DEFINES
layout(location = 0) in vec2 uv_interp;
void main() {
uv_interp = vec2(1, 0);
}