Error while drawing a dot on glfw i am trying to learn opengl with GLFW, i am drawing a dot but i failed doing it. i am no sure where is my error.
#include <stdio.h>
#include <GL/glew.h>
#include <GL/glfw.h>
struct Vector3f {
float x;
float y;
float z;
Vector3f() {}
Vector3f(float _x, float _y, float _z) {
x = _x;
y = _y;
z = _z;
}
};
GLuint VBO;
static void CreateVertexBuffer() {
Vector3f vertices[1];
vertices[0] = Vector3f(0.0f, 0.0f, 0.0f);
glGenBuffers(1, &VBO);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW);
}
static void RenderSceneCB() {
glClear(GL_COLOR_BUFFER_BIT);
glEnableVertexAttribArray(0);
glBindBuffer(GL_ARRAY_BUFFER, VBO);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 0, 0);
glDrawArrays(GL_POINTS, 0, 1);
glDisableVertexAttribArray(0);
glfwSwapBuffers();
}
int main(int argc, char *argv[]) {
if( !glfwInit() ) { printf("Error with glfw \n"); return 1; }
glfwOpenWindowHint(GLFW_FSAA_SAMPLES, 4);
glfwOpenWindowHint(GLFW_OPENGL_VERSION_MAJOR, 3);
glfwOpenWindowHint(GLFW_OPENGL_VERSION_MINOR, 3);
glfwOpenWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
if ( !glfwOpenWindow(1024, 768, 0,0,0,0, 32,0, GLFW_WINDOW ) ) {
printf("Error with GLFW \n"); glfwTerminate();
return 2;
}
glfwSetWindowTitle("port tutorial 2");
GLenum res = glewInit();
if (res != GLEW_OK) {
printf("Error : %s \n", glewGetErrorString(res));
return 3;
}
glClearColor(3.0f, 3.0f, 0.0f, 0.0f);
CreateVertexBuffer();
do { RenderSceneCB(); }
while( glfwGetKey( GLFW_KEY_ESC ) != GLFW_PRESS &&
glfwGetWindowParam( GLFW_OPENED ) );
glfwTerminate();
return 0;
}
if anyone can tell me how solve it and why is it is wrong.