2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 13:47:46 +00:00

Update submodules, fix text shader for Vulkan

This commit is contained in:
Jack Andersen
2017-02-15 18:48:07 -10:00
parent 3d51c7bb6b
commit 128b7feb1f
2 changed files with 1 additions and 3 deletions

View File

@@ -37,7 +37,6 @@ BOO_GLSL_BINDING_HEAD
" vtf.mulColor = mulColorIn;\n"
" vtf.uv = uvIn[gl_VertexID].xyz;\n"
" gl_Position = mtx * vec4(posIn[gl_VertexID].xyz, 1.0);\n"
" gl_Position = FLIPFROMGL(gl_Position);\n"
"}\n";
static const char* TextFS =
@@ -85,7 +84,6 @@ BOO_GLSL_BINDING_HEAD
" vtf.color = color * colorIn;\n"
" vtf.uv = uvIn[gl_VertexID];\n"
" gl_Position = mtx * vec4(posIn[gl_VertexID].xyz, 1.0);\n"
" gl_Position = FLIPFROMGL(gl_Position);\n"
"}\n";
static const char* ImgFS =