dd904af566
Arrays in Metal now use the `array<T, N>` type instead of the C-style `T[N]` type. This gives them semantics much more in line with GLSL, so they can be initialized and assigned like GLSL arrays. This allows the ArrayTypes and Assignment tests to pass, so they have been added to our dm SkSL tests. (ArrayConstructors also passes, but is not ES2-compliant so it is not enabled.) Change-Id: Id1028311963084befd0e044e11e223af6a064dda Bug: skia:10761, skia:10760, skia:11022, skia:10939 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/365699 Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
16 lines
498 B
Metal
16 lines
498 B
Metal
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
using namespace metal;
|
|
struct Inputs {
|
|
};
|
|
struct Outputs {
|
|
float4 sk_FragColor [[color(0)]];
|
|
};
|
|
constant array<float, 4> test = array<float, 4>{1.0, 2.0, 3.0, 4.0};
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
|
Outputs _out;
|
|
(void)_out;
|
|
_out.sk_FragColor = float4(_globals.test[0], _globals.test[1], _globals.test[2], _globals.test[3]);
|
|
return _out;
|
|
}
|