mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-16 04:11:25 +00:00
Enables the 'chromium_experimental_full_ptr_parameters' extension to allow passing of uniform, storage and workgroup address-spaced pointers as parameters, as well as pointers into sub-objects. Bug: tint:1758 Change-Id: I8c85e6104ef4f2b9a177dec2857b1bf7f5148212 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/103860 Commit-Queue: Ben Clayton <bclayton@google.com> Kokoro: Ben Clayton <bclayton@google.com> Reviewed-by: James Price <jrprice@google.com>
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
; SPIR-V
|
|
; Version: 1.3
|
|
; Generator: Google Tint Compiler; 0
|
|
; Bound: 17
|
|
; Schema: 0
|
|
OpCapability Shader
|
|
OpMemoryModel Logical GLSL450
|
|
OpEntryPoint GLCompute %main "main"
|
|
OpExecutionMode %main LocalSize 1 1 1
|
|
OpName %func "func"
|
|
OpName %pointer "pointer"
|
|
OpName %main "main"
|
|
OpName %F "F"
|
|
%int = OpTypeInt 32 1
|
|
%_ptr_Function_int = OpTypePointer Function %int
|
|
%1 = OpTypeFunction %int %_ptr_Function_int
|
|
%void = OpTypeVoid
|
|
%9 = OpTypeFunction %void
|
|
%14 = OpConstantNull %int
|
|
%func = OpFunction %int None %1
|
|
%pointer = OpFunctionParameter %_ptr_Function_int
|
|
%6 = OpLabel
|
|
%8 = OpLoad %int %pointer
|
|
OpReturnValue %8
|
|
OpFunctionEnd
|
|
%main = OpFunction %void None %9
|
|
%12 = OpLabel
|
|
%F = OpVariable %_ptr_Function_int Function %14
|
|
%15 = OpFunctionCall %int %func %F
|
|
OpReturn
|
|
OpFunctionEnd
|