mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-06 04:05:40 +00:00
As the resolver currently enforces in-order declarations, this does not change the declaration order from iterating over the ast::Module::GlobalDeclarations. The MSL backend has been changed to use the sem::Module::DependencyOrderedDeclarations list instead of looping over different declaration types separately. Bug: tint:1266 Change-Id: I698d612032285311017bfceab3c42adae1928a0e Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/79767 Reviewed-by: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
64 lines
1.2 KiB
Plaintext
64 lines
1.2 KiB
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
struct tint_symbol {
|
|
int value [[color(0)]];
|
|
};
|
|
|
|
int main0_inner() {
|
|
return 1;
|
|
}
|
|
|
|
fragment tint_symbol main0() {
|
|
int const inner_result = main0_inner();
|
|
tint_symbol wrapper_result = {};
|
|
wrapper_result.value = inner_result;
|
|
return wrapper_result;
|
|
}
|
|
|
|
struct tint_symbol_1 {
|
|
uint value [[color(1)]];
|
|
};
|
|
|
|
uint main1_inner() {
|
|
return 1u;
|
|
}
|
|
|
|
fragment tint_symbol_1 main1() {
|
|
uint const inner_result_1 = main1_inner();
|
|
tint_symbol_1 wrapper_result_1 = {};
|
|
wrapper_result_1.value = inner_result_1;
|
|
return wrapper_result_1;
|
|
}
|
|
|
|
struct tint_symbol_2 {
|
|
float value [[color(2)]];
|
|
};
|
|
|
|
float main2_inner() {
|
|
return 1.0f;
|
|
}
|
|
|
|
fragment tint_symbol_2 main2() {
|
|
float const inner_result_2 = main2_inner();
|
|
tint_symbol_2 wrapper_result_2 = {};
|
|
wrapper_result_2.value = inner_result_2;
|
|
return wrapper_result_2;
|
|
}
|
|
|
|
struct tint_symbol_3 {
|
|
float4 value [[color(3)]];
|
|
};
|
|
|
|
float4 main3_inner() {
|
|
return float4(1.0f, 2.0f, 3.0f, 4.0f);
|
|
}
|
|
|
|
fragment tint_symbol_3 main3() {
|
|
float4 const inner_result_3 = main3_inner();
|
|
tint_symbol_3 wrapper_result_3 = {};
|
|
wrapper_result_3.value = inner_result_3;
|
|
return wrapper_result_3;
|
|
}
|
|
|