nir: Fix missing snprintf symbol on Windows.
Copy nir_print.c's snprintf definition for now, to unbreak Windows builds. We can and should cleanup all snprintf definitions in a follow up change, but I rather not leave Windows build broken any further. Trivial.
This commit is contained in:
@@ -27,6 +27,10 @@
|
|||||||
#include "nir.h"
|
#include "nir.h"
|
||||||
#include "nir_builder.h"
|
#include "nir_builder.h"
|
||||||
|
|
||||||
|
#if defined(_WIN32) && !defined(snprintf)
|
||||||
|
#define snprintf _snprintf
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Remap atomic counters to SSBOs. Atomic counters get remapped to
|
* Remap atomic counters to SSBOs. Atomic counters get remapped to
|
||||||
* SSBO binding points [0..ssbo_offset) and the original SSBOs are
|
* SSBO binding points [0..ssbo_offset) and the original SSBOs are
|
||||||
|
Reference in New Issue
Block a user