47 lines
1.8 KiB
Plaintext
47 lines
1.8 KiB
Plaintext
OpCapability Shader
|
|
%1 = OpExtInstImport "GLSL.std.450"
|
|
OpMemoryModel Logical GLSL450
|
|
OpEntryPoint Fragment %main "main" %_GLF_color
|
|
OpExecutionMode %main OriginUpperLeft
|
|
OpSource ESSL 310
|
|
OpName %main "main"
|
|
OpName %one "one"
|
|
OpName %_GLF_color "_GLF_color"
|
|
OpDecorate %_GLF_color Location 0
|
|
%void = OpTypeVoid
|
|
%6 = OpTypeFunction %void
|
|
%float = OpTypeFloat 32
|
|
%_ptr_Function_float = OpTypePointer Function %float
|
|
%float_1 = OpConstant %float 1
|
|
%v2float = OpTypeVector %float 2
|
|
%float_2 = OpConstant %float 2
|
|
%12 = OpConstantComposite %v2float %float_2 %float_1
|
|
%bool = OpTypeBool
|
|
%true = OpConstantTrue %bool
|
|
%float_0 = OpConstant %float 0
|
|
%v4float = OpTypeVector %float 4
|
|
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
|
%_GLF_color = OpVariable %_ptr_Output_v4float Output
|
|
%18 = OpConstantComposite %v4float %float_0 %float_0 %float_0 %float_0
|
|
%19 = OpConstantComposite %v4float %float_1 %float_0 %float_0 %float_1
|
|
%main = OpFunction %void None %6
|
|
%20 = OpLabel
|
|
%one = OpVariable %_ptr_Function_float Function
|
|
OpStore %one %float_1
|
|
%21 = OpLoad %float %one
|
|
%22 = OpSelect %float %true %float_0 %21
|
|
%23 = OpCompositeConstruct %v2float %float_1 %22
|
|
%24 = OpDot %float %12 %23
|
|
%25 = OpFOrdNotEqual %bool %24 %float_2
|
|
OpSelectionMerge %26 None
|
|
OpBranchConditional %25 %27 %28
|
|
%27 = OpLabel
|
|
OpStore %_GLF_color %18
|
|
OpBranch %26
|
|
%28 = OpLabel
|
|
OpStore %_GLF_color %19
|
|
OpBranch %26
|
|
%26 = OpLabel
|
|
OpReturn
|
|
OpFunctionEnd
|