Added 3D Textures to engine

This commit is contained in:
2026-03-25 16:28:17 +01:00
parent 6f5873e778
commit f50b68c9ba
8 changed files with 616 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
#include "imgui/imgui.h"
#include "extern/imgui_impl_opengl3.h"
#include "PathHelper.hpp"
#include "elements/Texture.hpp"
#include "interfaces/ITexture.hpp"
#include "TextureHelperOpenGL.hpp"
#include "interfaces/IRenderer.hpp"
#include "BehaviourScripts/Camera.hpp"
@@ -55,7 +55,7 @@ TSE::OpenGL::OpenGLRenderingBackend::~OpenGLRenderingBackend()
void TSE::OpenGL::OpenGLRenderingBackend::InitPreWindow()
{
IRenderTexture::factory = new RenderTextureCreatorOpenGL();
Texture::helper = new TextureHelperOpenGL();
ITexture::helper = new TextureHelperOpenGL();
Camera::helper = new CameraHelperOpenGL();
#if defined(TSE_GLFW)