I am writing C++ program with use of glew,glut and GLM. When I am creating shader like this:
GLuint VertexShaderID = glCreateShader(GL_VERTEX_SHADER);
it says "Segmentation fault(core dumped)".
My hardware is Intel Atom CPU.
OS:OpenSuse 13.2 32-bit.
What I need to do to make it work?
You're not checking OpenGL extensions, version, or etc.
This code needs to happen after creating the OpenGL context, but before using any potentially-not-existing functions. More details on the GLEW web page