~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Data/Sys/Shaders/sunset.glsl

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
uniform sampler2D samp9;
 
2
 
 
3
out vec4 ocol0;
 
4
in vec2 uv0;
 
5
 
 
6
void main()
 
7
{
 
8
        vec4 c0 = texture(samp9, uv0);
 
9
        ocol0 = vec4(c0.r * 1.5, c0.g * 1, c0.b * 0.5, c0.a);
 
10
}