基于Qt的OpenGL可编程管线学习(14)- 正片叠底逆正片叠底
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于Qt的OpenGL可编程管线学习(14)- 正片叠底逆正片叠底相关的知识,希望对你有一定的参考价值。
1、正片叠底
shader
// 正片叠底 uniform sampler2D U_MainTexture; uniform sampler2D U_SubTexture; varying vec2 M_coord; void main() { vec4 blendColor = texture2D(U_SubTexture, M_coord); vec4 baseColor = texture2D(U_MainTexture, M_coord); gl_FragColor = blendColor * baseColor; }
效果图
2、逆正片叠底
shader
// 逆正片叠底 uniform sampler2D U_MainTexture; uniform sampler2D U_SubTexture; varying vec2 M_coord; void main() { vec4 blendColor = texture2D(U_SubTexture, M_coord); vec4 baseColor = texture2D(U_MainTexture, M_coord); gl_FragColor = vec4(1.0) - (vec4(1.0) - blendColor) * (vec4(1.0) - baseColor); }
效果图
本文出自 “不会飞的纸飞机” 博客,请务必保留此出处http://douzhq.blog.51cto.com/12552184/1931104
以上是关于基于Qt的OpenGL可编程管线学习(14)- 正片叠底逆正片叠底的主要内容,如果未能解决你的问题,请参考以下文章