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_ubo/referenced-by-shader: pass if shader compiler moves UBOs between shaders
[piglit.git]
/
tests
/
spec
/
mesa_shader_integer_functions
/
compiler
/
sample-qualifier
/
fs-sample-in-qualifier.frag
blob
2a7e74287ab2773251ecc249b3d611ea89f838d8
1
// [config]
2
// expect_result: fail
3
// glsl_version: 1.30
4
// require_extensions: GL_MESA_shader_integer_functions
5
// [end config]
6
7
#version 130
8
#extension GL_MESA_shader_integer_functions: require
9
10
sample in vec4 x;
11
out vec4 out_color;
12
13
void main()
14
{
15
out_color = x;
16
}
17