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.50
/
compiler
/
layout-not-case-sensitive.frag
blob
ed0f3b842562ce2846178148540162fddf5e9272
1
// [config]
2
// expect_result: pass
3
// glsl_version: 1.50
4
// check_link: true
5
// [end config]
6
//
7
// Section 4.3.8(Layout Qualifiers) of the GLSL 1.50 spec says:
8
// "identifiers are not case sensitive, unless explicitly noted
9
// otherwise."
10
11
#version 150
12
13
layout(PIXEL_center_inTEger) in vec4 gl_FragCoord;
14
15
void main()
16
{
17
gl_FragColor = vec4(0., 1., 0., 1.);
18
}