mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[client] egl: correct invalid value for texture row length
This commit is contained in:
parent
8a9f004ff6
commit
98e0e5fc0b
@ -351,7 +351,7 @@ bool egl_texture_update(EGL_Texture * texture, const uint8_t * buffer)
|
|||||||
for(int p = 0; p < texture->planeCount; ++p)
|
for(int p = 0; p < texture->planeCount; ++p)
|
||||||
{
|
{
|
||||||
glBindTexture(GL_TEXTURE_2D, texture->tex[0].t[p]);
|
glBindTexture(GL_TEXTURE_2D, texture->tex[0].t[p]);
|
||||||
glPixelStorei(GL_UNPACK_ROW_LENGTH, texture->planes[p][0]);
|
glPixelStorei(GL_UNPACK_ROW_LENGTH, texture->planes[p][2]);
|
||||||
glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, texture->planes[p][0], texture->planes[p][1],
|
glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, texture->planes[p][0], texture->planes[p][1],
|
||||||
texture->format, texture->dataType, buffer + texture->offsets[p]);
|
texture->format, texture->dataType, buffer + texture->offsets[p]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user