[OpenGL]error C7539: GLSL 1.20 does not allow nested structs

请看以下代码:

1// ...
2
3uniform struct
4{
5    struct
6    {
7        vec3 pos;
8    } list[10];
9} lights;
10
11// ...
glsl

有的显卡可以正常处理以上定义,有的不行(即禁止在结构中定义结构)。

请改用以下方式声明:

1// ...
2
3struct whatever
4{
5    vec3 pos;
6};
7
8uniform struct
9{
10     struct whatever list[10];
11} lights;
12
13// ...
glsl
  • 2021/8/10
  • OpenGL