SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401938
This commit is contained in:
Sam Lantinga 2006-07-10 21:04:37 +00:00
parent 91a32b77a2
commit 0f030a1802
686 changed files with 117556 additions and 98661 deletions

View file

@ -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: */