From: Adeel Kazmi Date: Mon, 16 Oct 2017 10:17:30 +0000 (+0000) Subject: Merge "Fix the text artifact (i.e. vertical lines below the text) while scrolling... X-Git-Tag: dali_1.2.62~8 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=commitdiff_plain;h=63cdd9f6aabe20a7682bd808ec371b3e096e8b1b;hp=6047d364c31f7078c1950b8251e478d5c9b0f0dc Merge "Fix the text artifact (i.e. vertical lines below the text) while scrolling" into devel/master --- diff --git a/dali-toolkit/internal/text/text-scroller.cpp b/dali-toolkit/internal/text/text-scroller.cpp index e85a2fd..dbc16eb 100644 --- a/dali-toolkit/internal/text/text-scroller.cpp +++ b/dali-toolkit/internal/text/text-scroller.cpp @@ -84,6 +84,8 @@ const char* FRAGMENT_SHADER = DALI_COMPOSE_SHADER( \n void main()\n {\n + if ( vTexCoord.y > 1.0 )\n + discard;\n gl_FragColor = texture2D( sTexture, vTexCoord );\n }\n );