blob: ab2e816aeabec280cdcb200742c6fbe2f92b1321 (
plain)
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
|
result code = 0
standard error = {
}
standard output = {
; SPIR-V
; Version: 1.5
; Generator: Khronos; 0
; Bound: 5
; Schema: 0
OpCapability Shader
OpMemoryModel Logical GLSL450
OpEntryPoint GLCompute %computeMain "main"
OpExecutionMode %computeMain LocalSize 4 1 1
; Debug Information
OpName %computeMain "computeMain" ; id %2
; Types, variables and constants
%void = OpTypeVoid
%3 = OpTypeFunction %void
; Function computeMain
%computeMain = OpFunction %void None %3
%4 = OpLabel
OpReturn
OpFunctionEnd
}
|