summaryrefslogtreecommitdiff
path: root/src/r600_exa.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/r600_exa.c')
-rw-r--r--src/r600_exa.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/r600_exa.c b/src/r600_exa.c
index 92e1ac6..70e55db 100644
--- a/src/r600_exa.c
+++ b/src/r600_exa.c
@@ -261,7 +261,7 @@ R600Solid(PixmapPtr pPix, int x1, int y1, int x2, int y2)
struct r6xx_solid_vertex *solid_vb = (pointer)((char*)accel_state->ib->address + (accel_state->ib->total / 2));
if (((accel_state->vb_index + 3) * 8) > (accel_state->ib->total / 2)) {
- ErrorF("Ran out of VB space!\n");
+ ErrorF("Solid: Ran out of VB space!\n");
return;
}
@@ -610,7 +610,7 @@ R600AppendCopyVertex(ScrnInfoPtr pScrn,
struct r6xx_copy_vertex vertex[3];
if (((accel_state->vb_index + 3) * 16) > (accel_state->ib->total / 2)) {
- ErrorF("Ran out of VB space!\n");
+ ErrorF("Copy: Ran out of VB space!\n");
return;
}
@@ -1918,7 +1918,7 @@ static void R600Composite(PixmapPtr pDst,
xPointFixed maskTopLeft, maskTopRight, maskBottomLeft, maskBottomRight;
if (((accel_state->vb_index + 3) * 24) > (accel_state->ib->total / 2)) {
- ErrorF("Ran out of VB space!\n");
+ ErrorF("Composite: Ran out of VB space!\n");
return;
}
@@ -1979,7 +1979,7 @@ static void R600Composite(PixmapPtr pDst,
struct r6xx_comp_vertex vertex[3];
if (((accel_state->vb_index + 3) * 16) > (accel_state->ib->total / 2)) {
- ErrorF("Ran out of VB space!\n");
+ ErrorF("Composite: Ran out of VB space!\n");
return;
}