Fix SPIR-V error when creating non-square diagonal matrices.
The code which assembled a uniform-scale matrix (aka `ConstructorDiagonalMatrix`) accidentally looped over columns instead of rows when assembling the matrix. Change-Id: Iefb9ae645a7a85f61443e6e96b752ba729f40c9c Bug: skia:11278 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/394997 Commit-Queue: John Stiles <johnstiles@google.com> Commit-Queue: Brian Osman <brianosman@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
This commit is contained in:
parent
2de947e780
commit
392d829798
@ -1393,15 +1393,17 @@ void SPIRVCodeGenerator::writeUniformScaleMatrix(SpvId id, SpvId diagonal, const
|
||||
FloatLiteral zero(/*offset=*/-1, /*value=*/0, fContext.fTypes.fFloat.get());
|
||||
SpvId zeroId = this->writeFloatLiteral(zero);
|
||||
std::vector<SpvId> columnIds;
|
||||
columnIds.reserve(type.columns());
|
||||
for (int column = 0; column < type.columns(); column++) {
|
||||
this->writeOpCode(SpvOpCompositeConstruct, 3 + type.rows(),
|
||||
out);
|
||||
this->writeWord(this->getType(type.componentType().toCompound(fContext, type.rows(), 1)),
|
||||
this->writeWord(this->getType(type.componentType().toCompound(
|
||||
fContext, /*columns=*/type.rows(), /*rows=*/1)),
|
||||
out);
|
||||
SpvId columnId = this->nextId(&type);
|
||||
this->writeWord(columnId, out);
|
||||
columnIds.push_back(columnId);
|
||||
for (int row = 0; row < type.columns(); row++) {
|
||||
for (int row = 0; row < type.rows(); row++) {
|
||||
this->writeWord(row == column ? diagonal : zeroId, out);
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,306 @@
|
||||
### Compilation failed:
|
||||
|
||||
error: SPIR-V validation error: Invalid instruction word count: 0
|
||||
SPIR-V validation error: Invalid instruction word count: 0
|
||||
|
||||
1 error
|
||||
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 "colorGreen"
|
||||
OpMemberName %_UniformBuffer 1 "colorRed"
|
||||
OpName %_entrypoint_v "_entrypoint_v"
|
||||
OpName %test_half_b "test_half_b"
|
||||
OpName %m23 "m23"
|
||||
OpName %m24 "m24"
|
||||
OpName %m32 "m32"
|
||||
OpName %m34 "m34"
|
||||
OpName %m42 "m42"
|
||||
OpName %m43 "m43"
|
||||
OpName %m22 "m22"
|
||||
OpName %m33 "m33"
|
||||
OpName %m44 "m44"
|
||||
OpName %main "main"
|
||||
OpName %_0_m23 "_0_m23"
|
||||
OpName %_1_m24 "_1_m24"
|
||||
OpName %_2_m32 "_2_m32"
|
||||
OpName %_3_m34 "_3_m34"
|
||||
OpName %_4_m42 "_4_m42"
|
||||
OpName %_5_m43 "_5_m43"
|
||||
OpName %_6_m22 "_6_m22"
|
||||
OpName %_7_m33 "_7_m33"
|
||||
OpName %_8_m44 "_8_m44"
|
||||
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 %11 Binding 0
|
||||
OpDecorate %11 DescriptorSet 0
|
||||
OpDecorate %m23 RelaxedPrecision
|
||||
OpDecorate %26 RelaxedPrecision
|
||||
OpDecorate %28 RelaxedPrecision
|
||||
OpDecorate %29 RelaxedPrecision
|
||||
OpDecorate %m24 RelaxedPrecision
|
||||
OpDecorate %34 RelaxedPrecision
|
||||
OpDecorate %35 RelaxedPrecision
|
||||
OpDecorate %36 RelaxedPrecision
|
||||
OpDecorate %m32 RelaxedPrecision
|
||||
OpDecorate %42 RelaxedPrecision
|
||||
OpDecorate %43 RelaxedPrecision
|
||||
OpDecorate %44 RelaxedPrecision
|
||||
OpDecorate %45 RelaxedPrecision
|
||||
OpDecorate %m34 RelaxedPrecision
|
||||
OpDecorate %50 RelaxedPrecision
|
||||
OpDecorate %51 RelaxedPrecision
|
||||
OpDecorate %52 RelaxedPrecision
|
||||
OpDecorate %53 RelaxedPrecision
|
||||
OpDecorate %m42 RelaxedPrecision
|
||||
OpDecorate %58 RelaxedPrecision
|
||||
OpDecorate %59 RelaxedPrecision
|
||||
OpDecorate %60 RelaxedPrecision
|
||||
OpDecorate %61 RelaxedPrecision
|
||||
OpDecorate %62 RelaxedPrecision
|
||||
OpDecorate %m43 RelaxedPrecision
|
||||
OpDecorate %67 RelaxedPrecision
|
||||
OpDecorate %68 RelaxedPrecision
|
||||
OpDecorate %69 RelaxedPrecision
|
||||
OpDecorate %70 RelaxedPrecision
|
||||
OpDecorate %71 RelaxedPrecision
|
||||
OpDecorate %m22 RelaxedPrecision
|
||||
OpDecorate %75 RelaxedPrecision
|
||||
OpDecorate %76 RelaxedPrecision
|
||||
OpDecorate %77 RelaxedPrecision
|
||||
OpDecorate %78 RelaxedPrecision
|
||||
OpDecorate %79 RelaxedPrecision
|
||||
OpDecorate %80 RelaxedPrecision
|
||||
OpDecorate %m33 RelaxedPrecision
|
||||
OpDecorate %84 RelaxedPrecision
|
||||
OpDecorate %85 RelaxedPrecision
|
||||
OpDecorate %86 RelaxedPrecision
|
||||
OpDecorate %87 RelaxedPrecision
|
||||
OpDecorate %88 RelaxedPrecision
|
||||
OpDecorate %89 RelaxedPrecision
|
||||
OpDecorate %m44 RelaxedPrecision
|
||||
OpDecorate %93 RelaxedPrecision
|
||||
OpDecorate %94 RelaxedPrecision
|
||||
OpDecorate %95 RelaxedPrecision
|
||||
OpDecorate %96 RelaxedPrecision
|
||||
OpDecorate %97 RelaxedPrecision
|
||||
OpDecorate %98 RelaxedPrecision
|
||||
OpDecorate %167 RelaxedPrecision
|
||||
OpDecorate %170 RelaxedPrecision
|
||||
OpDecorate %171 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
|
||||
%11 = OpVariable %_ptr_Uniform__UniformBuffer Uniform
|
||||
%void = OpTypeVoid
|
||||
%16 = OpTypeFunction %void
|
||||
%19 = OpTypeFunction %bool
|
||||
%v3float = OpTypeVector %float 3
|
||||
%mat2v3float = OpTypeMatrix %v3float 2
|
||||
%_ptr_Function_mat2v3float = OpTypePointer Function %mat2v3float
|
||||
%float_23 = OpConstant %float 23
|
||||
%float_0 = OpConstant %float 0
|
||||
%mat2v4float = OpTypeMatrix %v4float 2
|
||||
%_ptr_Function_mat2v4float = OpTypePointer Function %mat2v4float
|
||||
%float_24 = OpConstant %float 24
|
||||
%v2float = OpTypeVector %float 2
|
||||
%mat3v2float = OpTypeMatrix %v2float 3
|
||||
%_ptr_Function_mat3v2float = OpTypePointer Function %mat3v2float
|
||||
%float_32 = OpConstant %float 32
|
||||
%mat3v4float = OpTypeMatrix %v4float 3
|
||||
%_ptr_Function_mat3v4float = OpTypePointer Function %mat3v4float
|
||||
%float_34 = OpConstant %float 34
|
||||
%mat4v2float = OpTypeMatrix %v2float 4
|
||||
%_ptr_Function_mat4v2float = OpTypePointer Function %mat4v2float
|
||||
%float_42 = OpConstant %float 42
|
||||
%mat4v3float = OpTypeMatrix %v3float 4
|
||||
%_ptr_Function_mat4v3float = OpTypePointer Function %mat4v3float
|
||||
%float_44 = OpConstant %float 44
|
||||
%mat2v2float = OpTypeMatrix %v2float 2
|
||||
%_ptr_Function_mat2v2float = OpTypePointer Function %mat2v2float
|
||||
%mat3v3float = OpTypeMatrix %v3float 3
|
||||
%_ptr_Function_mat3v3float = OpTypePointer Function %mat3v3float
|
||||
%mat4v4float = OpTypeMatrix %v4float 4
|
||||
%_ptr_Function_mat4v4float = OpTypePointer Function %mat4v4float
|
||||
%true = OpConstantTrue %bool
|
||||
%100 = OpTypeFunction %v4float
|
||||
%false = OpConstantFalse %bool
|
||||
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
||||
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
|
||||
%int = OpTypeInt 32 1
|
||||
%int_0 = OpConstant %int 0
|
||||
%int_1 = OpConstant %int 1
|
||||
%_entrypoint_v = OpFunction %void None %16
|
||||
%17 = OpLabel
|
||||
%18 = OpFunctionCall %v4float %main
|
||||
OpStore %sk_FragColor %18
|
||||
OpReturn
|
||||
OpFunctionEnd
|
||||
%test_half_b = OpFunction %bool None %19
|
||||
%20 = OpLabel
|
||||
%m23 = OpVariable %_ptr_Function_mat2v3float Function
|
||||
%m24 = OpVariable %_ptr_Function_mat2v4float Function
|
||||
%m32 = OpVariable %_ptr_Function_mat3v2float Function
|
||||
%m34 = OpVariable %_ptr_Function_mat3v4float Function
|
||||
%m42 = OpVariable %_ptr_Function_mat4v2float Function
|
||||
%m43 = OpVariable %_ptr_Function_mat4v3float Function
|
||||
%m22 = OpVariable %_ptr_Function_mat2v2float Function
|
||||
%m33 = OpVariable %_ptr_Function_mat3v3float Function
|
||||
%m44 = OpVariable %_ptr_Function_mat4v4float Function
|
||||
%28 = OpCompositeConstruct %v3float %float_23 %float_0 %float_0
|
||||
%29 = OpCompositeConstruct %v3float %float_0 %float_23 %float_0
|
||||
%26 = OpCompositeConstruct %mat2v3float %28 %29
|
||||
OpStore %m23 %26
|
||||
%35 = OpCompositeConstruct %v4float %float_24 %float_0 %float_0 %float_0
|
||||
%36 = OpCompositeConstruct %v4float %float_0 %float_24 %float_0 %float_0
|
||||
%34 = OpCompositeConstruct %mat2v4float %35 %36
|
||||
OpStore %m24 %34
|
||||
%43 = OpCompositeConstruct %v2float %float_32 %float_0
|
||||
%44 = OpCompositeConstruct %v2float %float_0 %float_32
|
||||
%45 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%42 = OpCompositeConstruct %mat3v2float %43 %44 %45
|
||||
OpStore %m32 %42
|
||||
%51 = OpCompositeConstruct %v4float %float_34 %float_0 %float_0 %float_0
|
||||
%52 = OpCompositeConstruct %v4float %float_0 %float_34 %float_0 %float_0
|
||||
%53 = OpCompositeConstruct %v4float %float_0 %float_0 %float_34 %float_0
|
||||
%50 = OpCompositeConstruct %mat3v4float %51 %52 %53
|
||||
OpStore %m34 %50
|
||||
%59 = OpCompositeConstruct %v2float %float_42 %float_0
|
||||
%60 = OpCompositeConstruct %v2float %float_0 %float_42
|
||||
%61 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%62 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%58 = OpCompositeConstruct %mat4v2float %59 %60 %61 %62
|
||||
OpStore %m42 %58
|
||||
%68 = OpCompositeConstruct %v3float %float_44 %float_0 %float_0
|
||||
%69 = OpCompositeConstruct %v3float %float_0 %float_44 %float_0
|
||||
%70 = OpCompositeConstruct %v3float %float_0 %float_0 %float_44
|
||||
%71 = OpCompositeConstruct %v3float %float_0 %float_0 %float_0
|
||||
%67 = OpCompositeConstruct %mat4v3float %68 %69 %70 %71
|
||||
OpStore %m43 %67
|
||||
%75 = OpLoad %mat3v2float %m32
|
||||
%76 = OpLoad %mat2v3float %m23
|
||||
%77 = OpMatrixTimesMatrix %mat2v2float %75 %76
|
||||
OpStore %m22 %77
|
||||
%78 = OpLoad %mat2v2float %m22
|
||||
%79 = OpLoad %mat2v2float %m22
|
||||
%80 = OpMatrixTimesMatrix %mat2v2float %78 %79
|
||||
OpStore %m22 %80
|
||||
%84 = OpLoad %mat4v3float %m43
|
||||
%85 = OpLoad %mat3v4float %m34
|
||||
%86 = OpMatrixTimesMatrix %mat3v3float %84 %85
|
||||
OpStore %m33 %86
|
||||
%87 = OpLoad %mat3v3float %m33
|
||||
%88 = OpLoad %mat3v3float %m33
|
||||
%89 = OpMatrixTimesMatrix %mat3v3float %87 %88
|
||||
OpStore %m33 %89
|
||||
%93 = OpLoad %mat2v4float %m24
|
||||
%94 = OpLoad %mat4v2float %m42
|
||||
%95 = OpMatrixTimesMatrix %mat4v4float %93 %94
|
||||
OpStore %m44 %95
|
||||
%96 = OpLoad %mat4v4float %m44
|
||||
%97 = OpLoad %mat4v4float %m44
|
||||
%98 = OpMatrixTimesMatrix %mat4v4float %96 %97
|
||||
OpStore %m44 %98
|
||||
OpReturnValue %true
|
||||
OpFunctionEnd
|
||||
%main = OpFunction %v4float None %100
|
||||
%101 = OpLabel
|
||||
%_0_m23 = OpVariable %_ptr_Function_mat2v3float Function
|
||||
%_1_m24 = OpVariable %_ptr_Function_mat2v4float Function
|
||||
%_2_m32 = OpVariable %_ptr_Function_mat3v2float Function
|
||||
%_3_m34 = OpVariable %_ptr_Function_mat3v4float Function
|
||||
%_4_m42 = OpVariable %_ptr_Function_mat4v2float Function
|
||||
%_5_m43 = OpVariable %_ptr_Function_mat4v3float Function
|
||||
%_6_m22 = OpVariable %_ptr_Function_mat2v2float Function
|
||||
%_7_m33 = OpVariable %_ptr_Function_mat3v3float Function
|
||||
%_8_m44 = OpVariable %_ptr_Function_mat4v4float Function
|
||||
%158 = OpVariable %_ptr_Function_v4float Function
|
||||
%104 = OpCompositeConstruct %v3float %float_23 %float_0 %float_0
|
||||
%105 = OpCompositeConstruct %v3float %float_0 %float_23 %float_0
|
||||
%103 = OpCompositeConstruct %mat2v3float %104 %105
|
||||
OpStore %_0_m23 %103
|
||||
%108 = OpCompositeConstruct %v4float %float_24 %float_0 %float_0 %float_0
|
||||
%109 = OpCompositeConstruct %v4float %float_0 %float_24 %float_0 %float_0
|
||||
%107 = OpCompositeConstruct %mat2v4float %108 %109
|
||||
OpStore %_1_m24 %107
|
||||
%112 = OpCompositeConstruct %v2float %float_32 %float_0
|
||||
%113 = OpCompositeConstruct %v2float %float_0 %float_32
|
||||
%114 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%111 = OpCompositeConstruct %mat3v2float %112 %113 %114
|
||||
OpStore %_2_m32 %111
|
||||
%117 = OpCompositeConstruct %v4float %float_34 %float_0 %float_0 %float_0
|
||||
%118 = OpCompositeConstruct %v4float %float_0 %float_34 %float_0 %float_0
|
||||
%119 = OpCompositeConstruct %v4float %float_0 %float_0 %float_34 %float_0
|
||||
%116 = OpCompositeConstruct %mat3v4float %117 %118 %119
|
||||
OpStore %_3_m34 %116
|
||||
%122 = OpCompositeConstruct %v2float %float_42 %float_0
|
||||
%123 = OpCompositeConstruct %v2float %float_0 %float_42
|
||||
%124 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%125 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%121 = OpCompositeConstruct %mat4v2float %122 %123 %124 %125
|
||||
OpStore %_4_m42 %121
|
||||
%128 = OpCompositeConstruct %v3float %float_44 %float_0 %float_0
|
||||
%129 = OpCompositeConstruct %v3float %float_0 %float_44 %float_0
|
||||
%130 = OpCompositeConstruct %v3float %float_0 %float_0 %float_44
|
||||
%131 = OpCompositeConstruct %v3float %float_0 %float_0 %float_0
|
||||
%127 = OpCompositeConstruct %mat4v3float %128 %129 %130 %131
|
||||
OpStore %_5_m43 %127
|
||||
%133 = OpLoad %mat3v2float %_2_m32
|
||||
%134 = OpLoad %mat2v3float %_0_m23
|
||||
%135 = OpMatrixTimesMatrix %mat2v2float %133 %134
|
||||
OpStore %_6_m22 %135
|
||||
%136 = OpLoad %mat2v2float %_6_m22
|
||||
%137 = OpLoad %mat2v2float %_6_m22
|
||||
%138 = OpMatrixTimesMatrix %mat2v2float %136 %137
|
||||
OpStore %_6_m22 %138
|
||||
%140 = OpLoad %mat4v3float %_5_m43
|
||||
%141 = OpLoad %mat3v4float %_3_m34
|
||||
%142 = OpMatrixTimesMatrix %mat3v3float %140 %141
|
||||
OpStore %_7_m33 %142
|
||||
%143 = OpLoad %mat3v3float %_7_m33
|
||||
%144 = OpLoad %mat3v3float %_7_m33
|
||||
%145 = OpMatrixTimesMatrix %mat3v3float %143 %144
|
||||
OpStore %_7_m33 %145
|
||||
%147 = OpLoad %mat2v4float %_1_m24
|
||||
%148 = OpLoad %mat4v2float %_4_m42
|
||||
%149 = OpMatrixTimesMatrix %mat4v4float %147 %148
|
||||
OpStore %_8_m44 %149
|
||||
%150 = OpLoad %mat4v4float %_8_m44
|
||||
%151 = OpLoad %mat4v4float %_8_m44
|
||||
%152 = OpMatrixTimesMatrix %mat4v4float %150 %151
|
||||
OpStore %_8_m44 %152
|
||||
OpSelectionMerge %155 None
|
||||
OpBranchConditional %true %154 %155
|
||||
%154 = OpLabel
|
||||
%156 = OpFunctionCall %bool %test_half_b
|
||||
OpBranch %155
|
||||
%155 = OpLabel
|
||||
%157 = OpPhi %bool %false %101 %156 %154
|
||||
OpSelectionMerge %162 None
|
||||
OpBranchConditional %157 %160 %161
|
||||
%160 = OpLabel
|
||||
%163 = OpAccessChain %_ptr_Uniform_v4float %11 %int_0
|
||||
%167 = OpLoad %v4float %163
|
||||
OpStore %158 %167
|
||||
OpBranch %162
|
||||
%161 = OpLabel
|
||||
%168 = OpAccessChain %_ptr_Uniform_v4float %11 %int_1
|
||||
%170 = OpLoad %v4float %168
|
||||
OpStore %158 %170
|
||||
OpBranch %162
|
||||
%162 = OpLabel
|
||||
%171 = OpLoad %v4float %158
|
||||
OpReturnValue %171
|
||||
OpFunctionEnd
|
||||
|
@ -1,6 +1,221 @@
|
||||
### Compilation failed:
|
||||
|
||||
error: SPIR-V validation error: Invalid instruction word count: 0
|
||||
SPIR-V validation error: Invalid instruction word count: 0
|
||||
|
||||
1 error
|
||||
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 "colorGreen"
|
||||
OpMemberName %_UniformBuffer 1 "colorRed"
|
||||
OpName %_entrypoint_v "_entrypoint_v"
|
||||
OpName %main "main"
|
||||
OpName %result "result"
|
||||
OpName %g "g"
|
||||
OpName %h "h"
|
||||
OpName %i "i"
|
||||
OpName %j "j"
|
||||
OpName %k "k"
|
||||
OpName %l "l"
|
||||
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 %161 RelaxedPrecision
|
||||
OpDecorate %164 RelaxedPrecision
|
||||
OpDecorate %165 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
|
||||
%15 = OpTypeFunction %void
|
||||
%18 = OpTypeFunction %v4float
|
||||
%_ptr_Function_float = OpTypePointer Function %float
|
||||
%float_0 = OpConstant %float 0
|
||||
%v3float = OpTypeVector %float 3
|
||||
%mat3v3float = OpTypeMatrix %v3float 3
|
||||
%_ptr_Function_mat3v3float = OpTypePointer Function %mat3v3float
|
||||
%float_1 = OpConstant %float 1
|
||||
%mat2v3float = OpTypeMatrix %v3float 2
|
||||
%int = OpTypeInt 32 1
|
||||
%int_0 = OpConstant %int 0
|
||||
%_ptr_Function_v3float = OpTypePointer Function %v3float
|
||||
%v2float = OpTypeVector %float 2
|
||||
%mat3v2float = OpTypeMatrix %v2float 3
|
||||
%mat4v4float = OpTypeMatrix %v4float 4
|
||||
%_ptr_Function_mat4v4float = OpTypePointer Function %mat4v4float
|
||||
%mat4v2float = OpTypeMatrix %v2float 4
|
||||
%mat4v3float = OpTypeMatrix %v3float 4
|
||||
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
||||
%mat2v4float = OpTypeMatrix %v4float 2
|
||||
%mat3v4float = OpTypeMatrix %v4float 3
|
||||
%_ptr_Function_mat2v4float = OpTypePointer Function %mat2v4float
|
||||
%_ptr_Function_mat4v2float = OpTypePointer Function %mat4v2float
|
||||
%_ptr_Function_v2float = OpTypePointer Function %v2float
|
||||
%float_6 = OpConstant %float 6
|
||||
%_ptr_Uniform_v4float = OpTypePointer Uniform %v4float
|
||||
%int_1 = OpConstant %int 1
|
||||
%_entrypoint_v = OpFunction %void None %15
|
||||
%16 = OpLabel
|
||||
%17 = OpFunctionCall %v4float %main
|
||||
OpStore %sk_FragColor %17
|
||||
OpReturn
|
||||
OpFunctionEnd
|
||||
%main = OpFunction %v4float None %18
|
||||
%19 = OpLabel
|
||||
%result = OpVariable %_ptr_Function_float Function
|
||||
%g = OpVariable %_ptr_Function_mat3v3float Function
|
||||
%h = OpVariable %_ptr_Function_mat3v3float Function
|
||||
%i = OpVariable %_ptr_Function_mat4v4float Function
|
||||
%j = OpVariable %_ptr_Function_mat4v4float Function
|
||||
%k = OpVariable %_ptr_Function_mat2v4float Function
|
||||
%l = OpVariable %_ptr_Function_mat4v2float Function
|
||||
%155 = OpVariable %_ptr_Function_v4float Function
|
||||
OpStore %result %float_0
|
||||
%29 = OpCompositeConstruct %v3float %float_1 %float_0 %float_0
|
||||
%30 = OpCompositeConstruct %v3float %float_0 %float_1 %float_0
|
||||
%28 = OpCompositeConstruct %mat2v3float %29 %30
|
||||
%33 = OpCompositeExtract %v3float %28 0
|
||||
%34 = OpCompositeExtract %v3float %28 1
|
||||
%35 = OpCompositeConstruct %v3float %float_0 %float_0 %float_1
|
||||
%32 = OpCompositeConstruct %mat3v3float %33 %34 %35
|
||||
OpStore %g %32
|
||||
%36 = OpLoad %float %result
|
||||
%39 = OpAccessChain %_ptr_Function_v3float %g %int_0
|
||||
%41 = OpLoad %v3float %39
|
||||
%42 = OpCompositeExtract %float %41 0
|
||||
%43 = OpFAdd %float %36 %42
|
||||
OpStore %result %43
|
||||
%47 = OpCompositeConstruct %v2float %float_1 %float_0
|
||||
%48 = OpCompositeConstruct %v2float %float_0 %float_1
|
||||
%49 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%45 = OpCompositeConstruct %mat3v2float %47 %48 %49
|
||||
%52 = OpCompositeExtract %v2float %45 0
|
||||
%53 = OpCompositeConstruct %v3float %52 %float_0
|
||||
%54 = OpCompositeExtract %v2float %45 1
|
||||
%55 = OpCompositeConstruct %v3float %54 %float_0
|
||||
%56 = OpCompositeExtract %v2float %45 2
|
||||
%57 = OpCompositeConstruct %v3float %56 %float_1
|
||||
%51 = OpCompositeConstruct %mat3v3float %53 %55 %57
|
||||
OpStore %h %51
|
||||
%58 = OpLoad %float %result
|
||||
%59 = OpAccessChain %_ptr_Function_v3float %h %int_0
|
||||
%60 = OpLoad %v3float %59
|
||||
%61 = OpCompositeExtract %float %60 0
|
||||
%62 = OpFAdd %float %58 %61
|
||||
OpStore %result %62
|
||||
%67 = OpCompositeConstruct %v2float %float_1 %float_0
|
||||
%68 = OpCompositeConstruct %v2float %float_0 %float_1
|
||||
%69 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%70 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%66 = OpCompositeConstruct %mat4v2float %67 %68 %69 %70
|
||||
%73 = OpCompositeExtract %v2float %66 0
|
||||
%74 = OpCompositeConstruct %v3float %73 %float_0
|
||||
%75 = OpCompositeExtract %v2float %66 1
|
||||
%76 = OpCompositeConstruct %v3float %75 %float_0
|
||||
%77 = OpCompositeExtract %v2float %66 2
|
||||
%78 = OpCompositeConstruct %v3float %77 %float_1
|
||||
%79 = OpCompositeExtract %v2float %66 3
|
||||
%80 = OpCompositeConstruct %v3float %79 %float_0
|
||||
%72 = OpCompositeConstruct %mat4v3float %74 %76 %78 %80
|
||||
%83 = OpCompositeExtract %v3float %72 0
|
||||
%84 = OpCompositeConstruct %v4float %83 %float_0
|
||||
%85 = OpCompositeExtract %v3float %72 1
|
||||
%86 = OpCompositeConstruct %v4float %85 %float_0
|
||||
%87 = OpCompositeExtract %v3float %72 2
|
||||
%88 = OpCompositeConstruct %v4float %87 %float_0
|
||||
%89 = OpCompositeExtract %v3float %72 3
|
||||
%90 = OpCompositeConstruct %v4float %89 %float_1
|
||||
%82 = OpCompositeConstruct %mat4v4float %84 %86 %88 %90
|
||||
OpStore %i %82
|
||||
%91 = OpLoad %float %result
|
||||
%92 = OpAccessChain %_ptr_Function_v4float %i %int_0
|
||||
%94 = OpLoad %v4float %92
|
||||
%95 = OpCompositeExtract %float %94 0
|
||||
%96 = OpFAdd %float %91 %95
|
||||
OpStore %result %96
|
||||
%99 = OpCompositeConstruct %v4float %float_1 %float_0 %float_0 %float_0
|
||||
%100 = OpCompositeConstruct %v4float %float_0 %float_1 %float_0 %float_0
|
||||
%98 = OpCompositeConstruct %mat2v4float %99 %100
|
||||
%103 = OpCompositeExtract %v4float %98 0
|
||||
%104 = OpCompositeExtract %v4float %98 1
|
||||
%105 = OpCompositeConstruct %v4float %float_0 %float_0 %float_1 %float_0
|
||||
%102 = OpCompositeConstruct %mat3v4float %103 %104 %105
|
||||
%108 = OpCompositeExtract %v4float %102 0
|
||||
%109 = OpCompositeExtract %v4float %102 1
|
||||
%110 = OpCompositeExtract %v4float %102 2
|
||||
%111 = OpCompositeConstruct %v4float %float_0 %float_0 %float_0 %float_1
|
||||
%107 = OpCompositeConstruct %mat4v4float %108 %109 %110 %111
|
||||
OpStore %j %107
|
||||
%112 = OpLoad %float %result
|
||||
%113 = OpAccessChain %_ptr_Function_v4float %j %int_0
|
||||
%114 = OpLoad %v4float %113
|
||||
%115 = OpCompositeExtract %float %114 0
|
||||
%116 = OpFAdd %float %112 %115
|
||||
OpStore %result %116
|
||||
%120 = OpCompositeConstruct %v2float %float_1 %float_0
|
||||
%121 = OpCompositeConstruct %v2float %float_0 %float_1
|
||||
%122 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%123 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%119 = OpCompositeConstruct %mat4v2float %120 %121 %122 %123
|
||||
%125 = OpCompositeExtract %v2float %119 0
|
||||
%126 = OpCompositeConstruct %v4float %125 %float_0 %float_0
|
||||
%127 = OpCompositeExtract %v2float %119 1
|
||||
%128 = OpCompositeConstruct %v4float %127 %float_0 %float_0
|
||||
%124 = OpCompositeConstruct %mat2v4float %126 %128
|
||||
OpStore %k %124
|
||||
%129 = OpLoad %float %result
|
||||
%130 = OpAccessChain %_ptr_Function_v4float %k %int_0
|
||||
%131 = OpLoad %v4float %130
|
||||
%132 = OpCompositeExtract %float %131 0
|
||||
%133 = OpFAdd %float %129 %132
|
||||
OpStore %result %133
|
||||
%137 = OpCompositeConstruct %v4float %float_1 %float_0 %float_0 %float_0
|
||||
%138 = OpCompositeConstruct %v4float %float_0 %float_1 %float_0 %float_0
|
||||
%136 = OpCompositeConstruct %mat2v4float %137 %138
|
||||
%140 = OpCompositeExtract %v4float %136 0
|
||||
%141 = OpVectorShuffle %v2float %140 %140 0 1
|
||||
%142 = OpCompositeExtract %v4float %136 1
|
||||
%143 = OpVectorShuffle %v2float %142 %142 0 1
|
||||
%144 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%145 = OpCompositeConstruct %v2float %float_0 %float_0
|
||||
%139 = OpCompositeConstruct %mat4v2float %141 %143 %144 %145
|
||||
OpStore %l %139
|
||||
%146 = OpLoad %float %result
|
||||
%147 = OpAccessChain %_ptr_Function_v2float %l %int_0
|
||||
%149 = OpLoad %v2float %147
|
||||
%150 = OpCompositeExtract %float %149 0
|
||||
%151 = OpFAdd %float %146 %150
|
||||
OpStore %result %151
|
||||
%152 = OpLoad %float %result
|
||||
%154 = OpFOrdEqual %bool %152 %float_6
|
||||
OpSelectionMerge %158 None
|
||||
OpBranchConditional %154 %156 %157
|
||||
%156 = OpLabel
|
||||
%159 = OpAccessChain %_ptr_Uniform_v4float %10 %int_0
|
||||
%161 = OpLoad %v4float %159
|
||||
OpStore %155 %161
|
||||
OpBranch %158
|
||||
%157 = OpLabel
|
||||
%162 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
|
||||
%164 = OpLoad %v4float %162
|
||||
OpStore %155 %164
|
||||
OpBranch %158
|
||||
%158 = OpLabel
|
||||
%165 = OpLoad %v4float %155
|
||||
OpReturnValue %165
|
||||
OpFunctionEnd
|
||||
|
Loading…
Reference in New Issue
Block a user