How to set up gl3w on Windows?

后端 未结 2 1746
别那么骄傲
别那么骄傲 2021-01-15 15:06

I was looking for a detailed guide to setting up Gl3w, since there are none anywhere I look!

相关标签:
2条回答
  • 2021-01-15 15:44

    First of all, download gl3w at https://github.com/skaslev/gl3w

    Then, download Python 3.x:

    https://www.python.org/downloads/

    Next, run the script. It'll generate gl3w.c in the source folder, and gl3w.h and glcorearb.h in the include/GL/ folder.

    Take the three of them, and either add them directly to your project, or (easier to do the includes), move them into your project's source files folder, and add the 3 into the project.

    In your main source AND in your "gl3w.c" source, you want to change the include to #include "gl3w.h" Consequently, you'll have to change gl3w.h's include to #include "glcorearb.h"

    This is because you changed their folder setups, the compiler will throw "can't find xxx" otherwise.

    And don't forget to link to "opengl32", simply add the library as such. In Code::Blocks, you select the root project, go into "build options", select the root project once again (above Debug and Release), go to Linker Settings, Add, and type just "opengl2" without the quotes.

    That's all!

    0 讨论(0)
  • 2021-01-15 15:50

    you need python 3. I have python 3.8 right now. On windows 10. It should be in path. It also comes with tool named IDLE. It is integrated python editor, basically. You can find it in start menu. you will need this. I don't know why it is not working from command line, but... it is not working. But it works from idle. So run it and then open from menu File - gl3w_gen.py

    then here go to Run and run module:

    You will get something like this:

    and it will download all files for you. This works in my case.

    0 讨论(0)
提交回复
热议问题