mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 01:10:16 +01:00
gallium/util: move memory debug declarations into u_debug_gallium
Tested-by: Brian Paul <brianp@vmware.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
parent
68074dfa0e
commit
314777e86a
5 changed files with 8 additions and 8 deletions
|
|
@ -34,7 +34,6 @@
|
|||
#include "pipe/p_format.h"
|
||||
#include "pipe/p_state.h"
|
||||
#include "util/u_inlines.h"
|
||||
#include "util/u_memory.h"
|
||||
#include "util/u_string.h"
|
||||
#include "util/u_math.h"
|
||||
#include <inttypes.h>
|
||||
|
|
|
|||
|
|
@ -454,13 +454,6 @@ debug_get_option_ ## sufix (void) \
|
|||
}
|
||||
|
||||
|
||||
unsigned long
|
||||
debug_memory_begin(void);
|
||||
|
||||
void
|
||||
debug_memory_end(unsigned long beginning);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -35,6 +35,12 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
unsigned long
|
||||
debug_memory_begin(void);
|
||||
|
||||
void
|
||||
debug_memory_end(unsigned long beginning);
|
||||
|
||||
#ifdef DEBUG
|
||||
void debug_print_format(const char *msg, unsigned fmt);
|
||||
#else
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@
|
|||
#include "os/os_thread.h"
|
||||
|
||||
#include "util/u_debug.h"
|
||||
#include "util/u_debug_gallium.h"
|
||||
#include "util/u_debug_stack.h"
|
||||
#include "util/list.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
|
||||
#include "glapi/glapi.h"
|
||||
#include "util/u_debug.h"
|
||||
#include "util/u_debug_gallium.h"
|
||||
#include "util/u_math.h"
|
||||
#include "util/u_memory.h"
|
||||
#include "pipe/p_screen.h"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue