Browse Source

965: fix vb upload size check

tags/mesa_7_1_rc1
Dave Airlie 18 years ago
parent
commit
e92e3848e7
1 changed files with 5 additions and 3 deletions
  1. 5
    3
      src/mesa/drivers/dri/i965/brw_draw_upload.c

+ 5
- 3
src/mesa/drivers/dri/i965/brw_draw_upload.c View File

@@ -418,9 +418,11 @@ int brw_prepare_vertices( struct brw_context *brw,
}
}

ret = dri_bufmgr_check_aperture_space(brw->vb.upload.bo);
if (ret)
return 1;
if (brw->vb.upload.bo) {
ret = dri_bufmgr_check_aperture_space(brw->vb.upload.bo);
if (ret)
return 1;
}

return 0;
}

Loading…
Cancel
Save