如何在 C++ 中分析我自己的函数和OpenGL?

发布于 2024-11-05 08:02:17 字数 407 浏览 0 评论 0原文

在 C++/OpenGL 中是否有任何简单易行的分析函数?我能找到的只有 gDEBugger。浏览文档我找不到一种方法来做我想做的事。让我解释一下......

正如我在其他问题中所说的,我有一个防御塔游戏。目前只有 3 个,但这个数字是可配置的。我对所有塔都有一个绘制函数(这个函数可能会调用其他函数,没关系),我想分析这个函数(对于 3 个塔,然后再次增加数量和分析)。然后我想为塔实施显示列表,进行相同的分析,看看在这种特定情况下使用显示列表是否有任何好处。

对于此类任务,您推荐使用什么分析工具?如果重要的话,我可以使用 Visual Studio 10 在 Windows 上编写 OpenGL 代码。或者可以使用 gDEBugger 来完成此操作吗?有什么指点吗?

PS:我知道 OpenGL 3.1 中删除了显示列表,但以上只是一个示例。

Is there anything easy and simple to profile functions in C++/OpenGL? All I could find was gDEBugger. Looking through the documentation I can't find a way to do what I want. Let me explain...

As I've said in other questions, I have a game with defense towers. Currently they are just 3 but this number is configurable. I have a single draw function for all the towers (this function may call other functions, doesn't matter) and I would like to profile this single function (for 3 towers and then increase the number and profile again). Then I would like to implement display lists for the towers, do the same profiling and see if there was any benefit on using display lists for this specific situation.

What profiling tool do you recommend for such a task? If it matters, I'm coding OpenGL on Windows with Visual Studio 10. Or can this be done with gDEBugger? Any pointers?

P.S: I'm aware that display lists were removed on OpenGL 3.1, but the above is just an example.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋千易 2024-11-12 08:02:17

NVidia 有一个,AMD。对于英特尔

对于粗粒度监控,您可以测量从缓冲区交换或 glFlush()/glFinish() 开始到执行帧所需的时间:

while( running )
{
    start_time = GetTimeInMS();

    RenderFrame();
    SwapGLBuffers();

    end_time = GetTimeInMS();

    cout << "Frame time (ms): " << (end_time - start_time) << end;
}

NVidia has one, so does AMD. And for Intel.

For coarse-grained monitoring you can measure the time it takes to execute a frame from the beginning to after your buffer swap or glFlush()/glFinish():

while( running )
{
    start_time = GetTimeInMS();

    RenderFrame();
    SwapGLBuffers();

    end_time = GetTimeInMS();

    cout << "Frame time (ms): " << (end_time - start_time) << end;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文