http://blog.csdn.net/soilwork/article/details/709869 Using Vertex Texture Displacement for Realistic Water Rendering(上) 分类: GPU程序设计2006-04-24 14:57 3466人阅读 评论(1) 收藏 举报 floatshader网格fftparameters游戏 最近在研究水面渲染,眼看马上要毕业交论文了,还什么都没有弄,大意了---.Tessendorf  2001…
http://blog.csdn.net/soilwork/article/details/713842 nVIDIA SDK White Paper ----Vertex Texture Fetch Water 分类: GPU程序设计2006-05-09 04:48 3439人阅读 评论(2) 收藏 举报 shader网格fp数学计算算法blog nVIDIA SDK White Paper Vertex Texture Fetch Water   作者:Jeremy Zelsnack 本文版…
翻译者 周波 zhoubo22@hotmail.com 版权所有 Philipp Gerasimov Randima (Randy) Fernando Simon Green NVIDIA Corporation 仅以此文赠与Rita 19周岁生日快乐 Shader Model 3.0:Using Vertex Textures SM3:使用顶点纹理 随着GPU可编程特性的发展,Vertex Shader与Pixel Shader的差别越来越大.现在,Geforce6系列gpu将Vertex S…
翻译:GLSL的顶点位移贴图 翻译自: Vertex Displacement Mapping using GLSL 译者: FreeBlues 说明: 之所以选择这篇文档, 是因为现在但凡提到位移贴图(Displacement Mapping), 都要求设备支持镶嵌细分(tessellates), 但是目前大多数的移动设备都不支持这个特性, 而本文的年代比较久远(2006~2008), 那时的设备更不可能支持镶嵌细分了, 说明位移贴图并非必需镶嵌细分这个特性, 也意味着本文的实现方法可以在大多…
http://http.download.nvidia.com/developer/SDK/Individual_Samples/samples.html http://http.download.nvidia.com/developer/SDK/Individual_Samples/DEMOS/Direct3D9/VertexTextureFetchWater.zip This sample demonstrates a technique for simulating and renderi…
http://www.opengl.org/wiki/Vertex_Texture_Fetch Vertex Texture Fetch     This article contains inaccurate information. Further details can be found on the talk page. The following article discusses Vertex Texture Fetch feature of todays GPUs. Vertex…
Milan Ikits University of Utah Joe Kniss University of Utah Aaron Lefohn University of California, Davis Charles Hansen University of Utah This chapter presents texture-based volume rendering techniques that are used for visualizing three-dimensional…
http://www.myexception.cn/other/1397638.html DShader之位移贴图(Displacement Mapping) www.MyException.Cn   发布于:2013-10-08 16:38:32   浏览:37次 0   3DShader之移位贴图(Displacement Mapping) 我们知道法线贴图是只是改了物体的法线属性,用来计算光照,但是并没有改变物体本身的网格.但是移位贴图就不一样了,它会移动物体的顶点.我用移位贴图做了个海洋…
first,I wish you a happy new year, and study in spring festival’s eve means you are hardworking,haha. I write in two languages. One passage write in Chineseone passage translate into English. My English is poor., If I write some thing wrong, welcome…
我们知道法线贴图是只是改了物体的法线属性,用来计算光照,但是并没有改变物体本身的网格.但是移位贴图就不一样了,它会移动物体的顶点.我用移位贴图做了个海洋,好了,上了图再讲: 注意看海的边缘的顶点,已经实现了移动 最后,添加了一个笛卡尔转球形坐标的函数将其转为球形坐标,到时候我会提供球形版本的源码,如果需要平面的只需要在shader将调用这个函数的语句注释掉即可. 好了,不啰嗦了,困得不行了! 类似于法线贴图,移位贴图的每一个纹素中存储了一个向量,这个向量代表了对应顶点的位移. 注意,此处的纹素并…