mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-06 12:15:43 +00:00
Fixed: tint:304 Change-Id: I8821bc6e4bfa0487161b8d915a6a107afd474105 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/53389 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: James Price <jrprice@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
26 lines
394 B
HLSL
26 lines
394 B
HLSL
struct tint_symbol {
|
|
float4 value : SV_Position;
|
|
};
|
|
|
|
void select_c31f9e() {
|
|
bool res = (false ? false : false);
|
|
}
|
|
|
|
tint_symbol vertex_main() {
|
|
select_c31f9e();
|
|
const tint_symbol tint_symbol_1 = {float4(0.0f, 0.0f, 0.0f, 0.0f)};
|
|
return tint_symbol_1;
|
|
}
|
|
|
|
void fragment_main() {
|
|
select_c31f9e();
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main() {
|
|
select_c31f9e();
|
|
return;
|
|
}
|
|
|