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_framebuffer_object: add missing MSAA alpha-to-coverage and alpha-to-one tests
[piglit.git]
/
tests
/
spec
/
mesa_shader_integer_functions
/
compiler
/
sample-qualifier
/
fs-sample-in-interface-block.frag
blob
d77b114ebf0ac08acb34156e67c3b288165cd9ea
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
in fragment_inputs {
11
sample vec4 x;
12
};
13
out vec4 out_color;
14
15
void main()
16
{
17
out_color = x;
18
}
19