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-es-3.00
/
compiler
/
row_major.frag
blob
d534bbecc83230f82fbd4e16eeb15dfcdb88b797
1
// [config]
2
// expect_result: pass
3
// glsl_version: 3.00
4
// [end config]
5
//
6
// Check that 'row_major' is not a reserved keyword.
7
8
#version 300 es
9
10
int f()
11
{
12
int row_major;
13
return 0;
14
}