9 lines
108 B
C++
9 lines
108 B
C++
|
#include <GL/glew.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
GLenum init_return = glewInit();
|
||
|
|
||
|
return (init_return == GLEW_OK);
|
||
|
}
|