02bc52284d
Previously, structs that were defined as part of a variable declaration would end up declared similarly in the generated code. Now, global variable declarations that include a struct definition generate two separate program elements. Bug: skia:11228 Change-Id: Id7ddde6931fe07a250c2c9c46153879005535fb3 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/361359 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
22 lines
438 B
Metal
22 lines
438 B
Metal
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
using namespace metal;
|
|
struct Test {
|
|
int x;
|
|
int y;
|
|
int z;
|
|
};
|
|
struct Inputs {
|
|
};
|
|
struct Outputs {
|
|
float4 sk_FragColor [[color(0)]];
|
|
};
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
|
Outputs _out;
|
|
(void)_out;
|
|
Test t;
|
|
t.x = 0;
|
|
_out.sk_FragColor.x = float(t.x);
|
|
return _out;
|
|
}
|