mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 01:50:12 +01:00
remove .txt suffix from shader source files
This commit is contained in:
parent
ce00d232f3
commit
c0dd9122fd
20 changed files with 14 additions and 14 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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] =
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue