X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fshader-effects%2Fbendy-effect.h;h=78f4e6985d77a74e564dcccd96c4ceda9ea73200;hb=b1fd7c9ac268691ba02ca0b358b82a6f76d31edb;hp=9f9deb500f6964097864e8499d885c22b24b1f9f;hpb=abf2533b2621e07a62a7ac65944959a18bd89673;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/devel-api/shader-effects/bendy-effect.h b/dali-toolkit/devel-api/shader-effects/bendy-effect.h index 9f9deb5..78f4e69 100644 --- a/dali-toolkit/devel-api/shader-effects/bendy-effect.h +++ b/dali-toolkit/devel-api/shader-effects/bendy-effect.h @@ -2,7 +2,7 @@ #define __DALI_TOOLKIT_SHADER_EFFECT_BENDY_H__ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,7 +19,7 @@ */ // EXTERNAL INCLUDES -#include +#include namespace Dali { @@ -52,7 +52,7 @@ inline ShaderEffect CreateBendyEffect() "void main()\n" "{\n" " mediump float lighting = 0.25;\n" - " mediump vec4 position = uModelView * vec4(aPosition*uSize.xy, 0.0, 1.0);\n" + " mediump vec4 position = uModelView * vec4(aPosition, 1.0);\n" "\n" " mediump vec2 d = position.xy - uCenter;\n" " mediump float dist = max( 0.0, dot(d,uDirection) );\n" @@ -70,7 +70,7 @@ inline ShaderEffect CreateBendyEffect() "\n" "vShade = 1.0 - abs(sn) * lighting;\n" "\n" - "vTexCoord = mix( uTextureRect.xy, uTextureRect.zw, aPosition + vec2(0.5) );\n;\n" + "vTexCoord = mix( sTextureRect.xy, sTextureRect.zw, aTexCoord );\n" "}" ); std::string fragmentShader(