summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv20/nv20_screen.h
diff options
context:
space:
mode:
authorPekka Paalanen <pq@iki.fi>2008-11-08 17:20:19 +0200
committerPekka Paalanen <pq@iki.fi>2008-11-08 17:20:19 +0200
commit83bb81856066101dff85fdebea32df55ed8de4c5 (patch)
tree68006b44ad43bb54df2853304f2e5ba43bfc18b0 /src/gallium/drivers/nv20/nv20_screen.h
parentf910371b3736e7d09b82d42e0dd1295482817883 (diff)
Nouveau: Rename nv20/ files as nv20.
Signed-off-by: Pekka Paalanen <pq@iki.fi>
Diffstat (limited to 'src/gallium/drivers/nv20/nv20_screen.h')
-rw-r--r--src/gallium/drivers/nv20/nv20_screen.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv20/nv20_screen.h b/src/gallium/drivers/nv20/nv20_screen.h
new file mode 100644
index 0000000000..3f8750a13f
--- /dev/null
+++ b/src/gallium/drivers/nv20/nv20_screen.h
@@ -0,0 +1,22 @@
+#ifndef __NV10_SCREEN_H__
+#define __NV10_SCREEN_H__
+
+#include "pipe/p_screen.h"
+
+struct nv10_screen {
+ struct pipe_screen pipe;
+
+ struct nouveau_winsys *nvws;
+
+ /* HW graphics objects */
+ struct nouveau_grobj *celsius;
+ struct nouveau_notifier *sync;
+};
+
+static INLINE struct nv10_screen *
+nv10_screen(struct pipe_screen *screen)
+{
+ return (struct nv10_screen *)screen;
+}
+
+#endif