以下サイトを参考
http://www.wakayama-u.ac.jp/~tokoi/opengl/libglut.html#3
とりあえず今日はインストールと簡単なウィンドウ表示くらいで。
・インストール
[root@localhost include]# yum install freeglut
[root@localhost include]# yum install freeglut-devel
サイトに書かれてあるウィンドウ実行するサンプルアプリを実行
・ソース
#include <GL/glut.h>
void display(void)
{
glClear(GL_COLOR_BUFFER_BIT);
glFlush();
}
void init(void)
{
glClearColor(0.0, 0.0, 1.0, 1.0);
}
int main(int argc, char *argv[])
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGBA);
glutCreateWindow(argv[0]);
glutDisplayFunc(display);
init();
glutMainLoop();
return 0;
}
~
・実行結果
0 件のコメント:
コメントを投稿