I'm so angry.
I'm so angry.
- Subject: I'm so angry.
- From: Josh Morris <email@hidden>
- Date: Sun, 30 Jun 2002 11:24:40 -0500
Sorry about the cross-posting, but it is directly applicable to both
Cocoa and OpenGL, so I decided to try all venues.
I stayed up all night making a cocoa framework for modeling 3D objects,
only to find that the gl* commands that are in the framework don't
generate any graphics. The exact same code generates a square perfectly
if not in a framework.
My code is:
glClearColor(0.0, 0.0, 0.0, 0.0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT |
GL_STENCIL_BUFFER_BIT);
glMatrixMode(GL_MODELVIEW);
glBegin(GL_QUADS);
glColor4f(1.0, 0.0, 0.0, 1.0);
glVertex3f(-0.5, -0.5, 0.0);
glColor4f(0.0, 1.0, 0.0, 1.0);
glVertex3f(0.5, -0.5, 0.0);
glColor4f(0.0, 0.0, 1.0, 1.0);
glVertex3f(0.5, 0.5, 0.0);
glColor4f(1.0, 0.0, 1.0, 1.0);
glVertex3f(-0.5, 0.5, 0.0);
glEnd();
glRotatef(-0.3, 0.0, 0.0, 1.0);
Jacked straight from the apple initGL example...
Is there any reason why GL code wouldn't run from inside a cocoa
framework? Thanks for any help.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.