This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

eglGetError()

Note: This was originally posted on 3rd May 2011 at http://forums.arm.com

Hello,
i just installed opengl es 2.0 emulator and built cube example by vs2008, however, i get the foolowing error.

"eglGetError()=12293 (0x00003005) at line 245"

could you please tell me if you have any opinion about the problem?

thanks.

*my gpu is nvidia geforce 425m
Parents
  • Note: This was originally posted on 8th June 2011 at http://forums.arm.com

    Hello,I got the same problem, making this change to cube.c works for me (at line 210):



    #ifdef _WIN32
    hDisplay = EGL_DEFAULT_DISPLAY; // GetDC(NULL);
    #else
    hDisplay = XOpenDisplay(NULL);

    if (!hDisplay) {
      printf("Could not open display\n");
      exit(-1);
    }
    #endif



    dngr, could you please try this?

    -- Lorenzo
Reply
  • Note: This was originally posted on 8th June 2011 at http://forums.arm.com

    Hello,I got the same problem, making this change to cube.c works for me (at line 210):



    #ifdef _WIN32
    hDisplay = EGL_DEFAULT_DISPLAY; // GetDC(NULL);
    #else
    hDisplay = XOpenDisplay(NULL);

    if (!hDisplay) {
      printf("Could not open display\n");
      exit(-1);
    }
    #endif



    dngr, could you please try this?

    -- Lorenzo
Children
No data