From 29779c7e599612727a1b2119a7e556d181dba6b1 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Fri, 14 Oct 2022 00:41:34 +0100 Subject: Allow creating a texture directly from an dimensions and pixel data --- gfx/models/texture.h | 1 + 1 file changed, 1 insertion(+) (limited to 'gfx/models/texture.h') diff --git a/gfx/models/texture.h b/gfx/models/texture.h index 8f93a42..7948a58 100644 --- a/gfx/models/texture.h +++ b/gfx/models/texture.h @@ -11,6 +11,7 @@ class Texture { public: explicit Texture(const std::filesystem::path & fileName); explicit Texture(const Image & image); + explicit Texture(GLsizei width, GLsizei height, void * data); static Cache cachedTexture; -- cgit v1.2.3