169c8903be
This is a reland of 22dcb5fd7e
Original change's description:
> Add coords parameter to all .sksl test files used as runtime effects
>
> Convert to use the newer MakeForShader factory, which requires this.
>
> Change-Id: Ifaf6054054027c78f3f3fe15596e435e0f79b877
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/399336
> Commit-Queue: Brian Osman <brianosman@google.com>
> Reviewed-by: John Stiles <johnstiles@google.com>
Bug: skia:11919
Change-Id: I5f745c54b2bc3712f2281db6e067345903e81931
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/401836
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
197 lines
6.2 KiB
JavaScript
197 lines
6.2 KiB
JavaScript
OpCapability Shader
|
|
%1 = OpExtInstImport "GLSL.std.450"
|
|
OpMemoryModel Logical GLSL450
|
|
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 "colorRed"
|
|
OpMemberName %_UniformBuffer 1 "colorGreen"
|
|
OpMemberName %_UniformBuffer 2 "colorWhite"
|
|
OpMemberName %_UniformBuffer 3 "colorBlack"
|
|
OpName %_entrypoint_v "_entrypoint_v"
|
|
OpName %setToColorBlack_vh4 "setToColorBlack_vh4"
|
|
OpName %main "main"
|
|
OpName %a "a"
|
|
OpName %b "b"
|
|
OpName %c "c"
|
|
OpName %d "d"
|
|
OpDecorate %sk_FragColor RelaxedPrecision
|
|
OpDecorate %sk_FragColor Location 0
|
|
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 %11 Binding 0
|
|
OpDecorate %11 DescriptorSet 0
|
|
OpDecorate %32 RelaxedPrecision
|
|
OpDecorate %a RelaxedPrecision
|
|
OpDecorate %b RelaxedPrecision
|
|
OpDecorate %c RelaxedPrecision
|
|
OpDecorate %d RelaxedPrecision
|
|
OpDecorate %42 RelaxedPrecision
|
|
OpDecorate %45 RelaxedPrecision
|
|
OpDecorate %49 RelaxedPrecision
|
|
OpDecorate %50 RelaxedPrecision
|
|
OpDecorate %51 RelaxedPrecision
|
|
OpDecorate %52 RelaxedPrecision
|
|
OpDecorate %53 RelaxedPrecision
|
|
OpDecorate %54 RelaxedPrecision
|
|
OpDecorate %55 RelaxedPrecision
|
|
OpDecorate %56 RelaxedPrecision
|
|
OpDecorate %57 RelaxedPrecision
|
|
OpDecorate %58 RelaxedPrecision
|
|
OpDecorate %59 RelaxedPrecision
|
|
OpDecorate %60 RelaxedPrecision
|
|
OpDecorate %61 RelaxedPrecision
|
|
OpDecorate %63 RelaxedPrecision
|
|
OpDecorate %65 RelaxedPrecision
|
|
OpDecorate %71 RelaxedPrecision
|
|
OpDecorate %73 RelaxedPrecision
|
|
OpDecorate %79 RelaxedPrecision
|
|
OpDecorate %81 RelaxedPrecision
|
|
OpDecorate %87 RelaxedPrecision
|
|
OpDecorate %89 RelaxedPrecision
|
|
OpDecorate %98 RelaxedPrecision
|
|
OpDecorate %100 RelaxedPrecision
|
|
OpDecorate %101 RelaxedPrecision
|
|
%float = OpTypeFloat 32
|
|
%v4float = OpTypeVector %float 4
|
|
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
|
%sk_FragColor = OpVariable %_ptr_Output_v4float Output
|
|
%bool = OpTypeBool
|
|
%_ptr_Input_bool = OpTypePointer Input %bool
|
|
%sk_Clockwise = OpVariable %_ptr_Input_bool Input
|
|
%_UniformBuffer = OpTypeStruct %v4float %v4float %v4float %v4float
|
|
%_ptr_Uniform__UniformBuffer = OpTypePointer Uniform %_UniformBuffer
|
|
%11 = OpVariable %_ptr_Uniform__UniformBuffer Uniform
|
|
%void = OpTypeVoid
|
|
%16 = OpTypeFunction %void
|
|
%v2float = OpTypeVector %float 2
|
|
%float_0 = OpConstant %float 0
|
|
%20 = OpConstantComposite %v2float %float_0 %float_0
|
|
%_ptr_Function_v2float = OpTypePointer Function %v2float
|
|
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
|
%24 = OpTypeFunction %void %_ptr_Function_v4float
|
|
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
|
|
%int = OpTypeInt 32 1
|
|
%int_3 = OpConstant %int 3
|
|
%33 = OpTypeFunction %v4float %_ptr_Function_v2float
|
|
%int_0 = OpConstant %int 0
|
|
%int_1 = OpConstant %int 1
|
|
%int_2 = OpConstant %int 2
|
|
%false = OpConstantFalse %bool
|
|
%v4bool = OpTypeVector %bool 4
|
|
%_entrypoint_v = OpFunction %void None %16
|
|
%17 = OpLabel
|
|
%21 = OpVariable %_ptr_Function_v2float Function
|
|
OpStore %21 %20
|
|
%23 = OpFunctionCall %v4float %main %21
|
|
OpStore %sk_FragColor %23
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%setToColorBlack_vh4 = OpFunction %void None %24
|
|
%26 = OpFunctionParameter %_ptr_Function_v4float
|
|
%27 = OpLabel
|
|
%28 = OpAccessChain %_ptr_Uniform_v4float %11 %int_3
|
|
%32 = OpLoad %v4float %28
|
|
OpStore %26 %32
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%main = OpFunction %v4float None %33
|
|
%34 = OpFunctionParameter %_ptr_Function_v2float
|
|
%35 = OpLabel
|
|
%a = OpVariable %_ptr_Function_v4float Function
|
|
%b = OpVariable %_ptr_Function_v4float Function
|
|
%c = OpVariable %_ptr_Function_v4float Function
|
|
%d = OpVariable %_ptr_Function_v4float Function
|
|
%93 = OpVariable %_ptr_Function_v4float Function
|
|
%40 = OpAccessChain %_ptr_Uniform_v4float %11 %int_0
|
|
%42 = OpLoad %v4float %40
|
|
OpStore %b %42
|
|
%43 = OpAccessChain %_ptr_Uniform_v4float %11 %int_1
|
|
%45 = OpLoad %v4float %43
|
|
OpStore %c %45
|
|
%46 = OpFunctionCall %void %setToColorBlack_vh4 %d
|
|
%47 = OpAccessChain %_ptr_Uniform_v4float %11 %int_2
|
|
%49 = OpLoad %v4float %47
|
|
OpStore %a %49
|
|
%50 = OpLoad %v4float %a
|
|
%51 = OpLoad %v4float %a
|
|
%52 = OpFMul %v4float %50 %51
|
|
OpStore %a %52
|
|
%53 = OpLoad %v4float %b
|
|
%54 = OpLoad %v4float %b
|
|
%55 = OpFMul %v4float %53 %54
|
|
OpStore %b %55
|
|
%56 = OpLoad %v4float %c
|
|
%57 = OpLoad %v4float %c
|
|
%58 = OpFMul %v4float %56 %57
|
|
OpStore %c %58
|
|
%59 = OpLoad %v4float %d
|
|
%60 = OpLoad %v4float %d
|
|
%61 = OpFMul %v4float %59 %60
|
|
OpStore %d %61
|
|
%63 = OpLoad %v4float %a
|
|
%64 = OpAccessChain %_ptr_Uniform_v4float %11 %int_2
|
|
%65 = OpLoad %v4float %64
|
|
%66 = OpFOrdEqual %v4bool %63 %65
|
|
%68 = OpAll %bool %66
|
|
OpSelectionMerge %70 None
|
|
OpBranchConditional %68 %69 %70
|
|
%69 = OpLabel
|
|
%71 = OpLoad %v4float %b
|
|
%72 = OpAccessChain %_ptr_Uniform_v4float %11 %int_0
|
|
%73 = OpLoad %v4float %72
|
|
%74 = OpFOrdEqual %v4bool %71 %73
|
|
%75 = OpAll %bool %74
|
|
OpBranch %70
|
|
%70 = OpLabel
|
|
%76 = OpPhi %bool %false %35 %75 %69
|
|
OpSelectionMerge %78 None
|
|
OpBranchConditional %76 %77 %78
|
|
%77 = OpLabel
|
|
%79 = OpLoad %v4float %c
|
|
%80 = OpAccessChain %_ptr_Uniform_v4float %11 %int_1
|
|
%81 = OpLoad %v4float %80
|
|
%82 = OpFOrdEqual %v4bool %79 %81
|
|
%83 = OpAll %bool %82
|
|
OpBranch %78
|
|
%78 = OpLabel
|
|
%84 = OpPhi %bool %false %70 %83 %77
|
|
OpSelectionMerge %86 None
|
|
OpBranchConditional %84 %85 %86
|
|
%85 = OpLabel
|
|
%87 = OpLoad %v4float %d
|
|
%88 = OpAccessChain %_ptr_Uniform_v4float %11 %int_3
|
|
%89 = OpLoad %v4float %88
|
|
%90 = OpFOrdEqual %v4bool %87 %89
|
|
%91 = OpAll %bool %90
|
|
OpBranch %86
|
|
%86 = OpLabel
|
|
%92 = OpPhi %bool %false %78 %91 %85
|
|
OpSelectionMerge %96 None
|
|
OpBranchConditional %92 %94 %95
|
|
%94 = OpLabel
|
|
%97 = OpAccessChain %_ptr_Uniform_v4float %11 %int_1
|
|
%98 = OpLoad %v4float %97
|
|
OpStore %93 %98
|
|
OpBranch %96
|
|
%95 = OpLabel
|
|
%99 = OpAccessChain %_ptr_Uniform_v4float %11 %int_0
|
|
%100 = OpLoad %v4float %99
|
|
OpStore %93 %100
|
|
OpBranch %96
|
|
%96 = OpLabel
|
|
%101 = OpLoad %v4float %93
|
|
OpReturnValue %101
|
|
OpFunctionEnd
|