From: Patrice Mandin Date: Sat, 30 Aug 2008 20:30:03 +0000 (+0200) Subject: nv30: activate fp texture units when needed, to get texturing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=248831e741602450fa957d7f63b1ff1e1395c412;p=mesa.git nv30: activate fp texture units when needed, to get texturing --- diff --git a/src/gallium/drivers/nv30/nv30_state_emit.c b/src/gallium/drivers/nv30/nv30_state_emit.c index 40fed621b24..9c96085408e 100644 --- a/src/gallium/drivers/nv30/nv30_state_emit.c +++ b/src/gallium/drivers/nv30/nv30_state_emit.c @@ -71,6 +71,10 @@ nv30_state_emit(struct nv30_context *nv30) state->dirty = 0; + /* FIXME/TODO: Try to find a way to reemit only when changed */ + BEGIN_RING(rankine, NV34TCL_TX_UNITS_ENABLE, 1); + OUT_RING(state->fp_samplers); + so_emit_reloc_markers(nv30->nvws, state->hw[NV30_STATE_FB]); for (i = 0, samplers = state->fp_samplers; i < 16 && samplers; i++) { if (!(samplers & (1 << i)))