bloat-buster/dependencies/glslang-15.0.0/Test/location_aliasing1.frag
David Gonzalez Martin be2de1d672 Render a texture
2024-11-10 08:48:46 -06:00

10 lines
206 B
GLSL

#version 430 core
#extension GL_ARB_enhanced_layouts : require
layout (location = 1, component = 0) in smooth float in1;
layout (location = 1, component = 2) in flat float in2;
void main()
{
}