PixelBullet
0.0.1
A C++ game engine
Loading...
Searching...
No Matches
engine
include
pixelbullet
graphics
graphics_config.h
1
#pragma once
2
3
#include "pixelbullet/core/version.h"
4
#include "pixelbullet/graphics/gpu_selection.h"
5
6
#include <string>
7
8
namespace
pixelbullet
9
{
10
struct
GraphicsApplicationInfo
11
{
12
std::string client_name =
"PixelBullet Game"
;
13
Version
client_version{ 0, 0, 1 };
14
std::string engine_name =
"PixelBullet"
;
15
Version
engine_version{ 0, 0, 0 };
16
};
17
18
struct
GraphicsConfig
19
{
20
GraphicsApplicationInfo
application;
21
GraphicsDeviceSelection
device_selection;
22
};
23
24
struct
GraphicsDeviceDiagnosticsRequest
25
{
26
GraphicsApplicationInfo
application;
27
GraphicsDeviceSelection
device_selection;
28
};
29
}
// namespace pixelbullet
pixelbullet::GraphicsApplicationInfo
Definition
graphics_config.h:11
pixelbullet::GraphicsConfig
Definition
graphics_config.h:19
pixelbullet::GraphicsDeviceDiagnosticsRequest
Definition
graphics_config.h:25
pixelbullet::GraphicsDeviceSelection
Definition
gpu_selection.h:18
pixelbullet::Version
Definition
version.h:10
Generated by
1.16.1