From e149e1b953bccdf735665547798574e06f989730 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Fri, 18 Apr 2008 15:05:35 +1000 Subject: i965: fix gs_prog aperture check --- src/mesa/drivers/dri/i965/brw_gs.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/mesa/drivers/dri') diff --git a/src/mesa/drivers/dri/i965/brw_gs.c b/src/mesa/drivers/dri/i965/brw_gs.c index 8ad27624d5..9419315c7a 100644 --- a/src/mesa/drivers/dri/i965/brw_gs.c +++ b/src/mesa/drivers/dri/i965/brw_gs.c @@ -165,7 +165,7 @@ static void populate_key( struct brw_context *brw, static int prepare_gs_prog( struct brw_context *brw ) { struct brw_gs_prog_key key; - + int ret = 0; /* Populate the key: */ populate_key(brw, &key); @@ -183,9 +183,11 @@ static int prepare_gs_prog( struct brw_context *brw ) &brw->gs.prog_data); if (brw->gs.prog_bo == NULL) compile_gs_prog( brw, &key ); + + ret |= dri_bufmgr_check_aperture_space(brw->gs.prog_bo); } - return dri_bufmgr_check_aperture_space(brw->gs.prog_bo); + return ret; } -- cgit v1.2.3