Two missing test file sources.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@26230 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
parent
263a134edd
commit
447c65c978
2 changed files with 99 additions and 0 deletions
21
Test/140.vert
Normal file
21
Test/140.vert
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#version 140
|
||||
|
||||
uniform isamplerBuffer sbuf;
|
||||
|
||||
layout(std140) uniform blockName {
|
||||
int anonMem;
|
||||
};
|
||||
|
||||
void main()
|
||||
{
|
||||
int id = gl_InstanceID;
|
||||
id += anonMem;
|
||||
id += texelFetch(sbuf, 8).w;
|
||||
gl_ClipVertex; // could be ERROR, but compiling under compatibility profile
|
||||
gl_Color; // could be ERROR, but compiling under compatibility profile
|
||||
gl_LightSource[0]; // could be ERROR, but compiling under compatibility profile
|
||||
gl_DepthRange.far;
|
||||
gl_TexCoord; // could be ERROR, but compiling under compatibility profile
|
||||
gl_FogFragCoord; // could be ERROR, but compiling under compatibility profile
|
||||
gl_FrontColor; // could be ERROR, but compiling under compatibility profile
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue