trace: move struct tr_list to tr_texture.h

That's the only place it's used.
This commit is contained in:
Brian Paul
2013-02-14 16:21:12 -07:00
parent 4be5a06752
commit 7b836a7d25
2 changed files with 8 additions and 5 deletions
-5
View File
@@ -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
+8
View File
@@ -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;