aboutsummaryrefslogtreecommitdiff
path: root/Test/vulkan.comp
blob: 98d93ed2f3f70dcd0232a78e36428a1a143301c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#version 450

layout(local_size_x_id = 18, local_size_z_id = 19) in;
layout(local_size_x = 32, local_size_y = 32) in;
layout(local_size_z_id = 14) in;  // ERROR, can't change this

void main()
{
    gl_WorkGroupSize;
    int i = { };  // ERROR, need an extension
}

layout(local_size_y_id = 19) in; // ERROR, already used: TODO not yet reported

shared float f = { };  // ERROR, need an extension
float g = { };         // ERROR, need an extension

#extension GL_EXT_null_initializer : enable

shared float f2 = { };
float g2 = { };

void foo()
{
    int i = { };
    float fa[] = { };
}

struct samp {
    sampler2D s2D;
} sampVar = { };

atomic_uint a = { };