summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesa/drivers/dri/r300/r300_context.h4
-rw-r--r--src/mesa/drivers/dri/r300/radeon_vtxfmt_a.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_context.h b/src/mesa/drivers/dri/r300/r300_context.h
index 4cc3352ab0..b7d2552b18 100644
--- a/src/mesa/drivers/dri/r300/r300_context.h
+++ b/src/mesa/drivers/dri/r300/r300_context.h
@@ -914,8 +914,8 @@ extern int r300Fallback(GLcontext * ctx);
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);
diff --git a/src/mesa/drivers/dri/r300/radeon_vtxfmt_a.c b/src/mesa/drivers/dri/r300/radeon_vtxfmt_a.c
index a15a17d1d3..bdd731fdf5 100644
--- a/src/mesa/drivers/dri/r300/radeon_vtxfmt_a.c
+++ b/src/mesa/drivers/dri/r300/radeon_vtxfmt_a.c
@@ -337,7 +337,7 @@ static void radeonDrawRangeElements(GLcontext *ctx,
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;
}
@@ -398,7 +398,7 @@ static GLboolean radeonDrawArrays( GLcontext *ctx,
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;