diff options
author | Brian Paul <[email protected]> | 2008-08-24 17:48:55 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-24 17:48:55 -0600 |
commit | 4f25420bdd834e81a3e22733304efc5261c2998a (patch) | |
tree | f60a6221f9ced3f479615094715f25ad32735932 /src/gallium/auxiliary/draw/draw_vs.c | |
parent | ec7415642d7eb192164e7a513198b86756de484c (diff) |
gallium: refactor/replace p_util.h with util/u_memory.h and util/u_math.h
Also, rename p_tile.[ch] to u_tile.[ch]
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vs.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs.c b/src/gallium/auxiliary/draw/draw_vs.c index f798b204929..34adbd49b00 100644 --- a/src/gallium/auxiliary/draw/draw_vs.c +++ b/src/gallium/auxiliary/draw/draw_vs.c @@ -31,11 +31,15 @@ * Brian Paul */ -#include "pipe/p_util.h" +#include "util/u_math.h" +#include "util/u_memory.h" + #include "pipe/p_shader_tokens.h" + #include "draw_private.h" #include "draw_context.h" #include "draw_vs.h" + #include "translate/translate.h" #include "translate/translate_cache.h" |