[Spice-commits] common/glc.c
Christophe Fergau
teuf at kemper.freedesktop.org
Mon Nov 24 02:25:00 PST 2014
common/glc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 8639bbdc9d33555eaa40bbbad9ba53d346b489fd
Author: Christophe Fergeau <cfergeau at redhat.com>
Date: Fri Nov 21 11:41:53 2014 +0100
glc: Fix "warning: unused variable 'recreate'"
diff --git a/common/glc.c b/common/glc.c
index c1795de..8fd8700 100644
--- a/common/glc.c
+++ b/common/glc.c
@@ -1260,7 +1260,6 @@ void glc_copy_pixels(GLCCtx glc, int x_dest, int y_dest, int x_src, int y_src, i
int height)
{
InternaCtx *ctx = (InternaCtx *)glc;
- int recreate = 0;
spice_assert(ctx);
#if 1 /* USE_COPY_PIXELS */
@@ -1275,6 +1274,7 @@ void glc_copy_pixels(GLCCtx glc, int x_dest, int y_dest, int x_src, int y_src, i
glEnable(GL_TEXTURE_2D);
}
#else
+ int recreate = 0;
int width2 = gl_get_to_power_two(width);
int height2 = gl_get_to_power_two(height);
More information about the Spice-commits
mailing list