mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-16 16:37:08 +00:00
GLSL: add .expected.glsl files for all tests.
Bug: tint:1301 Change-Id: Id3a591a2fa0dfdb112046d5c57defbae07483e0d Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/69480 Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Stephen White <senorblanco@chromium.org>
This commit is contained in:
committed by
Tint LUCI CQ
parent
2551458aef
commit
2fe0f4b42b
19
test/layout/storage/mat2x2/f32.wgsl.expected.glsl
Normal file
19
test/layout/storage/mat2x2/f32.wgsl.expected.glsl
Normal file
@@ -0,0 +1,19 @@
|
||||
#version 310 es
|
||||
precision mediump float;
|
||||
|
||||
|
||||
layout (binding = 0) buffer SSBO_1 {
|
||||
mat2 m;
|
||||
} ssbo;
|
||||
|
||||
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||||
void f() {
|
||||
mat2 v = ssbo.m;
|
||||
ssbo.m = v;
|
||||
return;
|
||||
}
|
||||
void main() {
|
||||
f();
|
||||
}
|
||||
|
||||
|
||||
36
test/layout/storage/mat2x2/stride/16.spvasm.expected.glsl
Normal file
36
test/layout/storage/mat2x2/stride/16.spvasm.expected.glsl
Normal file
@@ -0,0 +1,36 @@
|
||||
#version 310 es
|
||||
precision mediump float;
|
||||
|
||||
struct tint_padded_array_element {
|
||||
vec2 el;
|
||||
};
|
||||
|
||||
layout (binding = 0) buffer SSBO_1 {
|
||||
tint_padded_array_element m[2];
|
||||
} ssbo;
|
||||
|
||||
mat2 arr_to_mat2x2_stride_16(tint_padded_array_element arr[2]) {
|
||||
return mat2(arr[0u].el, arr[1u].el);
|
||||
}
|
||||
|
||||
tint_padded_array_element[2] mat2x2_stride_16_to_arr(mat2 mat) {
|
||||
tint_padded_array_element tint_symbol[2] = tint_padded_array_element[2](tint_padded_array_element(mat[0u]), tint_padded_array_element(mat[1u]));
|
||||
return tint_symbol;
|
||||
}
|
||||
|
||||
void f_1() {
|
||||
mat2 x_15 = arr_to_mat2x2_stride_16(ssbo.m);
|
||||
ssbo.m = mat2x2_stride_16_to_arr(x_15);
|
||||
return;
|
||||
}
|
||||
|
||||
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||||
void f() {
|
||||
f_1();
|
||||
return;
|
||||
}
|
||||
void main() {
|
||||
f();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user