summaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/glx
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2011-10-26 10:38:29 -0600
committerBrian Paul <[email protected]>2011-10-26 16:45:04 -0600
commit27de26073b0ab385e57504d77197a33bb7b6c28f (patch)
tree899e57ef11b4ca3aaf8fae044cfbd7fba6832953 /src/gallium/state_trackers/glx
parent2997b458964b82c2cb7d0e57b3ead9371c4a8ea1 (diff)
st/glx: fix mixed declarations and code, remove unused var
Diffstat (limited to 'src/gallium/state_trackers/glx')
-rw-r--r--src/gallium/state_trackers/glx/xlib/xm_api.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gallium/state_trackers/glx/xlib/xm_api.c b/src/gallium/state_trackers/glx/xlib/xm_api.c
index d80e7c816f4..75e9e11e05d 100644
--- a/src/gallium/state_trackers/glx/xlib/xm_api.c
+++ b/src/gallium/state_trackers/glx/xlib/xm_api.c
@@ -1335,7 +1335,6 @@ XMesaBindTexImage(Display *dpy, XMesaBuffer drawable, int buffer,
struct st_framebuffer_iface* stfbi = drawable->stfb;
struct pipe_resource *res;
int x, y, w, h;
- XMesaContext xmesa = XMesaGetCurrentContext();
enum st_attachment_type st_attachment = xmesa_attachment_type(buffer);
x = 0;
@@ -1354,6 +1353,7 @@ XMesaBindTexImage(Display *dpy, XMesaBuffer drawable, int buffer,
struct pipe_transfer *tex_xfer;
char *map;
int line, ximage_stride;
+ XImage *img;
internal_format = choose_pixel_format(drawable->xm_visual);
@@ -1366,12 +1366,12 @@ XMesaBindTexImage(Display *dpy, XMesaBuffer drawable, int buffer,
return;
/* Grab the XImage that we want to turn into a texture. */
- XImage *img = XGetImage(dpy,
- drawable->ws.drawable,
- x, y,
- w, h,
- AllPlanes,
- ZPixmap);
+ img = XGetImage(dpy,
+ drawable->ws.drawable,
+ x, y,
+ w, h,
+ AllPlanes,
+ ZPixmap);
if (!img) {
pipe_transfer_destroy(pipe, tex_xfer);