diff options
author | Brian Paul <[email protected]> | 2008-08-16 09:36:46 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-16 09:36:46 -0600 |
commit | c0dd9122fdedd4bcab5bc0b3bbb490e6b62fac83 (patch) | |
tree | ac114b79c5790b10c0a8904ca79dfea5480c5617 /progs/glsl/texdemo1.c | |
parent | ce00d232f3c01c71fb659568e9b58da1f24b2519 (diff) |
remove .txt suffix from shader source files
Diffstat (limited to 'progs/glsl/texdemo1.c')
-rw-r--r-- | progs/glsl/texdemo1.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/progs/glsl/texdemo1.c b/progs/glsl/texdemo1.c index 3dd19eaf4bf..41010746eea 100644 --- a/progs/glsl/texdemo1.c +++ b/progs/glsl/texdemo1.c @@ -35,11 +35,11 @@ static const char *Demo = "texdemo1"; -static const char *ReflectVertFile = "reflect.vert.txt"; -static const char *CubeFragFile = "cubemap.frag.txt"; +static const char *ReflectVertFile = "reflect.vert"; +static const char *CubeFragFile = "cubemap.frag"; -static const char *SimpleVertFile = "simple.vert.txt"; -static const char *SimpleTexFragFile = "shadowtex.frag.txt"; +static const char *SimpleVertFile = "simple.vert"; +static const char *SimpleTexFragFile = "shadowtex.frag"; static const char *GroundImage = "../images/tile.rgb"; |