Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_state_constants.c976 unsigned enabled_constbufs; in emit_constbuf_vgpu10() local
978 enabled_constbufs = svga->state.hw_draw.enabled_constbufs[shader] | 1u; in emit_constbuf_vgpu10()
979 dirty_constbufs = (svga->state.dirty_constbufs[shader]|enabled_constbufs) & ~1u; in emit_constbuf_vgpu10()
989 enabled_constbufs |= 1 << index; in emit_constbuf_vgpu10()
992 enabled_constbufs &= ~(1 << index); in emit_constbuf_vgpu10()
1037 enabled_constbufs &= ~(1 << index); in emit_constbuf_vgpu10()
1056 svga->state.hw_draw.enabled_constbufs[shader] = enabled_constbufs; in emit_constbuf_vgpu10()
1446 unsigned enabled_constbufs; in update_rawbuf_mask() local
1448 enabled_constbufs = svga->state.hw_draw.enabled_constbufs[shader] | 1u; in update_rawbuf_mask()
1449 dirty_constbufs = (svga->state.dirty_constbufs[shader]|enabled_constbufs) & ~1u; in update_rawbuf_mask()
Dsvga_draw.c470 unsigned enabled_constbufs; in svga_validate_constant_buffers() local
476 enabled_constbufs = svga->state.hw_draw.enabled_constbufs[shader] & ~1u; in svga_validate_constant_buffers()
477 while (enabled_constbufs) { in svga_validate_constant_buffers()
478 unsigned i = u_bit_scan(&enabled_constbufs); in svga_validate_constant_buffers()
Dsvga_context.c313 memset(svga->state.hw_draw.enabled_constbufs, 0, in svga_context_create()
314 sizeof(svga->state.hw_draw.enabled_constbufs)); in svga_context_create()
Dsvga_context.h452 unsigned enabled_constbufs[PIPE_SHADER_TYPES]; member