Module: Mesa Branch: master Commit: 6c69df1e0f9111e178ecff421f1a4ae74dbac359 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6c69df1e0f9111e178ecff421f1a4ae74dbac359
Author: Eric Anholt <[email protected]> Date: Mon Oct 1 16:41:02 2012 -0700 i965/fs: Remove extra allocation for classes[]. This was to slot in the magic aligned pairs class, but it got moved to a descriptive name later. Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp b/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp index 747c5fc..6e7a9a4 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp @@ -107,7 +107,7 @@ brw_alloc_reg_set(struct brw_context *brw, int reg_width, int base_reg_count) ralloc_free(brw->wm.regs); brw->wm.regs = ra_alloc_reg_set(brw, ra_reg_count); ralloc_free(brw->wm.classes); - brw->wm.classes = ralloc_array(brw, int, class_count + 1); + brw->wm.classes = ralloc_array(brw, int, class_count); brw->wm.aligned_pairs_class = -1; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
