mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-22 22:01:46 +00:00
[client] fix incorrect texture buffer index
This commit is contained in:
parent
bed2d95ccd
commit
c0507f5a15
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ int renderThread(void * unused)
|
|||
// update the texture
|
||||
glEnable(GL_TEXTURE_2D);
|
||||
glBindTexture(GL_TEXTURE_2D, vboTex);
|
||||
glBindBuffer(GL_PIXEL_UNPACK_BUFFER, vboID[texIndex ? 0 : 1]);
|
||||
glBindBuffer(GL_PIXEL_UNPACK_BUFFER, vboID[texIndex]);
|
||||
glTexSubImage2D(
|
||||
GL_TEXTURE_2D,
|
||||
0,
|
||||
|
|
Loading…
Reference in a new issue