mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 06:03:34 +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>
58 lines
2.3 KiB
Plaintext
58 lines
2.3 KiB
Plaintext
intrinsics/gen/modf/e38ae6.wgsl:29:18 warning: use of deprecated intrinsic
|
|
var res: f32 = modf(1.0, &arg_1);
|
|
^^^^
|
|
|
|
; SPIR-V
|
|
; Version: 1.3
|
|
; Generator: Google Tint Compiler; 0
|
|
; Bound: 30
|
|
; Schema: 0
|
|
OpCapability Shader
|
|
%12 = OpExtInstImport "GLSL.std.450"
|
|
OpMemoryModel Logical GLSL450
|
|
OpEntryPoint GLCompute %compute_main "compute_main" %local_invocation_index_1
|
|
OpExecutionMode %compute_main LocalSize 1 1 1
|
|
OpName %local_invocation_index_1 "local_invocation_index_1"
|
|
OpName %arg_1 "arg_1"
|
|
OpName %modf_e38ae6 "modf_e38ae6"
|
|
OpName %res "res"
|
|
OpName %compute_main_inner "compute_main_inner"
|
|
OpName %local_invocation_index "local_invocation_index"
|
|
OpName %compute_main "compute_main"
|
|
OpDecorate %local_invocation_index_1 BuiltIn LocalInvocationIndex
|
|
%uint = OpTypeInt 32 0
|
|
%_ptr_Input_uint = OpTypePointer Input %uint
|
|
%local_invocation_index_1 = OpVariable %_ptr_Input_uint Input
|
|
%float = OpTypeFloat 32
|
|
%_ptr_Workgroup_float = OpTypePointer Workgroup %float
|
|
%arg_1 = OpVariable %_ptr_Workgroup_float Workgroup
|
|
%void = OpTypeVoid
|
|
%7 = OpTypeFunction %void
|
|
%float_1 = OpConstant %float 1
|
|
%_ptr_Function_float = OpTypePointer Function %float
|
|
%17 = OpConstantNull %float
|
|
%18 = OpTypeFunction %void %uint
|
|
%uint_2 = OpConstant %uint 2
|
|
%uint_264 = OpConstant %uint 264
|
|
%modf_e38ae6 = OpFunction %void None %7
|
|
%10 = OpLabel
|
|
%res = OpVariable %_ptr_Function_float Function %17
|
|
%11 = OpExtInst %float %12 Modf %float_1 %arg_1
|
|
OpStore %res %11
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%compute_main_inner = OpFunction %void None %18
|
|
%local_invocation_index = OpFunctionParameter %uint
|
|
%21 = OpLabel
|
|
OpStore %arg_1 %17
|
|
OpControlBarrier %uint_2 %uint_2 %uint_264
|
|
%25 = OpFunctionCall %void %modf_e38ae6
|
|
OpReturn
|
|
OpFunctionEnd
|
|
%compute_main = OpFunction %void None %7
|
|
%27 = OpLabel
|
|
%29 = OpLoad %uint %local_invocation_index_1
|
|
%28 = OpFunctionCall %void %compute_main_inner %29
|
|
OpReturn
|
|
OpFunctionEnd
|