mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-10 16:43:34 +00:00
This change essentially relands 10c554ecf43bd50eaf99d371eb1af50cf78170b2, aka https://dawn-review.googlesource.com/c/tint/+/82140. (Somehow, I managed to revert most of that in the subsequent CL for reverseBits. I suspect a bad upstream and/or rebase.) Bug: tint:1430 Change-Id: Iba2688294dcd7d3008ee9da78957a7a464ca1c0f Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/82220 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Stephen White <senorblanco@chromium.org>
21 lines
321 B
GLSL
21 lines
321 B
GLSL
#version 310 es
|
|
|
|
void main_1() {
|
|
uint u1 = 10u;
|
|
int i1 = 30;
|
|
uvec2 v2u1 = uvec2(10u, 20u);
|
|
ivec2 v2i1 = ivec2(30, 40);
|
|
int x_1 = int(uint(bitCount(u1)));
|
|
return;
|
|
}
|
|
|
|
void tint_symbol() {
|
|
main_1();
|
|
}
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
void main() {
|
|
tint_symbol();
|
|
return;
|
|
}
|