44 lines
1.6 KiB
Plaintext
44 lines
1.6 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 %in_block "in_block"
|
|
OpMemberName %in_block 0 "inner"
|
|
OpName %S "S"
|
|
OpMemberName %S 0 "f"
|
|
OpName %in "in"
|
|
OpName %out "out"
|
|
OpName %main "main"
|
|
OpDecorate %in_block Block
|
|
OpMemberDecorate %in_block 0 Offset 0
|
|
OpMemberDecorate %S 0 Offset 0
|
|
OpDecorate %in NonWritable
|
|
OpDecorate %in DescriptorSet 0
|
|
OpDecorate %in Binding 0
|
|
OpDecorate %out DescriptorSet 0
|
|
OpDecorate %out Binding 1
|
|
%float = OpTypeFloat 32
|
|
%S = OpTypeStruct %float
|
|
%in_block = OpTypeStruct %S
|
|
%_ptr_StorageBuffer_in_block = OpTypePointer StorageBuffer %in_block
|
|
%in = OpVariable %_ptr_StorageBuffer_in_block StorageBuffer
|
|
%out = OpVariable %_ptr_StorageBuffer_in_block StorageBuffer
|
|
%void = OpTypeVoid
|
|
%7 = OpTypeFunction %void
|
|
%uint = OpTypeInt 32 0
|
|
%uint_0 = OpConstant %uint 0
|
|
%_ptr_StorageBuffer_S = OpTypePointer StorageBuffer %S
|
|
%main = OpFunction %void None %7
|
|
%10 = OpLabel
|
|
%14 = OpAccessChain %_ptr_StorageBuffer_S %out %uint_0
|
|
%15 = OpAccessChain %_ptr_StorageBuffer_S %in %uint_0
|
|
%16 = OpLoad %S %15
|
|
OpStore %14 %16
|
|
OpReturn
|
|
OpFunctionEnd
|