Module: Mesa Branch: master Commit: 515a64a28ce9566c85443209784944838a0d6d62 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=515a64a28ce9566c85443209784944838a0d6d62
Author: Marek Olšák <[email protected]> Date: Fri Feb 24 17:05:21 2012 +0100 r600g: permit blitting between textures with STREAM and STAGING usage Eventually I'd like to make every format blittable, so that the function can go away. Reviewed-by: Alex Deucher <[email protected]> Reviewed-by: Christian König <[email protected]> --- src/gallium/drivers/r600/r600_texture.c | 9 +-------- 1 files changed, 1 insertions(+), 8 deletions(-) diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index 2675915..6e275eb 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -444,14 +444,7 @@ static boolean permit_hardware_blit(struct pipe_screen *screen, PIPE_BIND_SAMPLER_VIEW)) return FALSE; - switch (res->usage) { - case PIPE_USAGE_STREAM: - case PIPE_USAGE_STAGING: - return FALSE; - - default: - return TRUE; - } + return TRUE; } static boolean r600_texture_get_handle(struct pipe_screen* screen, _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
