Refactor to rename Basic.vert and Basic.frag

This commit is contained in:
Aaron Culliney 2014-10-07 22:04:03 -07:00
parent e696f7882f
commit 69bd40216b
3 changed files with 2 additions and 2 deletions

View File

@ -513,8 +513,8 @@ static void gldriver_init_common(void) {
// ----------------------------
// Load/setup shaders
demoSource *vtxSource = _create_shader_source("Basic.vert");
demoSource *frgSource = _create_shader_source("Basic.frag");
demoSource *vtxSource = _create_shader_source("Basic.vsh");
demoSource *frgSource = _create_shader_source("Basic.fsh");
// Build Program
program = _build_program(vtxSource, frgSource, /*withNormal:*/false, /*withTexcoord:*/true);