Chinaunix首页 | 论坛 | 博客
  • 博客访问: 31546
  • 博文数量: 6
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 21
  • 用 户 组: 普通用户
  • 注册时间: 2013-03-21 09:50
文章分类

全部博文(6)

文章存档

2014年(3)

2013年(3)

我的朋友

分类: LINUX

2013-09-01 21:54:51

1,安装库环境:

  1. sudo apt-get install mesa-common-dev libgl1-mesa-dev libglu1-mesa-dev
  2. sudo apt-get install freeglut3-dev freeglut3
  3. sudo apt-get install build-essential gdb subversion
  4. sudo apt-get install automake autoconf libtool
  5. sudo apt-get install libgtk2.0-dev libxmu-dev libxxf86vm-dev
  6. sudo apt-get install binutils-gold
  7. sudo apt-get install build-essential
  8. sudo apt-get install vim


2,Hello world 程序测试:

  1. #include <GL/gl.h>
  2. #include <GL/glut.h>


  3. void draw(void) 
  4. {

  5.     // Black background
  6.     glClearColor(0.0f,0.0f,0.0f,1.0f);
  7.     glClear(GL_COLOR_BUFFER_BIT);
  8.     //Draw i
  9.     glFlush();

  10. }

  11. //Main program

  12. int main(int argc, char **argv) 
  13. {

  14.     glutInit(&argc, argv);

  15.     /*Setting up The Display
  16.     / -RGB color model + Alpha Channel = GLUT_RGBA
  17.     */
  18.     glutInitDisplayMode(GLUT_RGBA|GLUT_SINGLE);

  19.     //Configure Window Postion
  20.     glutInitWindowPosition(50, 25);

  21.     //Configure Window Size
  22.     glutInitWindowSize(480,480);

  23.     //Create Window
  24.     glutCreateWindow("Hello OpenGL");


  25.     //Call to the drawing function
  26.     glutDisplayFunc(draw);

  27.     // Loop require by OpenGL
  28.     glutMainLoop();
  29.     return 0;
  30. }
g++ -L/usr/lib -lGL -L/usr/lib -lglut main.cpp -o test



阅读(1593) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~