Explorar el Código

965: fix vb upload size check

tags/mesa_7_1_rc1
Dave Airlie hace 18 años
padre
commit
e92e3848e7
Se han modificado 1 ficheros con 5 adiciones y 3 borrados
  1. 5
    3
      src/mesa/drivers/dri/i965/brw_draw_upload.c

+ 5
- 3
src/mesa/drivers/dri/i965/brw_draw_upload.c Ver fichero

@@ -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;
}

Cargando…
Cancelar
Guardar