Mercurial > sdl-ios-xcode
annotate src/video/photon/SDL_ph_video.h @ 309:2de77f7b7a28
*** empty log message ***
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 11 Mar 2002 17:38:56 +0000 |
parents | f6ffac90895c |
children | 3333b6e68289 |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
297
f6ffac90895c
Updated copyright information for 2002
Sam Lantinga <slouken@libsdl.org>
parents:
266
diff
changeset
|
3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
6 modify it under the terms of the GNU Library General Public | |
7 License as published by the Free Software Foundation; either | |
8 version 2 of the License, or (at your option) any later version. | |
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 | |
13 Library General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU Library General Public | |
16 License along with this library; if not, write to the Free | |
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 #ifndef _SDL_ph_video_h | |
24 #define _SDL_ph_video_h | |
25 | |
26 #include "SDL_mouse.h" | |
27 #include "SDL_sysvideo.h" | |
28 | |
29 #include "Ph.h" | |
30 #include "Pt.h" | |
31 #include <photon/Pg.h> | |
32 #include <photon/PdDirect.h> | |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
33 #ifdef HAVE_OPENGL |
266
c6abdda2f666
Added QNX cleanups by Mike Gorchak (thanks!)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
34 #include <photon/PdGL.h> |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
35 #endif /* HAVE_OPENGL */ |
0 | 36 |
37 /* Hidden "this" pointer for the video functions */ | |
38 #define _THIS SDL_VideoDevice *this | |
39 | |
266
c6abdda2f666
Added QNX cleanups by Mike Gorchak (thanks!)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
40 #define PH_OGL_MAX_ATTRIBS 32 |
c6abdda2f666
Added QNX cleanups by Mike Gorchak (thanks!)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
41 |
0 | 42 typedef union vidptr{ |
43 uint8_t *volatile ptr8; | |
44 uint16_t *volatile ptr16; | |
45 uint32_t *volatile ptr32; | |
46 } VidPtr_t; | |
47 | |
48 typedef struct { | |
49 unsigned char *Y; | |
50 unsigned char *V; | |
51 unsigned char *U; | |
52 }FRAMEDATA; | |
53 | |
54 #define EVENT_SIZE sizeof( PhEvent_t ) + 1000 | |
55 | |
56 /* Private display data */ | |
57 struct SDL_PrivateVideoData { | |
58 int local_ph; /* Flag: true if local display */ | |
59 PtAppContext_t app; | |
60 PgDisplaySettings_t mode_settings; | |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
61 PtWidget_t *Window; /* used to handle input events */ |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
62 PhImage_t *image; /* used to display image */ |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
63 #ifdef HAVE_OPENGL |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
64 PdOpenGLContext_t* OGLContext; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
65 #endif /* HAVE_OPENGL */ |
0 | 66 |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
67 struct { |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
68 PdDirectContext_t *direct_context; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
69 PdOffscreenContext_t *offscreen_context; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
70 VidPtr_t dc_ptr; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
71 FRAMEDATA *CurrentFrameData; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
72 FRAMEDATA *FrameData0; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
73 FRAMEDATA *FrameData1; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
74 int current; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
75 long Stride; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
76 long flags; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
77 } ocimage; |
0 | 78 |
79 PhDrawContext_t *ScreenDC; //=NULL; | |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
80 signed short old_video_mode; //=-1; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
81 signed short old_refresh_rate; //=-1; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
82 PgHWCaps_t graphics_card_caps; |
0 | 83 |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
84 PdDirectContext_t *directContext; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
85 PdOffscreenContext_t *Buff[2]; |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
86 struct _Ph_ctrl* ctrl_channel; |
0 | 87 |
88 /* The variables used for displaying graphics */ | |
89 | |
90 /* The current width and height of the fullscreen mode */ | |
91 int current_w; | |
92 int current_h; | |
93 | |
94 /* Support for internal mouse warping */ | |
95 struct { | |
96 int x; | |
97 int y; | |
98 } mouse_last; | |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
99 |
0 | 100 struct { |
101 int numerator; | |
102 int denominator; | |
103 int threshold; | |
104 } mouse_accel; | |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
105 |
0 | 106 int mouse_relative; |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
107 WMcursor* BlankCursor; |
0 | 108 |
109 int depth; /* current visual depth (not bpp) */ | |
110 | |
111 int use_vidmode; | |
112 int currently_fullscreen; | |
113 | |
114 /* Automatic mode switching support (entering/leaving fullscreen) */ | |
115 Uint32 switch_waiting; | |
116 Uint32 switch_time; | |
117 | |
118 /* Prevent too many XSync() calls */ | |
119 int blit_queued; | |
120 | |
121 short *iconcolors; /* List of colors used by the icon */ | |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
122 PhEvent_t* event; |
0 | 123 }; |
124 | |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
125 #define local_ph (this->hidden->local_ph) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
126 #define app (this->hidden->app) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
127 #define mode_settings (this->hidden->mode_settings) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
128 #define window (this->hidden->Window) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
129 #define oglctx (this->hidden->OGLContext) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
130 #define directContext (this->hidden->directContext) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
131 #define Buff (this->hidden->Buff) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
132 #define ctrl_channel (this->hidden->ctrl_channel) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
133 #define SDL_Image (this->hidden->image) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
134 #define OCImage (this->hidden->ocimage) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
135 #define old_video_mode (this->hidden->old_video_mode) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
136 #define old_refresh_rate (this->hidden->old_refresh_rate) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
137 #define graphics_card_caps (this->hidden->graphics_card_caps) |
0 | 138 |
139 /* Old variable names */ | |
309
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
140 #define swap_pixels (this->hidden->swap_pixels) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
141 #define current_w (this->hidden->current_w) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
142 #define current_h (this->hidden->current_h) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
143 #define mouse_last (this->hidden->mouse_last) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
144 #define mouse_accel (this->hidden->mouse_accel) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
145 #define mouse_relative (this->hidden->mouse_relative) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
146 #define saved_mode (this->hidden->saved_mode) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
147 #define saved_view (this->hidden->saved_view) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
148 #define use_vidmode (this->hidden->use_vidmode) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
149 #define currently_fullscreen (this->hidden->currently_fullscreen) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
150 #define switch_waiting (this->hidden->switch_waiting) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
151 #define switch_time (this->hidden->switch_time) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
152 #define blit_queued (this->hidden->blit_queued) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
153 #define SDL_iconcolorIs (this->hidden->iconcolors) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
154 #define event (this->hidden->event) |
2de77f7b7a28
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
155 #define SDL_BlankCursor (this->hidden->BlankCursor) |
0 | 156 |
157 #endif /* _SDL_x11video_h */ |