Add ES3 Angle and Trigonometry methods to sksl_public.
This adds sinh, cosh, tanh, asinh, acosh, and atanh. We now also support compile-time optimization for the arc functions. Change-Id: I688f579b50403db534622b82926aa20d1f445341 Bug: skia:12202 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/439319 Commit-Queue: John Stiles <johnstiles@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
This commit is contained in:
parent
8a570d2db0
commit
1049d82061
@ -1 +1,14 @@
|
||||
uniform half a; void main() { sk_FragColor.x = acosh(a); }
|
||||
uniform half4 input, expected;
|
||||
uniform half4 colorGreen, colorRed;
|
||||
|
||||
half4 main(float2 coords) {
|
||||
const half4 constVal1 = half4(1, 1, 1.54308063481524377, 3.7621956910836314);
|
||||
return (acosh(input.x) == expected.x &&
|
||||
acosh(input.xy) == expected.xy &&
|
||||
acosh(input.xyz) == expected.xyz &&
|
||||
acosh(input.xyzw) == expected.xyzw &&
|
||||
acosh(constVal1.x) == expected.x &&
|
||||
acosh(constVal1.xy) == expected.xy &&
|
||||
acosh(constVal1.xyz) == expected.xyz &&
|
||||
acosh(constVal1.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
||||
}
|
||||
|
@ -1 +1,14 @@
|
||||
uniform half a; void main() { sk_FragColor.x = asinh(a); }
|
||||
uniform half4 input, expected;
|
||||
uniform half4 colorGreen, colorRed;
|
||||
|
||||
half4 main(float2 coords) {
|
||||
const half4 constVal1 = half4(0, 0, 1.1752011936438014568, -1.1752011936438014568);
|
||||
return (asinh(input.x) == expected.x &&
|
||||
asinh(input.xy) == expected.xy &&
|
||||
asinh(input.xyz) == expected.xyz &&
|
||||
asinh(input.xyzw) == expected.xyzw &&
|
||||
asinh(constVal1.x) == expected.x &&
|
||||
asinh(constVal1.xy) == expected.xy &&
|
||||
asinh(constVal1.xyz) == expected.xyz &&
|
||||
asinh(constVal1.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
||||
}
|
||||
|
@ -1 +1,14 @@
|
||||
uniform half a; void main() { sk_FragColor.x = atanh(a); }
|
||||
uniform half4 input, expected;
|
||||
uniform half4 colorGreen, colorRed;
|
||||
|
||||
half4 main(float2 coords) {
|
||||
const half4 constVal1 = half4(0, 0.2449186624037091292, 0.46211715726000975, 0.761594155955764);
|
||||
return (atanh(input.x) == expected.x &&
|
||||
atanh(input.xy) == expected.xy &&
|
||||
atanh(input.xyz) == expected.xyz &&
|
||||
atanh(input.xyzw) == expected.xyzw &&
|
||||
atanh(constVal1.x) == expected.x &&
|
||||
atanh(constVal1.xy) == expected.xy &&
|
||||
atanh(constVal1.xyz) == expected.xyz &&
|
||||
atanh(constVal1.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -379,6 +379,9 @@ double evaluate_asin(double a, double, double) { return std::asin(a); }
|
||||
double evaluate_acos(double a, double, double) { return std::acos(a); }
|
||||
double evaluate_atan(double a, double, double) { return std::atan(a); }
|
||||
double evaluate_atan2(double a, double b, double) { return std::atan2(a, b); }
|
||||
double evaluate_asinh(double a, double, double) { return std::asinh(a); }
|
||||
double evaluate_acosh(double a, double, double) { return std::acosh(a); }
|
||||
double evaluate_atanh(double a, double, double) { return std::atanh(a); }
|
||||
|
||||
double evaluate_pow(double a, double b, double) { return std::pow(a, b); }
|
||||
double evaluate_exp(double a, double, double) { return std::exp(a); }
|
||||
@ -452,6 +455,15 @@ static std::unique_ptr<Expression> optimize_intrinsic_call(const Context& contex
|
||||
return evaluate_pairwise_intrinsic(context, arguments, Intrinsics::evaluate_atan2);
|
||||
}
|
||||
|
||||
case k_asinh_IntrinsicKind:
|
||||
return evaluate_intrinsic<float>(context, arguments, Intrinsics::evaluate_asinh);
|
||||
|
||||
case k_acosh_IntrinsicKind:
|
||||
return evaluate_intrinsic<float>(context, arguments, Intrinsics::evaluate_acosh);
|
||||
|
||||
case k_atanh_IntrinsicKind:
|
||||
return evaluate_intrinsic<float>(context, arguments, Intrinsics::evaluate_atanh);
|
||||
|
||||
// 8.2 : Exponential Functions
|
||||
case k_pow_IntrinsicKind:
|
||||
return evaluate_pairwise_intrinsic(context, arguments, Intrinsics::evaluate_pow);
|
||||
|
@ -1,8 +1,9 @@
|
||||
// Reduced set of intrinsics that are available to public SkSL (RuntimeEffect and Interpreter)
|
||||
|
||||
// See "The OpenGL ES Shading Language, Version 1.00, Section 8"
|
||||
// See "The OpenGL ES Shading Language, Section 8"
|
||||
|
||||
// 8.1 : Angle and Trigonometry Functions (Version 1.0)
|
||||
|
||||
// 8.1 : Angle and Trigonometry Functions
|
||||
$genType radians($genType degrees);
|
||||
$genHType radians($genHType degrees);
|
||||
$genType degrees($genType radians);
|
||||
@ -24,6 +25,21 @@ $genHType atan($genHType y, $genHType x);
|
||||
$genType atan($genType y_over_x);
|
||||
$genHType atan($genHType y_over_x);
|
||||
|
||||
// 8.1 : Angle and Trigonometry Functions (Version 3.0)
|
||||
|
||||
$es3 $genType sinh($genType x);
|
||||
$es3 $genHType sinh($genHType x);
|
||||
$es3 $genType cosh($genType x);
|
||||
$es3 $genHType cosh($genHType x);
|
||||
$es3 $genType tanh($genType x);
|
||||
$es3 $genHType tanh($genHType x);
|
||||
$es3 $genType asinh($genType x);
|
||||
$es3 $genHType asinh($genHType x);
|
||||
$es3 $genType acosh($genType x);
|
||||
$es3 $genHType acosh($genHType x);
|
||||
$es3 $genType atanh($genType x);
|
||||
$es3 $genHType atanh($genHType x);
|
||||
|
||||
// 8.2 : Exponential Functions
|
||||
$genType pow($genType x, $genType y);
|
||||
$genHType pow($genHType x, $genHType y);
|
||||
|
@ -1,12 +1,16 @@
|
||||
OpCapability Shader
|
||||
%1 = OpExtInstImport "GLSL.std.450"
|
||||
OpMemoryModel Logical GLSL450
|
||||
OpEntryPoint Fragment %main "main" %sk_FragColor %sk_Clockwise
|
||||
OpExecutionMode %main OriginUpperLeft
|
||||
OpEntryPoint Fragment %_entrypoint_v "_entrypoint" %sk_FragColor %sk_Clockwise
|
||||
OpExecutionMode %_entrypoint_v OriginUpperLeft
|
||||
OpName %sk_FragColor "sk_FragColor"
|
||||
OpName %sk_Clockwise "sk_Clockwise"
|
||||
OpName %_UniformBuffer "_UniformBuffer"
|
||||
OpMemberName %_UniformBuffer 0 "a"
|
||||
OpMemberName %_UniformBuffer 0 "input"
|
||||
OpMemberName %_UniformBuffer 1 "expected"
|
||||
OpMemberName %_UniformBuffer 2 "colorGreen"
|
||||
OpMemberName %_UniformBuffer 3 "colorRed"
|
||||
OpName %_entrypoint_v "_entrypoint_v"
|
||||
OpName %main "main"
|
||||
OpDecorate %sk_FragColor RelaxedPrecision
|
||||
OpDecorate %sk_FragColor Location 0
|
||||
@ -14,11 +18,45 @@ OpDecorate %sk_FragColor Index 0
|
||||
OpDecorate %sk_Clockwise BuiltIn FrontFacing
|
||||
OpMemberDecorate %_UniformBuffer 0 Offset 0
|
||||
OpMemberDecorate %_UniformBuffer 0 RelaxedPrecision
|
||||
OpMemberDecorate %_UniformBuffer 1 Offset 16
|
||||
OpMemberDecorate %_UniformBuffer 1 RelaxedPrecision
|
||||
OpMemberDecorate %_UniformBuffer 2 Offset 32
|
||||
OpMemberDecorate %_UniformBuffer 2 RelaxedPrecision
|
||||
OpMemberDecorate %_UniformBuffer 3 Offset 48
|
||||
OpMemberDecorate %_UniformBuffer 3 RelaxedPrecision
|
||||
OpDecorate %_UniformBuffer Block
|
||||
OpDecorate %10 Binding 0
|
||||
OpDecorate %10 DescriptorSet 0
|
||||
OpDecorate %16 RelaxedPrecision
|
||||
OpDecorate %21 RelaxedPrecision
|
||||
OpDecorate %27 RelaxedPrecision
|
||||
OpDecorate %32 RelaxedPrecision
|
||||
OpDecorate %33 RelaxedPrecision
|
||||
OpDecorate %36 RelaxedPrecision
|
||||
OpDecorate %37 RelaxedPrecision
|
||||
OpDecorate %41 RelaxedPrecision
|
||||
OpDecorate %43 RelaxedPrecision
|
||||
OpDecorate %44 RelaxedPrecision
|
||||
OpDecorate %46 RelaxedPrecision
|
||||
OpDecorate %47 RelaxedPrecision
|
||||
OpDecorate %54 RelaxedPrecision
|
||||
OpDecorate %56 RelaxedPrecision
|
||||
OpDecorate %57 RelaxedPrecision
|
||||
OpDecorate %60 RelaxedPrecision
|
||||
OpDecorate %61 RelaxedPrecision
|
||||
OpDecorate %68 RelaxedPrecision
|
||||
OpDecorate %70 RelaxedPrecision
|
||||
OpDecorate %72 RelaxedPrecision
|
||||
OpDecorate %80 RelaxedPrecision
|
||||
OpDecorate %81 RelaxedPrecision
|
||||
OpDecorate %87 RelaxedPrecision
|
||||
OpDecorate %88 RelaxedPrecision
|
||||
OpDecorate %95 RelaxedPrecision
|
||||
OpDecorate %97 RelaxedPrecision
|
||||
OpDecorate %98 RelaxedPrecision
|
||||
OpDecorate %105 RelaxedPrecision
|
||||
OpDecorate %107 RelaxedPrecision
|
||||
OpDecorate %118 RelaxedPrecision
|
||||
OpDecorate %121 RelaxedPrecision
|
||||
OpDecorate %122 RelaxedPrecision
|
||||
%float = OpTypeFloat 32
|
||||
%v4float = OpTypeVector %float 4
|
||||
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
||||
@ -26,21 +64,150 @@ OpDecorate %21 RelaxedPrecision
|
||||
%bool = OpTypeBool
|
||||
%_ptr_Input_bool = OpTypePointer Input %bool
|
||||
%sk_Clockwise = OpVariable %_ptr_Input_bool Input
|
||||
%_UniformBuffer = OpTypeStruct %float
|
||||
%_UniformBuffer = OpTypeStruct %v4float %v4float %v4float %v4float
|
||||
%_ptr_Uniform__UniformBuffer = OpTypePointer Uniform %_UniformBuffer
|
||||
%10 = OpVariable %_ptr_Uniform__UniformBuffer Uniform
|
||||
%void = OpTypeVoid
|
||||
%14 = OpTypeFunction %void
|
||||
%_ptr_Uniform_float = OpTypePointer Uniform %float
|
||||
%15 = OpTypeFunction %void
|
||||
%v2float = OpTypeVector %float 2
|
||||
%float_0 = OpConstant %float 0
|
||||
%19 = OpConstantComposite %v2float %float_0 %float_0
|
||||
%_ptr_Function_v2float = OpTypePointer Function %v2float
|
||||
%23 = OpTypeFunction %v4float %_ptr_Function_v2float
|
||||
%false = OpConstantFalse %bool
|
||||
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
|
||||
%int = OpTypeInt 32 1
|
||||
%int_0 = OpConstant %int 0
|
||||
%_ptr_Output_float = OpTypePointer Output %float
|
||||
%main = OpFunction %void None %14
|
||||
%15 = OpLabel
|
||||
%17 = OpAccessChain %_ptr_Uniform_float %10 %int_0
|
||||
%21 = OpLoad %float %17
|
||||
%16 = OpExtInst %float %1 Acosh %21
|
||||
%22 = OpAccessChain %_ptr_Output_float %sk_FragColor %int_0
|
||||
OpStore %22 %16
|
||||
%int_1 = OpConstant %int 1
|
||||
%v2bool = OpTypeVector %bool 2
|
||||
%v3float = OpTypeVector %float 3
|
||||
%v3bool = OpTypeVector %bool 3
|
||||
%v4bool = OpTypeVector %bool 4
|
||||
%float_1 = OpConstant %float 1
|
||||
%95 = OpConstantComposite %v3float %float_0 %float_0 %float_1
|
||||
%float_2 = OpConstant %float 2
|
||||
%105 = OpConstantComposite %v4float %float_0 %float_0 %float_1 %float_2
|
||||
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
||||
%int_2 = OpConstant %int 2
|
||||
%int_3 = OpConstant %int 3
|
||||
%_entrypoint_v = OpFunction %void None %15
|
||||
%16 = OpLabel
|
||||
%20 = OpVariable %_ptr_Function_v2float Function
|
||||
OpStore %20 %19
|
||||
%22 = OpFunctionCall %v4float %main %20
|
||||
OpStore %sk_FragColor %22
|
||||
OpReturn
|
||||
OpFunctionEnd
|
||||
%main = OpFunction %v4float None %23
|
||||
%24 = OpFunctionParameter %_ptr_Function_v2float
|
||||
%25 = OpLabel
|
||||
%111 = OpVariable %_ptr_Function_v4float Function
|
||||
%28 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%32 = OpLoad %v4float %28
|
||||
%33 = OpCompositeExtract %float %32 0
|
||||
%27 = OpExtInst %float %1 Acosh %33
|
||||
%34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%36 = OpLoad %v4float %34
|
||||
%37 = OpCompositeExtract %float %36 0
|
||||
%38 = OpFOrdEqual %bool %27 %37
|
||||
OpSelectionMerge %40 None
|
||||
OpBranchConditional %38 %39 %40
|
||||
%39 = OpLabel
|
||||
%42 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%43 = OpLoad %v4float %42
|
||||
%44 = OpVectorShuffle %v2float %43 %43 0 1
|
||||
%41 = OpExtInst %v2float %1 Acosh %44
|
||||
%45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%46 = OpLoad %v4float %45
|
||||
%47 = OpVectorShuffle %v2float %46 %46 0 1
|
||||
%48 = OpFOrdEqual %v2bool %41 %47
|
||||
%50 = OpAll %bool %48
|
||||
OpBranch %40
|
||||
%40 = OpLabel
|
||||
%51 = OpPhi %bool %false %25 %50 %39
|
||||
OpSelectionMerge %53 None
|
||||
OpBranchConditional %51 %52 %53
|
||||
%52 = OpLabel
|
||||
%55 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%56 = OpLoad %v4float %55
|
||||
%57 = OpVectorShuffle %v3float %56 %56 0 1 2
|
||||
%54 = OpExtInst %v3float %1 Acosh %57
|
||||
%59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%60 = OpLoad %v4float %59
|
||||
%61 = OpVectorShuffle %v3float %60 %60 0 1 2
|
||||
%62 = OpFOrdEqual %v3bool %54 %61
|
||||
%64 = OpAll %bool %62
|
||||
OpBranch %53
|
||||
%53 = OpLabel
|
||||
%65 = OpPhi %bool %false %40 %64 %52
|
||||
OpSelectionMerge %67 None
|
||||
OpBranchConditional %65 %66 %67
|
||||
%66 = OpLabel
|
||||
%69 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%70 = OpLoad %v4float %69
|
||||
%68 = OpExtInst %v4float %1 Acosh %70
|
||||
%71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%72 = OpLoad %v4float %71
|
||||
%73 = OpFOrdEqual %v4bool %68 %72
|
||||
%75 = OpAll %bool %73
|
||||
OpBranch %67
|
||||
%67 = OpLabel
|
||||
%76 = OpPhi %bool %false %53 %75 %66
|
||||
OpSelectionMerge %78 None
|
||||
OpBranchConditional %76 %77 %78
|
||||
%77 = OpLabel
|
||||
%79 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%80 = OpLoad %v4float %79
|
||||
%81 = OpCompositeExtract %float %80 0
|
||||
%82 = OpFOrdEqual %bool %float_0 %81
|
||||
OpBranch %78
|
||||
%78 = OpLabel
|
||||
%83 = OpPhi %bool %false %67 %82 %77
|
||||
OpSelectionMerge %85 None
|
||||
OpBranchConditional %83 %84 %85
|
||||
%84 = OpLabel
|
||||
%86 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%87 = OpLoad %v4float %86
|
||||
%88 = OpVectorShuffle %v2float %87 %87 0 1
|
||||
%89 = OpFOrdEqual %v2bool %19 %88
|
||||
%90 = OpAll %bool %89
|
||||
OpBranch %85
|
||||
%85 = OpLabel
|
||||
%91 = OpPhi %bool %false %78 %90 %84
|
||||
OpSelectionMerge %93 None
|
||||
OpBranchConditional %91 %92 %93
|
||||
%92 = OpLabel
|
||||
%96 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%97 = OpLoad %v4float %96
|
||||
%98 = OpVectorShuffle %v3float %97 %97 0 1 2
|
||||
%99 = OpFOrdEqual %v3bool %95 %98
|
||||
%100 = OpAll %bool %99
|
||||
OpBranch %93
|
||||
%93 = OpLabel
|
||||
%101 = OpPhi %bool %false %85 %100 %92
|
||||
OpSelectionMerge %103 None
|
||||
OpBranchConditional %101 %102 %103
|
||||
%102 = OpLabel
|
||||
%106 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%107 = OpLoad %v4float %106
|
||||
%108 = OpFOrdEqual %v4bool %105 %107
|
||||
%109 = OpAll %bool %108
|
||||
OpBranch %103
|
||||
%103 = OpLabel
|
||||
%110 = OpPhi %bool %false %93 %109 %102
|
||||
OpSelectionMerge %115 None
|
||||
OpBranchConditional %110 %113 %114
|
||||
%113 = OpLabel
|
||||
%116 = OpAccessChain %_ptr_Uniform_v4float %10 %int_2
|
||||
%118 = OpLoad %v4float %116
|
||||
OpStore %111 %118
|
||||
OpBranch %115
|
||||
%114 = OpLabel
|
||||
%119 = OpAccessChain %_ptr_Uniform_v4float %10 %int_3
|
||||
%121 = OpLoad %v4float %119
|
||||
OpStore %111 %121
|
||||
OpBranch %115
|
||||
%115 = OpLabel
|
||||
%122 = OpLoad %v4float %111
|
||||
OpReturnValue %122
|
||||
OpFunctionEnd
|
||||
|
@ -1,6 +1,9 @@
|
||||
|
||||
out vec4 sk_FragColor;
|
||||
uniform float a;
|
||||
void main() {
|
||||
sk_FragColor.x = acosh(a);
|
||||
uniform vec4 input;
|
||||
uniform vec4 expected;
|
||||
uniform vec4 colorGreen;
|
||||
uniform vec4 colorRed;
|
||||
vec4 main() {
|
||||
return ((((((acosh(input.x) == expected.x && acosh(input.xy) == expected.xy) && acosh(input.xyz) == expected.xyz) && acosh(input) == expected) && 0.0 == expected.x) && vec2(0.0, 0.0) == expected.xy) && vec3(0.0, 0.0, 1.0) == expected.xyz) && vec4(0.0, 0.0, 1.0, 2.0) == expected ? colorGreen : colorRed;
|
||||
}
|
||||
|
@ -2,7 +2,10 @@
|
||||
#include <simd/simd.h>
|
||||
using namespace metal;
|
||||
struct Uniforms {
|
||||
float a;
|
||||
float4 input;
|
||||
float4 expected;
|
||||
float4 colorGreen;
|
||||
float4 colorRed;
|
||||
};
|
||||
struct Inputs {
|
||||
};
|
||||
@ -12,6 +15,6 @@ struct Outputs {
|
||||
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
||||
Outputs _out;
|
||||
(void)_out;
|
||||
_out.sk_FragColor.x = acosh(_uniforms.a);
|
||||
_out.sk_FragColor = ((((((acosh(_uniforms.input.x) == _uniforms.expected.x && all(acosh(_uniforms.input.xy) == _uniforms.expected.xy)) && all(acosh(_uniforms.input.xyz) == _uniforms.expected.xyz)) && all(acosh(_uniforms.input) == _uniforms.expected)) && 0.0 == _uniforms.expected.x) && all(float2(0.0, 0.0) == _uniforms.expected.xy)) && all(float3(0.0, 0.0, 1.0) == _uniforms.expected.xyz)) && all(float4(0.0, 0.0, 1.0, 2.0) == _uniforms.expected) ? _uniforms.colorGreen : _uniforms.colorRed;
|
||||
return _out;
|
||||
}
|
||||
|
@ -1,12 +1,16 @@
|
||||
OpCapability Shader
|
||||
%1 = OpExtInstImport "GLSL.std.450"
|
||||
OpMemoryModel Logical GLSL450
|
||||
OpEntryPoint Fragment %main "main" %sk_FragColor %sk_Clockwise
|
||||
OpExecutionMode %main OriginUpperLeft
|
||||
OpEntryPoint Fragment %_entrypoint_v "_entrypoint" %sk_FragColor %sk_Clockwise
|
||||
OpExecutionMode %_entrypoint_v OriginUpperLeft
|
||||
OpName %sk_FragColor "sk_FragColor"
|
||||
OpName %sk_Clockwise "sk_Clockwise"
|
||||
OpName %_UniformBuffer "_UniformBuffer"
|
||||
OpMemberName %_UniformBuffer 0 "a"
|
||||
OpMemberName %_UniformBuffer 0 "input"
|
||||
OpMemberName %_UniformBuffer 1 "expected"
|
||||
OpMemberName %_UniformBuffer 2 "colorGreen"
|
||||
OpMemberName %_UniformBuffer 3 "colorRed"
|
||||
OpName %_entrypoint_v "_entrypoint_v"
|
||||
OpName %main "main"
|
||||
OpDecorate %sk_FragColor RelaxedPrecision
|
||||
OpDecorate %sk_FragColor Location 0
|
||||
@ -14,11 +18,45 @@ OpDecorate %sk_FragColor Index 0
|
||||
OpDecorate %sk_Clockwise BuiltIn FrontFacing
|
||||
OpMemberDecorate %_UniformBuffer 0 Offset 0
|
||||
OpMemberDecorate %_UniformBuffer 0 RelaxedPrecision
|
||||
OpMemberDecorate %_UniformBuffer 1 Offset 16
|
||||
OpMemberDecorate %_UniformBuffer 1 RelaxedPrecision
|
||||
OpMemberDecorate %_UniformBuffer 2 Offset 32
|
||||
OpMemberDecorate %_UniformBuffer 2 RelaxedPrecision
|
||||
OpMemberDecorate %_UniformBuffer 3 Offset 48
|
||||
OpMemberDecorate %_UniformBuffer 3 RelaxedPrecision
|
||||
OpDecorate %_UniformBuffer Block
|
||||
OpDecorate %10 Binding 0
|
||||
OpDecorate %10 DescriptorSet 0
|
||||
OpDecorate %16 RelaxedPrecision
|
||||
OpDecorate %21 RelaxedPrecision
|
||||
OpDecorate %27 RelaxedPrecision
|
||||
OpDecorate %32 RelaxedPrecision
|
||||
OpDecorate %33 RelaxedPrecision
|
||||
OpDecorate %36 RelaxedPrecision
|
||||
OpDecorate %37 RelaxedPrecision
|
||||
OpDecorate %41 RelaxedPrecision
|
||||
OpDecorate %43 RelaxedPrecision
|
||||
OpDecorate %44 RelaxedPrecision
|
||||
OpDecorate %46 RelaxedPrecision
|
||||
OpDecorate %47 RelaxedPrecision
|
||||
OpDecorate %54 RelaxedPrecision
|
||||
OpDecorate %56 RelaxedPrecision
|
||||
OpDecorate %57 RelaxedPrecision
|
||||
OpDecorate %60 RelaxedPrecision
|
||||
OpDecorate %61 RelaxedPrecision
|
||||
OpDecorate %68 RelaxedPrecision
|
||||
OpDecorate %70 RelaxedPrecision
|
||||
OpDecorate %72 RelaxedPrecision
|
||||
OpDecorate %80 RelaxedPrecision
|
||||
OpDecorate %81 RelaxedPrecision
|
||||
OpDecorate %87 RelaxedPrecision
|
||||
OpDecorate %88 RelaxedPrecision
|
||||
OpDecorate %95 RelaxedPrecision
|
||||
OpDecorate %97 RelaxedPrecision
|
||||
OpDecorate %98 RelaxedPrecision
|
||||
OpDecorate %105 RelaxedPrecision
|
||||
OpDecorate %107 RelaxedPrecision
|
||||
OpDecorate %118 RelaxedPrecision
|
||||
OpDecorate %121 RelaxedPrecision
|
||||
OpDecorate %122 RelaxedPrecision
|
||||
%float = OpTypeFloat 32
|
||||
%v4float = OpTypeVector %float 4
|
||||
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
||||
@ -26,21 +64,150 @@ OpDecorate %21 RelaxedPrecision
|
||||
%bool = OpTypeBool
|
||||
%_ptr_Input_bool = OpTypePointer Input %bool
|
||||
%sk_Clockwise = OpVariable %_ptr_Input_bool Input
|
||||
%_UniformBuffer = OpTypeStruct %float
|
||||
%_UniformBuffer = OpTypeStruct %v4float %v4float %v4float %v4float
|
||||
%_ptr_Uniform__UniformBuffer = OpTypePointer Uniform %_UniformBuffer
|
||||
%10 = OpVariable %_ptr_Uniform__UniformBuffer Uniform
|
||||
%void = OpTypeVoid
|
||||
%14 = OpTypeFunction %void
|
||||
%_ptr_Uniform_float = OpTypePointer Uniform %float
|
||||
%15 = OpTypeFunction %void
|
||||
%v2float = OpTypeVector %float 2
|
||||
%float_0 = OpConstant %float 0
|
||||
%19 = OpConstantComposite %v2float %float_0 %float_0
|
||||
%_ptr_Function_v2float = OpTypePointer Function %v2float
|
||||
%23 = OpTypeFunction %v4float %_ptr_Function_v2float
|
||||
%false = OpConstantFalse %bool
|
||||
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
|
||||
%int = OpTypeInt 32 1
|
||||
%int_0 = OpConstant %int 0
|
||||
%_ptr_Output_float = OpTypePointer Output %float
|
||||
%main = OpFunction %void None %14
|
||||
%15 = OpLabel
|
||||
%17 = OpAccessChain %_ptr_Uniform_float %10 %int_0
|
||||
%21 = OpLoad %float %17
|
||||
%16 = OpExtInst %float %1 Asinh %21
|
||||
%22 = OpAccessChain %_ptr_Output_float %sk_FragColor %int_0
|
||||
OpStore %22 %16
|
||||
%int_1 = OpConstant %int 1
|
||||
%v2bool = OpTypeVector %bool 2
|
||||
%v3float = OpTypeVector %float 3
|
||||
%v3bool = OpTypeVector %bool 3
|
||||
%v4bool = OpTypeVector %bool 4
|
||||
%float_1 = OpConstant %float 1
|
||||
%95 = OpConstantComposite %v3float %float_0 %float_0 %float_1
|
||||
%float_n1 = OpConstant %float -1
|
||||
%105 = OpConstantComposite %v4float %float_0 %float_0 %float_1 %float_n1
|
||||
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
||||
%int_2 = OpConstant %int 2
|
||||
%int_3 = OpConstant %int 3
|
||||
%_entrypoint_v = OpFunction %void None %15
|
||||
%16 = OpLabel
|
||||
%20 = OpVariable %_ptr_Function_v2float Function
|
||||
OpStore %20 %19
|
||||
%22 = OpFunctionCall %v4float %main %20
|
||||
OpStore %sk_FragColor %22
|
||||
OpReturn
|
||||
OpFunctionEnd
|
||||
%main = OpFunction %v4float None %23
|
||||
%24 = OpFunctionParameter %_ptr_Function_v2float
|
||||
%25 = OpLabel
|
||||
%111 = OpVariable %_ptr_Function_v4float Function
|
||||
%28 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%32 = OpLoad %v4float %28
|
||||
%33 = OpCompositeExtract %float %32 0
|
||||
%27 = OpExtInst %float %1 Asinh %33
|
||||
%34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%36 = OpLoad %v4float %34
|
||||
%37 = OpCompositeExtract %float %36 0
|
||||
%38 = OpFOrdEqual %bool %27 %37
|
||||
OpSelectionMerge %40 None
|
||||
OpBranchConditional %38 %39 %40
|
||||
%39 = OpLabel
|
||||
%42 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%43 = OpLoad %v4float %42
|
||||
%44 = OpVectorShuffle %v2float %43 %43 0 1
|
||||
%41 = OpExtInst %v2float %1 Asinh %44
|
||||
%45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%46 = OpLoad %v4float %45
|
||||
%47 = OpVectorShuffle %v2float %46 %46 0 1
|
||||
%48 = OpFOrdEqual %v2bool %41 %47
|
||||
%50 = OpAll %bool %48
|
||||
OpBranch %40
|
||||
%40 = OpLabel
|
||||
%51 = OpPhi %bool %false %25 %50 %39
|
||||
OpSelectionMerge %53 None
|
||||
OpBranchConditional %51 %52 %53
|
||||
%52 = OpLabel
|
||||
%55 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%56 = OpLoad %v4float %55
|
||||
%57 = OpVectorShuffle %v3float %56 %56 0 1 2
|
||||
%54 = OpExtInst %v3float %1 Asinh %57
|
||||
%59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%60 = OpLoad %v4float %59
|
||||
%61 = OpVectorShuffle %v3float %60 %60 0 1 2
|
||||
%62 = OpFOrdEqual %v3bool %54 %61
|
||||
%64 = OpAll %bool %62
|
||||
OpBranch %53
|
||||
%53 = OpLabel
|
||||
%65 = OpPhi %bool %false %40 %64 %52
|
||||
OpSelectionMerge %67 None
|
||||
OpBranchConditional %65 %66 %67
|
||||
%66 = OpLabel
|
||||
%69 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%70 = OpLoad %v4float %69
|
||||
%68 = OpExtInst %v4float %1 Asinh %70
|
||||
%71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%72 = OpLoad %v4float %71
|
||||
%73 = OpFOrdEqual %v4bool %68 %72
|
||||
%75 = OpAll %bool %73
|
||||
OpBranch %67
|
||||
%67 = OpLabel
|
||||
%76 = OpPhi %bool %false %53 %75 %66
|
||||
OpSelectionMerge %78 None
|
||||
OpBranchConditional %76 %77 %78
|
||||
%77 = OpLabel
|
||||
%79 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%80 = OpLoad %v4float %79
|
||||
%81 = OpCompositeExtract %float %80 0
|
||||
%82 = OpFOrdEqual %bool %float_0 %81
|
||||
OpBranch %78
|
||||
%78 = OpLabel
|
||||
%83 = OpPhi %bool %false %67 %82 %77
|
||||
OpSelectionMerge %85 None
|
||||
OpBranchConditional %83 %84 %85
|
||||
%84 = OpLabel
|
||||
%86 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%87 = OpLoad %v4float %86
|
||||
%88 = OpVectorShuffle %v2float %87 %87 0 1
|
||||
%89 = OpFOrdEqual %v2bool %19 %88
|
||||
%90 = OpAll %bool %89
|
||||
OpBranch %85
|
||||
%85 = OpLabel
|
||||
%91 = OpPhi %bool %false %78 %90 %84
|
||||
OpSelectionMerge %93 None
|
||||
OpBranchConditional %91 %92 %93
|
||||
%92 = OpLabel
|
||||
%96 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%97 = OpLoad %v4float %96
|
||||
%98 = OpVectorShuffle %v3float %97 %97 0 1 2
|
||||
%99 = OpFOrdEqual %v3bool %95 %98
|
||||
%100 = OpAll %bool %99
|
||||
OpBranch %93
|
||||
%93 = OpLabel
|
||||
%101 = OpPhi %bool %false %85 %100 %92
|
||||
OpSelectionMerge %103 None
|
||||
OpBranchConditional %101 %102 %103
|
||||
%102 = OpLabel
|
||||
%106 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%107 = OpLoad %v4float %106
|
||||
%108 = OpFOrdEqual %v4bool %105 %107
|
||||
%109 = OpAll %bool %108
|
||||
OpBranch %103
|
||||
%103 = OpLabel
|
||||
%110 = OpPhi %bool %false %93 %109 %102
|
||||
OpSelectionMerge %115 None
|
||||
OpBranchConditional %110 %113 %114
|
||||
%113 = OpLabel
|
||||
%116 = OpAccessChain %_ptr_Uniform_v4float %10 %int_2
|
||||
%118 = OpLoad %v4float %116
|
||||
OpStore %111 %118
|
||||
OpBranch %115
|
||||
%114 = OpLabel
|
||||
%119 = OpAccessChain %_ptr_Uniform_v4float %10 %int_3
|
||||
%121 = OpLoad %v4float %119
|
||||
OpStore %111 %121
|
||||
OpBranch %115
|
||||
%115 = OpLabel
|
||||
%122 = OpLoad %v4float %111
|
||||
OpReturnValue %122
|
||||
OpFunctionEnd
|
||||
|
@ -1,6 +1,9 @@
|
||||
|
||||
out vec4 sk_FragColor;
|
||||
uniform float a;
|
||||
void main() {
|
||||
sk_FragColor.x = asinh(a);
|
||||
uniform vec4 input;
|
||||
uniform vec4 expected;
|
||||
uniform vec4 colorGreen;
|
||||
uniform vec4 colorRed;
|
||||
vec4 main() {
|
||||
return ((((((asinh(input.x) == expected.x && asinh(input.xy) == expected.xy) && asinh(input.xyz) == expected.xyz) && asinh(input) == expected) && 0.0 == expected.x) && vec2(0.0, 0.0) == expected.xy) && vec3(0.0, 0.0, 1.0) == expected.xyz) && vec4(0.0, 0.0, 1.0, -1.0) == expected ? colorGreen : colorRed;
|
||||
}
|
||||
|
@ -2,7 +2,10 @@
|
||||
#include <simd/simd.h>
|
||||
using namespace metal;
|
||||
struct Uniforms {
|
||||
float a;
|
||||
float4 input;
|
||||
float4 expected;
|
||||
float4 colorGreen;
|
||||
float4 colorRed;
|
||||
};
|
||||
struct Inputs {
|
||||
};
|
||||
@ -12,6 +15,6 @@ struct Outputs {
|
||||
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
||||
Outputs _out;
|
||||
(void)_out;
|
||||
_out.sk_FragColor.x = asinh(_uniforms.a);
|
||||
_out.sk_FragColor = ((((((asinh(_uniforms.input.x) == _uniforms.expected.x && all(asinh(_uniforms.input.xy) == _uniforms.expected.xy)) && all(asinh(_uniforms.input.xyz) == _uniforms.expected.xyz)) && all(asinh(_uniforms.input) == _uniforms.expected)) && 0.0 == _uniforms.expected.x) && all(float2(0.0, 0.0) == _uniforms.expected.xy)) && all(float3(0.0, 0.0, 1.0) == _uniforms.expected.xyz)) && all(float4(0.0, 0.0, 1.0, -1.0) == _uniforms.expected) ? _uniforms.colorGreen : _uniforms.colorRed;
|
||||
return _out;
|
||||
}
|
||||
|
@ -1,12 +1,16 @@
|
||||
OpCapability Shader
|
||||
%1 = OpExtInstImport "GLSL.std.450"
|
||||
OpMemoryModel Logical GLSL450
|
||||
OpEntryPoint Fragment %main "main" %sk_FragColor %sk_Clockwise
|
||||
OpExecutionMode %main OriginUpperLeft
|
||||
OpEntryPoint Fragment %_entrypoint_v "_entrypoint" %sk_FragColor %sk_Clockwise
|
||||
OpExecutionMode %_entrypoint_v OriginUpperLeft
|
||||
OpName %sk_FragColor "sk_FragColor"
|
||||
OpName %sk_Clockwise "sk_Clockwise"
|
||||
OpName %_UniformBuffer "_UniformBuffer"
|
||||
OpMemberName %_UniformBuffer 0 "a"
|
||||
OpMemberName %_UniformBuffer 0 "input"
|
||||
OpMemberName %_UniformBuffer 1 "expected"
|
||||
OpMemberName %_UniformBuffer 2 "colorGreen"
|
||||
OpMemberName %_UniformBuffer 3 "colorRed"
|
||||
OpName %_entrypoint_v "_entrypoint_v"
|
||||
OpName %main "main"
|
||||
OpDecorate %sk_FragColor RelaxedPrecision
|
||||
OpDecorate %sk_FragColor Location 0
|
||||
@ -14,11 +18,46 @@ OpDecorate %sk_FragColor Index 0
|
||||
OpDecorate %sk_Clockwise BuiltIn FrontFacing
|
||||
OpMemberDecorate %_UniformBuffer 0 Offset 0
|
||||
OpMemberDecorate %_UniformBuffer 0 RelaxedPrecision
|
||||
OpMemberDecorate %_UniformBuffer 1 Offset 16
|
||||
OpMemberDecorate %_UniformBuffer 1 RelaxedPrecision
|
||||
OpMemberDecorate %_UniformBuffer 2 Offset 32
|
||||
OpMemberDecorate %_UniformBuffer 2 RelaxedPrecision
|
||||
OpMemberDecorate %_UniformBuffer 3 Offset 48
|
||||
OpMemberDecorate %_UniformBuffer 3 RelaxedPrecision
|
||||
OpDecorate %_UniformBuffer Block
|
||||
OpDecorate %10 Binding 0
|
||||
OpDecorate %10 DescriptorSet 0
|
||||
OpDecorate %16 RelaxedPrecision
|
||||
OpDecorate %21 RelaxedPrecision
|
||||
OpDecorate %27 RelaxedPrecision
|
||||
OpDecorate %32 RelaxedPrecision
|
||||
OpDecorate %33 RelaxedPrecision
|
||||
OpDecorate %36 RelaxedPrecision
|
||||
OpDecorate %37 RelaxedPrecision
|
||||
OpDecorate %41 RelaxedPrecision
|
||||
OpDecorate %43 RelaxedPrecision
|
||||
OpDecorate %44 RelaxedPrecision
|
||||
OpDecorate %46 RelaxedPrecision
|
||||
OpDecorate %47 RelaxedPrecision
|
||||
OpDecorate %54 RelaxedPrecision
|
||||
OpDecorate %56 RelaxedPrecision
|
||||
OpDecorate %57 RelaxedPrecision
|
||||
OpDecorate %60 RelaxedPrecision
|
||||
OpDecorate %61 RelaxedPrecision
|
||||
OpDecorate %68 RelaxedPrecision
|
||||
OpDecorate %70 RelaxedPrecision
|
||||
OpDecorate %72 RelaxedPrecision
|
||||
OpDecorate %80 RelaxedPrecision
|
||||
OpDecorate %81 RelaxedPrecision
|
||||
OpDecorate %87 RelaxedPrecision
|
||||
OpDecorate %89 RelaxedPrecision
|
||||
OpDecorate %90 RelaxedPrecision
|
||||
OpDecorate %97 RelaxedPrecision
|
||||
OpDecorate %99 RelaxedPrecision
|
||||
OpDecorate %100 RelaxedPrecision
|
||||
OpDecorate %107 RelaxedPrecision
|
||||
OpDecorate %109 RelaxedPrecision
|
||||
OpDecorate %120 RelaxedPrecision
|
||||
OpDecorate %123 RelaxedPrecision
|
||||
OpDecorate %124 RelaxedPrecision
|
||||
%float = OpTypeFloat 32
|
||||
%v4float = OpTypeVector %float 4
|
||||
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
||||
@ -26,21 +65,152 @@ OpDecorate %21 RelaxedPrecision
|
||||
%bool = OpTypeBool
|
||||
%_ptr_Input_bool = OpTypePointer Input %bool
|
||||
%sk_Clockwise = OpVariable %_ptr_Input_bool Input
|
||||
%_UniformBuffer = OpTypeStruct %float
|
||||
%_UniformBuffer = OpTypeStruct %v4float %v4float %v4float %v4float
|
||||
%_ptr_Uniform__UniformBuffer = OpTypePointer Uniform %_UniformBuffer
|
||||
%10 = OpVariable %_ptr_Uniform__UniformBuffer Uniform
|
||||
%void = OpTypeVoid
|
||||
%14 = OpTypeFunction %void
|
||||
%_ptr_Uniform_float = OpTypePointer Uniform %float
|
||||
%15 = OpTypeFunction %void
|
||||
%v2float = OpTypeVector %float 2
|
||||
%float_0 = OpConstant %float 0
|
||||
%19 = OpConstantComposite %v2float %float_0 %float_0
|
||||
%_ptr_Function_v2float = OpTypePointer Function %v2float
|
||||
%23 = OpTypeFunction %v4float %_ptr_Function_v2float
|
||||
%false = OpConstantFalse %bool
|
||||
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
|
||||
%int = OpTypeInt 32 1
|
||||
%int_0 = OpConstant %int 0
|
||||
%_ptr_Output_float = OpTypePointer Output %float
|
||||
%main = OpFunction %void None %14
|
||||
%15 = OpLabel
|
||||
%17 = OpAccessChain %_ptr_Uniform_float %10 %int_0
|
||||
%21 = OpLoad %float %17
|
||||
%16 = OpExtInst %float %1 Atanh %21
|
||||
%22 = OpAccessChain %_ptr_Output_float %sk_FragColor %int_0
|
||||
OpStore %22 %16
|
||||
%int_1 = OpConstant %int 1
|
||||
%v2bool = OpTypeVector %bool 2
|
||||
%v3float = OpTypeVector %float 3
|
||||
%v3bool = OpTypeVector %bool 3
|
||||
%v4bool = OpTypeVector %bool 4
|
||||
%float_0_25 = OpConstant %float 0.25
|
||||
%87 = OpConstantComposite %v2float %float_0 %float_0_25
|
||||
%float_0_5 = OpConstant %float 0.5
|
||||
%97 = OpConstantComposite %v3float %float_0 %float_0_25 %float_0_5
|
||||
%float_1 = OpConstant %float 1
|
||||
%107 = OpConstantComposite %v4float %float_0 %float_0_25 %float_0_5 %float_1
|
||||
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
||||
%int_2 = OpConstant %int 2
|
||||
%int_3 = OpConstant %int 3
|
||||
%_entrypoint_v = OpFunction %void None %15
|
||||
%16 = OpLabel
|
||||
%20 = OpVariable %_ptr_Function_v2float Function
|
||||
OpStore %20 %19
|
||||
%22 = OpFunctionCall %v4float %main %20
|
||||
OpStore %sk_FragColor %22
|
||||
OpReturn
|
||||
OpFunctionEnd
|
||||
%main = OpFunction %v4float None %23
|
||||
%24 = OpFunctionParameter %_ptr_Function_v2float
|
||||
%25 = OpLabel
|
||||
%113 = OpVariable %_ptr_Function_v4float Function
|
||||
%28 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%32 = OpLoad %v4float %28
|
||||
%33 = OpCompositeExtract %float %32 0
|
||||
%27 = OpExtInst %float %1 Atanh %33
|
||||
%34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%36 = OpLoad %v4float %34
|
||||
%37 = OpCompositeExtract %float %36 0
|
||||
%38 = OpFOrdEqual %bool %27 %37
|
||||
OpSelectionMerge %40 None
|
||||
OpBranchConditional %38 %39 %40
|
||||
%39 = OpLabel
|
||||
%42 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%43 = OpLoad %v4float %42
|
||||
%44 = OpVectorShuffle %v2float %43 %43 0 1
|
||||
%41 = OpExtInst %v2float %1 Atanh %44
|
||||
%45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%46 = OpLoad %v4float %45
|
||||
%47 = OpVectorShuffle %v2float %46 %46 0 1
|
||||
%48 = OpFOrdEqual %v2bool %41 %47
|
||||
%50 = OpAll %bool %48
|
||||
OpBranch %40
|
||||
%40 = OpLabel
|
||||
%51 = OpPhi %bool %false %25 %50 %39
|
||||
OpSelectionMerge %53 None
|
||||
OpBranchConditional %51 %52 %53
|
||||
%52 = OpLabel
|
||||
%55 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%56 = OpLoad %v4float %55
|
||||
%57 = OpVectorShuffle %v3float %56 %56 0 1 2
|
||||
%54 = OpExtInst %v3float %1 Atanh %57
|
||||
%59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%60 = OpLoad %v4float %59
|
||||
%61 = OpVectorShuffle %v3float %60 %60 0 1 2
|
||||
%62 = OpFOrdEqual %v3bool %54 %61
|
||||
%64 = OpAll %bool %62
|
||||
OpBranch %53
|
||||
%53 = OpLabel
|
||||
%65 = OpPhi %bool %false %40 %64 %52
|
||||
OpSelectionMerge %67 None
|
||||
OpBranchConditional %65 %66 %67
|
||||
%66 = OpLabel
|
||||
%69 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%70 = OpLoad %v4float %69
|
||||
%68 = OpExtInst %v4float %1 Atanh %70
|
||||
%71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%72 = OpLoad %v4float %71
|
||||
%73 = OpFOrdEqual %v4bool %68 %72
|
||||
%75 = OpAll %bool %73
|
||||
OpBranch %67
|
||||
%67 = OpLabel
|
||||
%76 = OpPhi %bool %false %53 %75 %66
|
||||
OpSelectionMerge %78 None
|
||||
OpBranchConditional %76 %77 %78
|
||||
%77 = OpLabel
|
||||
%79 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%80 = OpLoad %v4float %79
|
||||
%81 = OpCompositeExtract %float %80 0
|
||||
%82 = OpFOrdEqual %bool %float_0 %81
|
||||
OpBranch %78
|
||||
%78 = OpLabel
|
||||
%83 = OpPhi %bool %false %67 %82 %77
|
||||
OpSelectionMerge %85 None
|
||||
OpBranchConditional %83 %84 %85
|
||||
%84 = OpLabel
|
||||
%88 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%89 = OpLoad %v4float %88
|
||||
%90 = OpVectorShuffle %v2float %89 %89 0 1
|
||||
%91 = OpFOrdEqual %v2bool %87 %90
|
||||
%92 = OpAll %bool %91
|
||||
OpBranch %85
|
||||
%85 = OpLabel
|
||||
%93 = OpPhi %bool %false %78 %92 %84
|
||||
OpSelectionMerge %95 None
|
||||
OpBranchConditional %93 %94 %95
|
||||
%94 = OpLabel
|
||||
%98 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%99 = OpLoad %v4float %98
|
||||
%100 = OpVectorShuffle %v3float %99 %99 0 1 2
|
||||
%101 = OpFOrdEqual %v3bool %97 %100
|
||||
%102 = OpAll %bool %101
|
||||
OpBranch %95
|
||||
%95 = OpLabel
|
||||
%103 = OpPhi %bool %false %85 %102 %94
|
||||
OpSelectionMerge %105 None
|
||||
OpBranchConditional %103 %104 %105
|
||||
%104 = OpLabel
|
||||
%108 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%109 = OpLoad %v4float %108
|
||||
%110 = OpFOrdEqual %v4bool %107 %109
|
||||
%111 = OpAll %bool %110
|
||||
OpBranch %105
|
||||
%105 = OpLabel
|
||||
%112 = OpPhi %bool %false %95 %111 %104
|
||||
OpSelectionMerge %117 None
|
||||
OpBranchConditional %112 %115 %116
|
||||
%115 = OpLabel
|
||||
%118 = OpAccessChain %_ptr_Uniform_v4float %10 %int_2
|
||||
%120 = OpLoad %v4float %118
|
||||
OpStore %113 %120
|
||||
OpBranch %117
|
||||
%116 = OpLabel
|
||||
%121 = OpAccessChain %_ptr_Uniform_v4float %10 %int_3
|
||||
%123 = OpLoad %v4float %121
|
||||
OpStore %113 %123
|
||||
OpBranch %117
|
||||
%117 = OpLabel
|
||||
%124 = OpLoad %v4float %113
|
||||
OpReturnValue %124
|
||||
OpFunctionEnd
|
||||
|
@ -1,6 +1,9 @@
|
||||
|
||||
out vec4 sk_FragColor;
|
||||
uniform float a;
|
||||
void main() {
|
||||
sk_FragColor.x = atanh(a);
|
||||
uniform vec4 input;
|
||||
uniform vec4 expected;
|
||||
uniform vec4 colorGreen;
|
||||
uniform vec4 colorRed;
|
||||
vec4 main() {
|
||||
return ((((((atanh(input.x) == expected.x && atanh(input.xy) == expected.xy) && atanh(input.xyz) == expected.xyz) && atanh(input) == expected) && 0.0 == expected.x) && vec2(0.0, 0.25) == expected.xy) && vec3(0.0, 0.25, 0.5) == expected.xyz) && vec4(0.0, 0.25, 0.5, 1.0) == expected ? colorGreen : colorRed;
|
||||
}
|
||||
|
@ -2,7 +2,10 @@
|
||||
#include <simd/simd.h>
|
||||
using namespace metal;
|
||||
struct Uniforms {
|
||||
float a;
|
||||
float4 input;
|
||||
float4 expected;
|
||||
float4 colorGreen;
|
||||
float4 colorRed;
|
||||
};
|
||||
struct Inputs {
|
||||
};
|
||||
@ -12,6 +15,6 @@ struct Outputs {
|
||||
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
||||
Outputs _out;
|
||||
(void)_out;
|
||||
_out.sk_FragColor.x = atanh(_uniforms.a);
|
||||
_out.sk_FragColor = ((((((atanh(_uniforms.input.x) == _uniforms.expected.x && all(atanh(_uniforms.input.xy) == _uniforms.expected.xy)) && all(atanh(_uniforms.input.xyz) == _uniforms.expected.xyz)) && all(atanh(_uniforms.input) == _uniforms.expected)) && 0.0 == _uniforms.expected.x) && all(float2(0.0, 0.25) == _uniforms.expected.xy)) && all(float3(0.0, 0.25, 0.5) == _uniforms.expected.xyz)) && all(float4(0.0, 0.25, 0.5, 1.0) == _uniforms.expected) ? _uniforms.colorGreen : _uniforms.colorRed;
|
||||
return _out;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user