diff src/video/x11/SDL_x11dga.c @ 1668:4da1ee79c9af SDL-1.3

more tweaking indent options
author Sam Lantinga <slouken@libsdl.org>
date Mon, 29 May 2006 04:04:35 +0000
parents 782fd950bd46
children
line wrap: on
line diff
--- a/src/video/x11/SDL_x11dga.c	Mon May 29 03:53:21 2006 +0000
+++ b/src/video/x11/SDL_x11dga.c	Mon May 29 04:04:35 2006 +0000
@@ -34,7 +34,7 @@
 int dga_event, dga_error = -1;
 
 void
-X11_EnableDGAMouse (_THIS)
+X11_EnableDGAMouse(_THIS)
 {
 #if SDL_VIDEO_DRIVER_X11_DGAMOUSE
     int dga_major, dga_minor;
@@ -43,20 +43,20 @@
 
     /* Check configuration to see if we should use DGA mouse */
     use_dgamouse = 1;
-    env_use_dgamouse = SDL_getenv ("SDL_VIDEO_X11_DGAMOUSE");
+    env_use_dgamouse = SDL_getenv("SDL_VIDEO_X11_DGAMOUSE");
     if (env_use_dgamouse) {
-        use_dgamouse = atoi (env_use_dgamouse);
+        use_dgamouse = atoi(env_use_dgamouse);
     }
     /* Check for buggy X servers */
-    if (use_dgamouse && BUGGY_XFREE86 ( ==, 4000)) {
+    if (use_dgamouse && BUGGY_XFREE86( ==, 4000)) {
         use_dgamouse = 0;
     }
     /* Only use DGA mouse if the cursor is not showing (in relative mode) */
     if (use_dgamouse && local_X11 && !(using_dga & DGA_MOUSE) &&
-        SDL_NAME (XF86DGAQueryExtension) (SDL_Display, &dga_event, &dga_error)
-        && SDL_NAME (XF86DGAQueryVersion) (SDL_Display, &dga_major,
-                                           &dga_minor)) {
-        if (SDL_NAME (XF86DGADirectVideo)
+        SDL_NAME(XF86DGAQueryExtension) (SDL_Display, &dga_event, &dga_error)
+        && SDL_NAME(XF86DGAQueryVersion) (SDL_Display, &dga_major,
+                                          &dga_minor)) {
+        if (SDL_NAME(XF86DGADirectVideo)
             (SDL_Display, SDL_Screen, XF86DGADirectMouse)) {
             using_dga |= DGA_MOUSE;
         }
@@ -66,27 +66,27 @@
 
 /* Argh.  Glide resets DGA mouse mode when it makes the context current! */
 void
-X11_CheckDGAMouse (_THIS)
+X11_CheckDGAMouse(_THIS)
 {
 #if SDL_VIDEO_DRIVER_X11_DGAMOUSE
     int flags;
 
     if (using_dga & DGA_MOUSE) {
-        SDL_NAME (XF86DGAQueryDirectVideo) (SDL_Display, SDL_Screen, &flags);
+        SDL_NAME(XF86DGAQueryDirectVideo) (SDL_Display, SDL_Screen, &flags);
         if (!(flags & XF86DGADirectMouse)) {
-            SDL_NAME (XF86DGADirectVideo) (SDL_Display, SDL_Screen,
-                                           XF86DGADirectMouse);
+            SDL_NAME(XF86DGADirectVideo) (SDL_Display, SDL_Screen,
+                                          XF86DGADirectMouse);
         }
     }
 #endif
 }
 
 void
-X11_DisableDGAMouse (_THIS)
+X11_DisableDGAMouse(_THIS)
 {
 #if SDL_VIDEO_DRIVER_X11_DGAMOUSE
     if (using_dga & DGA_MOUSE) {
-        SDL_NAME (XF86DGADirectVideo) (SDL_Display, SDL_Screen, 0);
+        SDL_NAME(XF86DGADirectVideo) (SDL_Display, SDL_Screen, 0);
         using_dga &= ~DGA_MOUSE;
     }
 #endif /* SDL_VIDEO_DRIVER_X11_DGAMOUSE */