Can you pass a fixed-size array as a GLSL function parameter?

无人久伴 提交于 2019-12-07 03:08:27

问题


In a GLSL shader, I want to create a function that looks a bit like this :

void MyFunction(out float results[9])
{
   float value0 = 3.1546;
   float value1 = 42;     // whatever value      
   /* ... long, complicated code ... */

   results[0] = value0;  
   results[1] = value1;
   results[2] = value2;
   ...
}

Can such a function signature be used and compiled in GLSL ?
If no, are there any alternatives ?


回答1:


Yes, this is legal GLSL code.

That doesn't mean it will certainly compile, but it is legal code. That being said, it's probably better to just return the array (which you can also do), rather than pass it as an output parameter.



来源:https://stackoverflow.com/questions/16687208/can-you-pass-a-fixed-size-array-as-a-glsl-function-parameter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!