Cleanup 1/2

This commit is contained in:
Isuru Samarathunga
2025-11-04 23:52:02 +05:30
parent 2de8634184
commit 7d6e8ef695
25 changed files with 57269 additions and 37 deletions

View File

@ -46,6 +46,7 @@ namespace ia::iae
STATIC VOID ResizeScreen(IN IVec2 newExtent);
STATIC VOID RenderToWindow();
STATIC VOID RenderToTexture(IN SDL_GPUTexture* texture);
public:
STATIC Vec2 GetCameraPosition();
@ -69,6 +70,8 @@ namespace ia::iae
STATIC VOID InitializePipelines();
STATIC VOID InitializeGeometries();
STATIC VOID Render(IN SDL_GPURenderPass* renderPass, IN SDL_GPUCommandBuffer* commandBuffer);
private:
STATIC Mat4 s_viewMatrix;
STATIC IVec2 s_viewportExtent;

View File

@ -25,8 +25,7 @@ namespace ia::iae
public:
enum class EType
{
SAMPLED,
RENDER_TARGET
SAMPLED
};
public: