repo.or.cz
/
piglit
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add more structure constructor tests.
[piglit/hramrach.git]
/
tests
/
glslparsertest
/
glsl2
/
draw_buffers-09.frag
blob
19a95122130116417eb9770c2cc1d4784fb4362e
1
/* FAIL - out of bounds access of gl_FragData */
2
#version 110
3
4
uniform vec4 a;
5
6
void main()
7
{
8
gl_FragData[0] = a;
9
gl_FragData[gl_MaxDrawBuffers] = a;
10
}