LoginSignup
1
2

More than 5 years have passed since last update.

GLSLで2色グラデーション

Posted at

Code

precision mediump float;
uniform vec2  m;       // mouse
uniform float t;       // time
uniform vec2  r;       // resolution
uniform sampler2D smp; // prev scene

void main(void){
    const vec4 color1 = vec4(0.0, 0.18, 0.28, 1.0); // 下
    const vec4 color2 = vec4(0.0, 0.0, 0.0, 1.0); // 上
    float percent = 1.0 - (gl_FragCoord.y / r.y);
    gl_FragColor = color1 * percent + color2 * (1.0 - percent);
}

結果

fragment.png

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2