mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-14 03:11:29 +00:00
The refactored CanonicalizeEntryPointIO transform makes it much easier to handle SPIR-V style IO as well, and doing this removes a lot of duplicated code. Remove all of the SPIR-V transform code for shader IO and vertex point size. Bug: tint:920 Change-Id: Id1b97517619b4d2fd09b45d5aee848259f3dfa77 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/60840 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: James Price <jrprice@google.com> Auto-Submit: James Price <jrprice@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
57 lines
2.2 KiB
Plaintext
57 lines
2.2 KiB
Plaintext
; SPIR-V
|
|
; Version: 1.3
|
|
; Generator: Google Tint Compiler; 0
|
|
; Bound: 32
|
|
; Schema: 0
|
|
OpCapability Shader
|
|
OpMemoryModel Logical GLSL450
|
|
OpEntryPoint Fragment %main "main" %x_1_param_1
|
|
OpExecutionMode %main OriginUpperLeft
|
|
OpName %x_1_param_1 "x_1_param_1"
|
|
OpName %x_1 "x_1"
|
|
OpName %main_1 "main_1"
|
|
OpName %main_inner "main_inner"
|
|
OpName %x_1_param "x_1_param"
|
|
OpName %main "main"
|
|
OpDecorate %_arr_uint_uint_1 ArrayStride 4
|
|
OpDecorate %x_1_param_1 BuiltIn SampleMask
|
|
OpDecorate %_arr_int_uint_1 ArrayStride 4
|
|
%uint = OpTypeInt 32 0
|
|
%uint_1 = OpConstant %uint 1
|
|
%_arr_uint_uint_1 = OpTypeArray %uint %uint_1
|
|
%_ptr_Input__arr_uint_uint_1 = OpTypePointer Input %_arr_uint_uint_1
|
|
%x_1_param_1 = OpVariable %_ptr_Input__arr_uint_uint_1 Input
|
|
%int = OpTypeInt 32 1
|
|
%_arr_int_uint_1 = OpTypeArray %int %uint_1
|
|
%_ptr_Private__arr_int_uint_1 = OpTypePointer Private %_arr_int_uint_1
|
|
%10 = OpConstantNull %_arr_int_uint_1
|
|
%x_1 = OpVariable %_ptr_Private__arr_int_uint_1 Private %10
|
|
%void = OpTypeVoid
|
|
%11 = OpTypeFunction %void
|
|
%int_0 = OpConstant %int 0
|
|
%_ptr_Private_int = OpTypePointer Private %int
|
|
%19 = OpTypeFunction %void %uint
|
|
%_ptr_Input_uint = OpTypePointer Input %uint
|
|
%main_1 = OpFunction %void None %11
|
|
%14 = OpLabel
|
|
%17 = OpAccessChain %_ptr_Private_int %x_1 %int_0
|
|
%18 = OpLoad %int %17
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%main_inner = OpFunction %void None %19
|
|
%x_1_param = OpFunctionParameter %uint
|
|
%22 = OpLabel
|
|
%23 = OpAccessChain %_ptr_Private_int %x_1 %int_0
|
|
%24 = OpBitcast %int %x_1_param
|
|
OpStore %23 %24
|
|
%25 = OpFunctionCall %void %main_1
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%main = OpFunction %void None %11
|
|
%27 = OpLabel
|
|
%30 = OpAccessChain %_ptr_Input_uint %x_1_param_1 %int_0
|
|
%31 = OpLoad %uint %30
|
|
%28 = OpFunctionCall %void %main_inner %31
|
|
OpReturn
|
|
OpFunctionEnd
|