1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 00:25:19 +02:00

Improve texture creation logging and checking

This commit is contained in:
sfan5
2025-08-08 13:42:36 +02:00
committed by GitHub
parent ae97435d80
commit b1cb5fcb9f
6 changed files with 37 additions and 19 deletions

View File

@@ -1597,6 +1597,7 @@ inline void COpenGLDriver::getGLTextureMatrix(GLfloat *o, const core::matrix4 &m
ITexture *COpenGLDriver::createDeviceDependentTexture(const io::path &name, E_TEXTURE_TYPE type, const std::vector<IImage*> &images)
{
assert(type == ETT_2D);
return new COpenGLTexture(name, images, ETT_2D, this);
}