当前位置: 代码迷 >> 综合 >> QopenglWidget 不显示图像问题
  详细解决方案

QopenglWidget 不显示图像问题

热度:14   发布时间:2024-02-19 10:34:40.0

问题描述

嵌入在其它widget中QopenglWidget 不显示图像

解决方法:

不使用 glBindBuffer(GL_ARRAY_BUFFER, xxxx)这样的方法来绑定缓存,而是直接使用

m_program->enableAttributeArray(m_colAttr);
m_program->setAttributeArray(m_colAttr, GL_FLOAT, faceColors, 4);