LeviLamina
Loading...
Searching...
No Matches
ShaderVK.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bgfx::vk13 {
6
7struct ShaderVK {
8public:
9 // ShaderVK inner types declare
10 // clang-format off
11 struct BindInfo;
12 struct BindType;
13 // clang-format on
14
15 // ShaderVK inner types define
16 struct BindInfo {};
17
18 struct BindType {
19 public:
20 // BindType inner types define
21 enum class Enum : int {};
22 };
23};
24
25} // namespace bgfx::vk13
Definition ShaderVK.h:16
Definition ShaderVK.h:18
Definition ShaderVK.h:7