trace: move struct tr_list to tr_texture.h
That's the only place it's used.
This commit is contained in:
@@ -38,11 +38,6 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
struct tr_list {
|
||||
struct tr_list *next;
|
||||
struct tr_list *prev;
|
||||
};
|
||||
|
||||
/**
|
||||
* It often happens that new data is written directly to the user buffers
|
||||
* without mapping/unmapping. This flag marks user buffers, so that their
|
||||
|
||||
@@ -36,6 +36,14 @@
|
||||
|
||||
struct trace_context;
|
||||
|
||||
|
||||
struct tr_list
|
||||
{
|
||||
struct tr_list *next;
|
||||
struct tr_list *prev;
|
||||
};
|
||||
|
||||
|
||||
struct trace_resource
|
||||
{
|
||||
struct pipe_resource base;
|
||||
|
||||
Reference in New Issue
Block a user