Home
last modified time | relevance | path

Searched refs:enabled_constbufs (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/drivers/svga/
Dsvga_state_constants.c812 unsigned enabled_constbufs; in emit_constbuf_vgpu10() local
814 enabled_constbufs = svga->state.hw_draw.enabled_constbufs[shader] | 1u; in emit_constbuf_vgpu10()
815 dirty_constbufs = (svga->state.dirty_constbufs[shader]|enabled_constbufs) & ~1u; in emit_constbuf_vgpu10()
825 enabled_constbufs |= 1 << index; in emit_constbuf_vgpu10()
828 enabled_constbufs &= ~(1 << index); in emit_constbuf_vgpu10()
861 svga->state.hw_draw.enabled_constbufs[shader] = enabled_constbufs; in emit_constbuf_vgpu10()
Dsvga_draw.c437 unsigned enabled_constbufs; in validate_constant_buffers() local
443 enabled_constbufs = svga->state.hw_draw.enabled_constbufs[shader] & ~1u; in validate_constant_buffers()
444 while (enabled_constbufs) { in validate_constant_buffers()
445 unsigned i = u_bit_scan(&enabled_constbufs); in validate_constant_buffers()
Dsvga_context.c290 memset(svga->state.hw_draw.enabled_constbufs, 0, in svga_context_create()
291 sizeof(svga->state.hw_draw.enabled_constbufs)); in svga_context_create()
Dsvga_context.h404 unsigned enabled_constbufs[PIPE_SHADER_TYPES]; member