mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 22:38:05 +02:00
i965: Support CS in update_stage_texture_surfaces
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
This commit is contained in:
parent
bfc5ace5bd
commit
2b9c35945a
1 changed files with 7 additions and 0 deletions
|
|
@ -848,10 +848,14 @@ brw_update_texture_surfaces(struct brw_context *brw)
|
|||
/* BRW_NEW_FRAGMENT_PROGRAM */
|
||||
struct gl_program *fs = (struct gl_program *) brw->fragment_program;
|
||||
|
||||
/* BRW_NEW_COMPUTE_PROGRAM */
|
||||
struct gl_program *cs = (struct gl_program *) brw->compute_program;
|
||||
|
||||
/* _NEW_TEXTURE */
|
||||
update_stage_texture_surfaces(brw, vs, &brw->vs.base, false);
|
||||
update_stage_texture_surfaces(brw, gs, &brw->gs.base, false);
|
||||
update_stage_texture_surfaces(brw, fs, &brw->wm.base, false);
|
||||
update_stage_texture_surfaces(brw, cs, &brw->cs.base, false);
|
||||
|
||||
/* emit alternate set of surface state for gather. this
|
||||
* allows the surface format to be overriden for only the
|
||||
|
|
@ -863,6 +867,8 @@ brw_update_texture_surfaces(struct brw_context *brw)
|
|||
update_stage_texture_surfaces(brw, gs, &brw->gs.base, true);
|
||||
if (fs && fs->UsesGather)
|
||||
update_stage_texture_surfaces(brw, fs, &brw->wm.base, true);
|
||||
if (cs && cs->UsesGather)
|
||||
update_stage_texture_surfaces(brw, cs, &brw->cs.base, true);
|
||||
}
|
||||
|
||||
brw->ctx.NewDriverState |= BRW_NEW_SURFACES;
|
||||
|
|
@ -872,6 +878,7 @@ const struct brw_tracked_state brw_texture_surfaces = {
|
|||
.dirty = {
|
||||
.mesa = _NEW_TEXTURE,
|
||||
.brw = BRW_NEW_BATCH |
|
||||
BRW_NEW_COMPUTE_PROGRAM |
|
||||
BRW_NEW_FRAGMENT_PROGRAM |
|
||||
BRW_NEW_FS_PROG_DATA |
|
||||
BRW_NEW_GEOMETRY_PROGRAM |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue