mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
i965: Remove nr_surfaces computation from brw_update_wm_surfaces.
This code is fairly fragile, as it depends on the ordering of the entries in the binding table, which will change soon. Also, stop listening on the BRW_NEW_WM_CONSTBUF dirty bit as it's no longer required. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Paul Berry <stereotype441@gmail.com>
This commit is contained in:
parent
6ba9090ea0
commit
e4b1c9b4be
1 changed files with 1 additions and 11 deletions
|
|
@ -587,7 +587,6 @@ brw_upload_wm_surfaces(struct brw_context *brw)
|
|||
struct intel_context *intel = &brw->intel;
|
||||
struct gl_context *ctx = &brw->intel.ctx;
|
||||
GLuint i;
|
||||
int nr_surfaces = 0;
|
||||
|
||||
/* _NEW_BUFFERS | _NEW_COLOR */
|
||||
/* Update surfaces for drawing buffers */
|
||||
|
|
@ -599,15 +598,8 @@ brw_upload_wm_surfaces(struct brw_context *brw)
|
|||
intel->vtbl.update_null_renderbuffer_surface(brw, i);
|
||||
}
|
||||
}
|
||||
nr_surfaces = SURF_INDEX_DRAW(ctx->DrawBuffer->_NumColorDrawBuffers);
|
||||
} else {
|
||||
intel->vtbl.update_null_renderbuffer_surface(brw, 0);
|
||||
nr_surfaces = SURF_INDEX_DRAW(0) + 1;
|
||||
}
|
||||
|
||||
/* BRW_NEW_WM_CONSTBUF */
|
||||
if (brw->wm.const_bo) {
|
||||
nr_surfaces = SURF_INDEX_FRAG_CONST_BUFFER + 1;
|
||||
}
|
||||
|
||||
/* Update surfaces for textures */
|
||||
|
|
@ -618,7 +610,6 @@ brw_upload_wm_surfaces(struct brw_context *brw)
|
|||
/* _NEW_TEXTURE */
|
||||
if (texUnit->_ReallyEnabled) {
|
||||
intel->vtbl.update_texture_surface(ctx, i);
|
||||
nr_surfaces = SURF_INDEX_TEXTURE(i) + 1;
|
||||
} else {
|
||||
brw->wm.surf_offset[surf] = 0;
|
||||
}
|
||||
|
|
@ -632,8 +623,7 @@ const struct brw_tracked_state brw_wm_surfaces = {
|
|||
.mesa = (_NEW_COLOR |
|
||||
_NEW_TEXTURE |
|
||||
_NEW_BUFFERS),
|
||||
.brw = (BRW_NEW_BATCH |
|
||||
BRW_NEW_WM_CONSTBUF),
|
||||
.brw = BRW_NEW_BATCH,
|
||||
.cache = 0
|
||||
},
|
||||
.emit = brw_upload_wm_surfaces,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue