From: Corbin Simpson Date: Fri, 1 May 2009 14:29:14 +0000 (-0700) Subject: radeon: Don't even bother with things too big to fit into our card. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2953b180044df602fbbf5882715774a779ff2123;p=mesa.git radeon: Don't even bother with things too big to fit into our card. --- diff --git a/src/gallium/winsys/drm/radeon/core/radeon_r300.c b/src/gallium/winsys/drm/radeon/core/radeon_r300.c index ac6cca36bfe..da233203d7d 100644 --- a/src/gallium/winsys/drm/radeon/core/radeon_r300.c +++ b/src/gallium/winsys/drm/radeon/core/radeon_r300.c @@ -60,7 +60,9 @@ static boolean radeon_r300_validate(struct r300_winsys* winsys) retval = radeon_cs_space_check(priv->cs, sc, priv->bo_count); if (retval == RADEON_CS_SPACE_OP_TO_BIG) { - /* XXX we need to failover here */ + /* We might as well HCF, since this is not going to fit in the card, + * period. */ + exit(1); } else if (retval == RADEON_CS_SPACE_FLUSH) { /* We must flush before more rendering can commence. */ return TRUE;