repo.or.cz
/
piglit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
arb_framebuffer_object: add missing MSAA alpha-to-coverage and alpha-to-one tests
[piglit.git]
/
tests
/
spec
/
glsl-1.20
/
compiler
/
structure-and-array-operations
/
gl_TexCoord-redeclaration-too-big.vert
blob
5e4f994dc4d337f7c76a6e3d80ee71e42b1a901d
1
/* [config]
2
* expect_result: fail
3
* glsl_version: 1.20
4
* [end config]
5
*
6
* From page 54 (page 60 of the PDF) of the GLSL 1.20 spec:
7
*
8
* "The size [of gl_TexCoord] can be at most
9
* gl_MaxTextureCoords."
10
*/
11
#version 120
12
13
varying vec4 gl_TexCoord[gl_MaxTextureCoords+1];
14
15
void main() { gl_Position = vec4(0.0); }