Skip to content
Snippets Groups Projects
Commit e30540ad authored by Romain Vimont's avatar Romain Vimont Committed by Alexandre Janniaux
Browse files

opengl: replace multi-variables by arrays in GLSL


Variables were generated on the fly with an index in the name. For
example:

    uniform sampler2D Texture0;
    uniform mat3 TexCoordsMap0;
    uniform sampler2D Texture1;
    uniform mat3 TexCoordsMap1;
    uniform sampler2D Texture2;
    uniform mat3 TexCoordsMap2;

Replace them by arrays:

    uniform sampler2D Textures[3];
    uniform mat3 TexCoordsMaps[3];

This will enable to expose a GLSL function providing a color for a
particular plane number passed as a parameter.

Signed-off-by: Alexandre Janniaux's avatarAlexandre Janniaux <ajanni@videolabs.io>
parent 212307a4
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment