Mercurial > sdl-ios-xcode
annotate src/video/cybergfx/SDL_cgxvideo.h @ 1343:d5c4f8f6855e
*** empty log message ***
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 07 Feb 2006 17:46:19 +0000 |
parents | 604d73db6802 |
children | c71e05b4dc2e |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
3 Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
0 | 7 License as published by the Free Software Foundation; either |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
13 Lesser General Public License for more details. |
0 | 14 |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
21
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 #ifndef _SDL_cgxvideo_h | |
24 #define _SDL_cgxvideo_h | |
25 | |
26 | |
27 #include <exec/exec.h> | |
28 #include <cybergraphx/cybergraphics.h> | |
29 #include <graphics/scale.h> | |
30 #include <graphics/gfx.h> | |
31 #include <intuition/intuition.h> | |
255
dcb5e869f8b5
Updated Amiga port by Gabriele Greco
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
32 #if defined(__SASC) || defined(STORMC4_WOS) |
0 | 33 #include <proto/exec.h> |
34 #include <proto/cybergraphics.h> | |
35 #include <proto/graphics.h> | |
36 #include <proto/intuition.h> | |
37 #include <proto/console.h> | |
38 #else | |
39 #include <inline/exec.h> | |
40 #include <inline/cybergraphics.h> | |
41 #include <inline/graphics.h> | |
42 #include <inline/intuition.h> | |
43 #include <inline/console.h> | |
44 #endif | |
45 | |
1338
604d73db6802
Removed uses of stdlib.h and string.h
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
46 #include "SDL_stdlib.h" |
604d73db6802
Removed uses of stdlib.h and string.h
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
47 #include "SDL_string.h" |
0 | 48 #include "SDL_mouse.h" |
49 #include "SDL_sysvideo.h" | |
1338
604d73db6802
Removed uses of stdlib.h and string.h
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
50 #include "mydebug.h" |
0 | 51 |
52 #define USE_CGX_WRITELUTPIXEL | |
53 | |
54 /* Hidden "this" pointer for the video functions */ | |
55 #define _THIS SDL_VideoDevice *this | |
56 | |
57 /* Private display data */ | |
58 struct SDL_PrivateVideoData { | |
59 struct Screen *Public_Display; /* Used for events and window management */ | |
60 struct Screen *GFX_Display; /* Used for graphics and colormap stuff */ | |
61 Uint32 SDL_VisualUnused; /* The visual used by our window */ | |
62 struct Window *SDL_Window; /* Shared by both displays (no X security?) */ | |
63 unsigned char *BlankCursor; /* The invisible cursor */ | |
64 | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
65 char *SDL_windowid; /* Flag: true if we have been passed a window */ |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
66 |
0 | 67 /* The variables used for displaying graphics */ |
68 Uint8 *Ximage; /* The X image for our window */ | |
69 int swap_pixels; /* Flag: true if display is swapped endian */ | |
70 | |
71 /* The current width and height of the fullscreen mode */ | |
72 int current_w; | |
73 int current_h; | |
74 | |
75 /* Support for internal mouse warping */ | |
76 struct { | |
77 int x; | |
78 int y; | |
79 } mouse_last; | |
80 struct { | |
81 int numerator; | |
82 int denominator; | |
83 int threshold; | |
84 } mouse_accel; | |
85 int mouse_relative; | |
86 | |
87 /* The current list of available video modes */ | |
88 SDL_Rect **modelist; | |
89 | |
90 /* available visuals of interest to us, sorted deepest first */ | |
91 struct { | |
92 Uint32 visual; | |
93 int depth; /* number of significant bits/pixel */ | |
94 int bpp; /* pixel quantum in bits */ | |
95 } visuals[5]; /* at most entries for 8, 15, 16, 24 */ | |
96 int nvisuals; | |
97 | |
98 Uint32 vis; /* current visual in use */ | |
99 int depth; /* current visual depth (not bpp) */ | |
100 int BytesPerPixel; | |
101 int currently_fullscreen,same_format,dbuffer; | |
102 | |
103 /* Automatic mode switching support (entering/leaving fullscreen) */ | |
104 Uint32 switch_waiting; | |
105 Uint32 switch_time; | |
106 | |
107 /* Prevent too many XSync() calls */ | |
108 int blit_queued; | |
109 | |
110 /* Colormap handling */ | |
111 LONG Pens; | |
112 Sint32 *XPixels; /* A list of pixels that have been allocated, the size depends on the screen format */ | |
113 struct ScreenBuffer *SB[2]; | |
114 struct RastPort *RP; | |
115 short *iconcolors; /* List of colors used by the icon */ | |
116 }; | |
117 | |
118 /* Old variable names */ | |
119 #define local_X11 (this->hidden->local_X11) | |
120 #define SDL_Display (this->hidden->Public_Display) | |
121 #define GFX_Display (this->hidden->GFX_Display) | |
122 #define SDL_Screen DefaultScreen(this->hidden->Public_Display) | |
123 | |
124 #define SDL_Visual (this->hidden->vis) | |
125 | |
126 #define SDL_Root RootWindow(SDL_Display, SDL_Screen) | |
127 #define WMwindow (this->hidden->WMwindow) | |
128 #define FSwindow (this->hidden->FSwindow) | |
129 #define SDL_Window (this->hidden->SDL_Window) | |
130 #define WM_DELETE_WINDOW (this->hidden->WM_DELETE_WINDOW) | |
131 #define SDL_BlankCursor (this->hidden->BlankCursor) | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
132 #define SDL_windowid (this->hidden->SDL_windowid) |
0 | 133 #define SDL_Ximage (this->hidden->Ximage) |
134 #define SDL_GC (this->hidden->gc) | |
135 #define swap_pixels (this->hidden->swap_pixels) | |
136 #define current_w (this->hidden->current_w) | |
137 #define current_h (this->hidden->current_h) | |
138 #define mouse_last (this->hidden->mouse_last) | |
139 #define mouse_accel (this->hidden->mouse_accel) | |
140 #define mouse_relative (this->hidden->mouse_relative) | |
141 #define SDL_modelist (this->hidden->modelist) | |
142 #define SDL_RastPort (this->hidden->RP) | |
143 #define saved_mode (this->hidden->saved_mode) | |
144 #define saved_view (this->hidden->saved_view) | |
145 #define currently_fullscreen (this->hidden->currently_fullscreen) | |
146 #define blit_queued (this->hidden->blit_queued) | |
147 #define SDL_DisplayColormap (this->hidden->GFX_Display->ViewPort.ColorMap) | |
148 #define SDL_XPixels (this->hidden->XPixels) | |
149 #define SDL_iconcolors (this->hidden->iconcolors) | |
150 | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
151 /* Used to get the X cursor from a window-manager specific cursor */ |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
152 // extern Cursor SDL_GetWMXCursor(WMcursor *cursor); |
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
153 |
0 | 154 extern int CGX_CreateWindow(_THIS, SDL_Surface *screen, |
155 int w, int h, int bpp, Uint32 flags); | |
156 extern int CGX_ResizeWindow(_THIS, | |
157 SDL_Surface *screen, int w, int h, Uint32 flags); | |
158 | |
159 extern void CGX_DestroyWindow(_THIS, SDL_Surface *screen); | |
160 | |
161 extern struct Library *CyberGfxBase; | |
162 extern struct IntuitionBase *IntuitionBase; | |
163 extern struct GfxBase *GfxBase; | |
164 extern struct ExecBase *SysBase; | |
165 extern struct DosLibrary *DOSBase; | |
166 | |
167 struct private_hwdata | |
168 { | |
169 struct BitMap *bmap; | |
170 APTR lock; | |
171 struct SDL_VideoDevice *videodata; | |
172 APTR mask; | |
255
dcb5e869f8b5
Updated Amiga port by Gabriele Greco
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
173 int allocated; |
0 | 174 }; |
175 | |
176 int CGX_CheckHWBlit(_THIS,SDL_Surface *src,SDL_Surface *dst); | |
177 int CGX_FillHWRect(_THIS,SDL_Surface *dst,SDL_Rect *dstrect,Uint32 color); | |
178 int CGX_SetHWColorKey(_THIS,SDL_Surface *surface, Uint32 key); | |
179 #endif /* _SDL_x11video_h */ |