summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-08-02 23:53:23 -0700
committerVinson Lee <vlee@vmware.com>2010-08-02 23:53:23 -0700
commitf7d29d58815462a209bf5a2bf0734aa4ff72880a (patch)
tree541e4b058290878190439eb812625a7ef822bb62
parentf031817450fe75d3224f767d79938813287ac445 (diff)
mesa: Reduce header file inclusion in syncobj.h.
syncobj.h doesn't use any additional symbols that is added by context.h.
-rw-r--r--src/mesa/main/syncobj.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/syncobj.h b/src/mesa/main/syncobj.h
index f23fa281e20..c53511995b1 100644
--- a/src/mesa/main/syncobj.h
+++ b/src/mesa/main/syncobj.h
@@ -31,7 +31,10 @@
#ifndef SYNCOBJ_H
#define SYNCOBJ_H
-#include "context.h"
+#include "glheader.h"
+#include "mtypes.h"
+
+struct dd_function_table;
extern void
_mesa_init_sync_object_functions(struct dd_function_table *driver);