HomeSort by relevance Sort by last modified time
    Searched refs:vbo_user (Results 1 - 8 of 8) sorted by null

  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_vbo.c 100 nv30->vbo_fifo = nv30->vbo_user = 0;
115 nv30->vbo_user |= 1 << i;
142 if (!(nv30->vbo_user & (1 << b)))
169 uint32_t vbo_user = nv30->vbo_user; local
171 while (vbo_user) {
172 int i = ffs(vbo_user) - 1;
173 vbo_user &= ~(1 << i);
200 nv30->vbo_user = 0;
235 user = (nv30->vbo_user & (1 << ve->vertex_buffer_index))
    [all...]
nv30_context.h 115 uint32_t vbo_user; member in struct:nv30_context
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_vbo.c 225 if (!(nv50->vbo_user & (1 << b)) || !vb->stride)
256 if (!(nv50->vbo_user & (1 << b)))
288 if (nv50->vbo_user) {
311 if (nv50->vbo_user & ~nv50->vbo_constant)
349 if (likely(vb->stride) || !(nv50->vbo_user & (1 << b)))
367 if (nv50->vbo_user & ~nv50->vbo_constant)
385 if (nv50->vbo_user & (1 << b)) {
783 if (nv50->vbo_user && !(nv50->dirty_3d & (NV50_NEW_3D_ARRAYS | NV50_NEW_3D_VERTEX))) {
nv50_context.h 148 uint32_t vbo_user; /* bitmask of vertex buffers pointing to user memory */ member in struct:nv50_context
nv50_state.c 1053 nv50->vbo_user &= ~(((1ull << count) - 1) << start_slot);
1063 nv50->vbo_user |= 1 << dst_index;
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_vbo.c 224 if (nvc0->vbo_user) {
245 if (!(nvc0->vbo_user & (1 << b)))
279 uint32_t mask = nvc0->vbo_user & ~nvc0->constant_vbos;
337 if (nvc0->vbo_user & (1 << b)) {
374 if (nvc0->vbo_user)
383 const uint32_t mask = nvc0->vbo_user;
423 if (nvc0->vbo_user)
444 } else if (nvc0->vbo_user & ~nvc0->constant_vbos) {
957 if (nvc0->vbo_user && !(nvc0->dirty_3d & (NVC0_NEW_3D_ARRAYS | NVC0_NEW_3D_VERTEX))) {
    [all...]
nvc0_context.h 198 uint32_t vbo_user; /* bitmask of vertex buffers pointing to user memory */ member in struct:nvc0_context
nvc0_state.c 927 nvc0->vbo_user &= ~(((1ull << count) - 1) << start_slot);
937 nvc0->vbo_user |= 1 << dst_index;
944 nvc0->vbo_user &= ~(1 << dst_index);
    [all...]

Completed in 307 milliseconds