码迷,mamicode.com
首页 > 其他好文 > 详细

Ubuntu配置OpenGL环境

时间:2014-09-13 02:59:34      阅读:404      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   2014   div   

建立基本编译环境

1 sudo apt-get install build-essential

 

安装OpenGL Library

1 sudo apt-get install libgl1-mesa-dev

 

安装OpenGL Utilities

1 sudo apt-get install libglu1-mesa-dev

 

安装OpenGL Utility Toolkit

1 sudo apt-get install freeglut3-dev

 

测试效果:a.c

 1 #include <GL/glut.h>
 2 
 3 void init()
 4 {
 5     glClearColor(0.0, 0.0, 0.0, 0.0);
 6     glMatrixMode(GL_PROJECTION);
 7     glOrtho(-5, 5, -5, 5, 5, 15);
 8     glMatrixMode(GL_MODELVIEW);
 9     gluLookAt(0, 0, 10, 0, 0, 0, 0, 1, 0);
10 }
11 
12 void display()
13 {
14     glClear(GL_COLOR_BUFFER_BIT);
15     glColor3f(1.0, 0, 0);
16     glutWireTeapot(3);
17     glFlush();
18 }
19 
20 int main(int argc, char *argv[])
21 {
22     glutInit(&argc, argv);
23     glutInitDisplayMode(GLUT_RGB | GLUT_SINGLE);
24     glutInitWindowPosition(0, 0);
25     glutInitWindowSize(300, 300);
26     glutCreateWindow("OpenGL 3D View");
27     init(); glutDisplayFunc(display);
28     glutMainLoop();
29     return 0;
30 }

 

编译

1 gcc a.c -o a -lGL -lGLU -lglut

 

效果如图

bubuko.com,布布扣

Ubuntu配置OpenGL环境

标签:style   blog   http   color   io   os   ar   2014   div   

原文地址:http://www.cnblogs.com/huanglianjing/p/3969415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!