Removed unused constants

Except for SDL_bmp.c where they are historically interesting and I've left them in.
This commit is contained in:
Sam Lantinga
2016-11-15 01:24:58 -08:00
parent acce865911
commit 0d24495b15
6 changed files with 2 additions and 26 deletions

View File

@@ -90,11 +90,6 @@
#include "SDL_blit.h"
#include "SDL_RLEaccel_c.h"
/*
#ifndef MAX
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#endif
*/
#ifndef MIN
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#endif

View File

@@ -43,8 +43,8 @@
/* Compression encodings for BMP files */
#ifndef BI_RGB
#define BI_RGB 0
/* #define BI_RLE8 1 */
/* #define BI_RLE4 2 */
#define BI_RLE8 1
#define BI_RLE4 2
#define BI_BITFIELDS 3
#endif

View File

@@ -519,18 +519,6 @@ X11_GL_GetVisual(_THIS, Display * display, int screen)
return vinfo;
}
#if 0
#ifndef GLXBadContext
#define GLXBadContext 0
#endif
#ifndef GLXBadFBConfig
#define GLXBadFBConfig 9
#endif
#ifndef GLXBadProfileARB
#define GLXBadProfileARB 13
#endif
#endif
static int (*handler) (Display *, XErrorEvent *) = NULL;
static const char *errorHandlerOperation = NULL;
static int errorBase = 0;

View File

@@ -44,7 +44,6 @@
#define _NET_WM_STATE_REMOVE 0l
#define _NET_WM_STATE_ADD 1l
/* #define _NET_WM_STATE_TOGGLE 2l */
static Bool isMapNotify(Display *dpy, XEvent *ev, XPointer win)
{