• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
I'm so angry.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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.
  • Follow-Ups:
    • Re: I'm so angry.
      • From: John Stauffer <email@hidden>
  • Prev by Date: Re: Selecting submenu root
  • Next by Date: set***Value: Method not working
  • Previous by thread: Re: Delete contents of NSTextView...
  • Next by thread: Re: I'm so angry.
  • Index(es):
    • Date
    • Thread