程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> Ubuntu配置OpenGL環境,ubuntu配置opengl

Ubuntu配置OpenGL環境,ubuntu配置opengl

編輯:關於C語言

Ubuntu配置OpenGL環境,ubuntu配置opengl


建立基本編譯環境

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

 

效果如圖

ubuntu 12.04安裝OpenGL


(解決追加200分)在ubuntu上怎安裝openGL??

樓上的方法都不行,你還是到Ubuntu論壇請教吧。
 

ubuntu 下面怎安裝 opengl

sudo apt-get install opengl

或者 軟件中心--搜索opengl

或者 新立德--搜索opengl
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved