mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-05 11:45:54 +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>
40 lines
904 B
Plaintext
40 lines
904 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
struct tint_array_wrapper {
|
|
float2 arr[3];
|
|
};
|
|
|
|
constant tint_array_wrapper pos = {.arr={float2(0.0f, 0.5f), float2(-0.5f, -0.5f), float2(0.5f, -0.5f)}};
|
|
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
float4 vtx_main_inner(uint VertexIndex) {
|
|
return float4(pos.arr[VertexIndex], 0.0f, 1.0f);
|
|
}
|
|
|
|
vertex tint_symbol vtx_main(uint VertexIndex [[vertex_id]]) {
|
|
float4 const inner_result = vtx_main_inner(VertexIndex);
|
|
tint_symbol wrapper_result = {};
|
|
wrapper_result.value = inner_result;
|
|
return wrapper_result;
|
|
}
|
|
|
|
struct tint_symbol_1 {
|
|
float4 value [[color(0)]];
|
|
};
|
|
|
|
float4 frag_main_inner() {
|
|
return float4(1.0f, 0.0f, 0.0f, 1.0f);
|
|
}
|
|
|
|
fragment tint_symbol_1 frag_main() {
|
|
float4 const inner_result_1 = frag_main_inner();
|
|
tint_symbol_1 wrapper_result_1 = {};
|
|
wrapper_result_1.value = inner_result_1;
|
|
return wrapper_result_1;
|
|
}
|
|
|