fix warnings

This commit is contained in:
degasus
2013-01-11 21:24:59 +01:00
parent 8651b34e22
commit 2838077313
6 changed files with 15 additions and 12 deletions

View File

@ -131,11 +131,11 @@ const u8 rasters[char_count][char_height] = {
static const char *s_vertexShaderSrc =
"#version 130\n"
"uniform vec2 charSize;\n"
"in vec2 vposition;\n"
"in vec2 rawpos;\n"
"in vec2 texture0;\n"
"out vec2 uv0;\n"
"void main(void) {\n"
" gl_Position = vec4(vposition,0,1);\n"
" gl_Position = vec4(rawpos,0,1);\n"
" uv0 = texture0 * charSize;\n"
"}\n";