-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathbuffer.stderr
More file actions
44 lines (44 loc) · 1.14 KB
/
buffer.stderr
File metadata and controls
44 lines (44 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
OpCapability Shader
OpCapability StorageBufferArrayDynamicIndexing
OpCapability ShaderNonUniform
OpCapability RuntimeDescriptorArray
OpCapability StorageBufferArrayNonUniformIndexing
OpMemoryModel Logical Simple
OpEntryPoint Vertex %1 "main" %2 %3 %4
OpName %2 "index"
OpName %3 "buffers"
OpName %4 "out"
OpDecorate %8 Block
OpMemberDecorate %8 0 Offset 0
OpDecorate %2 Location 0
OpDecorate %3 NonWritable
OpDecorate %3 Binding 0
OpDecorate %3 DescriptorSet 0
OpDecorate %4 Location 0
OpDecorate %9 NonUniform
%10 = OpTypeInt 32 0
%11 = OpTypePointer Input %10
%12 = OpTypeFloat 32
%13 = OpTypeVector %12 4
%8 = OpTypeStruct %13
%14 = OpTypeRuntimeArray %8
%15 = OpTypePointer StorageBuffer %14
%16 = OpTypePointer Output %13
%17 = OpTypeVoid
%18 = OpTypeFunction %17
%2 = OpVariable %11 Input
%19 = OpTypePointer StorageBuffer %8
%3 = OpVariable %15 StorageBuffer
%20 = OpTypePointer StorageBuffer %13
%21 = OpConstant %10 0
%4 = OpVariable %16 Output
%1 = OpFunction %17 None %18
%22 = OpLabel
%23 = OpLoad %10 %2
%9 = OpAccessChain %19 %3 %23
%24 = OpAccessChain %20 %9 %21
%25 = OpLoad %13 %24
OpStore %4 %25
OpNoLine
OpReturn
OpFunctionEnd