获取opengl错误的行和文件[已关闭]

gwo2fgha  于 2022-11-04  发布在  其他
关注(0)|答案(1)|浏览(92)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
四个月前关门了。
Improve this question
所以我用帧缓冲区改变了一些东西,得到了一些opengl错误。
是否有任何方法可以记录行和文件或错误,以及创建断点?
在java中(使用lwjgl)

gj3fmq9x

gj3fmq9x1#

1.从操作系统请求调试上下文
1.使用glEnable(GL_DEBUG_OUTPUT)启用调试输出
1.使用glDebugMessageCallback()注册调试消息回调
1.使用glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS)启用同步callball执行
1.在回调中设置断点和/或向其添加日志记录。

相关问题