First Commit
This commit is contained in:
12
externals/glslang/Test/spv.dataOutIndirect.vert
vendored
Normal file
12
externals/glslang/Test/spv.dataOutIndirect.vert
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
#version 140
|
||||
|
||||
attribute vec4 color;
|
||||
out vec4 colorOut[6];
|
||||
|
||||
void main()
|
||||
{
|
||||
for (int i = 1; i < 5; ++i)
|
||||
colorOut[i] = color;
|
||||
|
||||
gl_Position = colorOut[2];
|
||||
}
|
||||
Reference in New Issue
Block a user