summaryrefslogtreecommitdiffstats
path: root/Common/NativeApp/src/MacOS/MacOSAppBase.cpp
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-02-16 06:48:41 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-02-16 06:48:41 +0000
commite33d94fecd272db4bf542541c069e9e2c168c1d5 (patch)
treec4c33fe97b817ed67fc505059a6323336660311f /Common/NativeApp/src/MacOS/MacOSAppBase.cpp
parentUpdated samples (fixed linux/max build error) (diff)
downloadDiligentEngine-e33d94fecd272db4bf542541c069e9e2c168c1d5.tar.gz
DiligentEngine-e33d94fecd272db4bf542541c069e9e2c168c1d5.zip
Moved NativeApp to Diligent namespace
Diffstat (limited to 'Common/NativeApp/src/MacOS/MacOSAppBase.cpp')
-rw-r--r--Common/NativeApp/src/MacOS/MacOSAppBase.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Common/NativeApp/src/MacOS/MacOSAppBase.cpp b/Common/NativeApp/src/MacOS/MacOSAppBase.cpp
index d4c68a8..f3d0313 100644
--- a/Common/NativeApp/src/MacOS/MacOSAppBase.cpp
+++ b/Common/NativeApp/src/MacOS/MacOSAppBase.cpp
@@ -23,6 +23,9 @@
#include "MacOSAppBase.h"
+namespace Diligent
+{
+
void MacOSAppBase::Update()
{
// Render the scene
@@ -32,3 +35,4 @@ void MacOSAppBase::Update()
Update(CurrTime, ElapsedTime);
}
+}