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
8namespace Core
9{
10
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
26{
27 ImGuiID mainViewportId = 0;
28 float ProjectWindowX = 0;
29 float ProjectWindowY = 0;
30 int projectIndex = 0;
31};
32
33struct Context
34{
35 Context() = default;
36 ~Context();
37 void init();
38
42};
43
44} // namespace Core
45
47#endif // INCLUDE_CORE_CONTEXT_H_
Core::Context gContext
Definition Context.cpp:8
Definition EventHandler.h:30
Definition Console.cpp:4
Definition Context.h:26
float ProjectWindowX
Definition Context.h:28
ImGuiID mainViewportId
Definition Context.h:27
float ProjectWindowY
Definition Context.h:29
int projectIndex
Definition Context.h:30
Definition Context.h:34
RenderData renderData
Definition Context.h:39
Context()=default
~Context()
Definition Context.cpp:38
void init()
Definition Context.cpp:13
AppState appState
Definition Context.h:40
InputHandler inputHandler
Definition Context.h:41
Definition Context.h:12
int height
Definition Context.h:22
int width
Definition Context.h:21
SDL_GPUSampleCount sampleCount
Definition Context.h:19
SDL_GPURenderPass * projectPass
Definition Context.h:15
SDL_GPUSampler * projectSampler
Definition Context.h:18
float resolutionScale
Definition Context.h:20
SDL_GPUTexture * projectTexture
Definition Context.h:16
SDL_Window * window
Definition Context.h:13
SDL_GPUDevice * device
Definition Context.h:14
SDL_GPUTexture * resolveTexture
Definition Context.h:17