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_compute_shader
/
compiler
/
do_nothing.comp
blob
f724ba76b103b65afa91cc95bd7af15cd9e6ab8c
1
// [config]
2
// expect_result: pass
3
// glsl_version: 3.30
4
// require_extensions: GL_ARB_compute_shader
5
// [end config]
6
7
#version 330
8
#extension GL_ARB_compute_shader: enable
9
10
layout(local_size_x = 1) in;
11
12
void main()
13
{
14
}