Reset glPixelStorei GL_UNPACK_ROW_LENGTH to 0 after texture upload, if it's been changed.

This commit is contained in:
Jonathan Young 2015-05-12 13:09:31 +10:00
parent 146829b057
commit ee5d73a328

View File

@ -3837,6 +3837,12 @@ namespace bgfx { namespace gl
) );
}
if (!convert
&& unpackRowLength)
{
GL_CHECK(glPixelStorei(GL_UNPACK_ROW_LENGTH, 0) );
}
if (NULL != temp)
{
BX_FREE(g_allocator, temp);