소스 검색
Remove unused structures from lighting fragment shaders (#3497)
pull/3501/head
Jeffery Myers
1 년 전
committed by
GitHub
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
3개의 변경된 파일과
0개의 추가작업 그리고
18개의 파일을 삭제
-
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; |
|
|
|