2021-11-16 15:15:36 +00:00
|
|
|
SKIP: FAILED
|
|
|
|
|
|
|
|
#version 310 es
|
|
|
|
precision mediump float;
|
|
|
|
|
2022-02-04 23:09:23 +00:00
|
|
|
layout(binding = 0, std430) buffer SB_RW_1 {
|
2021-11-16 15:15:36 +00:00
|
|
|
float arg_0[];
|
|
|
|
} sb_rw;
|
|
|
|
void arrayLength_cdd123() {
|
2022-01-28 22:36:58 +00:00
|
|
|
uint tint_symbol_1 = 0u;
|
|
|
|
sb_rw.GetDimensions(tint_symbol_1);
|
|
|
|
uint tint_symbol_2 = ((tint_symbol_1 - 0u) / 4u);
|
|
|
|
uint res = tint_symbol_2;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
|
|
|
|
2022-01-28 22:36:58 +00:00
|
|
|
vec4 vertex_main() {
|
2021-11-16 15:15:36 +00:00
|
|
|
arrayLength_cdd123();
|
|
|
|
return vec4(0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
void main() {
|
2022-01-28 22:36:58 +00:00
|
|
|
vec4 inner_result = vertex_main();
|
|
|
|
gl_Position = inner_result;
|
|
|
|
gl_Position.y = -(gl_Position.y);
|
|
|
|
gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
|
|
|
|
return;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
|
|
|
Error parsing GLSL shader:
|
2022-01-26 16:48:55 +00:00
|
|
|
ERROR: 0:9: 'GetDimensions' : no such field in structure
|
|
|
|
ERROR: 0:9: '' : compilation terminated
|
2021-11-16 15:15:36 +00:00
|
|
|
ERROR: 2 compilation errors. No code generated.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#version 310 es
|
|
|
|
precision mediump float;
|
|
|
|
|
2022-02-04 23:09:23 +00:00
|
|
|
layout(binding = 0, std430) buffer SB_RW_1 {
|
2021-11-16 15:15:36 +00:00
|
|
|
float arg_0[];
|
|
|
|
} sb_rw;
|
|
|
|
void arrayLength_cdd123() {
|
2022-01-28 22:36:58 +00:00
|
|
|
uint tint_symbol_1 = 0u;
|
|
|
|
sb_rw.GetDimensions(tint_symbol_1);
|
|
|
|
uint tint_symbol_2 = ((tint_symbol_1 - 0u) / 4u);
|
|
|
|
uint res = tint_symbol_2;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void fragment_main() {
|
|
|
|
arrayLength_cdd123();
|
|
|
|
}
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2021-11-16 15:15:36 +00:00
|
|
|
void main() {
|
|
|
|
fragment_main();
|
2022-01-28 22:36:58 +00:00
|
|
|
return;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
|
|
|
Error parsing GLSL shader:
|
2022-01-26 16:48:55 +00:00
|
|
|
ERROR: 0:9: 'GetDimensions' : no such field in structure
|
|
|
|
ERROR: 0:9: '' : compilation terminated
|
2021-11-16 15:15:36 +00:00
|
|
|
ERROR: 2 compilation errors. No code generated.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#version 310 es
|
|
|
|
precision mediump float;
|
|
|
|
|
2022-02-04 23:09:23 +00:00
|
|
|
layout(binding = 0, std430) buffer SB_RW_1 {
|
2021-11-16 15:15:36 +00:00
|
|
|
float arg_0[];
|
|
|
|
} sb_rw;
|
|
|
|
void arrayLength_cdd123() {
|
2022-01-28 22:36:58 +00:00
|
|
|
uint tint_symbol_1 = 0u;
|
|
|
|
sb_rw.GetDimensions(tint_symbol_1);
|
|
|
|
uint tint_symbol_2 = ((tint_symbol_1 - 0u) / 4u);
|
|
|
|
uint res = tint_symbol_2;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void compute_main() {
|
|
|
|
arrayLength_cdd123();
|
|
|
|
}
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2022-01-28 22:36:58 +00:00
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
2021-11-16 15:15:36 +00:00
|
|
|
void main() {
|
|
|
|
compute_main();
|
2022-01-28 22:36:58 +00:00
|
|
|
return;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
|
|
|
Error parsing GLSL shader:
|
2022-01-26 16:48:55 +00:00
|
|
|
ERROR: 0:9: 'GetDimensions' : no such field in structure
|
|
|
|
ERROR: 0:9: '' : compilation terminated
|
2021-11-16 15:15:36 +00:00
|
|
|
ERROR: 2 compilation errors. No code generated.
|
|
|
|
|
|
|
|
|
|
|
|
|