OpenGL Depth Buffer不使用z值

时间:2017-12-28 21:21:10

标签: opengl opengl-3 depth-buffer qtopengl

我有一个运行OpenGL 3.3的QtOpenglWidget并尝试进行实例渲染,但是我的z-buffer无法正常工作

目前,我按照cube3,cube2和cube1的绘制顺序添加3个测试多维数据集,然后更改它显示它只显示最后绘制的多维数据集。我也知道DEPTH_TEST已启用,因为弄乱glDepthFunc只会显示任何内容。

enter image description here

我的初学者:

glEnable(GL_CULL_FACE);
glEnable(GL_DEPTH_TEST);
glClearDepth(1.0f);
glDepthFunc(GL_LEQUAL);
glClearColor(1.0f, 1.0f, 1.0f, 1.0f);

我的画画:

glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

顶点:

layout(location = 0) in highp vec3 position;
layout(location = 1) in highp mat4 modelToWorld;
uniform mat4 MVP;
out highp float DEPTH;

void main() {
    gl_Position = MVP * modelToWorld * vec4(position, 1.0);
    DEPTH = gl_Position.z / 20.0f;
}

分片:

in highp float DEPTH;
out highp vec4 fColor;
void main() {
   fColor = vec4(DEPTH, DEPTH, DEPTH,1.0);
}

修改 我发现这可能是一个QtWidget问题,在main中调用的第一件事是

QSurfaceFormat format;
format.setVersion(3, 3);
format.setDepthBufferSize(24);
format.setStencilBufferSize(8);
format.setProfile(QSurfaceFormat::CoreProfile);
QSurfaceFormat::setDefaultFormat(format);

1 个答案:

答案 0 :(得分:2)

HOURS 调试和引用示例之后,我发现了这个问题!

是这条线

void MyWidget::resizeGL(int width, int height) {
    ...
    m_projection.perspective(45.0f, width / float(height), 0.0f, 1000.0f);
    ...
}

应该是

void MyWidget::resizeGL(int width, int height) {
    ...
    m_projection.perspective(45.0f, width / float(height), 0.1f, 1000.0f);
    ...
}

显然用nearPlane将我的投影设置为0会导致这种情况。我实际上不知道为什么这种情况所以如果你知道,请在评论中启发我

注意:这是QMatrix4x4