graw-xlib: Remove duplicate graw.h file.
authorJosé Fonseca <jfonseca@vmware.com>
Thu, 6 May 2010 12:08:39 +0000 (13:08 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Thu, 6 May 2010 12:08:39 +0000 (13:08 +0100)
src/gallium/targets/graw-xlib/graw.h [deleted file]
src/gallium/targets/graw-xlib/graw_xlib.c

diff --git a/src/gallium/targets/graw-xlib/graw.h b/src/gallium/targets/graw-xlib/graw.h
deleted file mode 100644 (file)
index a58e18e..0000000
+++ /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
index fb8ef9d78b67b3205f5aa784d846644d36ebec17..21715c26fdc88af3c9f2cf60649b1f9008f9d35b 100644 (file)
@@ -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>