Mercurial > sdl-ios-xcode
annotate src/video/windx5/directx.h @ 663:8bedd6d61642
Date: Sat, 2 Aug 2003 16:22:51 +0300
From: "Mike Gorchak"
Subject: New patches for QNX6
Here my patches for the SDL/QNX:
QNXSDL.diff - diff to non-QNX related sources:
- updated BUGS file, I think QNX6 is now will be officially supported
- configure.in - added shared library support for QNX, and removed dependency between the ALSA and QNX6.
- SDL_audio.c - added QNX NTO sound bootstrap insted of ALSA's.
- SDL_sysaudio.h - the same.
- SDL_nto_audio.c - the same.
- SDL_video.c - right now, QNX doesn't offer any method to obtain pointers to the OpenGL functions by function name, so they must be hardcoded in library, otherwise OpenGL will not be supported.
- testsprite.c - fixed: do not draw vertical red line if we are in non-double-buffered mode.
sdlqnxph.tar.gz - archive of the ./src/video/photon/* . Too many changes in code to make diffs :) :
+ Added stub for support hide/unhide window event
+ Added full YUV overlays support.
+ Added window maximize support.
+ Added mouse wheel events.
+ Added support for some specific key codes in Unicode mode (like ESC).
+ Added more checks to the all memory allocation code.
+ Added SDL_DOUBLEBUF support in all fullscreen modes.
+ Added fallback to window mode, if desired fullscreen mode is not supported.
+ Added stub support for the GL_LoadLibrary and GL_GetProcAddress functions.
+ Added resizable window support without caption.
! Fixed bug in the Ph_EV_EXPOSE event handler, when rectangles to update is 0 and when width or height of the rectangle is 0.
! Fixed bug in the event handler code. Events has not been passed to the window widget handler.
! Fixed codes for Win keys (Super/Hyper/Menu).
! Fixed memory leak, when deallocation palette.
! Fixed palette emulation code bugs.
! Fixed fullscreen and hwsurface handling.
! Fixed CLOSE button bug. First event was passed to the handler, but second terminated the application. Now all events passed to the application correctly.
- Removed all printfs in code, now SDL_SetError used instead of them.
- Disabled ToggleFullScreen function.
README.QNX - updated README.QNX file. Added much more issues.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 04 Aug 2003 00:52:42 +0000 |
parents | 35d9c8a5aa10 |
children | 450721ad5436 |
rev | line source |
---|---|
0 | 1 |
265 | 2 #ifndef _directx_h |
0 | 3 #define _directx_h |
4 | |
5 /* Include all of the DirectX 5.0 headers and adds any necessary tweaks */ | |
6 | |
7 #include <windows.h> | |
8 #include <mmsystem.h> | |
9 #ifndef WIN32 | |
10 #define WIN32 | |
11 #endif | |
12 #undef WINNT | |
13 | |
14 /* Far pointers don't exist in 32-bit code */ | |
15 #ifndef FAR | |
16 #define FAR | |
17 #endif | |
18 | |
19 /* Error codes not yet included in Win32 API header files */ | |
20 #ifndef MAKE_HRESULT | |
21 #define MAKE_HRESULT(sev,fac,code) \ | |
22 ((HRESULT)(((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) | ((unsigned long)(code)))) | |
23 #endif | |
24 | |
25 #ifndef S_OK | |
26 #define S_OK (HRESULT)0x00000000L | |
27 #endif | |
28 | |
29 #ifndef SUCCEEDED | |
30 #define SUCCEEDED(x) ((HRESULT)(x) >= 0) | |
31 #endif | |
32 #ifndef FAILED | |
33 #define FAILED(x) ((HRESULT)(x)<0) | |
34 #endif | |
35 | |
36 #ifndef E_FAIL | |
37 #define E_FAIL (HRESULT)0x80000008L | |
38 #endif | |
39 #ifndef E_NOINTERFACE | |
40 #define E_NOINTERFACE (HRESULT)0x80004002L | |
41 #endif | |
42 #ifndef E_OUTOFMEMORY | |
43 #define E_OUTOFMEMORY (HRESULT)0x8007000EL | |
44 #endif | |
45 #ifndef E_INVALIDARG | |
46 #define E_INVALIDARG (HRESULT)0x80070057L | |
47 #endif | |
48 #ifndef E_NOTIMPL | |
49 #define E_NOTIMPL (HRESULT)0x80004001L | |
50 #endif | |
51 #ifndef REGDB_E_CLASSNOTREG | |
52 #define REGDB_E_CLASSNOTREG (HRESULT)0x80040154L | |
53 #endif | |
54 | |
55 /* Severity codes */ | |
56 #ifndef SEVERITY_ERROR | |
57 #define SEVERITY_ERROR 1 | |
58 #endif | |
59 | |
60 /* Error facility codes */ | |
61 #ifndef FACILITY_WIN32 | |
62 #define FACILITY_WIN32 7 | |
63 #endif | |
64 | |
65 #ifndef FIELD_OFFSET | |
66 #define FIELD_OFFSET(type, field) ((LONG)&(((type *)0)->field)) | |
67 #endif | |
68 | |
69 /* DirectX headers (if it isn't included, I haven't tested it yet) | |
70 */ | |
71 /* We need these defines to mark what version of DirectX API we use */ | |
72 #define DIRECTDRAW_VERSION 0x0700 | |
73 #define DIRECTSOUND_VERSION 0x0500 | |
74 #define DIRECTINPUT_VERSION 0x0500 | |
75 | |
76 #ifdef __GNUC__ | |
77 #define NONAMELESSUNION | |
78 #endif | |
79 #include <ddraw.h> | |
80 #include <dsound.h> | |
81 #include <dinput.h> | |
82 | |
83 #endif /* _directx_h */ |