aboutsummaryrefslogtreecommitdiff
path: root/src/lua/embed
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-10-31 20:44:20 +0800
committerchai <chaifix@163.com>2018-10-31 20:44:20 +0800
commitc734eb129d24a5ed6dcad8fa8fd1bdb3352f1257 (patch)
treec058b0b12acfdc26b612465534b30b059f0231d4 /src/lua/embed
parenta6868deda1af419822d1610c0ca8b81413519393 (diff)
*更新渲染模块
Diffstat (limited to 'src/lua/embed')
-rw-r--r--src/lua/embed/graphics.lua.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/embed/graphics.lua.h b/src/lua/embed/graphics.lua.h
index b2a19b5..671cacd 100644
--- a/src/lua/embed/graphics.lua.h
+++ b/src/lua/embed/graphics.lua.h
@@ -17,7 +17,7 @@ Vertex vert(Vertex v)
Color frag(Color col, Texture tex, Vertex v)
{
- return col * texel(tex, v.uv);
+ return col;
}
#END_FRAGMENT_SHADER