Computer/OpenGL

Hello, OpenGL!!

아즈키 2006. 9. 12. 21:15

#include <GL/glut.h>

void display()
{
  glClear(GL_COLOR_BUFFER_BIT);

       glBegin(GL_POLYGON);
       glVertex2f(-0.5, -0.5);
       glVertex2f(-0.5, 0.5);
       glVertex2f(0.5, 0.5);
       glVertex2f(0.5, -0.5);
  glEnd();

  glFlush();
}

int main()
{
  glutCreateWindow("simple");
  glutDisplayFunc(display);
  glutMainLoop();
  return 0;
}

너무 심플. 멋있다..