diff options
author | Jakob Bornecrantz <jakob@vmware.com> | 2009-05-15 04:17:00 +0200 |
---|---|---|
committer | Jakob Bornecrantz <jakob@vmware.com> | 2009-05-16 01:50:53 +0100 |
commit | c30f66118974f41f57e86d49f372b7c78f891223 (patch) | |
tree | 94010b4f6ee50e3b9d9dc4782cc7b88b215bae53 /src/gallium/drivers | |
parent | 22690482e692cb5ed2f84d3e69545c09292e3484 (diff) |
trace: Move state dump functions to tr_dump_state.[c|h]
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/trace/Makefile | 2 | ||||
-rw-r--r-- | src/gallium/drivers/trace/SConscript | 2 | ||||
-rw-r--r-- | src/gallium/drivers/trace/tr_context.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/trace/tr_dump_state.c (renamed from src/gallium/drivers/trace/tr_state.c) | 2 | ||||
-rw-r--r-- | src/gallium/drivers/trace/tr_dump_state.h (renamed from src/gallium/drivers/trace/tr_state.h) | 4 | ||||
-rw-r--r-- | src/gallium/drivers/trace/tr_screen.c | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/src/gallium/drivers/trace/Makefile b/src/gallium/drivers/trace/Makefile index e087db169a..188998d579 100644 --- a/src/gallium/drivers/trace/Makefile +++ b/src/gallium/drivers/trace/Makefile @@ -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 diff --git a/src/gallium/drivers/trace/SConscript b/src/gallium/drivers/trace/SConscript index 4215215d1a..4ab829a3a8 100644 --- a/src/gallium/drivers/trace/SConscript +++ b/src/gallium/drivers/trace/SConscript @@ -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', ]) diff --git a/src/gallium/drivers/trace/tr_context.c b/src/gallium/drivers/trace/tr_context.c index 47280459a7..6a19233a9a 100644 --- a/src/gallium/drivers/trace/tr_context.c +++ b/src/gallium/drivers/trace/tr_context.c @@ -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" diff --git a/src/gallium/drivers/trace/tr_state.c b/src/gallium/drivers/trace/tr_dump_state.c index a9570c1aeb..1b2b3493a6 100644 --- a/src/gallium/drivers/trace/tr_state.c +++ b/src/gallium/drivers/trace/tr_dump_state.c @@ -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) diff --git a/src/gallium/drivers/trace/tr_state.h b/src/gallium/drivers/trace/tr_dump_state.h index 513ed0ac98..05b821adb6 100644 --- a/src/gallium/drivers/trace/tr_state.h +++ b/src/gallium/drivers/trace/tr_dump_state.h @@ -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" diff --git a/src/gallium/drivers/trace/tr_screen.c b/src/gallium/drivers/trace/tr_screen.c index 12a8535342..e659416aba 100644 --- a/src/gallium/drivers/trace/tr_screen.c +++ b/src/gallium/drivers/trace/tr_screen.c @@ -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" |