[Mesa-dev] [PATCH] nvfx: init vtbl in nvfx_miptree_from_handle
Xavier Chantry
chantry.xavier at gmail.com
Mon Apr 12 01:35:48 PDT 2010
A lot of apps segfaulted due to this missing initialization (including 64
piglit tests :).
Signed-off-by: Xavier Chantry <chantry.xavier at gmail.com>
---
src/gallium/drivers/nvfx/nvfx_miptree.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/gallium/drivers/nvfx/nvfx_miptree.c b/src/gallium/drivers/nvfx/nvfx_miptree.c
index a5965ca..385551c 100644
--- a/src/gallium/drivers/nvfx/nvfx_miptree.c
+++ b/src/gallium/drivers/nvfx/nvfx_miptree.c
@@ -223,6 +223,7 @@ nvfx_miptree_from_handle(struct pipe_screen *pscreen,
}
mt->base.base = *template;
+ mt->base.vtbl = &nvfx_miptree_vtbl;
pipe_reference_init(&mt->base.base.reference, 1);
mt->base.base.screen = pscreen;
mt->level[0].pitch = stride;
--
1.7.0.4
More information about the mesa-dev
mailing list