glGetUniformLocation 调用的速度有多快/慢?

发布于 2024-10-30 19:21:55 字数 234 浏览 0 评论 0原文

在为着色器设置任何统一参数之前,我使用 glGetUniformLocation 来检索其位置,而不是在开始时执行一次并存储 int 位置值。像这样::

const int location = glGetUniformLocation(program, name.c_str());
glUniform4fv(location, 1, &v.x);

这会极大地影响我的表现吗?

Right before setting any uniform parameter to the shader, I am using glGetUniformLocation to retrieve its position instead of doing it once in the begining and storing the int position value. Like this::

const int location = glGetUniformLocation(program, name.c_str());
glUniform4fv(location, 1, &v.x);

Would it considerably affect my performance?

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

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

发布评论

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

评论(1

跨年 2024-11-06 19:21:55

恕我直言,这取决于比较字符串(字符串的哈希值)的速度。当着色器没有重新编译时,int 位置不会改变(但是,它可能不会改变)。因此,存储位置一次并在每一帧获取它是一个很好的做法。

IMHO, it will depend on the speed of comparing strings (hashes of strings). While shader is not recompiled the int position will not changed (however, it may be not changed). So it is a good practice to store locations once and get it every frame.

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