mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-14 17:16:01 +00:00
These work on scalar and vector of bool, and map to ast::BinaryOp::kOr and kAnd. Bug: tint:1043 Change-Id: I009edf8e43c21cb75ccfdcde1106ec177d2fe50e Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/59561 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: James Price <jrprice@google.com> Commit-Queue: James Price <jrprice@google.com> Auto-Submit: David Neto <dneto@google.com>
29 lines
763 B
HLSL
29 lines
763 B
HLSL
static float4 x_GLF_color = float4(0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
void main_1() {
|
|
float2x2 m = float2x2(0.0f, 0.0f, 0.0f, 0.0f);
|
|
m = float2x2(float2(1.0f, 2.0f), float2(3.0f, 4.0f));
|
|
const float2x2 x_30 = mul(transpose(m), transpose(m));
|
|
const float2x2 x_34 = transpose(mul(m, m));
|
|
if ((all((x_30[0u] == x_34[0u])) & all((x_30[1u] == x_34[1u])))) {
|
|
x_GLF_color = float4(1.0f, 0.0f, 0.0f, 1.0f);
|
|
} else {
|
|
x_GLF_color = float4(0.0f, 0.0f, 0.0f, 0.0f);
|
|
}
|
|
return;
|
|
}
|
|
|
|
struct main_out {
|
|
float4 x_GLF_color_1;
|
|
};
|
|
struct tint_symbol {
|
|
float4 x_GLF_color_1 : SV_Target0;
|
|
};
|
|
|
|
tint_symbol main() {
|
|
main_1();
|
|
const main_out tint_symbol_1 = {x_GLF_color};
|
|
const tint_symbol tint_symbol_2 = {tint_symbol_1.x_GLF_color_1};
|
|
return tint_symbol_2;
|
|
}
|