No one was using anything other than the defaults. --- src/mesa/drivers/dri/i965/brw_blorp.cpp | 10 ++++------ src/mesa/drivers/dri/i965/brw_blorp.h | 4 +--- 2 files changed, 5 insertions(+), 9 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/brw_blorp.cpp b/src/mesa/drivers/dri/i965/brw_blorp.cpp index 9dbbd83..0fa1734 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp.cpp +++ b/src/mesa/drivers/dri/i965/brw_blorp.cpp @@ -155,9 +155,7 @@ brw_blorp_surface_info::compute_tile_offsets(uint32_t *tile_x, } -brw_blorp_params::brw_blorp_params(unsigned num_varyings, - unsigned num_draw_buffers, - unsigned num_layers) +brw_blorp_params::brw_blorp_params() : x0(0), y0(0), x1(0), @@ -165,9 +163,9 @@ brw_blorp_params::brw_blorp_params(unsigned num_varyings, depth_format(0), hiz_op(GEN6_HIZ_OP_NONE), fast_clear_op(0), - num_varyings(num_varyings), - num_draw_buffers(num_draw_buffers), - num_layers(num_layers), + num_varyings(0), + num_draw_buffers(1), + num_layers(1), wm_prog_kernel(BRW_BLORP_NO_WM_PROG), wm_prog_data(NULL) { diff --git a/src/mesa/drivers/dri/i965/brw_blorp.h b/src/mesa/drivers/dri/i965/brw_blorp.h index 4981afd..64f197e 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp.h +++ b/src/mesa/drivers/dri/i965/brw_blorp.h @@ -234,9 +234,7 @@ struct brw_blorp_prog_data class brw_blorp_params { public: - brw_blorp_params(unsigned num_varyings = 0, - unsigned num_draw_buffers = 1, - unsigned num_layers = 1); + brw_blorp_params(); uint32_t x0; uint32_t y0; -- 2.5.0.400.gff86faf _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev