nouveau: make nouveau_device.h part of public API
authorBen Skeggs <skeggsb@gmail.com>
Tue, 13 May 2008 02:09:04 +0000 (12:09 +1000)
committerBen Skeggs <skeggsb@gmail.com>
Tue, 13 May 2008 02:09:04 +0000 (12:09 +1000)
src/gallium/drivers/nouveau/nouveau_device.h [new file with mode: 0644]
src/gallium/winsys/dri/nouveau/nouveau_context.h
src/gallium/winsys/dri/nouveau/nouveau_device.h [deleted file]
src/gallium/winsys/dri/nouveau/nouveau_drmif.h
src/gallium/winsys/dri/nouveau/nouveau_screen.c
src/gallium/winsys/dri/nouveau/nouveau_screen.h
src/gallium/winsys/dri/nouveau/nouveau_winsys_pipe.c

diff --git a/src/gallium/drivers/nouveau/nouveau_device.h b/src/gallium/drivers/nouveau/nouveau_device.h
new file mode 100644 (file)
index 0000000..e25e89f
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ * Copyright 2007 Nouveau Project
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
+ * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#ifndef __NOUVEAU_DEVICE_H__
+#define __NOUVEAU_DEVICE_H__
+
+struct nouveau_device {
+       unsigned chipset;
+};
+
+#endif
index b20107a94c6ef86721a495728ab814e3c65b2c60..77e2147a2c73eeceb53ce61ccb419a6c63a7743b 100644 (file)
@@ -5,7 +5,6 @@
 #include "xmlconfig.h"
 
 #include "nouveau/nouveau_winsys.h"
-#include "nouveau_device.h"
 #include "nouveau_drmif.h"
 #include "nouveau_dma.h"
 
diff --git a/src/gallium/winsys/dri/nouveau/nouveau_device.h b/src/gallium/winsys/dri/nouveau/nouveau_device.h
deleted file mode 100644 (file)
index e25e89f..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright 2007 Nouveau Project
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
- * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
- * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#ifndef __NOUVEAU_DEVICE_H__
-#define __NOUVEAU_DEVICE_H__
-
-struct nouveau_device {
-       unsigned chipset;
-};
-
-#endif
index d5a0e25b573922cc901da0ad9d224903e86e8783..a31c9a514b156404b73c7d0f5af44f211fbf03d9 100644 (file)
@@ -27,7 +27,7 @@
 #include <xf86drm.h>
 #include <nouveau_drm.h>
 
-#include "nouveau_device.h"
+#include "nouveau/nouveau_device.h"
 #include "nouveau/nouveau_channel.h"
 #include "nouveau/nouveau_grobj.h"
 #include "nouveau/nouveau_notifier.h"
index f06e1784831e88399946c9e3e8a5dc0d15b8df65..9041275a88ff9f326075e9aea9b43aaf993ea4e8 100644 (file)
@@ -7,7 +7,6 @@
 #include "state_tracker/st_cb_fbo.h"
 
 #include "nouveau_context.h"
-#include "nouveau_device.h"
 #include "nouveau_drm.h"
 #include "nouveau_dri.h"
 #include "nouveau_local.h"
index e9da20269048ceb4c2daa01decaaaf2d64939ce9..388d6be9bbce6a1a6c34992e989e43217d91d157 100644 (file)
@@ -2,7 +2,6 @@
 #define __NOUVEAU_SCREEN_H__
 
 #include "xmlconfig.h"
-#include "nouveau_device.h"
 
 struct nouveau_screen {
        __DRIscreenPrivate *driScrnPriv;
index 849e38d22b6bdb2d4beb5e54007f783053f4d2cb..755c8b6997ad3c293db3b6e6baa1a789a361fa3a 100644 (file)
@@ -4,7 +4,6 @@
 #include "pipe/p_inlines.h"
 
 #include "nouveau_context.h"
-#include "nouveau_device.h"
 #include "nouveau_local.h"
 #include "nouveau_screen.h"
 #include "nouveau_swapbuffers.h"