From: Jason Ekstrand Date: Fri, 26 Jun 2015 00:34:11 +0000 (-0700) Subject: HACK: Get rid of sanity_param_count for FS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c4c1d96a0195f3520bd73c46a0c2f0a513035f72;p=mesa.git HACK: Get rid of sanity_param_count for FS --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index b43dafc798c..8984b4cb3ca 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3863,8 +3863,6 @@ fs_visitor::run_fs(bool do_rep_send) assert(stage == MESA_SHADER_FRAGMENT); - sanity_param_count = prog->Parameters->NumParameters; - if (prog_data->map_entries == NULL) assign_binding_table_offsets(); @@ -3936,13 +3934,6 @@ fs_visitor::run_fs(bool do_rep_send) else wm_prog_data->reg_blocks_16 = brw_register_blocks(grf_used); - /* If any state parameters were appended, then ParameterValues could have - * been realloced, in which case the driver uniform storage set up by - * _mesa_associate_uniform_storage() would point to freed memory. Make - * sure that didn't happen. - */ - assert(sanity_param_count == prog->Parameters->NumParameters); - return !failed; }