mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-21 01:10:44 +02:00
i965/blorp: Remove constant parameter
This was still needed when we had support for blorp clears but now this is fixed to nop. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
parent
d7e49fba9a
commit
d271a13ba3
3 changed files with 0 additions and 20 deletions
|
|
@ -162,7 +162,6 @@ brw_blorp_params::brw_blorp_params()
|
|||
y1(0),
|
||||
depth_format(0),
|
||||
hiz_op(GEN6_HIZ_OP_NONE),
|
||||
fast_clear_op(GEN7_FAST_CLEAR_OP_NONE),
|
||||
use_wm_prog(false)
|
||||
{
|
||||
color_write_disable[0] = false;
|
||||
|
|
|
|||
|
|
@ -208,13 +208,6 @@ struct brw_blorp_prog_data
|
|||
};
|
||||
|
||||
|
||||
enum gen7_fast_clear_op {
|
||||
GEN7_FAST_CLEAR_OP_NONE,
|
||||
GEN7_FAST_CLEAR_OP_FAST_CLEAR,
|
||||
GEN7_FAST_CLEAR_OP_RESOLVE,
|
||||
};
|
||||
|
||||
|
||||
class brw_blorp_params
|
||||
{
|
||||
public:
|
||||
|
|
@ -232,7 +225,6 @@ public:
|
|||
brw_blorp_surface_info src;
|
||||
brw_blorp_surface_info dst;
|
||||
enum gen6_hiz_op hiz_op;
|
||||
enum gen7_fast_clear_op fast_clear_op;
|
||||
bool use_wm_prog;
|
||||
brw_blorp_wm_push_constants wm_push_consts;
|
||||
bool color_write_disable[4];
|
||||
|
|
|
|||
|
|
@ -529,17 +529,6 @@ gen7_blorp_emit_ps_config(struct brw_context *brw,
|
|||
dw5 |= prog_data->first_curbe_grf << GEN7_PS_DISPATCH_START_GRF_SHIFT_0;
|
||||
}
|
||||
|
||||
switch (params->fast_clear_op) {
|
||||
case GEN7_FAST_CLEAR_OP_FAST_CLEAR:
|
||||
dw4 |= GEN7_PS_RENDER_TARGET_FAST_CLEAR_ENABLE;
|
||||
break;
|
||||
case GEN7_FAST_CLEAR_OP_RESOLVE:
|
||||
dw4 |= GEN7_PS_RENDER_TARGET_RESOLVE_ENABLE;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
BEGIN_BATCH(8);
|
||||
OUT_BATCH(_3DSTATE_PS << 16 | (8 - 2));
|
||||
OUT_BATCH(params->use_wm_prog ? prog_offset : 0);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue