X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2Fdrivers%2Fllvmpipe%2Flp_test.h;h=3d00b01253cae6d948d4b659b88acd21895bcd2d;hb=d48a2404a227193b0e17b94ce10481f36d99430c;hp=c64f3e149fdabf050d3156de1d9853f33143b5a2;hpb=652901e95b4ed406293d0e1fabee857c054119b1;p=mesa.git diff --git a/src/gallium/drivers/llvmpipe/lp_test.h b/src/gallium/drivers/llvmpipe/lp_test.h index c64f3e149fd..3d00b01253c 100644 --- a/src/gallium/drivers/llvmpipe/lp_test.h +++ b/src/gallium/drivers/llvmpipe/lp_test.h @@ -42,11 +42,6 @@ #include #include "gallivm/lp_bld.h" -#include -#include -#include -#include -#include #include "pipe/p_state.h" #include "util/u_format.h" @@ -64,25 +59,24 @@ write_tsv_header(FILE *fp); boolean -test_some(struct gallivm_state *gallivm,unsigned verbose, FILE *fp, +test_some(unsigned verbose, FILE *fp, unsigned long n); boolean -test_single(struct gallivm_state *gallivm, unsigned verbose, FILE *fp); +test_single(unsigned verbose, FILE *fp); boolean -test_all(struct gallivm_state *gallivm, unsigned verbose, FILE *fp); +test_all(unsigned verbose, FILE *fp); #if defined(PIPE_CC_MSVC) -unsigned __int64 __rdtsc(); -#pragma intrinsic(__rdtsc) +#include #define rdtsc() __rdtsc() #elif defined(PIPE_CC_GCC) && (defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)) -static INLINE uint64_t +static inline uint64_t rdtsc(void) { uint32_t hi, lo;