SDL_x11dga.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_x11dga.c,v 1.4 2002/04/22 21:38:05 wmay Exp $";
  21. #endif
  22. /* This is currently only used to enable DGA mouse.
  23.    The new fullscreen code makes it very difficult to handle DGA dynamically.
  24.    There will be a completely separate DGA driver that is fullscreen-only.
  25. */
  26. #include <stdlib.h> /* For getenv() */
  27. #include "SDL_video.h"
  28. #include "SDL_cursor_c.h"
  29. #include "SDL_x11dga_c.h"
  30. /* Global for the error handler */
  31. int dga_event, dga_error = -1;
  32. void X11_EnableDGAMouse(_THIS)
  33. {
  34. #ifdef XFREE86_DGAMOUSE
  35.     int dga_major, dga_minor;
  36.     int use_dgamouse;
  37.     const char *env_use_dgamouse;
  38.     /* Check configuration to see if we should use DGA mouse */
  39. #ifdef DEFAULT_DGAMOUSE
  40.     use_dgamouse = 1;
  41. #else
  42.     use_dgamouse = 0;
  43. #endif
  44.     env_use_dgamouse = getenv("SDL_VIDEO_X11_DGAMOUSE");
  45.     if ( env_use_dgamouse ) {
  46.         use_dgamouse = atoi(env_use_dgamouse);
  47.     }
  48.     /* Check for buggy X servers */
  49.     if ( use_dgamouse && BUGGY_XFREE86(==, 4000) ) {
  50.         use_dgamouse = 0;
  51.     }
  52.     /* Only use DGA mouse if the cursor is not showing (in relative mode) */
  53.     if ( use_dgamouse && local_X11 && !(using_dga & DGA_MOUSE) &&
  54.          SDL_NAME(XF86DGAQueryExtension)(SDL_Display, &dga_event, &dga_error) &&
  55.          SDL_NAME(XF86DGAQueryVersion)(SDL_Display, &dga_major, &dga_minor) ) {
  56. if ( SDL_NAME(XF86DGADirectVideo)(SDL_Display, SDL_Screen, XF86DGADirectMouse) ) {
  57.             using_dga |= DGA_MOUSE;
  58.         }
  59.     }
  60. #endif /* XFREE86_DGAMOUSE */
  61. }
  62. /* Argh.  Glide resets DGA mouse mode when it makes the context current! */
  63. void X11_CheckDGAMouse(_THIS)
  64. {
  65. #ifdef XFREE86_DGAMOUSE
  66.     int flags;
  67.     if ( using_dga & DGA_MOUSE ) {
  68.         SDL_NAME(XF86DGAQueryDirectVideo)(SDL_Display, SDL_Screen, &flags);
  69.         if ( ! (flags & XF86DGADirectMouse) ) {
  70.                 SDL_NAME(XF86DGADirectVideo)(SDL_Display,SDL_Screen,XF86DGADirectMouse);
  71.         }
  72.     }
  73. #endif
  74. }
  75. void X11_DisableDGAMouse(_THIS)
  76. {
  77. #ifdef XFREE86_DGAMOUSE
  78.     if ( using_dga & DGA_MOUSE ) {
  79. SDL_NAME(XF86DGADirectVideo)(SDL_Display, SDL_Screen, 0);
  80.         using_dga &= ~DGA_MOUSE;
  81.     }
  82. #endif /* XFREE86_DGAMOUSE */
  83. }