gallium/gdi: use GALLIUM_FOO rather than HAVE_FOO
authorErik Faye-Lund <erik.faye-lund@collabora.com>
Wed, 7 Aug 2019 11:42:36 +0000 (13:42 +0200)
committerDylan Baker <dylan@pnwbakers.com>
Mon, 16 Sep 2019 17:54:00 +0000 (17:54 +0000)
This matches what other targets do, and makes it easier to port to
meson.

Signed-off-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
src/gallium/targets/libgl-gdi/SConscript
src/gallium/targets/libgl-gdi/libgl_gdi.c

index 94feca2..0e853bc 100644 (file)
@@ -32,11 +32,11 @@ if True:
     drivers += [softpipe]
 
 if env['llvm']:
-    env.Append(CPPDEFINES = 'HAVE_LLVMPIPE')
+    env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE')
     drivers += [llvmpipe]
 
     if env['swr']:
-        env.Append(CPPDEFINES = 'HAVE_SWR')
+        env.Append(CPPDEFINES = 'GALLIUM_SWR')
         drivers += [swr]
 
 if env['gcc'] and env['machine'] != 'x86_64':
index 12576db..40e7735 100644 (file)
 #include "softpipe/sp_screen.h"
 #include "softpipe/sp_public.h"
 
-#ifdef HAVE_LLVMPIPE
+#ifdef GALLIUM_LLVMPIPE
 #include "llvmpipe/lp_texture.h"
 #include "llvmpipe/lp_screen.h"
 #include "llvmpipe/lp_public.h"
 #endif
 
-#ifdef HAVE_SWR
+#ifdef GALLIUM_SWR
 #include "swr/swr_public.h"
 #endif
 
@@ -70,9 +70,9 @@ gdi_screen_create(void)
    if(!winsys)
       goto no_winsys;
 
-#ifdef HAVE_LLVMPIPE
+#ifdef GALLIUM_LLVMPIPE
    default_driver = "llvmpipe";
-#elif HAVE_SWR
+#elif GALLIUM_SWR
    default_driver = "swr";
 #else
    default_driver = "softpipe";
@@ -80,14 +80,14 @@ gdi_screen_create(void)
 
    driver = debug_get_option("GALLIUM_DRIVER", default_driver);
 
-#ifdef HAVE_LLVMPIPE
+#ifdef GALLIUM_LLVMPIPE
    if (strcmp(driver, "llvmpipe") == 0) {
       screen = llvmpipe_create_screen( winsys );
       if (screen)
          use_llvmpipe = TRUE;
    }
 #endif
-#ifdef HAVE_SWR
+#ifdef GALLIUM_SWR
    if (strcmp(driver, "swr") == 0) {
       screen = swr_create_screen( winsys );
       if (screen)
@@ -130,7 +130,7 @@ gdi_present(struct pipe_screen *screen,
    struct sw_winsys *winsys = NULL;
    struct sw_displaytarget *dt = NULL;
 
-#ifdef HAVE_LLVMPIPE
+#ifdef GALLIUM_LLVMPIPE
    if (use_llvmpipe) {
       winsys = llvmpipe_screen(screen)->winsys;
       dt = llvmpipe_resource(res)->dt;
@@ -139,7 +139,7 @@ gdi_present(struct pipe_screen *screen,
    }
 #endif
 
-#ifdef HAVE_SWR
+#ifdef GALLIUM_SWR
    if (use_swr) {
       swr_gdi_swap(screen, res, hDC);
       return;