Home
last modified time | relevance | path

Searched refs:constbuf_dirty (Results 1 – 12 of 12) sorted by relevance

/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_compute.c183 nvc0->constbuf_dirty[s] |= nvc0->constbuf_valid[s]; in nvc0_compute_invalidate_constbufs()
195 while (nvc0->constbuf_dirty[s]) { in nvc0_compute_validate_constbufs()
196 int i = ffs(nvc0->constbuf_dirty[s]) - 1; in nvc0_compute_validate_constbufs()
197 nvc0->constbuf_dirty[s] &= ~(1 << i); in nvc0_compute_validate_constbufs()
Dnvc0_state_validate.c582 while (nvc0->constbuf_dirty[s]) { in nvc0_constbufs_validate()
583 int i = ffs(nvc0->constbuf_dirty[s]) - 1; in nvc0_constbufs_validate()
584 nvc0->constbuf_dirty[s] &= ~(1 << i); in nvc0_constbufs_validate()
628 nvc0->constbuf_dirty[5] |= nvc0->constbuf_valid[5]; in nvc0_constbufs_validate()
887 ctx_to->constbuf_dirty[s] = (1 << NVC0_MAX_PIPE_CONSTBUFS) - 1; in nvc0_switch_pipe_context()
Dnvc0_context.h209 uint16_t constbuf_dirty[6]; member
Dnve4_compute.c392 while (nvc0->constbuf_dirty[s]) { in nve4_compute_validate_constbufs()
393 int i = ffs(nvc0->constbuf_dirty[s]) - 1; in nve4_compute_validate_constbufs()
394 nvc0->constbuf_dirty[s] &= ~(1 << i); in nve4_compute_validate_constbufs()
Dnvc0_context.c308 nvc0->constbuf_dirty[s] |= 1 << i; in nvc0_invalidate_resource_storage()
Dnvc0_state.c801 nvc0->constbuf_dirty[s] |= 1 << i; in nvc0_set_constant_buffer()
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_state_validate.c463 ctx_to->constbuf_dirty[0] = in nv50_switch_pipe_context()
464 ctx_to->constbuf_dirty[1] = in nv50_switch_pipe_context()
465 ctx_to->constbuf_dirty[2] = (1 << NV50_MAX_PIPE_CONSTBUFS) - 1; in nv50_switch_pipe_context()
Dnv50_shader_state.c51 while (nv50->constbuf_dirty[s]) { in nv50_constbufs_validate()
52 const unsigned i = (unsigned)ffs(nv50->constbuf_dirty[s]) - 1; in nv50_constbufs_validate()
55 nv50->constbuf_dirty[s] &= ~(1 << i); in nv50_constbufs_validate()
Dnv50_context.h139 uint16_t constbuf_dirty[3]; member
Dnv50_context.c255 nv50->constbuf_dirty[s] |= 1 << i; in nv50_invalidate_resource_storage()
Dnv50_state.c932 nv50->constbuf_dirty[s] |= 1 << i; in nv50_set_constant_buffer()
/external/mesa3d/src/gallium/frontends/lavapipe/
Dlvp_execute.c54 bool constbuf_dirty[PIPE_SHADER_TYPES]; member
142 if (state->constbuf_dirty[PIPE_SHADER_COMPUTE]) { in emit_compute_state()
146 state->constbuf_dirty[PIPE_SHADER_COMPUTE] = false; in emit_compute_state()
251 if (state->constbuf_dirty[sh]) { in emit_state()
256 state->constbuf_dirty[sh] = false; in emit_state()
916 state->constbuf_dirty[p_stage] = true; in handle_descriptor()