Commit d34c9a60 authored by Olivier Blin's avatar Olivier Blin Committed by Olivier Blin
Browse files

qwindow-compositor: fix rendering shm NPOT textures with OpenGL ES2


Always use GL_CLAMP_TO_EDGE instead of GL_REPEAT, since OpenGL ES2
doesn't support NPOT textures in combination with GL_REPEAT by
default, and repeat is not needed anyway.

See also qtbase commits:
    8dfeb1c374972f06759a92b4edc5d6a18b96ccec
    8ab1323842433fb6b45e7d6f381b4b9710a81da9
    72558e810d9b3493dabfc936fa6c8bf3c3f3b49c

Change-Id: I01770fe3352da05baf6898d63c091bfae95e7a98
Reviewed-by: default avatarGunnar Sletta <gunnar@sletta.org>
Showing with 1 addition and 0 deletions
......@@ -88,6 +88,7 @@ public:
if (bufferRef) {
if (bufferRef.isShm()) {
shmTex = new QOpenGLTexture(bufferRef.image(), QOpenGLTexture::DontGenerateMipMaps);
shmTex->setWrapMode(QOpenGLTexture::ClampToEdge);
texture = shmTex->textureId();
} else {
texture = bufferRef.createTexture();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment