LeviLamina
Loading...
Searching...
No Matches
Context.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bgfx {
6
7struct Context {
8public:
9 // Context inner types declare
10 // clang-format off
12 struct ShaderRef;
13 struct ProgramRef;
14 struct UniformRef;
15 struct TextureRef;
16 struct ShaderBufferRef;
17 struct FrameBufferRef;
18 // clang-format on
19
20 // Context inner types define
22
23 struct ShaderRef {};
24
25 struct ProgramRef {};
26
27 struct UniformRef {};
28
29 struct TextureRef {};
30
31 struct ShaderBufferRef {};
32
34 public:
35 // FrameBufferRef inner types define
36 union un {};
37 };
38};
39
40} // namespace bgfx
Definition Context.h:33
Definition Context.h:25
Definition Context.h:31
Definition Context.h:23
Definition Context.h:29
Definition Context.h:27
Definition Context.h:36