mesa: Unifdef _WIN32_WCE.
authorMatt Turner <mattst88@gmail.com>
Mon, 22 Sep 2014 05:57:10 +0000 (22:57 -0700)
committerMatt Turner <mattst88@gmail.com>
Wed, 24 Sep 2014 16:58:43 +0000 (09:58 -0700)
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
src/gallium/auxiliary/util/u_snprintf.c
src/gallium/state_trackers/egl/x11/glcore.h
src/mapi/glapi/gen/gl_gentable.py
src/mapi/glapi/glapi_nop.c
src/mesa/main/compiler.h
src/mesa/main/errors.c
src/mesa/main/imports.c

index a24b6ff38db6399b6b629a4af9ff0a71ccd90348..7a2bf2a6f785544eb623077146e02af0dc321643 100644 (file)
@@ -334,15 +334,6 @@ static void *mymemcpy(void *, void *, size_t);
 #endif /* HAVE_UINTPTR_T || defined(uintptr_t) */
 #endif /* !defined(UINTPTR_T) */
 
-/* WinCE5.0 does not have uintptr_t defined */ 
-#if (_WIN32_WCE < 600) 
-#ifdef UINTPTR_T 
-#undef UINTPTR_T 
-#endif 
-#define UINTPTR_T unsigned long int 
-#endif 
-
-
 /* Support for ptrdiff_t. */
 #ifndef PTRDIFF_T
 #if HAVE_PTRDIFF_T || defined(ptrdiff_t)
index 547b1113707e231e771b82d87b42bed39fc56ccb..99de6c097f4cacad071e1c385b68ee32311f6020 100644 (file)
@@ -31,9 +31,7 @@
  * Silicon Graphics, Inc.
  */
 
-#if !defined(_WIN32_WCE)
 #include <sys/types.h>
-#endif
 
 #define GL_CORE_SGI  1
 #define GL_CORE_MESA 2
index ce9af99d50cd6477edd38889a38be102fdf2a849..deffcee4d17c1293f57e201720c6f668a1279c92 100644 (file)
@@ -42,7 +42,7 @@ header = """/* GLXEXT is the define used in the xserver when the GLX extension i
 #endif
 
 #if (defined(GLXEXT) && defined(HAVE_BACKTRACE)) \\
-       || (!defined(GLXEXT) && defined(DEBUG) && !defined(_WIN32_WCE) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__DragonFly__))
+       || (!defined(GLXEXT) && defined(DEBUG) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__DragonFly__))
 #define USE_BACKTRACE
 #endif
 
index 2597c8cb8f2b4e129e3b368ecda3e1c56ba7ef93..628276e932b07d5eb677a6fd17d66596c9512cfa 100644 (file)
@@ -63,7 +63,7 @@ _glapi_set_warning_func(_glapi_proc func)
 static int
 Warn(const char *func)
 {
-#if defined(DEBUG) && !defined(_WIN32_WCE)
+#if defined(DEBUG)
    if (getenv("MESA_DEBUG") || getenv("LIBGL_DEBUG")) {
       fprintf(stderr, "GL User Error: gl%s called without a rendering context\n",
               func);
@@ -103,11 +103,9 @@ NoOpUnused(void)
 static int
 NoOpGeneric(void)
 {
-#if !defined(_WIN32_WCE)
    if (getenv("MESA_DEBUG") || getenv("LIBGL_DEBUG")) {
       fprintf(stderr, "GL User Error: calling GL function without a rendering context\n");
    }
-#endif
    return 0;
 }
 
index 813bf1905f5f03952f9ef1d0a93097bdc1b4e9b7..185c911ab22780295c2d6d6eda3e399f32064a58 100644 (file)
@@ -214,13 +214,11 @@ static inline GLuint CPU_TO_LE32(GLuint x)
 /**
  * ASSERT macro
  */
-#if !defined(_WIN32_WCE)
 #if defined(DEBUG)
 #  define ASSERT(X)   assert(X)
 #else
 #  define ASSERT(X)
 #endif
-#endif
 
 
 /*
index 9cde1e020042794ea452a247f1b9a2d7f5331a7d..995fc8205069ec1648d5471337d91214449535b2 100644 (file)
@@ -1194,7 +1194,7 @@ output_if_debug(const char *prefixString, const char *outputString,
          fprintf(fout, "\n");
       fflush(fout);
 
-#if defined(_WIN32) && !defined(_WIN32_WCE)
+#if defined(_WIN32)
       /* stderr from windows applications without console is not usually 
        * visible, so communicate with the debugger instead */ 
       {
index 5809a621d4a105d312f7e1aca61bd2d27825b958..b8ec2e78550aa8fe0d7bc2c3b477564e3aadd0c3 100644 (file)
@@ -485,24 +485,7 @@ void *
 _mesa_bsearch( const void *key, const void *base, size_t nmemb, size_t size, 
                int (*compar)(const void *, const void *) )
 {
-#if defined(_WIN32_WCE)
-   void *mid;
-   int cmp;
-   while (nmemb) {
-      nmemb >>= 1;
-      mid = (char *)base + nmemb * size;
-      cmp = (*compar)(key, mid);
-      if (cmp == 0)
-        return mid;
-      if (cmp > 0) {
-        base = (char *)mid + size;
-        --nmemb;
-      }
-   }
-   return NULL;
-#else
    return bsearch(key, base, nmemb, size, compar);
-#endif
 }
 
 /*@}*/
@@ -518,11 +501,7 @@ _mesa_bsearch( const void *key, const void *base, size_t nmemb, size_t size,
 char *
 _mesa_getenv( const char *var )
 {
-#if defined(_WIN32_WCE)
-   return NULL;
-#else
    return getenv(var);
-#endif
 }
 
 /*@}*/