blob: e3998175fb19739edc754f15c5b85a1e67a428ba [file] [log] [blame]
; SPIR-V
; Version: 1.3
; Generator: Google Tint Compiler; 0
; Bound: 20
; Schema: 0
OpCapability Shader
OpMemoryModel Logical GLSL450
OpEntryPoint GLCompute %f "f"
OpExecutionMode %f LocalSize 1 1 1
OpName %out_block "out_block"
OpMemberName %out_block 0 "inner"
OpName %out "out"
OpName %f "f"
OpName %m "m"
OpDecorate %out_block Block
OpMemberDecorate %out_block 0 Offset 0
OpMemberDecorate %out_block 0 ColMajor
OpMemberDecorate %out_block 0 MatrixStride 8
OpDecorate %out DescriptorSet 0
OpDecorate %out Binding 0
%float = OpTypeFloat 32
%v2float = OpTypeVector %float 2
%mat4v2float = OpTypeMatrix %v2float 4
%out_block = OpTypeStruct %mat4v2float
%_ptr_StorageBuffer_out_block = OpTypePointer StorageBuffer %out_block
%out = OpVariable %_ptr_StorageBuffer_out_block StorageBuffer
%void = OpTypeVoid
%7 = OpTypeFunction %void
%11 = OpConstantNull %mat4v2float
%_ptr_Function_mat4v2float = OpTypePointer Function %mat4v2float
%uint = OpTypeInt 32 0
%uint_0 = OpConstant %uint 0
%_ptr_StorageBuffer_mat4v2float = OpTypePointer StorageBuffer %mat4v2float
%f = OpFunction %void None %7
%10 = OpLabel
%m = OpVariable %_ptr_Function_mat4v2float Function %11
OpStore %m %11
%17 = OpAccessChain %_ptr_StorageBuffer_mat4v2float %out %uint_0
%19 = OpLoad %mat4v2float %m
OpStore %17 %19
OpReturn
OpFunctionEnd