summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/26-occlusion/occlusion.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/examples/26-occlusion/occlusion.cpp')
-rw-r--r--3rdparty/bgfx/examples/26-occlusion/occlusion.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/bgfx/examples/26-occlusion/occlusion.cpp b/3rdparty/bgfx/examples/26-occlusion/occlusion.cpp
index a6971cdd5cd..81e00f0c5fe 100644
--- a/3rdparty/bgfx/examples/26-occlusion/occlusion.cpp
+++ b/3rdparty/bgfx/examples/26-occlusion/occlusion.cpp
@@ -58,7 +58,7 @@ static const uint16_t s_cubeIndices[36] =
6, 3, 7,
};
-class Occlusion : public entry::AppI
+class ExampleOcclusion : public entry::AppI
{
void init(int _argc, char** _argv) BX_OVERRIDE
{
@@ -282,4 +282,4 @@ class Occlusion : public entry::AppI
entry::WindowState m_state;
};
-ENTRY_IMPLEMENT_MAIN(Occlusion);
+ENTRY_IMPLEMENT_MAIN(ExampleOcclusion);