Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - thecruuk

Pages: [1]
1
General / OpenGL tutorial not working on mac
« on: February 26, 2012, 02:15:39 pm »
Thanks : ) it works now

2
General / OpenGL tutorial not working on mac
« on: February 26, 2012, 02:10:36 pm »

3
General / OpenGL tutorial not working on mac
« on: February 26, 2012, 01:59:31 pm »
Code: [Select]

    // Set color and depth clear value
    glClearDepth(1.f);
    glClearColor(0.f, 0.f, 0.f, 0.f);
   
    // Enable Z-buffer read and write
    glEnable(GL_DEPTH_TEST);
    glDepthMask(GL_TRUE);
   
    // Setup a perspective projection
    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();
    gluPerspective(90.f, 1.f, 1.f, 500.f);

4
General / OpenGL tutorial not working on mac
« on: February 26, 2012, 01:04:44 pm »
Hi,
i wanted to set up a ogl scene with this tutorial (http://www.sfml-dev.org/tutorials/1.6/window-opengl.php), but i always get the error message: "use of undeclared identifier" for every ogl function. i use xcode 4.
i also tried including <OpenGL/OpenGL.h> but it changes nothing.

5
General / Installing on Mac (Xcode)
« on: November 06, 2011, 07:56:31 pm »
thank you so much : D

6
General / Installing on Mac (Xcode)
« on: November 05, 2011, 07:44:17 pm »
i followed the tutorial but i´m getting this error:

can someone help me?

Pages: [1]