diff options
author | chai <chaifix@163.com> | 2018-10-21 22:56:40 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-10-21 22:56:40 +0800 |
commit | d9a6fbd29abe2e8060d1213c5c9f5f2e8363b23f (patch) | |
tree | 80a45ecb2c7038ddfc8c26ec8f7d33d8b28b7bf7 /bin/font.shader | |
parent | 12322c584c487b20a550fd9d22b806fba0304014 (diff) |
*调整默认字体
Diffstat (limited to 'bin/font.shader')
-rw-r--r-- | bin/font.shader | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/font.shader b/bin/font.shader index f35e47e..0b8df7c 100644 --- a/bin/font.shader +++ b/bin/font.shader @@ -13,7 +13,11 @@ uniform float dt; Color frag(Color col, Texture tex, Vertex v) { - return col * texel(tex, v.uv); + Color c = texel(tex, v.uv); + + return c; } +//1.21 1.34 +//stbi_write_png #END_FRAGMENT_SHADER |