diff options
author | Brian <[email protected]> | 2007-07-31 17:42:03 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-31 17:42:03 -0600 |
commit | 20adf45c23dd9ec86a1439ad87c1473395bbb1a7 (patch) | |
tree | eee17a4b7b1572651c2b20661b26b82def9cdd34 /src/mesa/drivers/x11/xmesaP.h | |
parent | 2f245bce420c7a6c6928c4927d0f9a5701cde17f (diff) |
Redesign pipe_surface in terms of pipe_region.
struct pipe_buffer goes away.
Added basic region functions to softpipe to allocate/release malloc'd regions.
Surface-related code is fairly coherent now.
Diffstat (limited to 'src/mesa/drivers/x11/xmesaP.h')
-rw-r--r-- | src/mesa/drivers/x11/xmesaP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/x11/xmesaP.h b/src/mesa/drivers/x11/xmesaP.h index daf6a3f9424..098b9218ae5 100644 --- a/src/mesa/drivers/x11/xmesaP.h +++ b/src/mesa/drivers/x11/xmesaP.h @@ -589,7 +589,7 @@ extern void xmesa_register_swrast_functions( GLcontext *ctx ); struct pipe_surface; struct pipe_surface * -xmesa_new_surface(struct xmesa_renderbuffer *xrb); +xmesa_new_surface(GLcontext *ctx, struct xmesa_renderbuffer *xrb); #endif |