Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
Context.h
Go to the documentation of this file.
1
#ifndef INCLUDE_CORE_CONTEXT_H_
2
#define INCLUDE_CORE_CONTEXT_H_
3
4
#include "
Common/pch.h
"
5
6
#include "
Core/EventHandler.h
"
7
8
namespace
Core
9
{
10
11
struct
RenderData
12
{
13
SDL_Window *
window
=
nullptr
;
14
SDL_GPUDevice *
device
=
nullptr
;
15
SDL_GPURenderPass *
projectPass
=
nullptr
;
16
SDL_GPUTexture *
projectTexture
=
nullptr
;
17
SDL_GPUTexture *
resolveTexture
=
nullptr
;
18
SDL_GPUSampler *
projectSampler
=
nullptr
;
19
SDL_GPUSampleCount
sampleCount
= SDL_GPU_SAMPLECOUNT_1;
20
float
resolutionScale
= 1.0f;
// %
21
int
width
= 1280;
22
int
height
= 720;
23
};
24
25
struct
AppState
26
{
27
ImGuiID
mainViewportId
= 0;
28
float
ProjectWindowX
= 0;
29
float
ProjectWindowY
= 0;
30
int
projectIndex
= 0;
31
};
32
33
struct
Context
34
{
35
Context
() =
default
;
36
~Context
();
37
void
init
();
38
39
RenderData
renderData
{};
40
AppState
appState
{};
41
InputHandler
inputHandler
{};
42
};
43
44
}
// namespace Core
45
46
extern
Core::Context
gContext
;
47
#endif
// INCLUDE_CORE_CONTEXT_H_
gContext
Core::Context gContext
Definition
Context.cpp:8
EventHandler.h
Core::InputHandler
Definition
EventHandler.h:30
Core
Definition
Console.cpp:4
pch.h
Core::AppState
Definition
Context.h:26
Core::AppState::ProjectWindowX
float ProjectWindowX
Definition
Context.h:28
Core::AppState::mainViewportId
ImGuiID mainViewportId
Definition
Context.h:27
Core::AppState::ProjectWindowY
float ProjectWindowY
Definition
Context.h:29
Core::AppState::projectIndex
int projectIndex
Definition
Context.h:30
Core::Context
Definition
Context.h:34
Core::Context::renderData
RenderData renderData
Definition
Context.h:39
Core::Context::Context
Context()=default
Core::Context::~Context
~Context()
Definition
Context.cpp:38
Core::Context::init
void init()
Definition
Context.cpp:13
Core::Context::appState
AppState appState
Definition
Context.h:40
Core::Context::inputHandler
InputHandler inputHandler
Definition
Context.h:41
Core::RenderData
Definition
Context.h:12
Core::RenderData::height
int height
Definition
Context.h:22
Core::RenderData::width
int width
Definition
Context.h:21
Core::RenderData::sampleCount
SDL_GPUSampleCount sampleCount
Definition
Context.h:19
Core::RenderData::projectPass
SDL_GPURenderPass * projectPass
Definition
Context.h:15
Core::RenderData::projectSampler
SDL_GPUSampler * projectSampler
Definition
Context.h:18
Core::RenderData::resolutionScale
float resolutionScale
Definition
Context.h:20
Core::RenderData::projectTexture
SDL_GPUTexture * projectTexture
Definition
Context.h:16
Core::RenderData::window
SDL_Window * window
Definition
Context.h:13
Core::RenderData::device
SDL_GPUDevice * device
Definition
Context.h:14
Core::RenderData::resolveTexture
SDL_GPUTexture * resolveTexture
Definition
Context.h:17
src
Core
Context.h
Generated by
1.13.2