diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-11-01 12:57:48 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-11-01 12:57:48 -0600 |
commit | a00bd3fc2f85997d0573ea0e4773ef1e290e1128 (patch) | |
tree | f0d372801c5e6aa4ce5edc266b4165864577154c /src/mesa/pipe/xlib | |
parent | 618089555353070f73dc8ad3b52578db3bedc294 (diff) |
disable/omit renderbuffer span code
Diffstat (limited to 'src/mesa/pipe/xlib')
-rw-r--r-- | src/mesa/pipe/xlib/xm_buffer.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/pipe/xlib/xm_buffer.c b/src/mesa/pipe/xlib/xm_buffer.c index cd3b498b10..b4a05ac685 100644 --- a/src/mesa/pipe/xlib/xm_buffer.c +++ b/src/mesa/pipe/xlib/xm_buffer.c @@ -289,8 +289,10 @@ xmesa_alloc_front_storage(GLcontext *ctx, struct gl_renderbuffer *rb, if (!xrb->St.surface || !xrb->St.surface->region) finish_surface_init(ctx, xrb); +#if 0 xmesa_set_renderbuffer_funcs(xrb, xmesa->pixelformat, xmesa->xm_visual->BitsPerPixel); +#endif /* surface info */ xms->surface.width = width; @@ -351,8 +353,10 @@ xmesa_alloc_back_storage(GLcontext *ctx, struct gl_renderbuffer *rb, xrb->origin4 = NULL; } +#if 0 xmesa_set_renderbuffer_funcs(xrb, xmesa->pixelformat, xmesa->xm_visual->BitsPerPixel); +#endif if (!xrb->St.surface || !xrb->St.surface->region) finish_surface_init(ctx, xrb); |