mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 05:21:12 +00:00
20 lines
459 B
GLSL
20 lines
459 B
GLSL
#version 110
|
|
|
|
//s_texture points to an indexed color texture
|
|
uniform sampler2D s_texture;
|
|
//s_palette is the palette texture
|
|
uniform sampler2D s_palette;
|
|
|
|
varying vec2 v_texCoord;
|
|
|
|
const float c_paletteScale = 255.0/256.0;
|
|
const float c_paletteOffset = 0.5/256.0;
|
|
|
|
void main()
|
|
{
|
|
vec4 color = texture2D(s_texture, v_texCoord.xy);
|
|
color.r = c_paletteOffset + c_paletteScale*color.r;
|
|
color.rgb = texture2D(s_palette, color.rg).rgb;
|
|
|
|
gl_FragColor = color;
|
|
}
|