/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_draw_arrays.c | 57 const void *mapped_indices = NULL; local 78 mapped_indices = lp->index_buffer.user_buffer; 79 if (!mapped_indices) 80 mapped_indices = llvmpipe_resource_data(lp->index_buffer.buffer); 83 (ubyte *) mapped_indices + lp->index_buffer.offset, 100 if (mapped_indices) {
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_draw_arrays.c | 64 const void *mapped_indices = NULL; local 88 mapped_indices = sp->index_buffer.user_buffer; 89 if (!mapped_indices) 90 mapped_indices = softpipe_resource(sp->index_buffer.buffer)->data; 93 (ubyte *) mapped_indices + sp->index_buffer.offset, 113 if (mapped_indices) {
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_draw_arrays.c | 57 const void *mapped_indices = NULL; local 78 mapped_indices = lp->index_buffer.user_buffer; 79 if (!mapped_indices) 80 mapped_indices = llvmpipe_resource_data(lp->index_buffer.buffer); 83 (ubyte *) mapped_indices + lp->index_buffer.offset, 100 if (mapped_indices) {
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_draw_arrays.c | 64 const void *mapped_indices = NULL; local 88 mapped_indices = sp->index_buffer.user_buffer; 89 if (!mapped_indices) 90 mapped_indices = softpipe_resource(sp->index_buffer.buffer)->data; 93 (ubyte *) mapped_indices + sp->index_buffer.offset, 113 if (mapped_indices) {
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_context.c | 56 const void *mapped_indices = NULL; local 71 mapped_indices = i915->index_buffer.user_buffer; 72 if (!mapped_indices) 73 mapped_indices = i915_buffer(i915->index_buffer.buffer)->data; 75 (ubyte *) mapped_indices + i915->index_buffer.offset, 95 if (mapped_indices)
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_context.c | 56 const void *mapped_indices = NULL; local 71 mapped_indices = i915->index_buffer.user_buffer; 72 if (!mapped_indices) 73 mapped_indices = i915_buffer(i915->index_buffer.buffer)->data; 75 (ubyte *) mapped_indices + i915->index_buffer.offset, 95 if (mapped_indices)
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_draw_feedback.c | 115 const void *mapped_indices = NULL; local 227 mapped_indices = pipe_buffer_map(pipe, stobj->buffer, 232 mapped_indices = ib->ptr; 236 (ubyte *) mapped_indices + ibuffer.offset,
|
/external/mesa3d/src/mesa/state_tracker/ |
st_draw_feedback.c | 115 const void *mapped_indices = NULL; local 227 mapped_indices = pipe_buffer_map(pipe, stobj->buffer, 232 mapped_indices = ib->ptr; 236 (ubyte *) mapped_indices + ibuffer.offset,
|