Module: Mesa Branch: master Commit: 80834640137228323b4c6d8e5909926e0b69bf70 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=80834640137228323b4c6d8e5909926e0b69bf70
Author: Erik Faye-Lund <[email protected]> Date: Wed Sep 5 14:17:24 2018 +0100 virgl: remove dead code We don't use the size we calculate in this function, so let's just drop the calculation Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Dave Airlie <[email protected]> --- src/gallium/drivers/virgl/virgl_texture.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/gallium/drivers/virgl/virgl_texture.c b/src/gallium/drivers/virgl/virgl_texture.c index 2cee412665..88c2f38483 100644 --- a/src/gallium/drivers/virgl/virgl_texture.c +++ b/src/gallium/drivers/virgl/virgl_texture.c @@ -311,15 +311,11 @@ virgl_texture_from_handle(struct virgl_screen *vs, const struct pipe_resource *template, struct winsys_handle *whandle) { - struct virgl_texture *tex; - uint32_t size; - - tex = CALLOC_STRUCT(virgl_texture); + struct virgl_texture *tex = CALLOC_STRUCT(virgl_texture); tex->base.u.b = *template; tex->base.u.b.screen = &vs->base; pipe_reference_init(&tex->base.u.b.reference, 1); tex->base.u.vtbl = &virgl_texture_vtbl; - vrend_resource_layout(tex, &size); tex->base.hw_res = vs->vws->resource_create_from_handle(vs->vws, whandle); return &tex->base.u.b; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
