GLSL-左右移位操作问题

发布于 2024-10-30 21:47:02 字数 167 浏览 2 评论 0原文

我正在尝试在 GLSL 着色器中使用 <<>> 操作(从字节纹理中解包 int)。但是,如果我使用它们,着色器将停止工作并且编译器不会写入错误。其他运算符如 |& 也可以使用。

I am trying to use <<and >> operations within my GLSL shader (to unpack int from byte texture). However, if I use them, shader stop working and compiler write no error. Other operators like |, & works.

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

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

发布评论

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

评论(1

梦毁影碎の 2024-11-06 21:47:02

>< 是执行比较的运算符。移位运算符是>><<

尽管这些运算符在 GLSL 中得到了认可,但在 1.20 版本中它们被“保留以供将来使用”。根据规范,它们在 4.10 版本中是合法的。我不知道它们是在哪个版本中引入的。

> and < are operators that perform comparisons. The bit shifting operators are >> and <<.

Although these operators are recognized in GLSL, they were "reserved for future use" in version 1.20. They are legal in version 4.10, according to the specification. I don't know in which version they were introduced though.

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