ソースを参照

gpu: fix syntax issue in shader.

The “f” suffix is valid GLSL, but WebGL does not like it so let’s disable it.
undefined
Sam Hocevar 9年前
コミット
489b02b077
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/gpu/palette.lolfx

+ 1
- 1
src/gpu/palette.lolfx ファイルの表示

@@ -33,7 +33,7 @@ varying vec2 pass_TexCoord;
void main()
{
vec4 pal = texture2D(u_texture, pass_TexCoord);
vec4 col = texture2D(u_palette, vec2(pal.x, 0.f));
vec4 col = texture2D(u_palette, vec2(pal.x, 0.0));
if (pal.x == 0.0)
discard;
gl_FragColor = col;


読み込み中…
キャンセル
保存