comparison src/video/nanox/SDL_nxevents.c @ 471:26dafefeebb2

Date: Sat, 24 Aug 2002 22:20:01 -0600 From: "Greg Haerr" Subject: Announce: sdl-nanox-patch Sam, I've created an update patch for enhanced Nano-X support with SDL. I've created the patch against SDL-1.2.4. I'd appreciate it if you would apply it to the next SDL version. Enhancements include: 1. Small bugfixes to compile without errors 2. Support for direct client-side framebuffer access with configure option 3. Add dynamic pixel type support for hardware framebuffer; eliminating the need for compile-time configuration option. I've updated the README.NanoX file with the details. This version has been tested with Microwindows v0.89pre9 CVS and SMPEG 0.4.4. I've added multi-threading support to Microwindows to support the multi-threaded SMPEG, and all works fine. To turn on thread safety in Microwindows, use THREADSAFE=Y in the Microwindows config file. Thanks! Regards, Greg Founder, The Microwindows Project http://microwindows.org
author Sam Lantinga <slouken@libsdl.org>
date Sun, 25 Aug 2002 06:21:49 +0000
parents f6ffac90895c
children b8d311d90021
comparison
equal deleted inserted replaced
470:877b992f2d0c 471:26dafefeebb2
1 /* 1 /*
2 SDL - Simple DirectMedia Layer 2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga 3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga
4 Copyright (C) 2001 Hsieh-Fu Tsai 4 Copyright (C) 2001 Hsieh-Fu Tsai
5 Copyright (C) 2002 Greg Haerr <greg@censoft.com>
5 6
6 This library is free software; you can redistribute it and/or 7 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public 8 modify it under the terms of the GNU Library General Public
8 License as published by the Free Software Foundation; either 9 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version. 10 version 2 of the License, or (at your option) any later version.
343 { 344 {
344 Dprintf ("GR_UPDATE_SIZE\n") ; 345 Dprintf ("GR_UPDATE_SIZE\n") ;
345 SDL_PrivateResize (event.update.width, event.update.height) ; 346 SDL_PrivateResize (event.update.width, event.update.height) ;
346 break ; 347 break ;
347 } 348 }
349
350 case GR_UPDATE_MOVE :
351 case GR_UPDATE_REPARENT :
352 {
353 Dprintf ("GR_UPDATE_MOVE or GR_UPDATE_REPARENT\n") ;
354 #ifdef ENABLE_NANOX_DIRECT_FB
355 if (Clientfb) {
356 /* Get current window position and fb pointer*/
357 if (currently_fullscreen)
358 GrGetWindowFBInfo(FSwindow, &fbinfo);
359 else
360 GrGetWindowFBInfo(SDL_Window, &fbinfo);
361 }
362 #endif
363 break ;
364 }
348 365
349 default : 366 default :
350 Dprintf ("unknown GR_EVENT_TYPE_UPDATE\n") ; 367 Dprintf ("unknown GR_EVENT_TYPE_UPDATE\n") ;
351 break ; 368 break ;
352 } 369 }