From: Jakob Bornecrantz Date: Fri, 21 May 2010 20:24:10 +0000 (+0100) Subject: nouveau: Fix build after msaa merge X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0853401805fc95c71e237fe9b04ff023cd268361;p=mesa.git nouveau: Fix build after msaa merge --- diff --git a/src/gallium/winsys/nouveau/drm/nouveau_drm_api.c b/src/gallium/winsys/nouveau/drm/nouveau_drm_api.c index 3a4bba4ce32..c0047859b18 100644 --- a/src/gallium/winsys/nouveau/drm/nouveau_drm_api.c +++ b/src/gallium/winsys/nouveau/drm/nouveau_drm_api.c @@ -23,9 +23,7 @@ dri_surface_from_handle(struct drm_api *api, struct pipe_screen *pscreen, struct pipe_resource tmpl; struct winsys_handle whandle; unsigned bind = (PIPE_BIND_SCANOUT | - PIPE_BIND_RENDER_TARGET | - PIPE_BIND_BLIT_DESTINATION | - PIPE_BIND_BLIT_SOURCE); + PIPE_BIND_RENDER_TARGET); memset(&tmpl, 0, sizeof(tmpl)); tmpl.bind = bind;