mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
trace: Move state dump functions to tr_dump_state.[c|h]
This commit is contained in:
parent
22690482e6
commit
c30f661189
6 changed files with 7 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
])
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
@ -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"
|
||||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue