user1736149
user1736149

Reputation: 55

Setup Derelict3 with GLFW

I'm trying to use OpenGL and GLFW with Derelict3 for the D language, but I have some problems with the glfw3.dll and I'm not sure about what I did wrong:

But when I run my program I get the error:

derelict.util.exception.SymbolLoadException@..\import\derelict\util\exception.d(38): Failed to load symbol glfwSetErrorCallback from shared library glfw3.dll

Does anybody know how to setup the Derelict3?

Upvotes: 4

Views: 845

Answers (1)

dav1d
dav1d

Reputation: 6055

You're using the wrong Repo, glfw3 moved to github: https://github.com/elmindreda/glfw.

The error you see is caused, by the old version of glfw, in this old version is no symbol called glfwSetErrorCallback.

Upvotes: 3

Related Questions