I'm trying to learn how to write OpenGL Shaders. Why does this code segmentation fault when run on my machine? (I'm using Ubuntu 10.04 and I called it shader.cpp.)
#include <GL/glut.h>
#include <iostream>
using namespace std;
int
main (int argc, char **argv)
{
GLuint myVertexShader = glCreateShader(GL_VERTEX_SHADER);
return 0;
}
I'm compiling it using the following Makefile:
CC=g++
CFLAGS=-c -Wall -DGL_GLEXT_PROTOTYPES
LDFLAGS= -lglut -lGLU -lGL -lXmu -lXext -lX11 -lm
SOURCES=shader.cpp
OBJECTS=$(SOURCES:.cpp=.o)
EXECUTABLE=shader
all: $(SOURCES) $(EXECUTABLE)
$(EXECUTABLE): $(OBJECTS)
$(CC) $(LDFLAGS) $(OBJECTS) -o $@
.cpp.o:
$(CC) $(CFLAGS) $< -o $@
clean:
rm -rf *o $(EXECUTABLE)
check-syntax:
$(CC) -o nul -S ${CHK_SOURCES}
It seems to be segmentation faulting on the line which calls glCreateShader. I haven't had any luck finding out the source of this problem. I'm a beginner. Thanks!
Note: What this code represents is my first attempt to write a simple shader using OpenGL. If it's all wrong, please feel free to post some working code. What I really want is to get something I can compile and run.