可以在 AGAL 操作中对数字进行硬编码吗?

发布于 2024-12-20 06:15:41 字数 271 浏览 3 评论 0原文

如果我尝试简单地将 1.0 添加到寄存器的一个颜色通道,我可以:

  • 使用一些我不知道的浮点语法直接写入它,或者...
  • 我是否必须将数字传递给常量首先,并在那里使用那个常量寄存器?

我正在尝试做的示例:

//AGAL code - Just trying to add one to red-value of ft1, and assign it to ft2
add ft2.r, ft1.r, 1.0

If I try to simply add 1.0 to one color-channel of a register, can I:

  • Write it directly with some float-number syntax I'm not aware of, or...
  • Do I have to pass in the number to a constant first, and use that constant register there?

Example of what I'm trying to do:

//AGAL code - Just trying to add one to red-value of ft1, and assign it to ft2
add ft2.r, ft1.r, 1.0

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

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

发布评论

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

评论(1

紫瑟鸿黎 2024-12-27 06:15:41

不幸的是不行,你必须通过 fc0 等传递常量

add ft2.r, ft1.r, fc0.r

Unfortunately no, you have to pass the constant in. via fc0, etc

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