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>
54 lines
2.1 KiB
Plaintext
54 lines
2.1 KiB
Plaintext
; SPIR-V
|
|
; Version: 1.3
|
|
; Generator: Google Tint Compiler; 0
|
|
; Bound: 30
|
|
; 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
|
|
%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
|
|
%_ptr_Private__arr_uint_uint_1 = OpTypePointer Private %_arr_uint_uint_1
|
|
%8 = OpConstantNull %_arr_uint_uint_1
|
|
%x_1 = OpVariable %_ptr_Private__arr_uint_uint_1 Private %8
|
|
%void = OpTypeVoid
|
|
%9 = OpTypeFunction %void
|
|
%int = OpTypeInt 32 1
|
|
%int_0 = OpConstant %int 0
|
|
%_ptr_Private_uint = OpTypePointer Private %uint
|
|
%18 = OpTypeFunction %void %uint
|
|
%_ptr_Input_uint = OpTypePointer Input %uint
|
|
%main_1 = OpFunction %void None %9
|
|
%12 = OpLabel
|
|
%16 = OpAccessChain %_ptr_Private_uint %x_1 %int_0
|
|
%17 = OpLoad %uint %16
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%main_inner = OpFunction %void None %18
|
|
%x_1_param = OpFunctionParameter %uint
|
|
%21 = OpLabel
|
|
%22 = OpAccessChain %_ptr_Private_uint %x_1 %int_0
|
|
OpStore %22 %x_1_param
|
|
%23 = OpFunctionCall %void %main_1
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%main = OpFunction %void None %9
|
|
%25 = OpLabel
|
|
%28 = OpAccessChain %_ptr_Input_uint %x_1_param_1 %int_0
|
|
%29 = OpLoad %uint %28
|
|
%26 = OpFunctionCall %void %main_inner %29
|
|
OpReturn
|
|
OpFunctionEnd
|