您的位置:首页 > Web前端

NeHe OpenGL Lesson11 – Flag Effect (Waving Texture)

2012-08-23 22:27 204 查看


This demo shows us how to wave texture though vertex position changing at the running time instead of moving texture coordinated. You could get such cool effect with the method used here. But obviously, this is not the most efficient way to do that. Because every time you want to update the vertex position, you need to update the access vertex buffer data. You need to transfer those data from display card memory to main memory, then transfer those data back to display card memory again after you finish the updating process. The whole process will take some bandwidth of data transferring between display card memory and main Memory. On possible way to improve the performance is to update the vertex position in the vertex shader part. This way you do not need data transfer and access vertex data with CPU.

 

Well, let focus other part of this demo. The following are some points that need to mention:

glPolygonMode(GL_BACK,GL_FILL );
glPolygonMode(GL_FRONT,GL_LINE );


The above code used set different shade mode for back surfaces and front surfaces. The back one use solid and the front one use wireframe mode. To fully understand what’s going on here, you need to know: left hand coordinates and right hand coordinates, the order that used in the triangles, how the 3D API define clockwise order. The above thig will make you understand those triangles you submit to 3D API are front surfaces or back surfaces. Most of the time, only front surfaces will be draw, and back surfaces will be discarded.

 

The full source code could be found here.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: