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
framework/replay: disable AA accounting when comparing with no tolerance
[piglit.git]
/
tests
/
spec
/
arb_gpu_shader5
/
compiler
/
incorrect-out-layout-qualifier-invocations.geom
blob
4bf54813f9f3c25efdac5c5b555e611c41097551
1
// [config]
2
// expect_result: fail
3
// glsl_version: 1.50
4
// require_extensions: GL_ARB_gpu_shader5
5
// check_link: false
6
// [end config]
7
//
8
// Tests for invalid output layout qualifiers.
9
//
10
11
#version 150
12
#extension GL_ARB_gpu_shader5 : enable
13
14
layout(points) in;
15
layout(triangle_strip, max_vertices=3, invocations=1) out;
16
17
void main()
18
{
19
}