-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathbuffer_uniform.stderr
More file actions
41 lines (41 loc) · 1.03 KB
/
buffer_uniform.stderr
File metadata and controls
41 lines (41 loc) · 1.03 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
OpCapability Shader
OpCapability StorageBufferArrayDynamicIndexing
OpCapability RuntimeDescriptorArray
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
%9 = OpTypeInt 32 0
%10 = OpTypePointer Input %9
%11 = OpTypeFloat 32
%12 = OpTypeVector %11 4
%8 = OpTypeStruct %12
%13 = OpTypeRuntimeArray %8
%14 = OpTypePointer StorageBuffer %13
%15 = OpTypePointer Output %12
%16 = OpTypeVoid
%17 = OpTypeFunction %16
%2 = OpVariable %10 Input
%18 = OpTypePointer StorageBuffer %8
%3 = OpVariable %14 StorageBuffer
%19 = OpTypePointer StorageBuffer %12
%20 = OpConstant %9 0
%4 = OpVariable %15 Output
%1 = OpFunction %16 None %17
%21 = OpLabel
%22 = OpLoad %9 %2
%23 = OpAccessChain %18 %3 %22
%24 = OpAccessChain %19 %23 %20
%25 = OpLoad %12 %24
OpStore %4 %25
OpNoLine
OpReturn
OpFunctionEnd