mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 07:18:17 +02:00
i965/cs: Emit state base address
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
b750e14fbb
commit
5f70b49d4b
2 changed files with 3 additions and 1 deletions
|
|
@ -1445,7 +1445,7 @@ struct brw_context
|
|||
|
||||
int num_atoms[BRW_NUM_PIPELINES];
|
||||
const struct brw_tracked_state render_atoms[57];
|
||||
const struct brw_tracked_state compute_atoms[1];
|
||||
const struct brw_tracked_state compute_atoms[2];
|
||||
|
||||
/* If (INTEL_DEBUG & DEBUG_BATCH) */
|
||||
struct {
|
||||
|
|
|
|||
|
|
@ -249,6 +249,7 @@ static const struct brw_tracked_state *gen7_render_atoms[] =
|
|||
|
||||
static const struct brw_tracked_state *gen7_compute_atoms[] =
|
||||
{
|
||||
&brw_state_base_address,
|
||||
&brw_cs_state,
|
||||
};
|
||||
|
||||
|
|
@ -330,6 +331,7 @@ static const struct brw_tracked_state *gen8_render_atoms[] =
|
|||
|
||||
static const struct brw_tracked_state *gen8_compute_atoms[] =
|
||||
{
|
||||
&gen8_state_base_address,
|
||||
&brw_cs_state,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue