diff --git a/scene_opengl_egl.cpp b/scene_opengl_egl.cpp index 03af59c255..9d2c61c528 100644 --- a/scene_opengl_egl.cpp +++ b/scene_opengl_egl.cpp @@ -228,7 +228,6 @@ void SceneOpenGL::Texture::findTarget() bool SceneOpenGL::Texture::load(const Pixmap& pix, const QSize& size, int depth, QRegion region) { - Q_UNUSED(size) Q_UNUSED(depth) Q_UNUSED(region) @@ -259,6 +258,7 @@ bool SceneOpenGL::Texture::load(const Pixmap& pix, const QSize& size, unbind(); checkGLError("load texture"); setYInverted(true); + mSize = size; } return true; }