Переглянути джерело

Use the vertex color as part of the base shader in GLSL330 (#4431)

pull/4432/head
Jeffery Myers 5 місяці тому
committed by GitHub
джерело
коміт
728ccc96bc
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: B5690EEEBB952194
1 змінених файлів з 4 додано та 1 видалено
  1. +4
    -1
      examples/shaders/resources/shaders/glsl330/base.fs

+ 4
- 1
examples/shaders/resources/shaders/glsl330/base.fs Переглянути файл

@ -20,6 +20,9 @@ void main()
// NOTE: Implement here your fragment shader code
finalColor = texelColor*colDiffuse;
// final color is the color from the texture
// times the tint color (colDiffuse)
// times the fragment color (interpolated vertex color)
finalColor = texelColor*colDiffuse*fragColor;
}

Завантаження…
Відмінити
Зберегти