diff src/video/directfb/SDL_DirectFB_video.h @ 1895:c121d94672cb

SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 10 Jul 2006 21:04:37 +0000
parents d910939febfa
children 0e70b4b8cf84
line wrap: on
line diff
--- a/src/video/directfb/SDL_DirectFB_video.h	Thu Jul 06 18:01:37 2006 +0000
+++ b/src/video/directfb/SDL_DirectFB_video.h	Mon Jul 10 21:04:37 2006 +0000
@@ -35,28 +35,29 @@
 
 struct SDL_PrivateVideoData
 {
-  int                    initialized;
+    int initialized;
 
-  IDirectFB             *dfb;
-  IDirectFBDisplayLayer *layer;
-  IDirectFBEventBuffer  *eventbuffer;
+    IDirectFB *dfb;
+    IDirectFBDisplayLayer *layer;
+    IDirectFBEventBuffer *eventbuffer;
 
-  int nummodes;
-  SDL_Rect **modelist;
+    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 */
+    /* 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)
 
-void SetDirectFBerror (const char *function, DFBResult code);
+void SetDirectFBerror(const char *function, DFBResult code);
 
 #endif /* _SDL_DirectFB_video_h */
+/* vi: set ts=4 sw=4 expandtab: */