summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/nv50/nv50_miptree.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/pipe/nv50/nv50_miptree.c')
-rw-r--r--src/mesa/pipe/nv50/nv50_miptree.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mesa/pipe/nv50/nv50_miptree.c b/src/mesa/pipe/nv50/nv50_miptree.c
new file mode 100644
index 0000000000..51442d64f3
--- /dev/null
+++ b/src/mesa/pipe/nv50/nv50_miptree.c
@@ -0,0 +1,24 @@
+#include "pipe/p_state.h"
+#include "pipe/p_defines.h"
+#include "pipe/p_util.h"
+
+#include "nv50_context.h"
+
+static void
+nv50_miptree_create(struct pipe_context *pipe, struct pipe_texture **pt)
+{
+ NOUVEAU_ERR("unimplemented\n");
+}
+
+static void
+nv50_miptree_release(struct pipe_context *pipe, struct pipe_texture **pt)
+{
+ NOUVEAU_ERR("unimplemented\n");
+}
+
+void
+nv50_init_miptree_functions(struct nv50_context *nv50)
+{
+ nv50->pipe.texture_create = nv50_miptree_create;
+ nv50->pipe.texture_release = nv50_miptree_release;
+}