d8ca6b608e
This is very unlikely to occur in real-world code, as it's somewhat nonsense to use the comma operator in this way. However, it's better to fail cleanly than to assert. Change-Id: I76481cd8a993cb1a798ee16956400a512efd4c15 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/337636 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
34 lines
743 B
Metal
34 lines
743 B
Metal
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
using namespace metal;
|
|
struct Inputs {
|
|
};
|
|
struct Outputs {
|
|
float4 sk_FragColor [[color(0)]];
|
|
};
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
|
Outputs _outputStruct;
|
|
thread Outputs* _out = &_outputStruct;
|
|
float x = 1.0;
|
|
float y = 2.0;
|
|
|
|
int z = 3;
|
|
x = -6.0;
|
|
y = -1.0;
|
|
z = 8;
|
|
bool b = false == true || 2.0 >= sqrt(2.0);
|
|
x += 12.0;
|
|
x -= 12.0;
|
|
x *= (y /= float(z = 10));
|
|
z |= 0;
|
|
z &= -1;
|
|
z ^= 0;
|
|
z >>= 2;
|
|
z <<= 4;
|
|
z %= 5;
|
|
x = float((float2(sqrt(1.0)) , 6));
|
|
y = (b ? 1.0 : 0.0 , 6.0);
|
|
z = (float2(sqrt(1.0)) , 6);
|
|
return *_out;
|
|
}
|