changeset 2266:ecc17b2e129e

Add constants for "full" C64 screen dimensions, including the border regions. These are for future support of fullscreen image formats.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 17 Jun 2019 05:31:38 +0300
parents 48b48251610a
children 3739e2ac8bb1
files tools/lib64gfx.h
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tools/lib64gfx.h	Mon Jun 17 02:03:35 2019 +0300
+++ b/tools/lib64gfx.h	Mon Jun 17 05:31:38 2019 +0300
@@ -28,6 +28,10 @@
 #define D64_SCR_CH_WIDTH       (D64_SCR_WIDTH/8)
 #define D64_SCR_CH_HEIGHT      (D64_SCR_HEIGHT/8)
 
+#define D64_SCR_FULL_WIDTH     384
+#define D64_SCR_FULL_HEIGHT    272
+#define D64_SCR_VIS_XOFFS      24
+#define D64_SCR_VIS_YOFFS      50
 
 // C64 video screen pixel aspect ratio on PAL
 #define D64_SCR_PAR_XY         (0.9365f)