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
/
arb_tessellation_shader
/
compiler
/
gl_out-length-before-declared.tesc
blob
6952c548b32365196fcb69973255eb0da285f01e
1
// [config]
2
// expect_result: fail
3
// glsl_version: 1.50
4
// require_extensions: GL_ARB_tessellation_shader
5
// [end config]
6
7
#version 150
8
#extension GL_ARB_tessellation_shader: require
9
10
/* Must not use gl_out.length() before it is established by the layout declaration */
11
12
int test[gl_out.length()];
13
14
layout (vertices = 3) out;