Jeffery Myers
há 1 ano
committed by
GitHub
ascendente
cometimento
38205d67da
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 4AEE18F83AFDEB23
3 ficheiros alterados com
0 adições e
18 eliminações
-
examples/shaders/resources/shaders/glsl100/lighting.fs
-
examples/shaders/resources/shaders/glsl120/lighting.fs
-
examples/shaders/resources/shaders/glsl330/lighting.fs
|
|
@ -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; |
|
|
|
|
|
@ -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; |
|
|
|
|
|
@ -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; |
|
|
|