Thread Closed 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem with versions 0.6 and 0.7
03-16-2013, 11:35 PM
Post: #12
RE: Problem with versions 0.6 and 0.7
Yeah, that would be this:
https://github.com/hrydgard/ppsspp/commi...13bf68be79

The errors indicate that OpenGL isn't initializing properly. From my perspective, I can guess this part maybe is failing:

Code:
    HGLRC    m_hrc;
    if(wglewIsSupported("WGL_ARB_create_context") == 1) {
        m_hrc = wglCreateContextAttribsARB(hDC,0, attribs);
        wglMakeCurrent(NULL,NULL);
        wglDeleteContext(hRC);
        wglMakeCurrent(hDC, m_hrc);
    } else {
        // We can't make a GL 3.x context. Use an old style context (GL 2.1 and before)
        m_hrc = hRC;
    }

But I'm not sure. Unfortunately I don't know much OpenGL to help with this issue.

-[Unknown]
Find all posts by this user
Thread Closed 


Messages In This Thread
RE: Problem with versions 0.6 and 0.7 - [Unknown] - 03-16-2013 11:35 PM

Forum Jump: