2013-09-23 05:15:01 +00:00
|
|
|
/* Shader for approximating the way RMXP does bitmap
|
|
|
|
* blending via DirectDraw */
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
uniform sampler2D source;
|
|
|
|
uniform sampler2D destination;
|
|
|
|
|
|
|
|
uniform vec4 subRect;
|
|
|
|
|
|
|
|
uniform float opacity;
|
|
|
|
|
2013-09-23 05:15:01 +00:00
|
|
|
varying vec2 v_texCoord;
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
void main()
|
|
|
|
{
|
2013-09-23 05:15:01 +00:00
|
|
|
vec2 coor = v_texCoord;
|
2013-09-01 14:27:21 +00:00
|
|
|
vec2 dstCoor = (coor - subRect.xy) * subRect.zw;
|
|
|
|
|
|
|
|
vec4 srcFrag = texture2D(source, coor);
|
|
|
|
vec4 dstFrag = texture2D(destination, dstCoor);
|
|
|
|
|
|
|
|
vec4 resFrag;
|
|
|
|
|
|
|
|
float ab = opacity;
|
|
|
|
const float as = srcFrag.a;
|
|
|
|
const float ad = dstFrag.a;
|
|
|
|
|
|
|
|
const float at = ab*as;
|
|
|
|
resFrag.a = at + ad - ad*at;
|
|
|
|
|
|
|
|
resFrag.rgb = mix(dstFrag.rgb, srcFrag.rgb, ab*as);
|
|
|
|
resFrag.rgb = mix(srcFrag.rgb, resFrag.rgb, ad*resFrag.a);
|
|
|
|
|
|
|
|
gl_FragColor = resFrag;
|
|
|
|
}
|