comparison include/SDL_syswm.h @ 1035:974ba6ae0fa3

Date: Wed, 26 Jan 2005 13:37:09 GMT From: Peter Naulls Subject: RISC OS SDL Patches Sam, I've attached a diff of the latest changes to libSDL for RISC OS support. These changes are by Alan Buckley and myself. The most significant of these are: Optimised assembler blit rountines - I've attached the file src/video/riscos/SDL_riscosASM.s which is needed for this. Move to using /dev/dsp instead of its own audio implementation. This means that src/audio/riscos/SDL_drenderer.c should be removed Typo fixes. Mainly correct spelling of "RISC OS", but some from elsewhere too.
author Sam Lantinga <slouken@libsdl.org>
date Sat, 12 Feb 2005 18:01:31 +0000
parents 0f3aa6ab3341
children 609c060fd2a2
comparison
equal deleted inserted replaced
1034:2eca15c3f609 1035:974ba6ae0fa3
138 SDL_version version; 138 SDL_version version;
139 int eventCode; /* The window for the message */ 139 int eventCode; /* The window for the message */
140 int pollBlock[64]; 140 int pollBlock[64];
141 }; 141 };
142 142
143 /* The RISCOS custom window manager information structure */ 143 /* The RISC OS custom window manager information structure */
144 typedef struct SDL_SysWMinfo { 144 typedef struct SDL_SysWMinfo {
145 SDL_version version; 145 SDL_version version;
146 int wimpVersion; /* Wimp version running under */ 146 int wimpVersion; /* Wimp version running under */
147 int taskHandle; /* The RISCOS task handle */ 147 int taskHandle; /* The RISC OS task handle */
148 int window; /* The RISCOS display window */ 148 int window; /* The RISC OS display window */
149 } SDL_SysWMinfo; 149 } SDL_SysWMinfo;
150 150
151 #elif defined(__QNXNTO__) 151 #elif defined(__QNXNTO__)
152 #include <sys/neutrino.h> 152 #include <sys/neutrino.h>
153 #include <Ph.h> 153 #include <Ph.h>