-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsharpconfig.hpp
More file actions
42 lines (32 loc) · 863 Bytes
/
Copy pathsharpconfig.hpp
File metadata and controls
42 lines (32 loc) · 863 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
39
40
41
42
#pragma once
// Graphics API Settings
#define SHARPGUI_INCLUDE_DX9 1
#define SHARPGUI_INCLUDE_DX10 1
#define SHARPGUI_INCLUDE_DX11 1
#define SHARPGUI_INCLUDE_DX12 1
#define SHARPGUI_INCLUDE_OVERLAY 1
#define SHARPGUI_INCLUDE_OPENGL 1
// Console settings
#define SHARPGUI_DISABLE_CONSOLE 0
// If enabled this will cause the console to open when you initialize SharpGUI
// otherwise it will only be opened when an error occurs
#if _DEBUG
#define SHARPGUI_AUTO_OPEN_CONSOLE 1
#else
#define SHARPGUI_AUTO_OPEN_CONSOLE 0
#endif
#if SHARPGUI_INCLUDE_DX9
#define KIERO_INCLUDE_D3D9 1
#endif
#if SHARPGUI_INCLUDE_DX10
#define KIERO_INCLUDE_D3D10 1
#endif
#if SHARPGUI_INCLUDE_DX11
#define KIERO_INCLUDE_D3D11 1
#endif
#if SHARPGUI_INCLUDE_DX12
#define KIERO_INCLUDE_D3D12 1
#endif
#if SHARPGUI_INCLUDE_OPENGL
#define KIERO_INCLUDE_OPENGL 1
#endif