3c7298922f
Change-Id: Ib9117dbd1bcd2c3581fba02416d9eabda1dfc6dd Reviewed-on: https://skia-review.googlesource.com/c/skia/+/341458 Commit-Queue: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: Brian Osman <brianosman@google.com> Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: Ethan Nicholas <ethannicholas@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
65 lines
2.3 KiB
JavaScript
65 lines
2.3 KiB
JavaScript
### Compilation failed:
|
|
|
|
error: SPIR-V validation error: UniformConstant id '10' is missing DescriptorSet decoration.
|
|
From Vulkan spec, section 14.5.2:
|
|
These variables must have DescriptorSet and Binding decorations specified
|
|
%test2D = OpVariable %_ptr_UniformConstant_12 UniformConstant
|
|
|
|
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 %test2D "test2D"
|
|
OpName %test2DRect "test2DRect"
|
|
OpName %main "main"
|
|
OpDecorate %sk_FragColor RelaxedPrecision
|
|
OpDecorate %sk_FragColor Location 0
|
|
OpDecorate %sk_FragColor Index 0
|
|
OpDecorate %sk_Clockwise RelaxedPrecision
|
|
OpDecorate %sk_Clockwise BuiltIn FrontFacing
|
|
OpDecorate %test2D RelaxedPrecision
|
|
OpDecorate %test2D Binding 0
|
|
OpDecorate %test2DRect RelaxedPrecision
|
|
OpDecorate %test2DRect Binding 1
|
|
OpDecorate %19 RelaxedPrecision
|
|
OpDecorate %24 RelaxedPrecision
|
|
OpDecorate %27 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
|
|
%13 = OpTypeImage %float 2D 0 0 0 1 Unknown
|
|
%12 = OpTypeSampledImage %13
|
|
%_ptr_UniformConstant_12 = OpTypePointer UniformConstant %12
|
|
%test2D = OpVariable %_ptr_UniformConstant_12 UniformConstant
|
|
%test2DRect = OpVariable %_ptr_UniformConstant_12 UniformConstant
|
|
%void = OpTypeVoid
|
|
%16 = OpTypeFunction %void
|
|
%float_0_5 = OpConstant %float 0.5
|
|
%v2float = OpTypeVector %float 2
|
|
%20 = OpConstantComposite %v2float %float_0_5 %float_0_5
|
|
%25 = OpConstantComposite %v2float %float_0_5 %float_0_5
|
|
%v3float = OpTypeVector %float 3
|
|
%28 = OpConstantComposite %v3float %float_0_5 %float_0_5 %float_0_5
|
|
%main = OpFunction %void None %16
|
|
%17 = OpLabel
|
|
%19 = OpLoad %12 %test2D
|
|
%18 = OpImageSampleImplicitLod %v4float %19 %20
|
|
OpStore %sk_FragColor %18
|
|
%24 = OpLoad %12 %test2DRect
|
|
%23 = OpImageSampleImplicitLod %v4float %24 %25
|
|
OpStore %sk_FragColor %23
|
|
%27 = OpLoad %12 %test2DRect
|
|
%26 = OpImageSampleProjImplicitLod %v4float %27 %28
|
|
OpStore %sk_FragColor %26
|
|
OpReturn
|
|
OpFunctionEnd
|
|
|
|
1 error
|