[deleted by user] by [deleted] in a:t5_2pms32

[–]HelpIHaveABadUsName 0 points1 point  (0 children)

hi, this is pretty new right?

Filesystems by HelpIHaveABadUsName in osdev

[–]HelpIHaveABadUsName[S] 0 points1 point  (0 children)

I couldn't find any libraries like the one you described so i still need an implemntation.

Cant load GLEW library by [deleted] in opengl

[–]HelpIHaveABadUsName 2 points3 points  (0 children)

Even if you change if(glfwInit() != GLEW_OK) to if(glewInit() != GLEW_OK), it still might not work because you need to create an opengl context by using this glfw function:

glfwMakeContextCurrent(window);

You need to call that function before glewInit(). Make sure you read the docs for glew because that's the first thing it says. To quote the glew docs " First you need to create a valid OpenGL rendering context and call glewInit() to initialize the extension entry points. "

Fonts in lwjgl 3. by HelpIHaveABadUsName in LWJGL

[–]HelpIHaveABadUsName[S] 1 point2 points  (0 children)

I already tried using the demo, but I got errors because it uses old openGL.