extern void radeon_vb_to_rvb(r300ContextPtr rmesa,
struct radeon_vertex_buffer *rvb,
struct vertex_buffer *vb);
-extern GLboolean r300_run_vb_render(GLcontext * ctx,
- struct tnl_pipeline_stage *stage);
+extern GLboolean r300RunRender(GLcontext * ctx,
+ struct tnl_pipeline_stage *stage);
#ifdef RADEON_VTXFMT_A
extern void radeon_init_vtxfmt_a(r300ContextPtr rmesa);
rmesa->state.VB.elt_min = min;
rmesa->state.VB.elt_max = max;
- if (r300_run_vb_render(ctx, NULL)) {
+ if (r300RunRender(ctx, NULL)) {
r300ReleaseDmaRegion(rmesa, &rvb, __FUNCTION__);
return GL_FALSE;
}
rmesa->state.VB.elt_min = 0;
rmesa->state.VB.elt_max = 0;
- if (r300_run_vb_render(ctx, NULL))
+ if (r300RunRender(ctx, NULL))
return GL_FALSE;
return GL_TRUE;