Procházet zdrojové kódy

Remove unused structures from lighting fragment shaders (#3497)

pull/3501/head
Jeffery Myers před 1 rokem
odevzdal GitHub
rodič
revize
38205d67da
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
3 změnil soubory, kde provedl 0 přidání a 18 odebrání
  1. +0
    -6
      examples/shaders/resources/shaders/glsl100/lighting.fs
  2. +0
    -6
      examples/shaders/resources/shaders/glsl120/lighting.fs
  3. +0
    -6
      examples/shaders/resources/shaders/glsl330/lighting.fs

+ 0
- 6
examples/shaders/resources/shaders/glsl100/lighting.fs Zobrazit soubor

@ -18,12 +18,6 @@ uniform vec4 colDiffuse;
#define LIGHT_DIRECTIONAL 0
#define LIGHT_POINT 1
struct MaterialProperty {
vec3 color;
int useSampler;
sampler2D sampler;
};
struct Light {
int enabled;
int type;

+ 0
- 6
examples/shaders/resources/shaders/glsl120/lighting.fs Zobrazit soubor

@ -16,12 +16,6 @@ uniform vec4 colDiffuse;
#define LIGHT_DIRECTIONAL 0
#define LIGHT_POINT 1
struct MaterialProperty {
vec3 color;
int useSampler;
sampler2D sampler;
};
struct Light {
int enabled;
int type;

+ 0
- 6
examples/shaders/resources/shaders/glsl330/lighting.fs Zobrazit soubor

@ -19,12 +19,6 @@ out vec4 finalColor;
#define LIGHT_DIRECTIONAL 0
#define LIGHT_POINT 1
struct MaterialProperty {
vec3 color;
int useSampler;
sampler2D sampler;
};
struct Light {
int enabled;
int type;

Načítá se…
Zrušit
Uložit