Home
last modified time | relevance | path

Searched refs:step_w (Results 1 – 8 of 8) sorted by relevance

/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxwayland/qmlvideofx/shaders/
H A Dglow.fsh37 const float step_w = 0.0015625;
47 vec3 t1 = texture2D(source, vec2(uv.x - step_w, uv.y - step_h)).rgb;
49 vec3 t3 = texture2D(source, vec2(uv.x + step_w, uv.y - step_h)).rgb;
50 vec3 t4 = texture2D(source, vec2(uv.x - step_w, uv.y)).rgb;
52 vec3 t6 = texture2D(source, vec2(uv.x + step_w, uv.y)).rgb;
53 vec3 t7 = texture2D(source, vec2(uv.x - step_w, uv.y + step_h)).rgb;
55 vec3 t9 = texture2D(source, vec2(uv.x + step_w, uv.y + step_h)).rgb;
H A Demboss.fsh37 const float step_w = 0.0015625;
47 vec3 t1 = texture2D(source, vec2(uv.x - step_w, uv.y - step_h)).rgb;
49 vec3 t3 = texture2D(source, vec2(uv.x + step_w, uv.y - step_h)).rgb;
50 vec3 t4 = texture2D(source, vec2(uv.x - step_w, uv.y)).rgb;
52 vec3 t6 = texture2D(source, vec2(uv.x + step_w, uv.y)).rgb;
53 vec3 t7 = texture2D(source, vec2(uv.x - step_w, uv.y + step_h)).rgb;
55 vec3 t9 = texture2D(source, vec2(uv.x + step_w, uv.y + step_h)).rgb;
H A Dsharpen.fsh38 const float step_w = 0.0015625;
53 vec3 t1 = texture2D(source, vec2(uv.x - step_w, uv.y - step_h)).rgb;
55 vec3 t3 = texture2D(source, vec2(uv.x + step_w, uv.y - step_h)).rgb;
56 vec3 t4 = texture2D(source, vec2(uv.x - step_w, uv.y)).rgb;
58 vec3 t6 = texture2D(source, vec2(uv.x + step_w, uv.y)).rgb;
59 vec3 t7 = texture2D(source, vec2(uv.x - step_w, uv.y + step_h)).rgb;
61 vec3 t9 = texture2D(source, vec2(uv.x + step_w, uv.y + step_h)).rgb;
H A Dtiltshift.fsh37 const float step_w = 0.0015625;
52 … acc += texture2D(source, vec2(uv.x + dist * x * step_w, uv.y + 0.5 * dist * y * step_h)).rgb;
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.20/
H A D0008-v4l2src-Support-setting-max-resolution.patch59 step_w = MAX (size.stepwise.step_width, 1);
/OK3568_Linux_fs/buildroot/package/gstreamer1/gst1-plugins-good/
H A D0008-v4l2src-Support-setting-max-resolution.patch59 step_w = MAX (size.stepwise.step_width, 1);
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22/
H A D0008-v4l2src-Support-setting-max-resolution.patch59 step_w = MAX (size.stepwise.step_width, 1);
/OK3568_Linux_fs/kernel/drivers/media/platform/mtk-mdp/
H A Dmtk_mdp_m2m.c156 int org_w, org_h, step_w, step_h; in mtk_mdp_bound_align_image() local
165 step_w = 1 << walign; in mtk_mdp_bound_align_image()
167 if (*w < org_w && (*w + step_w) <= wmax) in mtk_mdp_bound_align_image()
168 *w += step_w; in mtk_mdp_bound_align_image()