From 34912cc8d1d4e05704a18c4a5df20369e019873f Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 25 Jul 2024 10:04:07 -0400 Subject: [PATCH] glx: rename driswCopySubBuffer Reviewed-by: Adam Jackson Part-of: --- src/glx/drisw_glx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/glx/drisw_glx.c b/src/glx/drisw_glx.c index 07024eb487b..c6988915083 100644 --- a/src/glx/drisw_glx.c +++ b/src/glx/drisw_glx.c @@ -769,8 +769,8 @@ driswSwapBuffers(__GLXDRIdrawable * pdraw, } static void -driswCopySubBuffer(__GLXDRIdrawable * pdraw, - int x, int y, int width, int height, Bool flush) +drisw_copy_sub_buffer(__GLXDRIdrawable * pdraw, + int x, int y, int width, int height, Bool flush) { struct drisw_drawable *pdp = (struct drisw_drawable *) pdraw; struct drisw_screen *psc = (struct drisw_screen *) pdp->base.psc; @@ -1004,7 +1004,7 @@ driswCreateScreen(int screen, struct glx_display *priv, enum glx_driver glx_driv psp->releaseTexImage = drisw_release_tex_image; if (psc->copySubBuffer) - psp->copySubBuffer = driswCopySubBuffer; + psp->copySubBuffer = drisw_copy_sub_buffer; if (psc->kopper) { psp->getBufferAge = kopper_get_buffer_age;