Hey!
im wondering if i can do this without using glfwGetProcAddress? :
since im not using glfw library to create a window i don't have access to glfwGetProcAddress.
Can i initialize GLAD in some other way?
| if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress))
{
std::cout << "Failed to initialize GLAD" << std::endl;
return -1;
}
|
why can't use wglGetProcAddress instead?
| if (!gladLoadGLLoader((GLADloadproc)wglGetProcAddress))
{
std::cout << "Failed to initialize GLAD" << std::endl;
return -1;
}
|
cheers