summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_test.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-10-22 19:02:04 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-10-22 19:12:14 +0100
commit9aafa1fbd247cd6d1bb0ab47bc5b318bd0d67bc5 (patch)
treeed834c9b2b5f2400325cee960000fa408d551847 /src/gallium/drivers/llvmpipe/lp_test.h
parent01b85e292352d710586344348fff5a81459e5486 (diff)
llvmpipe: Avoid variable size arrays.
Not really variable size, but MSVC still doesn't like them.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_test.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_test.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_test.h b/src/gallium/drivers/llvmpipe/lp_test.h
index a88e110c663..21016fefe3f 100644
--- a/src/gallium/drivers/llvmpipe/lp_test.h
+++ b/src/gallium/drivers/llvmpipe/lp_test.h
@@ -56,6 +56,9 @@
#include "lp_bld_type.h"
+#define LP_TEST_NUM_SAMPLES 32
+
+
void
write_tsv_header(FILE *fp);