2012-11-28 16:07:25 -05:00
|
|
|
/*
|
|
|
|
* st-scroll-view-fade.glsl: Edge fade effect for StScrollView
|
|
|
|
*
|
|
|
|
* Copyright 2010 Intel Corporation.
|
|
|
|
* Copyright 2011 Adel Gadllah
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU Lesser General Public License,
|
|
|
|
* version 2.1, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT ANY
|
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-11-28 17:55:46 -05:00
|
|
|
#version 120
|
|
|
|
|
2012-11-28 16:07:25 -05:00
|
|
|
uniform sampler2D tex;
|
|
|
|
uniform float height;
|
|
|
|
uniform float width;
|
2012-11-28 16:51:42 -05:00
|
|
|
uniform float vfade_offset;
|
|
|
|
uniform float hfade_offset;
|
|
|
|
uniform float vvalue;
|
|
|
|
uniform float hvalue;
|
2012-11-28 16:07:25 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Used to pass the fade area to the shader
|
|
|
|
*
|
|
|
|
* [0][0] = x1
|
|
|
|
* [0][1] = y1
|
|
|
|
* [1][0] = x2
|
|
|
|
* [1][1] = y2
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
uniform mat2 fade_area;
|
|
|
|
|
|
|
|
void main ()
|
|
|
|
{
|
2012-11-28 16:51:37 -05:00
|
|
|
cogl_color_out = cogl_color_in * texture2D (tex, vec2 (cogl_tex_coord_in[0].xy));
|
|
|
|
|
2012-11-28 16:07:25 -05:00
|
|
|
float y = height * cogl_tex_coord_in[0].y;
|
|
|
|
float x = width * cogl_tex_coord_in[0].x;
|
2012-11-28 16:51:37 -05:00
|
|
|
|
|
|
|
if (x < fade_area[0][0] || x > fade_area[1][0] ||
|
|
|
|
y < fade_area[0][1] || y > fade_area[1][1])
|
|
|
|
return;
|
|
|
|
|
2012-11-28 16:07:25 -05:00
|
|
|
float ratio = 1.0;
|
2012-11-28 16:51:42 -05:00
|
|
|
float fade_bottom_start = fade_area[1][1] - vfade_offset;
|
|
|
|
float fade_right_start = fade_area[1][0] - hfade_offset;
|
|
|
|
float ratio_top = y / vfade_offset;
|
2012-11-28 16:07:25 -05:00
|
|
|
float ratio_bottom = (fade_area[1][1] - y)/(fade_area[1][1] - fade_bottom_start);
|
2012-11-28 16:51:42 -05:00
|
|
|
float ratio_left = x / hfade_offset;
|
2012-11-28 16:07:25 -05:00
|
|
|
float ratio_right = (fade_area[1][0] - x)/(fade_area[1][0] - fade_right_start);
|
2012-11-28 16:51:42 -05:00
|
|
|
bool fade_top = y < vfade_offset && vvalue > 0;
|
|
|
|
bool fade_bottom = y > fade_bottom_start && vvalue < 1;
|
|
|
|
bool fade_left = x < hfade_offset && hvalue > 0;
|
|
|
|
bool fade_right = x > fade_right_start && hvalue < 1;
|
2012-11-28 16:07:25 -05:00
|
|
|
|
|
|
|
if (fade_top) {
|
|
|
|
ratio *= ratio_top;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fade_bottom) {
|
|
|
|
ratio *= ratio_bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fade_left) {
|
|
|
|
ratio *= ratio_left;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fade_right) {
|
|
|
|
ratio *= ratio_right;
|
|
|
|
}
|
|
|
|
|
2012-11-28 16:51:37 -05:00
|
|
|
cogl_color_out *= ratio;
|
2012-11-28 16:07:25 -05:00
|
|
|
}
|