本文介绍了intel hd graphics- framebuffer不完整?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个应用程序,我通常运行Nvidia显卡。我想我会尝试在Sandy Bridge Intel HD Graphics 3000上运行它。

I have an application which I usually run on Nvidia graphics card. I thought I'd try running it on the Sandy Bridge Intel HD Graphics 3000.

但是,当我在intel硬件上运行时,我得到一个framebuffer not complete 从以下初始化代码:

However, when I'm running on the intel hardware I get an "framebuffer not complete" from the following initialization code:

glGenFramebuffers(1, &fbo_);        
glBindFramebuffer(GL_FRAMEBUFFER_EXT, fbo_);
glReadBuffer(GL_COLOR_ATTACHMENT0_EXT);
glDisable(GL_MULTISAMPLE_ARB); 
// Error: "the object bound to FRAMEBUFFER_BINDING_EXT is not "framebuffer complete"

推荐答案

你需要()。

这篇关于intel hd graphics- framebuffer不完整?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 01:59