Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Ogre problems, and WTF re: ASSERT(0)?

Options
  • 14-11-2002 3:45pm
    #1
    Closed Accounts Posts: 2,525 ✭✭✭


    Right, I've gotten Ogre (http://ogre.sourceforge.net/) to compile some demos for me, and they work under DX7. They don't work with DX8 because of driver problems (the driver only supports DX7).

    OpenGL more is popping up the crap attached (gif).

    Is this likely a driver issue?

    Here's the code relevant to that line.

    [php]static void APIENTRY InitActiveTextureARB (GLenum texture)
    {
    void *extproc;

    extproc = (void *) wglGetProcAddress("glActiveTextureARB");

    if (extproc == NULL) {
    _ASSERT(0);
    return;
    }

    glActiveTextureARB = extproc;

    glActiveTextureARB(texture);
    }[/php]


Comments

  • Closed Accounts Posts: 2,525 ✭✭✭JustHalf


    Problem solved. The i810 doesn't support certain ARB extensions required by Ogre.

    Why can't all Intel just do the right thing and send me a decent PCI card to replace this P.O.S?


Advertisement