summaryrefslogtreecommitdiffstats
path: root/src/video_core/src/video_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/src/video_core.h')
-rw-r--r--src/video_core/src/video_core.h17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/video_core/src/video_core.h b/src/video_core/src/video_core.h
index 9b80d7715..10b8f1105 100644
--- a/src/video_core/src/video_core.h
+++ b/src/video_core/src/video_core.h
@@ -33,8 +33,19 @@
namespace VideoCore {
-extern RendererBase* g_renderer; ///< Renderer plugin
-extern int g_current_frame; ///< Current frame
+// 3DS Video Constants
+// -------------------
+
+static const int kScreenTopWidth = 400; ///< 3DS top screen width
+static const int kScreenTopHeight = 240; ///< 3DS top screen height
+static const int kScreenBottomWidth = 320; ///< 3DS bottom screen width
+static const int kScreenBottomHeight = 240; ///< 3DS bottom screen height
+
+// Video core renderer
+// ---------------------
+
+extern RendererBase* g_renderer; ///< Renderer plugin
+extern int g_current_frame; ///< Current frame
/// Start the video core
void Start();
@@ -43,6 +54,6 @@ void Start();
void Init(EmuWindow* emu_window);
/// Shutdown the video core
-void ShutDown();
+void Shutdown();
} // namespace