当前位置: 首页 > 工具软件 > zerO3d > 使用案例 >

opengl Framebuffer is incomplete: No attachments and default size is zero 问题解决

卫焕
2023-12-01

GL_INVALID_FRAMEBUFFER_OPERATION: Framebuffer is incomplete: No attachments and default size is zero. 这个framebuffer错误的一个原因是: 

void glFramebufferTexture2D(
    GLenum target,
 	GLenum attachment,
 	GLenum textarget,
 	GLuint texture,
 	GLint level
);

上面所示的 glFramebufferTexture2D 函数的中的参数  texture 是个无效值例如0或者nullptr。

这个错误可能是有些代码逻辑被无意修改了之后导致的。

 类似资料: