80 lines
3.2 KiB
Plaintext
80 lines
3.2 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 %v "v"
|
|
OpName %buf0 "buf0"
|
|
OpMemberName %buf0 0 "zeroOne"
|
|
OpName %_ ""
|
|
OpName %d "d"
|
|
OpName %_GLF_color "_GLF_color"
|
|
OpMemberDecorate %buf0 0 Offset 0
|
|
OpDecorate %buf0 Block
|
|
OpDecorate %_ DescriptorSet 0
|
|
OpDecorate %_ Binding 0
|
|
OpDecorate %_GLF_color Location 0
|
|
%void = OpTypeVoid
|
|
%9 = OpTypeFunction %void
|
|
%float = OpTypeFloat 32
|
|
%v2float = OpTypeVector %float 2
|
|
%_ptr_Function_v2float = OpTypePointer Function %v2float
|
|
%float_2 = OpConstant %float 2
|
|
%float_3 = OpConstant %float 3
|
|
%15 = OpConstantComposite %v2float %float_2 %float_3
|
|
%float_4 = OpConstant %float 4
|
|
%float_5 = OpConstant %float 5
|
|
%18 = OpConstantComposite %v2float %float_4 %float_5
|
|
%buf0 = OpTypeStruct %v2float
|
|
%_ptr_Uniform_buf0 = OpTypePointer Uniform %buf0
|
|
%_ = OpVariable %_ptr_Uniform_buf0 Uniform
|
|
%int = OpTypeInt 32 1
|
|
%int_0 = OpConstant %int 0
|
|
%_ptr_Uniform_v2float = OpTypePointer Uniform %v2float
|
|
%_ptr_Function_float = OpTypePointer Function %float
|
|
%24 = OpConstantComposite %v2float %float_2 %float_5
|
|
%float_0_100000001 = OpConstant %float 0.100000001
|
|
%bool = OpTypeBool
|
|
%v4float = OpTypeVector %float 4
|
|
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
|
%_GLF_color = OpVariable %_ptr_Output_v4float Output
|
|
%uint = OpTypeInt 32 0
|
|
%uint_0 = OpConstant %uint 0
|
|
%float_1 = OpConstant %float 1
|
|
%uint_1 = OpConstant %uint 1
|
|
%float_0 = OpConstant %float 0
|
|
%34 = OpConstantComposite %v4float %float_0 %float_0 %float_0 %float_0
|
|
%main = OpFunction %void None %9
|
|
%35 = OpLabel
|
|
%v = OpVariable %_ptr_Function_v2float Function
|
|
%d = OpVariable %_ptr_Function_float Function
|
|
%36 = OpAccessChain %_ptr_Uniform_v2float %_ %int_0
|
|
%37 = OpLoad %v2float %36
|
|
%38 = OpExtInst %v2float %1 FMix %15 %18 %37
|
|
OpStore %v %38
|
|
%39 = OpLoad %v2float %v
|
|
%40 = OpExtInst %float %1 Distance %39 %24
|
|
OpStore %d %40
|
|
%41 = OpLoad %float %d
|
|
%42 = OpFOrdLessThan %bool %41 %float_0_100000001
|
|
OpSelectionMerge %43 None
|
|
OpBranchConditional %42 %44 %45
|
|
%44 = OpLabel
|
|
%46 = OpAccessChain %_ptr_Function_float %v %uint_0
|
|
%47 = OpLoad %float %46
|
|
%48 = OpFSub %float %47 %float_1
|
|
%49 = OpAccessChain %_ptr_Function_float %v %uint_1
|
|
%50 = OpLoad %float %49
|
|
%51 = OpFSub %float %50 %float_5
|
|
%52 = OpCompositeConstruct %v4float %48 %51 %float_0 %float_1
|
|
OpStore %_GLF_color %52
|
|
OpBranch %43
|
|
%45 = OpLabel
|
|
OpStore %_GLF_color %34
|
|
OpBranch %43
|
|
%43 = OpLabel
|
|
OpReturn
|
|
OpFunctionEnd
|