• e0qdk@kbin.social
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    1 year ago

    65543 seems to be the constant defined for GLFW_VERSION_UNAVAILABLE passed back from the error handling code I was looking at in egl_context.c – that helps confirm I’m looking at the right chunk of code in GLFW’s guts, thanks.

    As I suggested in my other comment, try commenting out the hint lines and see if a window shows up at all. (Your program doesn’t do anything other than quit after making the window, so it should just flash a window briefly, I’d expect.)

      • NikkiNikkiNikki@kbin.social
        link
        fedilink
        arrow-up
        2
        ·
        1 year ago

        That’s because you need to run an event loop, your window is being created successfully, but your program immediately exits after the fact because the line directly after glfwCreateWindow is return EXIT_SUCCESS. You’re probably good to follow the rest of the tutorial now