skia2/tests/sksl/spirv/UnusedInterfaceBlock.asm.frag
John Stiles d0234ba3bf Move backend-specific error tests out of errors/ test folder.
These tests only generate an error in the SPIR-V or GLSL backends. We
will soon enforce that everything in errors/ must actually fail to
compile.

Change-Id: Ic54707eb3bfa19287b4ed52335066fc0fbf19ec1
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/505397
Auto-Submit: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
2022-02-08 14:18:46 +00:00

33 lines
855 B
JavaScript

### Compilation failed:
error: SPIR-V validation error: Member index 0 is missing a location assignment
%s = OpTypeStruct %int
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %main "main" %3 %sk_Clockwise
OpExecutionMode %main OriginUpperLeft
OpName %s "s"
OpMemberName %s 0 "I"
OpName %sk_Clockwise "sk_Clockwise"
OpName %main "main"
OpMemberDecorate %s 0 Offset 0
OpDecorate %s Block
OpDecorate %sk_Clockwise BuiltIn FrontFacing
%int = OpTypeInt 32 1
%s = OpTypeStruct %int
%_ptr_Input_s = OpTypePointer Input %s
%3 = OpVariable %_ptr_Input_s Input
%bool = OpTypeBool
%_ptr_Input_bool = OpTypePointer Input %bool
%sk_Clockwise = OpVariable %_ptr_Input_bool Input
%void = OpTypeVoid
%11 = OpTypeFunction %void
%main = OpFunction %void None %11
%12 = OpLabel
OpReturn
OpFunctionEnd
1 error