summaryrefslogtreecommitdiffstats
path: root/src/runtimerender/Qt3DSRenderDynamicObjectSystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtimerender/Qt3DSRenderDynamicObjectSystem.cpp')
-rw-r--r--src/runtimerender/Qt3DSRenderDynamicObjectSystem.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/runtimerender/Qt3DSRenderDynamicObjectSystem.cpp b/src/runtimerender/Qt3DSRenderDynamicObjectSystem.cpp
index a836989..6553ee9 100644
--- a/src/runtimerender/Qt3DSRenderDynamicObjectSystem.cpp
+++ b/src/runtimerender/Qt3DSRenderDynamicObjectSystem.cpp
@@ -90,6 +90,8 @@ namespace render {
return sizeof(SApplyDepthValue);
case CommandTypes::ApplyInstanceValue:
return sizeof(SApplyInstanceValue);
+ case CommandTypes::ApplyDepth:
+ return sizeof(SApplyDepth);
case CommandTypes::ApplyBlending:
return sizeof(SApplyBlending);
case CommandTypes::ApplyRenderState:
@@ -155,6 +157,9 @@ namespace render {
case CommandTypes::ApplyInstanceValue:
CopyConstructCommandT<SApplyInstanceValue>(inDataBuffer, inCommand, inStrTable);
break;
+ case CommandTypes::ApplyDepth:
+ CopyConstructCommandT<SApplyDepth>(inDataBuffer, inCommand, inStrTable);
+ break;
case CommandTypes::ApplyBlending:
CopyConstructCommandT<SApplyBlending>(inDataBuffer, inCommand, inStrTable);
break;