summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/haiku-softpipe/GalliumFramebuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/targets/haiku-softpipe/GalliumFramebuffer.h')
-rw-r--r--src/gallium/targets/haiku-softpipe/GalliumFramebuffer.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/gallium/targets/haiku-softpipe/GalliumFramebuffer.h b/src/gallium/targets/haiku-softpipe/GalliumFramebuffer.h
deleted file mode 100644
index 11e6b736571..00000000000
--- a/src/gallium/targets/haiku-softpipe/GalliumFramebuffer.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright 2012, Haiku, Inc. All Rights Reserved.
- * Distributed under the terms of the MIT License.
- *
- * Authors:
- * Alexander von Gluck IV, [email protected]
- */
-#ifndef GALLIUMFRAMEBUFFER_H
-#define GALLIUMFRAMEBUFFER_H
-
-
-extern "C" {
-#include "os/os_thread.h"
-#include "pipe/p_screen.h"
-#include "state_tracker/st_api.h"
-}
-
-
-class GalliumFramebuffer {
-public:
- GalliumFramebuffer(struct st_visual* visual,
- void* privateContext);
- ~GalliumFramebuffer();
- status_t Lock();
- status_t Unlock();
-
- struct st_framebuffer_iface* fBuffer;
-
-private:
- pipe_mutex fMutex;
-};
-
-
-#endif /* GALLIUMFRAMEBUFFER_H */