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
ext_gpu_shader4: add compiler tests for everything
[piglit.git]
/
tests
/
spec
/
glsl-1.10
/
preprocessor
/
bogus-extension-test.frag
blob
b4fce45735a83afb5e9b3851b4c55ce73abd7b71
1
/* [config]
2
* expect_result: fail
3
* glsl_version: 1.10
4
* [end config]
5
*/
6
7
// Test using a non-existant function. Should not compile.
8
#extension GL_FOO_bar: require
9
void main()
10
{
11
gl_FragColor = vec4(1.0, 0.0, 0.0, 0.0);
12
}