-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathvec3_f32.stderr
More file actions
38 lines (38 loc) · 945 Bytes
/
vec3_f32.stderr
File metadata and controls
38 lines (38 loc) · 945 Bytes
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
OpCapability Shader
OpMemoryModel Logical Simple
OpEntryPoint Vertex %1 "main" %2 %3
OpName %5 "Vec3AndFloat"
OpMemberName %5 0 "a"
OpMemberName %5 1 "b"
OpName %6 "Vec3AndFloat"
OpMemberName %6 0 "a"
OpMemberName %6 1 "b"
OpName %2 "out1"
OpName %3 "out2"
OpMemberDecorate %6 0 Offset 0
OpMemberDecorate %6 1 Offset 12
OpDecorate %2 Location 0
OpDecorate %3 Location 2
%7 = OpTypeFloat 32
%8 = OpTypeVector %7 3
%5 = OpTypeStruct %8 %7
%9 = OpTypePointer Output %5
%10 = OpTypePointer Output %7
%11 = OpTypeVoid
%12 = OpTypeFunction %11
%6 = OpTypeStruct %8 %7
%13 = OpConstant %7 0
%14 = OpConstantComposite %8 %13 %13 %13
%2 = OpVariable %9 Output
%3 = OpVariable %10 Output
%1 = OpFunction %11 None %12
%15 = OpLabel
%16 = OpCompositeConstruct %6 %14 %13
%17 = OpCompositeExtract %8 %16 0
%18 = OpCompositeExtract %7 %16 1
%19 = OpCompositeConstruct %5 %17 %18
OpStore %2 %19
OpStore %3 %13
OpNoLine
OpReturn
OpFunctionEnd