remove .txt suffix from shader source files

This commit is contained in:
Brian Paul
2008-08-16 09:36:46 -06:00
parent ce00d232f3
commit c0dd9122fd
20 changed files with 14 additions and 14 deletions

View File

@@ -16,8 +16,8 @@
#include "shaderutil.h"
static char *FragProgFile = "CH06-brick.frag.txt";
static char *VertProgFile = "CH06-brick.vert.txt";
static char *FragProgFile = "CH06-brick.frag";
static char *VertProgFile = "CH06-brick.vert";
/* program/shader objects */
static GLuint fragShader;

View File

@@ -16,8 +16,8 @@
#include "shaderutil.h"
static char *FragProgFile = "CH11-bumpmap.frag.txt";
static char *VertProgFile = "CH11-bumpmap.vert.txt";
static char *FragProgFile = "CH11-bumpmap.frag";
static char *VertProgFile = "CH11-bumpmap.vert";
/* program/shader objects */
static GLuint fragShader;

View File

@@ -16,8 +16,8 @@
#include "shaderutil.h"
static char *FragProgFile = "CH18-mandel.frag.txt";
static char *VertProgFile = "CH18-mandel.vert.txt";
static char *FragProgFile = "CH18-mandel.frag";
static char *VertProgFile = "CH18-mandel.vert";
/* program/shader objects */
static GLuint fragShader;

View File

@@ -35,8 +35,8 @@
static const char *Demo = "multitex";
static const char *VertFile = "multitex.vert.txt";
static const char *FragFile = "multitex.frag.txt";
static const char *VertFile = "multitex.vert";
static const char *FragFile = "multitex.frag";
static const char *TexFiles[2] =
{

View File

@@ -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";

View File

@@ -16,8 +16,8 @@
#include "shaderutil.h"
static char *FragProgFile = "CH11-toyball.frag.txt";
static char *VertProgFile = "CH11-toyball.vert.txt";
static char *FragProgFile = "CH11-toyball.frag";
static char *VertProgFile = "CH11-toyball.vert";
/* program/shader objects */
static GLuint fragShader;