高分!!glReadPixels函数读深度缓冲为啥全是1
答案:2 悬赏:30 手机版
解决时间 2021-03-04 15:48
- 提问者网友:辞取
- 2021-03-04 09:43
我用的是双缓冲,GL_MODELVIEW下,开启深度测试,划了一些点和线(坐标是GL_float型有正有负),交换缓冲后,glReadPixels(0,0,width,height,GL_DEPTH_COMPONENT,GL_FLOAT,z),结果全是1,请高手解答。
最佳答案
- 五星知识达人网友:神鬼未生
- 2021-03-04 10:58
GL_DEPTH_COMPONENT -- 读到的是“深度”值,相当于RGBA里的A,(GL_ALPHA) . 结果可能就是1。
ALPHA 用来模拟 “雾”,半透明。 画图时用到不同的ALPHA,读深度才能读出0-〉1 间的数值。
坐标正负与ALPHA并无直接关系。
读的区域是[0,0]到[width,height]
-------------------------------------------------------
GL_DEPTH_COMPONENT
Depth values are read from the depth buffer. Each component is converted to floating point such that the minimum depth value maps to 0 and the maximum value maps to 1. Each component is then multiplied by GL_DEPTH_SCALE, added to GL_DEPTH_BIAS, and finally clamped to the range 01.
ALPHA 用来模拟 “雾”,半透明。 画图时用到不同的ALPHA,读深度才能读出0-〉1 间的数值。
坐标正负与ALPHA并无直接关系。
读的区域是[0,0]到[width,height]
-------------------------------------------------------
GL_DEPTH_COMPONENT
Depth values are read from the depth buffer. Each component is converted to floating point such that the minimum depth value maps to 0 and the maximum value maps to 1. Each component is then multiplied by GL_DEPTH_SCALE, added to GL_DEPTH_BIAS, and finally clamped to the range 01.
全部回答
- 1楼网友:蓝房子
- 2021-03-04 12:27
GL_DEPTH_COMPONENT -- 读到的是“深度”值,相当于RGBA里的A,(GL_ALPHA) . 结果可能就是1。
ALPHA 用来模拟 “雾”,半透明。
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯