Fix Render API for node addon 87/68787/1
authorRichard Huang <r.huang@samsung.com>
Mon, 9 May 2016 16:24:54 +0000 (17:24 +0100)
committerRichard Huang <r.huang@samsung.com>
Mon, 9 May 2016 16:24:54 +0000 (17:24 +0100)
Change-Id: If7be284cdeecf61c7578d5b06282bbf00e8e96f7

plugins/dali-script-v8/src/rendering/renderer-api.h
plugins/dali-script-v8/src/rendering/renderer-wrapper.cpp

index f44eeb8..033729d 100644 (file)
@@ -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 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
 
 
 }; // namespace RendererApi
 
index 75bc2d3..1f1ca19 100644 (file)
@@ -49,10 +49,6 @@ const ApiFunction RendererFunctionTable[]=
    { "GetGeometry"             , RendererApi::GetGeometry },
    { "SetTextures"             , RendererApi::SetTextures },
    { "GetTextures"             , RendererApi::GetTextures },
    { "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]);
 };
 
 const unsigned int RendererFunctionTableCount = sizeof(RendererFunctionTable)/sizeof(RendererFunctionTable[0]);