This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while read link; do if [ ! -f "$(basename $link)" ]; then wget $link; fi; done < GDMAG.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// To run this program. | |
// 1. SUBSYSTEM:WINDOWS | |
// 2. Link glad.cpp | |
// 3. Set include directories that includes glad.h and wglext.h | |
// https://www.khronos.org/opengl/wiki/Creating_an_OpenGL_Context_(WGL) | |
// https://www.khronos.org/registry/OpenGL/extensions/ARB/WGL_ARB_create_context.txt | |
#include <Windows.h> | |
#include <glad/glad.h> | |
// #include <GL/glext.h> // No use, don't use gl extensions here. |