added rest of basics in TSE_Core

This commit is contained in:
2026-01-17 21:06:02 +01:00
parent d09953f476
commit 117c1e6adb
27 changed files with 2908 additions and 9 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
#include "interfaces/ITextureHelper.hpp"
#include "elements/Texture.hpp"
namespace TSE::GLFW
{
class TextureHelperOpenGL : public ITextureHelper
{
public:
void Bind(const Texture* tex) override;
void UnBind(const Texture* tex) override;
void Apply(Texture* tex) override;
void Regist(Texture* tex) override;
void PlatromDestroy(Texture* tex) override;
};
} // namespace TSE::GLFW