From 0deef37266ae989ae2f380ccfde7a6cfe3578f2d Mon Sep 17 00:00:00 2001 From: "dongsug.song" Date: Tue, 15 Nov 2016 12:32:03 +0900 Subject: [PATCH] Revert "[3.0] Fix the broken build for JavaScript plugin" This reverts commit 00d8b58e8a7c7b8e6b479da226f3486d5ec71111. Change-Id: I7c6006cea1ab9da6c62fa733349ef772533edb99 --- plugins/dali-script-v8/src/rendering/texture-set-api.h | 1 + plugins/dali-script-v8/src/rendering/texture-set-wrapper.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/plugins/dali-script-v8/src/rendering/texture-set-api.h b/plugins/dali-script-v8/src/rendering/texture-set-api.h index a834d86..8b4159d 100644 --- a/plugins/dali-script-v8/src/rendering/texture-set-api.h +++ b/plugins/dali-script-v8/src/rendering/texture-set-api.h @@ -57,6 +57,7 @@ namespace TextureSetApi /** * TextureSet API see texture-set.h for a description */ + void SetImage( const v8::FunctionCallbackInfo< v8::Value >& args ); void SetSampler( const v8::FunctionCallbackInfo< v8::Value >& args ); }; // namespace TextureSetApi diff --git a/plugins/dali-script-v8/src/rendering/texture-set-wrapper.cpp b/plugins/dali-script-v8/src/rendering/texture-set-wrapper.cpp index 5f503ec..5296651 100644 --- a/plugins/dali-script-v8/src/rendering/texture-set-wrapper.cpp +++ b/plugins/dali-script-v8/src/rendering/texture-set-wrapper.cpp @@ -45,6 +45,7 @@ const ApiFunction TextureSetFunctionTable[]= * TextureSet API (in order of texture-set.h) **************************************/ + { "SetImage" , TextureSetApi::SetImage }, { "SetSampler" , TextureSetApi::SetSampler }, }; -- 2.7.4