diff options
author | Takamichi Horikawa <takamichiho@gmail.com> | 2017-09-09 11:41:36 +0900 |
---|---|---|
committer | Takamichi Horikawa <takamichiho@gmail.com> | 2017-09-09 11:41:36 +0900 |
commit | cb9c866e9f37dfd1e67cd4f8599391676d3d5150 (patch) | |
tree | 0c53d834e53b82c646c3f5671aa5e3b75b3ec995 /pacc/glsl/font.frag | |
parent | 7809829bb0ce8b30ebdfb018034cab0e5f4b7632 (diff) |
pacc: gl: use newer GLSL for GL3.2/GLES3.0
Diffstat (limited to 'pacc/glsl/font.frag')
-rw-r--r-- | pacc/glsl/font.frag | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/pacc/glsl/font.frag b/pacc/glsl/font.frag deleted file mode 100644 index 8beb0a7..0000000 --- a/pacc/glsl/font.frag +++ /dev/null @@ -1,15 +0,0 @@ -uniform sampler2D palette; -uniform sampler2D tex; -varying mediump vec2 texcoord; -uniform lowp float bg; -uniform lowp float color; -void main(void) { - gl_FragColor = vec4(1.0, 0.0, 1.0, 1.0); - lowp float pixel = texture2D(tex, texcoord).x; - lowp float index = color; - if (pixel < 0.5) { - if (bg < 0.5) discard; - index = 0.5 / 256.0; - } - gl_FragColor = texture2D(palette, vec2(index, 0.0)); -} |