ab52d95634
Change-Id: I3814e7144f22c8f838082df6ed1f41119efb2ec2 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/385157 Commit-Queue: John Stiles <johnstiles@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
58 lines
2.0 KiB
JavaScript
58 lines
2.0 KiB
JavaScript
OpCapability Shader
|
|
%1 = OpExtInstImport "GLSL.std.450"
|
|
OpMemoryModel Logical GLSL450
|
|
OpEntryPoint Fragment %main "main" %sk_FragColor %sk_Clockwise
|
|
OpExecutionMode %main OriginUpperLeft
|
|
OpName %sk_FragColor "sk_FragColor"
|
|
OpName %sk_Clockwise "sk_Clockwise"
|
|
OpName %_UniformBuffer "_UniformBuffer"
|
|
OpMemberName %_UniformBuffer 0 "a"
|
|
OpMemberName %_UniformBuffer 1 "b"
|
|
OpName %main "main"
|
|
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
|
|
OpDecorate %_UniformBuffer Block
|
|
OpDecorate %10 Binding 0
|
|
OpDecorate %10 DescriptorSet 0
|
|
OpDecorate %21 RelaxedPrecision
|
|
OpDecorate %24 RelaxedPrecision
|
|
OpDecorate %28 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
|
|
%_ptr_Uniform__UniformBuffer = OpTypePointer Uniform %_UniformBuffer
|
|
%10 = OpVariable %_ptr_Uniform__UniformBuffer Uniform
|
|
%void = OpTypeVoid
|
|
%14 = OpTypeFunction %void
|
|
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
|
|
%int = OpTypeInt 32 1
|
|
%int_0 = OpConstant %int 0
|
|
%int_1 = OpConstant %int 1
|
|
%v4bool = OpTypeVector %bool 4
|
|
%_ptr_Output_float = OpTypePointer Output %float
|
|
%main = OpFunction %void None %14
|
|
%15 = OpLabel
|
|
%17 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
|
%21 = OpLoad %v4float %17
|
|
%22 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
|
%24 = OpLoad %v4float %22
|
|
%16 = OpFOrdNotEqual %v4bool %21 %24
|
|
%26 = OpCompositeExtract %bool %16 0
|
|
%27 = OpSelect %int %26 %int_1 %int_0
|
|
%28 = OpConvertSToF %float %27
|
|
%29 = OpAccessChain %_ptr_Output_float %sk_FragColor %int_0
|
|
OpStore %29 %28
|
|
OpReturn
|
|
OpFunctionEnd
|