27 lines
500 B
Plaintext
27 lines
500 B
Plaintext
|
SKIP: FAILED
|
||
|
|
||
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
|
||
|
void workgroupBarrier_a17f7f() {
|
||
|
GroupMemoryBarrierWithGroupSync();
|
||
|
}
|
||
|
|
||
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||
|
void compute_main() {
|
||
|
workgroupBarrier_a17f7f();
|
||
|
return;
|
||
|
}
|
||
|
void main() {
|
||
|
compute_main();
|
||
|
}
|
||
|
|
||
|
|
||
|
Error parsing GLSL shader:
|
||
|
ERROR: 0:5: 'GroupMemoryBarrierWithGroupSync' : no matching overloaded function found
|
||
|
ERROR: 0:5: '' : compilation terminated
|
||
|
ERROR: 2 compilation errors. No code generated.
|
||
|
|
||
|
|
||
|
|