mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-11 18:00:36 +02:00
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@iki.fi>
This commit is contained in:
parent
c50a9319b1
commit
3af89cd3de
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue