diff src/video/directfb/SDL_DirectFB_video.h @ 728:5446a009107a

MGA CRTC2 support for DirectFB target contributed by Thomas Jarosch.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 03 Oct 2003 18:26:39 +0000
parents f8482d7c9595
children b8d311d90021
line wrap: on
line diff
--- a/src/video/directfb/SDL_DirectFB_video.h	Wed Oct 01 07:52:33 2003 +0000
+++ b/src/video/directfb/SDL_DirectFB_video.h	Fri Oct 03 18:26:39 2003 +0000
@@ -47,6 +47,16 @@
 
   int nummodes;
   SDL_Rect **modelist;
+
+  /* MGA CRTC2 support */
+  int enable_mga_crtc2;
+  int mga_crtc2_stretch;
+  float mga_crtc2_stretch_overscan;
+  IDirectFBDisplayLayer *c2layer;
+  IDirectFBSurface *c2frame;
+  DFBRectangle c2ssize;	/* Real screen size */
+  DFBRectangle c2dsize;	/* Stretched screen size */
+  DFBRectangle c2framesize;    /* CRTC2 screen size */
 };
 
 #define HIDDEN (this->hidden)