summaryrefslogtreecommitdiffstats
path: root/src/Runtime/Source/Qt3DSRuntimeRender/Include/Qt3DSRenderPlugin.h
diff options
context:
space:
mode:
authorTomi Korpipaa <tomi.korpipaa@qt.io>2018-04-17 13:45:41 +0300
committerMiikka Heikkinen <miikka.heikkinen@qt.io>2018-04-19 13:17:35 +0000
commit9c650461a3ed3153af770d20acfcd8bebc53ee9b (patch)
tree61fcb55518f366eddc2cf4165745af0ad5315de5 /src/Runtime/Source/Qt3DSRuntimeRender/Include/Qt3DSRenderPlugin.h
parent5e05211fc97c805bcb265e3ef6b84602c544cf33 (diff)
Remove LUA
There are two files left with LuaSocket 3.0 license header. Should be checked if those are still needed or not. Task-number: QT3DS-12 Change-Id: Ifd3c7f7599a96e86addf18c7d9170c681dfecd93 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Diffstat (limited to 'src/Runtime/Source/Qt3DSRuntimeRender/Include/Qt3DSRenderPlugin.h')
-rw-r--r--src/Runtime/Source/Qt3DSRuntimeRender/Include/Qt3DSRenderPlugin.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Runtime/Source/Qt3DSRuntimeRender/Include/Qt3DSRenderPlugin.h b/src/Runtime/Source/Qt3DSRuntimeRender/Include/Qt3DSRenderPlugin.h
index b983229f..eb71f846 100644
--- a/src/Runtime/Source/Qt3DSRuntimeRender/Include/Qt3DSRenderPlugin.h
+++ b/src/Runtime/Source/Qt3DSRuntimeRender/Include/Qt3DSRenderPlugin.h
@@ -47,12 +47,11 @@ namespace render {
virtual ~IRenderPluginInstance() {}
public:
static const char *IRenderPluginOffscreenRendererType() { return "IRenderPluginInstance"; }
- // If this render plugin has an instance ptr, get it. This is what will be used
- // in lua whan an element's instance ptr is found.
+ // If this render plugin has an instance ptr, get it.
virtual TRenderPluginInstancePtr GetRenderPluginInstance() = 0;
virtual void Update(NVConstDataRef<SRenderPropertyValueUpdate> updateBuffer) = 0;
virtual IRenderPluginClass &GetPluginClass() = 0;
- virtual void CreateLuaProxy(lua_State *state) = 0;
+ virtual void CreateScriptProxy(script_State *state) = 0;
};
struct RenderPluginPropertyValueTypes
{