英文:
glsl member-wise ?: operator
问题
GLSL支持向量上的? :
吗,就像这样:
// hlsl
half3 linear_to_sRGB(half3 x)
{
return (x <= 0.0031308 ? (x * 12.9232102) : 1.055 * pow(x, 1.0 / 2.4) - 0.055);
}
我尝试过这样(通过glm),但效果不如预期(我不认为它们是一样的):
//c++, glm
vec3 linear_to_sRGB(vec3 x)
{
return lessThan(v, vec3(0.0031308f)) == bvec3(true)
? (v * 12.9232102f)
: 1.055f * glm::pow(v, vec3(1.0f / 2.4f)) - 0.055f
;
}
英文:
does glsl support ?: on vectors, like this:
// hlsl
half3 linear_to_sRGB(half3 x)
{
return (x <= 0.0031308 ? (x * 12.9232102) : 1.055 * pow(x, 1.0 / 2.4) - 0.055);
}
I tried like this (via glm), not working as expected (i don't think they are the same thing):
//c++, glm
vec3 linear_to_sRGB(vec3 x)
{
return lessThan(v, vec3(0.0031308f)) == bvec3(true)
? (v * 12.9232102f)
: 1.055f * glm::pow(v, vec3(1.0f / 2.4f)) - 0.055f
;
}
答案1
得分: 2
你可以使用内置的 step
和 mix
函数来实现类似以下的效果:
return mix(
1.055 * pow(x, 1.0 / 2.4) - 0.055,
x * 12.9232102,
step(x, vec3(0.0031308f)));
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论