trace: Move state dump functions to tr_dump_state.[c|h]

This commit is contained in:
Jakob Bornecrantz 2009-05-15 04:17:00 +02:00
parent 22690482e6
commit c30f661189
6 changed files with 7 additions and 7 deletions

View file

@ -7,8 +7,8 @@ C_SOURCES = \
tr_buffer.c \
tr_context.c \
tr_dump.c \
tr_dump_state.c \
tr_screen.c \
tr_state.c \
tr_texture.c
include ../../Makefile.template

View file

@ -8,8 +8,8 @@ trace = env.ConvenienceLibrary(
'tr_buffer.c',
'tr_context.c',
'tr_dump.c',
'tr_dump_state.c',
'tr_screen.c',
'tr_state.c',
'tr_texture.c',
])

View file

@ -31,7 +31,7 @@
#include "pipe/p_screen.h"
#include "tr_dump.h"
#include "tr_state.h"
#include "tr_dump_state.h"
#include "tr_buffer.h"
#include "tr_screen.h"
#include "tr_texture.h"

View file

@ -31,7 +31,7 @@
#include "tgsi/tgsi_dump.h"
#include "tr_dump.h"
#include "tr_state.h"
#include "tr_dump_state.h"
void trace_dump_format(enum pipe_format format)

View file

@ -25,8 +25,8 @@
*
**************************************************************************/
#ifndef TR_STATE_H
#define TR_STATE_H
#ifndef TR_DUMP_STATE_H_
#define TR_DUMP_STATE_H_
#include "pipe/p_format.h"
#include "pipe/p_state.h"

View file

@ -30,7 +30,7 @@
#include "tr_buffer.h"
#include "tr_dump.h"
#include "tr_state.h"
#include "tr_dump_state.h"
#include "tr_texture.h"
#include "tr_screen.h"