summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-05-06 13:08:39 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-05-06 13:08:39 +0100
commit2b322ad147a42ac0bf0f51bffab99e4d5650132d (patch)
tree85db8ad4185595b8cc50fa0d9c739102b46b1c9a
parentf58d780b08a7059b82707291ad163cf6590134df (diff)
graw-xlib: Remove duplicate graw.h file.
-rw-r--r--src/gallium/targets/graw-xlib/graw.h36
-rw-r--r--src/gallium/targets/graw-xlib/graw_xlib.c2
2 files changed, 1 insertions, 37 deletions
diff --git a/src/gallium/targets/graw-xlib/graw.h b/src/gallium/targets/graw-xlib/graw.h
deleted file mode 100644
index a58e18e4739..00000000000
--- a/src/gallium/targets/graw-xlib/graw.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef GALLIUM_RAW_H
-#define GALLIUM_RAW_H
-
-/* This is an API for exercising gallium functionality in a
- * platform-neutral fashion. Whatever platform integration is
- * necessary to implement this interface is orchestrated by the
- * individual target building this entity.
- *
- * For instance, the graw-xlib target includes code to implent these
- * interfaces on top of the X window system.
- *
- * Programs using this interface may additionally benefit from some of
- * the utilities currently in the libgallium.a library, especially
- * those for parsing text representations of TGSI shaders.
- */
-
-#include "pipe/p_format.h"
-
-struct pipe_screen;
-
-struct pipe_screen *graw_init( void );
-
-/* Returns a handle to be used with flush_frontbuffer()/present().
- *
- * Query format support with screen::is_format_supported and usage
- * XXX.
- */
-void *graw_create_window( int x,
- int y,
- unsigned width,
- unsigned height,
- enum pipe_format format );
-
-void graw_destroy_window( void *handle );
-
-#endif
diff --git a/src/gallium/targets/graw-xlib/graw_xlib.c b/src/gallium/targets/graw-xlib/graw_xlib.c
index fb8ef9d78b6..21715c26fdc 100644
--- a/src/gallium/targets/graw-xlib/graw_xlib.c
+++ b/src/gallium/targets/graw-xlib/graw_xlib.c
@@ -18,7 +18,7 @@
#include "sw/sw_public.h"
#include "sw/sw.c"
-#include "graw.h"
+#include "state_tracker/graw.h"
#include <X11/Xlib.h>
#include <X11/Xlibint.h>