Przeglądaj źródła

Update gbuffer.fs

pull/4714/head
MikiZX1 2 miesięcy temu
committed by GitHub
rodzic
commit
3df0baec76
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 2 usunięć
  1. +1
    -2
      examples/shaders/resources/shaders/glsl100/gbuffer.fs

+ 1
- 2
examples/shaders/resources/shaders/glsl100/gbuffer.fs Wyświetl plik

@ -14,7 +14,6 @@ in vec4 fragColor;
uniform vec4 colDiffuse;
uniform sampler2D texture0;
uniform sampler2D texture1;
void main() {
// store the fragment position vector in the first gbuffer texture
@ -24,5 +23,5 @@ void main() {
// and the diffuse per-fragment color
gAlbedoSpec.rgb = texture(texture0, fragTexCoord).rgb * colDiffuse.rgb;
// store specular intensity in gAlbedoSpec's alpha component
gAlbedoSpec.a = pow(texture(texture1, fragTexCoord).ran>*1.6,16.0);
gAlbedoSpec.a = texture(texture0, fragTexCoord).a;
}

Ładowanie…
Anuluj
Zapisz