瀏覽代碼

neercs: use remanency when the colour becomes darker, but use instant

updates when the colour becomes brighter.
master
Sam Hocevar 12 年之前
父節點
當前提交
c54a9ad621
共有 1 個檔案被更改,包括 8 行新增1 行删除
  1. +8
    -1
      neercs/video/remanency.lolfx

+ 8
- 1
neercs/video/remanency.lolfx 查看文件

@@ -18,6 +18,13 @@ uniform vec2 mix;

void main(void)
{
gl_FragColor = texture2D(source,gl_TexCoord[0].xy)*mix.x+texture2D(buffer,gl_TexCoord[0].xy)*mix.y;
vec4 old_color = texture2D(buffer, gl_TexCoord[0].xy);
vec4 new_color = texture2D(source, gl_TexCoord[0].xy);

/* The old way */
//gl_FragColor = new_color * mix.x + old_color * mix.y;

/* The new way: if new_color > old_color we want faster updates */
gl_FragColor = max(new_color, new_color * mix.x + old_color * mix.y);
}


Loading…
取消
儲存