SFML community forums

Help => General => Topic started by: ravenheart on October 29, 2014, 06:47:19 pm

Title: OpenGL - how to make it work
Post by: ravenheart on October 29, 2014, 06:47:19 pm
Hello,

I just want to learn some modern OpenGL using Linux and SFML. I am trying to use the OpenGL 4.0 tutorial i found on http://antongerdelan.net/opengl/ (http://antongerdelan.net/opengl/).

Now i am trying to compile the program and get like for every Opengl-Command:

Quote
cpp:18:26: error: ‘glGenBuffers’ was not declared in this scope
.

I do not know how to proceed from here. Any ideas?

I could post the whole program code if needed and maybe the linker options too.
Title: Re: OpenGL - how to make it work
Post by: binary1248 on October 29, 2014, 06:56:54 pm
Title: Re: OpenGL - how to make it work
Post by: Gambit on October 30, 2014, 07:09:31 am
I would personally recommend open.gl (http://open.gl). I used it myself with no prior knowledge of OpenGL and its perfect for beginners (It even covers setting it up with SFML).
Title: Re: OpenGL - how to make it work
Post by: ravenheart on October 30, 2014, 08:27:46 pm
Hmm. It now compiles. At least i get a binary. But i get an error:

glGenBuffers not resolved and many other things too.

I am linking GLEW GL and GLU beside all the sfml stuff.
Title: Re: OpenGL - how to make it work
Post by: binary1248 on October 30, 2014, 08:31:25 pm
You know... showing us some logs would help... Like... the full log of it building including the errors at the end.
Title: Re: OpenGL - how to make it work
Post by: ravenheart on October 30, 2014, 08:37:41 pm
Fuck me - es sieht so aus als ob ich nur noch ein glewInit() gebraucht hätte. Gab sonst einen Speicherzugriffsfehler.
Title: Re: OpenGL - how to make it work
Post by: Nexus on October 30, 2014, 10:19:27 pm
The curse is the only English part of your post ;D

For others: looks as if only a glewInit() was needed, without it there was a memory access violation.