summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/haiku-softpipe/GalliumContext.h
diff options
context:
space:
mode:
authorAlexander von Gluck IV <[email protected]>2015-05-14 17:30:35 -0500
committerAlexander von Gluck IV <[email protected]>2015-05-15 13:55:59 -0400
commit7de484871dae1643cbecf346066968f61684f06f (patch)
tree4fbd6c5600b28385401252bb03e56dbaf6164b70 /src/gallium/targets/haiku-softpipe/GalliumContext.h
parent9b5da7f06a4052b1298e4684d992a319fb4153ba (diff)
target/haiku-softpipe: Move api init into st code
We also reduce the amount of need-to-know information about st_api to require one less extern "C" in st_manager.h Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/targets/haiku-softpipe/GalliumContext.h')
-rw-r--r--src/gallium/targets/haiku-softpipe/GalliumContext.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gallium/targets/haiku-softpipe/GalliumContext.h b/src/gallium/targets/haiku-softpipe/GalliumContext.h
index b50d52895fc..22076cbb141 100644
--- a/src/gallium/targets/haiku-softpipe/GalliumContext.h
+++ b/src/gallium/targets/haiku-softpipe/GalliumContext.h
@@ -12,14 +12,10 @@
#include <stddef.h>
#include <kernel/image.h>
-extern "C" {
-//#include "state_tracker/st_api.h"
#include "pipe/p_compiler.h"
#include "pipe/p_screen.h"
#include "postprocess/filters.h"
-#include "os/os_thread.h"
#include "hgl_context.h"
-}
#include "bitmap_wrapper.h"
@@ -56,6 +52,6 @@ private:
context_id fCurrentContext;
pipe_mutex fMutex;
};
-
+
#endif /* GALLIUMCONTEXT_H */