Searched refs:draw_vbo (Results 1 - 25 of 126) sorted by relevance

123456

/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/
H A Dzink_inlines.h8 ctx->base.draw_vbo = ctx->draw_vbo[ctx->pipeline_changed[0]];
9 assert(ctx->base.draw_vbo);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/
H A Dr300_render_stencilref.c37 void (*draw_vbo)(struct pipe_context *pipe, member in struct:r300_stencilref_context
110 sr->draw_vbo(pipe, info);
113 sr->draw_vbo(pipe, info);
115 sr->draw_vbo(pipe, info);
125 r300->stencilref_fallback->draw_vbo = r300->context.draw_vbo;
128 r300->context.draw_vbo = r300_stencilref_draw_vbo;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/
H A Dr300_render_stencilref.c37 void (*draw_vbo)(struct pipe_context *pipe, member in struct:r300_stencilref_context
118 sr->draw_vbo(pipe, info, drawid_offset, NULL, draws, num_draws);
121 sr->draw_vbo(pipe, info, drawid_offset, NULL, draws, num_draws);
123 sr->draw_vbo(pipe, info, drawid_offset, NULL, draws, num_draws);
133 r300->stencilref_fallback->draw_vbo = r300->context.draw_vbo;
136 r300->context.draw_vbo = r300_stencilref_draw_vbo;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_draw.h66 pipe->draw_vbo(pipe, &info);
88 pipe->draw_vbo(pipe, &info);
110 pipe->draw_vbo(pipe, &info);
137 pipe->draw_vbo(pipe, &info);
142 * buffer, extracting its arguments, and calling pipe->draw_vbo.
H A Du_threaded_context_calls.h28 CALL(draw_vbo)
H A Du_draw.c130 * puts them into a new instance of pipe_draw_info, and calls draw_vbo on it.
167 pipe->draw_vbo(pipe, &info);
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_draw.h69 pipe->draw_vbo(pipe, &info, 0, NULL, &draw, 1);
93 pipe->draw_vbo(pipe, &info, 0, NULL, &draw, 1);
119 pipe->draw_vbo(pipe, &info, 0, NULL, &draw, 1);
148 pipe->draw_vbo(pipe, &info, 0, NULL, &draw, 1);
164 * buffer, extracting its arguments, and calling pipe->draw_vbo.
H A Du_draw.c190 * puts them into a new instance of pipe_draw_info, and calls draw_vbo on it.
247 pipe->draw_vbo(pipe, &info, i, NULL, &draw, 1);
271 pctx->draw_vbo(pctx, &tmp_info, drawid, indirect, &draws[i], 1);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
H A Dlp_draw_arrays.c129 draw_vbo(draw, info);
162 llvmpipe->pipe.draw_vbo = llvmpipe_draw_vbo;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_draw_arrays.c149 draw_vbo(draw, info, drawid_offset, indirect, draws, num_draws,
192 llvmpipe->pipe.draw_vbo = llvmpipe_draw_vbo;
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/d3d10umd/
H A DDraw.cpp192 pDevice->pipe->draw_vbo(pDevice->pipe, &info, 0, NULL, &draw, 1);
295 pDevice->pipe->draw_vbo(pDevice->pipe, &info, 0, NULL, &draw, 1);
342 pDevice->pipe->draw_vbo(pDevice->pipe, &info, 0, &indirect, NULL, 1);
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_ddebug/
H A Ddd_draw.c640 dd_dump_draw_vbo(state, &call->info.draw_vbo.info,
641 call->info.draw_vbo.drawid_offset,
642 &call->info.draw_vbo.indirect,
643 &call->info.draw_vbo.draw, f);
716 pipe_so_target_reference(&dst->info.draw_vbo.indirect.count_from_stream_output, NULL);
717 pipe_resource_reference(&dst->info.draw_vbo.indirect.buffer, NULL);
718 pipe_resource_reference(&dst->info.draw_vbo.indirect.indirect_draw_count, NULL);
719 if (dst->info.draw_vbo.info.index_size &&
720 !dst->info.draw_vbo.info.has_user_indices)
721 pipe_resource_reference(&dst->info.draw_vbo
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/indices/
H A Du_primconvert.c32 * drivers pipe->draw_vbo():
158 pc->pipe->draw_vbo(pc->pipe, &new_info);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
H A Dsp_draw_arrays.c144 draw_vbo(draw, info);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_draw_arrays.c144 draw_vbo(draw, info, drawid_offset, indirect, draws, num_draws, 0);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_ddebug/
H A Ddd_draw.c632 dd_dump_draw_vbo(state, &call->info.draw_vbo.draw, f);
705 pipe_so_target_reference(&dst->info.draw_vbo.draw.count_from_stream_output, NULL);
706 pipe_resource_reference(&dst->info.draw_vbo.indirect.buffer, NULL);
707 pipe_resource_reference(&dst->info.draw_vbo.indirect.indirect_draw_count, NULL);
708 if (dst->info.draw_vbo.draw.index_size &&
709 !dst->info.draw_vbo.draw.has_user_indices)
710 pipe_resource_reference(&dst->info.draw_vbo.draw.index.resource, NULL);
712 dst->info.draw_vbo.draw.index.user = NULL;
1304 record->call.info.draw_vbo.draw = *info;
1305 record->call.info.draw_vbo
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
H A Di915_context.c112 draw_vbo(i915->draw, info);
191 i915->base.draw_vbo = i915_draw_vbo;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
H A Di915_context.c115 draw_vbo(i915->draw, info, drawid_offset, NULL, draws, num_draws, 0);
203 i915->base.draw_vbo = i915_draw_vbo;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_draw.c181 ctx->draw_vbo = fd3_draw_vbo;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_draw.c186 ctx->draw_vbo = fd4_draw_vbo;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_draw.c170 ctx->draw_vbo = fd3_draw_vbo;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_draw.c171 ctx->draw_vbo = fd4_draw_vbo;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_draw.c290 if (ctx->draw_vbo(ctx, info, index_offset))
478 pctx->draw_vbo = fd_draw_vbo;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/graw/
H A Dtri-instanced.c212 ctx->draw_vbo(ctx, &info);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
H A Ddraw_context.h267 void draw_vbo(struct draw_context *draw,

Completed in 12 milliseconds

123456