summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gallium/drivers/nv30/nv30_miptree.c3
-rw-r--r--src/gallium/drivers/nv40/nv40_miptree.c3
-rw-r--r--src/gallium/drivers/nv50/nv50_miptree.c3
3 files changed, 6 insertions, 3 deletions
diff --git a/src/gallium/drivers/nv30/nv30_miptree.c b/src/gallium/drivers/nv30/nv30_miptree.c
index f5659353ea..6fdcf42a24 100644
--- a/src/gallium/drivers/nv30/nv30_miptree.c
+++ b/src/gallium/drivers/nv30/nv30_miptree.c
@@ -100,7 +100,8 @@ nv30_miptree_release(struct pipe_screen *screen, struct pipe_texture **pt)
}
static void
-nv30_miptree_update(struct pipe_context *pipe, struct pipe_texture *mt)
+nv30_miptree_update(struct pipe_context *pipe, struct pipe_texture *mt,
+ uint face, uint levels)
{
}
diff --git a/src/gallium/drivers/nv40/nv40_miptree.c b/src/gallium/drivers/nv40/nv40_miptree.c
index 94ba05b710..0dff9b3ad6 100644
--- a/src/gallium/drivers/nv40/nv40_miptree.c
+++ b/src/gallium/drivers/nv40/nv40_miptree.c
@@ -99,7 +99,8 @@ nv40_miptree_release(struct pipe_screen *pscreen, struct pipe_texture **pt)
}
static void
-nv40_miptree_update(struct pipe_context *pipe, struct pipe_texture *mt)
+nv40_miptree_update(struct pipe_context *pipe, struct pipe_texture *mt,
+ uint face, uint levels)
{
}
diff --git a/src/gallium/drivers/nv50/nv50_miptree.c b/src/gallium/drivers/nv50/nv50_miptree.c
index 720d33fda9..7474c65765 100644
--- a/src/gallium/drivers/nv50/nv50_miptree.c
+++ b/src/gallium/drivers/nv50/nv50_miptree.c
@@ -35,7 +35,8 @@ nv50_screen_init_miptree_functions(struct pipe_screen *pscreen)
}
static void
-nv50_miptree_update(struct pipe_context *pipe, struct pipe_texture *mt)
+nv50_miptree_update(struct pipe_context *pipe, struct pipe_texture *mt,
+ uint face, uint levels)
{
}