gpt4 book ai didi

c++ - 获取 0 或依赖于 bool 值的值的好方法是什么?

转载 作者:太空宇宙 更新时间:2023-11-03 10:20:46 25 4
gpt4 key购买 nike

我目前正在编写一段代码,它非常简单地使用 bool 值来查看屏幕是否垂直翻转。这是通过以下方式完成的:

glOrtho(0.0f, _width, flip ? 0.0f : _height, flip ? _height : 0.0f, -1.0f, 1.0f);

我想知道是否有更优化的方法来做到这一点,例如:

glOrtho(0.0f, _width, !flip * _height, flip * _height, -1.0f, 1.0f);

或者按位运算行得通吗?

感谢任何反馈!

最佳答案

你确定这是你程序的瓶颈吗??不要为了小 yield 而提前优化和混淆您的代码。

关于c++ - 获取 0 或依赖于 bool 值的值的好方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6111912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com