From: Rob Clark Date: Mon, 8 May 2017 17:34:53 +0000 (-0400) Subject: nir: fix (hopefully) windows build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ae7aa8dbaf7c65a8b0d86713530a751b7d2f10b0;p=mesa.git nir: fix (hopefully) windows build Fixes: 53aa109b ("nir: add pass to lower atomic counters to SSBO") Signed-off-by: Rob Clark --- diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index b6bc3fa7c20..2a9ab542f6e 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -47,6 +47,10 @@ #include "nir_opcodes.h" +#if defined(_WIN32) && !defined(snprintf) +#define snprintf _snprintf +#endif + #ifdef __cplusplus extern "C" { #endif diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c index e6c5c9c830d..dfdb5f36191 100644 --- a/src/compiler/nir/nir_print.c +++ b/src/compiler/nir/nir_print.c @@ -31,10 +31,6 @@ #include #include /* for PRIx64 macro */ -#if defined(_WIN32) && !defined(snprintf) -#define snprintf _snprintf -#endif - static void print_tabs(unsigned num_tabs, FILE *fp) {