* update spirv-cross to a0fba56 * update spirv-tools to v2026.1 * update spirv-headers to 04f10f6 * update glslang to 16.2.0
10 lines
198 B
GLSL
10 lines
198 B
GLSL
#version 450
|
|
|
|
// Should generate a contradictory xfb_stride error
|
|
layout(xfb_buffer = 1, xfb_stride = 34) out;
|
|
|
|
vec4 computePosition(vec4 position)
|
|
{
|
|
return vec4(1.0) + 2.0 * position;
|
|
}
|