From: Richard Huang Date: Mon, 9 May 2016 16:24:54 +0000 (+0100) Subject: Fix Render API for node addon X-Git-Tag: dali_1.1.34~6 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=commitdiff_plain;h=22fac05feb6021eba8ab72268225a00293119089 Fix Render API for node addon Change-Id: If7be284cdeecf61c7578d5b06282bbf00e8e96f7 --- diff --git a/plugins/dali-script-v8/src/rendering/renderer-api.h b/plugins/dali-script-v8/src/rendering/renderer-api.h index f44eeb8..033729d 100644 --- a/plugins/dali-script-v8/src/rendering/renderer-api.h +++ b/plugins/dali-script-v8/src/rendering/renderer-api.h @@ -61,10 +61,6 @@ namespace RendererApi void GetGeometry( const v8::FunctionCallbackInfo< v8::Value >& args ); void SetTextures( const v8::FunctionCallbackInfo< v8::Value >& args ); void GetTextures( const v8::FunctionCallbackInfo< v8::Value >& args ); - void SetBlendFunc( const v8::FunctionCallbackInfo< v8::Value >& args ); - void GetBlendFunc( const v8::FunctionCallbackInfo< v8::Value >& args ); - void SetBlendEquation( const v8::FunctionCallbackInfo< v8::Value >& args ); - void GetBlendEquation( const v8::FunctionCallbackInfo< v8::Value >& args ); }; // namespace RendererApi diff --git a/plugins/dali-script-v8/src/rendering/renderer-wrapper.cpp b/plugins/dali-script-v8/src/rendering/renderer-wrapper.cpp index 75bc2d3..1f1ca19 100644 --- a/plugins/dali-script-v8/src/rendering/renderer-wrapper.cpp +++ b/plugins/dali-script-v8/src/rendering/renderer-wrapper.cpp @@ -49,10 +49,6 @@ const ApiFunction RendererFunctionTable[]= { "GetGeometry" , RendererApi::GetGeometry }, { "SetTextures" , RendererApi::SetTextures }, { "GetTextures" , RendererApi::GetTextures }, - { "SetBlendFunc" , RendererApi::SetBlendFunc }, - { "GetBlendFunc" , RendererApi::GetBlendFunc }, - { "SetBlendEquation" , RendererApi::SetBlendEquation }, - { "GetBlendEquation" , RendererApi::GetBlendEquation }, }; const unsigned int RendererFunctionTableCount = sizeof(RendererFunctionTable)/sizeof(RendererFunctionTable[0]);