xlib: fix build break from _swrast_map_soft_renderbuffer() call

We need to pass the new flip_y argument.

Reviewed-by: Clayton Craft <clayton.a.craft@intel.com>
This commit is contained in:
Brian Paul
2018-07-27 15:17:35 -06:00
parent 90b189e5d2
commit b4bda6e066

View File

@@ -507,7 +507,7 @@ xmesa_MapRenderbuffer(struct gl_context *ctx,
/* otherwise, this is an ordinary malloc-based renderbuffer */
_swrast_map_soft_renderbuffer(ctx, rb, x, y, w, h, mode,
mapOut, rowStrideOut);
mapOut, rowStrideOut, false);
}