Skip to content
Snippets Groups Projects
Commit 5f400b3b authored by Xiaohong Bao's avatar Xiaohong Bao
Browse files

more debug code for EXT-6791: [crashhunters] Intel 965 Crash in glCopyTexSubImage2D

parent 73108624
No related branches found
No related tags found
No related merge requests found
...@@ -109,6 +109,13 @@ void LLImageGL::checkTexSize(bool forced) const ...@@ -109,6 +109,13 @@ void LLImageGL::checkTexSize(bool forced) const
{ {
if ((forced || gDebugGL) && mTarget == GL_TEXTURE_2D) if ((forced || gDebugGL) && mTarget == GL_TEXTURE_2D)
{ {
{
//check viewport
GLint vp[4] ;
glGetIntegerv(GL_VIEWPORT, vp) ;
llcallstacks << "viewport: " << vp[0] << " : " << vp[1] << " : " << vp[2] << " : " << vp[3] << llcallstacksendl ;
}
GLint texname; GLint texname;
glGetIntegerv(GL_TEXTURE_BINDING_2D, &texname); glGetIntegerv(GL_TEXTURE_BINDING_2D, &texname);
BOOL error = FALSE; BOOL error = FALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment