• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1               OpCapability Shader
2               OpMemoryModel Logical GLSL450
3               OpEntryPoint Fragment %4 "main" %9 %11
4               OpExecutionMode %4 OriginUpperLeft
5               OpSource ESSL 310
6               OpName %4 "main"
7               OpName %9 "color"
8               OpName %11 "v"
9               OpDecorate %9 RelaxedPrecision
10               OpDecorate %9 Location 0
11               OpDecorate %11 RelaxedPrecision
12               OpDecorate %11 Location 0
13               OpDecorate %12 RelaxedPrecision
14               OpDecorate %13 RelaxedPrecision
15          %2 = OpTypeVoid
16          %3 = OpTypeFunction %2
17          %6 = OpTypeFloat 32
18          %7 = OpTypeVector %6 4
19          %8 = OpTypePointer Output %7
20          %9 = OpVariable %8 Output
21         %10 = OpTypePointer Input %6
22         %11 = OpVariable %10 Input
23          %4 = OpFunction %2 None %3
24          %5 = OpLabel
25         %12 = OpLoad %6 %11
26         %13 = OpCompositeConstruct %7 %12 %12 %12 %12
27               OpStore %9 %13
28               OpReturn
29               OpFunctionEnd
30
31