summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/x11/xm_image.c
diff options
context:
space:
mode:
authorGeorge Sapountzis <gsap7@yahoo.gr>2007-04-13 18:13:08 +0300
committerGeorge Sapountzis <gsap7@yahoo.gr>2007-04-13 18:13:08 +0300
commit9f8373d5cada37ed71e5908a7158d56d9a4c34d5 (patch)
tree614090ad77d6995d243e452e9beef1c1777cbaf2 /src/mesa/drivers/x11/xm_image.c
parent50aaabc248c9823106ff772873cbf2631d4dadcd (diff)
xmesa: drop unused XMesaPutImageHelper.
It could only be called from XMesaCopySubBuffer but this function is not used by XFree86. It seems that XMesaPutImageHelper would handle sub-images but never got finished. Proper sub-image helpers should be written if need be.
Diffstat (limited to 'src/mesa/drivers/x11/xm_image.c')
-rw-r--r--src/mesa/drivers/x11/xm_image.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/mesa/drivers/x11/xm_image.c b/src/mesa/drivers/x11/xm_image.c
index b91d5679f9..087b4e4c3a 100644
--- a/src/mesa/drivers/x11/xm_image.c
+++ b/src/mesa/drivers/x11/xm_image.c
@@ -130,21 +130,4 @@ void XMesaPutPixel(XMesaImage *image, int x, int y, unsigned long pixel)
}
#endif
-void XMesaPutImageHelper(ScreenPtr display,
- DrawablePtr d, GCPtr gc,
- XMesaImage *image,
- int src_x, int src_y,
- int dest_x, int dest_y,
- unsigned int width, unsigned int height)
-{
- /* NOT_DONE: Verify that the following works for all depths */
- char *src = (image->data +
- src_y * image->bytes_per_line +
- ((src_x * image->bits_per_pixel) >> 3));
-
- ValidateGC(d, gc);
- (*gc->ops->PutImage)(d, gc, d->depth, dest_x, dest_y, width, height,
- 0, ZPixmap, src);
-}
-
#endif /* XFree86Server */