opengl笔记
文章平均质量分 84
杨过悔
这个作者很懒,什么都没留下…
展开
-
glfw3的使用
1.编写makefileCC = g++# -O2 : optimization option# -s : build small binary# -mwindows : use this option to remove the popping cmd windowCCFLAGS = -O2 -WallBIN = Demo.ex原创 2015-11-04 13:15:09 · 6599 阅读 · 0 评论 -
使用opengl绘制三角形
1.之前在win编译时出现无法显示的情况,后来在linux测试调试是自已的笔记GPU垃圾,无法支持3.3版本,废了很久才找出原因,还是linux好调试程序 2.编写makefile整个Demo # CC = g++# -O2 : optimization option# -s : build small binary#原创 2015-11-04 21:16:13 · 1889 阅读 · 0 评论 -
NEHE阅读笔记-2D多边形
1.绘制过程int DrawGLScene(GLvoid) // Here's Where We Do All The Drawing{ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Clear Screen And Depth Buffer glLoadIde原创 2016-01-09 17:06:10 · 612 阅读 · 0 评论 -
NEHE阅读笔记-3D多边形
1.上次忘记写了,GL的坐标是右手准则的,如果你是理科生,就非常熟悉了把,接着我们绘制3D,我们根据旋转和各个平面的渲染就可以制造静态3D了,不多说对于三角我们渲染左右两个品面int DrawGLScene(GLvoid) // Here's Where We Do All The Drawing{ glClear(GL_COLOR_BUFFER_BIT | GL_DE原创 2016-01-09 17:52:11 · 466 阅读 · 0 评论