Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
158 lines (133 loc) · 5.38 KB

SDL_ph_video.h

File metadata and controls

158 lines (133 loc) · 5.38 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2004 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
Aug 4, 2003
Aug 4, 2003
24
25
#ifndef __SDL_PH_VIDEO_H__
#define __SDL_PH_VIDEO_H__
Apr 26, 2001
Apr 26, 2001
26
27
#include "SDL_mouse.h"
Feb 16, 2006
Feb 16, 2006
28
#include "../SDL_sysvideo.h"
Apr 26, 2001
Apr 26, 2001
29
Jul 18, 2004
Jul 18, 2004
30
31
#include <sys/neutrino.h>
Aug 4, 2003
Aug 4, 2003
32
33
#include <Ph.h>
#include <Pt.h>
Apr 26, 2001
Apr 26, 2001
34
35
#include <photon/Pg.h>
#include <photon/PdDirect.h>
Aug 4, 2003
Aug 4, 2003
36
Feb 16, 2006
Feb 16, 2006
37
#if SDL_VIDEO_OPENGL
May 28, 2006
May 28, 2006
38
39
40
41
42
43
#if (_NTO_VERSION < 630)
#include <photon/PdGL.h>
#else
#include <GL/qnxgl.h>
#include <GL/GLPh.h>
#endif /* 6.3.0 */
Feb 16, 2006
Feb 16, 2006
44
#endif /* SDL_VIDEO_OPENGL */
Apr 26, 2001
Apr 26, 2001
45
46
/* Hidden "this" pointer for the video functions */
Aug 4, 2003
Aug 4, 2003
47
#define _THIS SDL_VideoDevice* this
Apr 26, 2001
Apr 26, 2001
48
Jan 18, 2002
Jan 18, 2002
49
50
#define PH_OGL_MAX_ATTRIBS 32
Mar 23, 2002
Mar 23, 2002
51
52
53
54
#define SDLPH_PAL_NONE 0x00000000L
#define SDLPH_PAL_EMULATE 0x00000001L
#define SDLPH_PAL_SYSTEM 0x00000002L
Aug 4, 2003
Aug 4, 2003
55
56
typedef struct
{
May 28, 2006
May 28, 2006
57
58
59
unsigned char *Y;
unsigned char *V;
unsigned char *U;
Jan 20, 2003
Jan 20, 2003
60
} FRAMEDATA;
Apr 26, 2001
Apr 26, 2001
61
Aug 4, 2003
Aug 4, 2003
62
63
64
65
66
67
68
69
70
71
/* Mask values for SDL_ReallocFormat() */
struct ColourMasks
{
Uint32 red;
Uint32 green;
Uint32 blue;
Uint32 alpha;
Uint32 bpp;
};
Apr 26, 2001
Apr 26, 2001
72
/* Private display data */
Dec 10, 2003
Dec 10, 2003
73
74
struct SDL_PrivateVideoData
{
May 28, 2006
May 28, 2006
75
76
77
PgDisplaySettings_t mode_settings;
PtWidget_t *Window; /* used to handle input events */
PhImage_t *image; /* used to display image */
Feb 16, 2006
Feb 16, 2006
78
#if SDL_VIDEO_OPENGL
May 28, 2006
May 28, 2006
79
80
81
82
83
84
85
86
87
88
89
#if (_NTO_VERSION < 630)
PdOpenGLContext_t *OGLContext; /* OpenGL context */
void *OGLBuffers; /* OpenGL buffers (unused) */
#else
qnxglc_t *OGLContext; /* OpenGL context for the 6.3 */
qnxgl_bufs_t *OGLBuffers; /* OpenGL buffers for the 6.3 */
#endif /* 630 */
Uint32 OGLFlags; /* OpenGL flags */
Uint32 OGLBPP; /* OpenGL bpp */
#endif /* SDL_VIDEO_OPENGL */
Jan 20, 2003
Jan 20, 2003
90
91
PgColor_t savedpal[_Pg_MAX_PALETTE];
PgColor_t syspalph[_Pg_MAX_PALETTE];
Mar 11, 2002
Mar 11, 2002
92
Aug 23, 2003
Aug 23, 2003
93
94
struct
{
May 28, 2006
May 28, 2006
95
96
97
98
99
100
101
102
103
104
PdDirectContext_t *direct_context;
PdOffscreenContext_t *offscreen_context;
PdOffscreenContext_t *offscreen_backcontext;
PhDrawContext_t *oldDC;
uint8_t *dc_ptr;
unsigned char *CurrentFrameData;
unsigned char *FrameData0;
unsigned char *FrameData1;
Uint32 current;
Uint32 flags;
Mar 11, 2002
Mar 11, 2002
105
} ocimage;
Apr 26, 2001
Apr 26, 2001
106
May 28, 2006
May 28, 2006
107
108
109
110
PgHWCaps_t graphics_card_caps; /* Graphics card caps at the moment of start */
PgVideoModeInfo_t desktop_mode; /* Current desktop video mode information */
int old_video_mode; /* Stored mode before fullscreen switch */
int old_refresh_rate; /* Stored refresh rate befor fullscreen switch */
Apr 26, 2001
Apr 26, 2001
111
Mar 11, 2002
Mar 11, 2002
112
int mouse_relative;
May 28, 2006
May 28, 2006
113
WMcursor *BlankCursor;
Feb 14, 2004
Feb 14, 2004
114
uint32_t videomode_emulatemode;
Apr 26, 2001
Apr 26, 2001
115
May 28, 2006
May 28, 2006
116
117
118
Uint32 visualbpp; /* current visual bpp */
Uint32 desktopbpp; /* bpp of desktop at the moment of start */
Uint32 desktoppal; /* palette mode emulation or system */
Apr 26, 2001
Apr 26, 2001
119
120
int currently_fullscreen;
May 28, 2006
May 28, 2006
121
122
int currently_hided; /* 1 - window hided (minimazed), 0 - normal */
int currently_maximized; /* 1 - window hided (minimazed), 0 - normal */
Apr 26, 2001
Apr 26, 2001
123
May 28, 2006
May 28, 2006
124
125
PhEvent_t *event;
SDL_Overlay *overlay;
Apr 26, 2001
Apr 26, 2001
126
127
};
Feb 14, 2004
Feb 14, 2004
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#define mode_settings (this->hidden->mode_settings)
#define window (this->hidden->Window)
#define SDL_Image (this->hidden->image)
#define OCImage (this->hidden->ocimage)
#define old_video_mode (this->hidden->old_video_mode)
#define old_refresh_rate (this->hidden->old_refresh_rate)
#define graphics_card_caps (this->hidden->graphics_card_caps)
#define desktopbpp (this->hidden->desktopbpp)
#define visualbpp (this->hidden->visualbpp)
#define desktoppal (this->hidden->desktoppal)
#define savedpal (this->hidden->savedpal)
#define syspalph (this->hidden->syspalph)
#define currently_fullscreen (this->hidden->currently_fullscreen)
#define currently_hided (this->hidden->currently_hided)
#define currently_maximized (this->hidden->currently_maximized)
Mar 8, 2006
Mar 8, 2006
143
#define phevent (this->hidden->event)
Feb 14, 2004
Feb 14, 2004
144
145
146
147
148
#define current_overlay (this->hidden->overlay)
#define desktop_mode (this->hidden->desktop_mode)
#define mouse_relative (this->hidden->mouse_relative)
#define SDL_BlankCursor (this->hidden->BlankCursor)
#define videomode_emulatemode (this->hidden->videomode_emulatemode)
Apr 26, 2001
Apr 26, 2001
149
Feb 16, 2006
Feb 16, 2006
150
#if SDL_VIDEO_OPENGL
May 28, 2006
May 28, 2006
151
152
153
154
#define oglctx (this->hidden->OGLContext)
#define oglbuffers (this->hidden->OGLBuffers)
#define oglflags (this->hidden->OGLFlags)
#define oglbpp (this->hidden->OGLBPP)
Feb 16, 2006
Feb 16, 2006
155
#endif /* SDL_VIDEO_OPENGL */
Aug 30, 2003
Aug 30, 2003
156
Aug 4, 2003
Aug 4, 2003
157
#endif /* __SDL_PH_VIDEO_H__ */
May 28, 2006
May 28, 2006
158
/* vi: set ts=4 sw=4 expandtab: */