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
fbo-mrt-alphatest: Actually require MRTs to be available.
[piglit.git]
/
tests
/
spec
/
arb_shading_language_420pack
/
compiler
/
illegal-aggregate-noninitializer-vec.frag
blob
ec03fab3170389b3cf03253aec8a199cbf13a184
1
/* [config]
2
* expect_result: fail
3
* glsl_version: 1.30
4
* require_extensions: GL_ARB_shading_language_420pack
5
* [end config]
6
*/
7
8
#version 130
9
#extension GL_ARB_shading_language_420pack: enable
10
11
void main() {
12
vec3 b;
13
// Illegal since C-style syntax can only be used as initializers
14
b = { 1.0, 1.0, 1.0 };
15
gl_FragColor = vec4(1.0);
16
}