diff options
author | José Fonseca <jfonseca@vmware.com> | 2009-02-18 12:05:26 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2009-02-18 12:05:26 +0000 |
commit | ea4bf267e4b023b08043f91ac44592fed1736e7f (patch) | |
tree | 76302dd651a077e1eff4fef4ccc83830698ebd5f /src/gallium/auxiliary/cso_cache | |
parent | 06cd416d7cd2ccd2aca9f8522d4d7654eb2930e7 (diff) |
util: Move p_debug.h into util module.
The debug functions depend on several util function for os abstractions, and
these depend on debug functions, so a seperate module is not possible.
Diffstat (limited to 'src/gallium/auxiliary/cso_cache')
-rw-r--r-- | src/gallium/auxiliary/cso_cache/cso_cache.c | 2 | ||||
-rw-r--r-- | src/gallium/auxiliary/cso_cache/cso_hash.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_cache.c b/src/gallium/auxiliary/cso_cache/cso_cache.c index 6b1754ea00..0bc77a5728 100644 --- a/src/gallium/auxiliary/cso_cache/cso_cache.c +++ b/src/gallium/auxiliary/cso_cache/cso_cache.c @@ -28,7 +28,7 @@ /* Authors: Zack Rusin <zack@tungstengraphics.com> */ -#include "pipe/p_debug.h" +#include "util/u_debug.h" #include "util/u_memory.h" diff --git a/src/gallium/auxiliary/cso_cache/cso_hash.c b/src/gallium/auxiliary/cso_cache/cso_hash.c index 4e7664f9bf..288cef7b6f 100644 --- a/src/gallium/auxiliary/cso_cache/cso_hash.c +++ b/src/gallium/auxiliary/cso_cache/cso_hash.c @@ -30,7 +30,7 @@ * Zack Rusin <zack@tungstengraphics.com> */ -#include "pipe/p_debug.h" +#include "util/u_debug.h" #include "util/u_memory.h" #include "cso_hash.h" |