码迷,mamicode.com
首页 > 系统相关 > 详细

Linux OpenGL 实践篇-1

时间:2018-01-28 11:25:47      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:新建   http   .com   cpp   环境搭建   应用   color   releases   版本   

本次实践所使用环境为CentOS 7。

参考:http://www.xuebuyuan.com/1472808.html

OpenGL开发环境搭建:

1.opengl库安装

  opengl库使用mesa库,安装命令:

  yum intall mesa*

  mesa库是一个开源的三维计算机图形库,以开源的形式实现了opengl应用程序接口。具体介绍:https://www.mesa3d.org/intro.html。

2.glut安装

  下载freeglut,下载地址为: https://github.com/dcnieho/FreeGLUT/releases。glut是opengl的实用工具库,opengl只是三维图形接口,并没有窗口,处理鼠标等设备输入输出方面的内容,glut提供了相关方面的内容。freeglut是glut的一个发行版本(还有一个是原始版本的glut)。

  因为我使用cmake安装,根据README.cmake中步骤及注意事项安装。

  命令:

  cmake .

  make

  make install

3.简单例子

新建文件main.cpp

#include <GL/glut.h>
#include <stdlib.h>
void init();
void display();

int main(int argc, char* argv[])
{
        glutInit(&argc, argv);
        glutInitDisplayMode(GLUT_RGB | GLUT_SINGLE);
        glutInitWindowPosition(0, 0);
        glutInitWindowSize(300, 300);

        glutCreateWindow("OpenGL 3D View");

        init();
        glutDisplayFunc(display);

        glutMainLoop();
        return 0;
}

void init()
{
        glClearColor(0.0, 0.0, 0.0, 0.0);
        glMatrixMode(GL_PROJECTION);
        glOrtho(-5, 5, -5, 5, 5, 15);
        glMatrixMode(GL_MODELVIEW);
        gluLookAt(0, 0, 10, 0, 0, 0, 0, 1, 0);
}

void display()
{
        glClear(GL_COLOR_BUFFER_BIT);

        glColor3f(1.0, 0, 0);
        glutWireTeapot(3);

        glFlush();
}

编译命令:

gcc -lglut -lGLU -lGL main.cpp

 

技术分享图片

Linux OpenGL 实践篇-1

标签:新建   http   .com   cpp   环境搭建   应用   color   releases   版本   

原文地址:https://www.cnblogs.com/xin-lover/p/8367639.html

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