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

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_draw_arrays.c 58 const void *mapped_indices = NULL; local
91 mapped_indices = lp->index_buffer.user_buffer;
92 if (!mapped_indices) {
93 mapped_indices = llvmpipe_resource_data(lp->index_buffer.buffer);
101 (ubyte *) mapped_indices + lp->index_buffer.offset,
140 if (mapped_indices) {
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_draw_arrays.c 66 const void *mapped_indices = NULL; local
100 mapped_indices = sp->index_buffer.user_buffer;
101 if (!mapped_indices) {
102 mapped_indices = softpipe_resource_data(sp->index_buffer.buffer);
111 (ubyte *) mapped_indices + sp->index_buffer.offset,
153 if (mapped_indices) {
  /external/mesa3d/src/gallium/drivers/i915/
i915_context.c 56 const void *mapped_indices = NULL; local
81 mapped_indices = i915->index_buffer.user_buffer;
82 if (!mapped_indices)
83 mapped_indices = i915_buffer(i915->index_buffer.buffer)->data;
85 (ubyte *) mapped_indices + i915->index_buffer.offset,
111 if (mapped_indices)
  /external/mesa3d/src/mesa/state_tracker/
st_draw_feedback.c 137 const void *mapped_indices = NULL; local
255 mapped_indices = pipe_buffer_map(pipe, stobj->buffer,
260 mapped_indices = ib->ptr;
264 (ubyte *) mapped_indices + ibuffer.offset,

Completed in 331 milliseconds