Mesa (gallium-0.2): nouveau: fix st_get_framebuffer_surface() breakage

Pekka Paalanen pq at kemper.freedesktop.org
Sat Jan 24 18:14:31 UTC 2009


Module: Mesa
Branch: gallium-0.2
Commit: 3af89cd3dec09b8cc5733cd45e2af05b689d0374
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3af89cd3dec09b8cc5733cd45e2af05b689d0374

Author: Pekka Paalanen <pq at iki.fi>
Date:   Sat Jan 24 19:56:13 2009 +0200

nouveau: fix st_get_framebuffer_surface() breakage

Someone changed the st_get_framebuffer_surface() signature, and did not
update the users in Nouveau winsys. Surface is returned via a pointer
now instead of returning it from the function. No semantic changes.

Signed-off-by: Pekka Paalanen <pq at iki.fi>

---

 .../winsys/drm/nouveau/dri/nouveau_swapbuffers.c   |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/winsys/drm/nouveau/dri/nouveau_swapbuffers.c b/src/gallium/winsys/drm/nouveau/dri/nouveau_swapbuffers.c
index 38461b2..e111eec 100644
--- a/src/gallium/winsys/drm/nouveau/dri/nouveau_swapbuffers.c
+++ b/src/gallium/winsys/drm/nouveau/dri/nouveau_swapbuffers.c
@@ -58,7 +58,7 @@ nouveau_copy_sub_buffer(__DRIdrawablePrivate *dPriv, int x, int y, int w, int h)
 	struct nouveau_framebuffer *nvfb = dPriv->driverPrivate;
 	struct pipe_surface *surf;
 
-	surf = st_get_framebuffer_surface(nvfb->stfb, ST_SURFACE_BACK_LEFT);
+	st_get_framebuffer_surface(nvfb->stfb, ST_SURFACE_BACK_LEFT, &surf);
 	if (surf) {
 		drm_clip_rect_t rect;
 		rect.x1 = x;
@@ -77,7 +77,7 @@ nouveau_swap_buffers(__DRIdrawablePrivate *dPriv)
 	struct nouveau_framebuffer *nvfb = dPriv->driverPrivate;
 	struct pipe_surface *surf;
 
-	surf = st_get_framebuffer_surface(nvfb->stfb, ST_SURFACE_BACK_LEFT);
+	st_get_framebuffer_surface(nvfb->stfb, ST_SURFACE_BACK_LEFT, &surf);
 	if (surf) {
 		st_notify_swapbuffers(nvfb->stfb);
 		nouveau_copy_buffer(dPriv, surf, NULL);




More information about the mesa-commit mailing list