Browse Source

Update shaders_palette_switch.c

pull/3983/head
Ray 6 months ago
parent
commit
479bd84400
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      examples/shaders/shaders_palette_switch.c

+ 1
- 1
examples/shaders/shaders_palette_switch.c View File

@ -109,7 +109,7 @@ int main(void)
if (currentPalette >= MAX_PALETTES) currentPalette = 0;
else if (currentPalette < 0) currentPalette = MAX_PALETTES - 1;
// Send new value to the shader to be used on drawing.
// Send palette data to the shader to be used on drawing
// NOTE: We are sending RGB triplets w/o the alpha channel
SetShaderValueV(shader, paletteLoc, palettes[currentPalette], SHADER_UNIFORM_IVEC3, COLORS_PER_PALETTE);
//----------------------------------------------------------------------------------

Loading…
Cancel
Save