mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-03 18:55:39 +00:00
docs/ -> docs/tint/ fuzzers/ -> src/tint/fuzzers/ samples/ -> src/tint/cmd/ src/ -> src/tint/ test/ -> test/tint/ BUG=tint:1418,tint:1433 Change-Id: Id2aa79f989aef3245b80ef4aa37a27ff16cd700b Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/80482 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Ryan Harrison <rharrison@chromium.org>
28 lines
638 B
GLSL
28 lines
638 B
GLSL
#version 310 es
|
|
#extension GL_OES_sample_variables : require
|
|
precision mediump float;
|
|
|
|
layout(location = 0) in float a_1;
|
|
layout(location = 1) in float b_1;
|
|
layout(location = 0) out float a_2;
|
|
struct FragIn {
|
|
float a;
|
|
uint mask;
|
|
};
|
|
|
|
FragIn tint_symbol(FragIn tint_symbol_1, float b) {
|
|
if ((tint_symbol_1.mask == 0u)) {
|
|
return tint_symbol_1;
|
|
}
|
|
FragIn tint_symbol_2 = FragIn(b, 1u);
|
|
return tint_symbol_2;
|
|
}
|
|
|
|
void main() {
|
|
FragIn tint_symbol_3 = FragIn(a_1, uint(gl_SampleMaskIn[0]));
|
|
FragIn inner_result = tint_symbol(tint_symbol_3, b_1);
|
|
a_2 = inner_result.a;
|
|
gl_SampleMask[0] = int(inner_result.mask);
|
|
return;
|
|
}
|