• @prettydarknwildOP
    link
    19 months ago

    it just starts and ends with code 0 without creating any output to the terminal or any window

    • NikkiNikkiNikki
      link
      fedilink
      29 months 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