summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/nouveau
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2010-05-21 21:24:10 +0100
committerJakob Bornecrantz <jakob@vmware.com>2010-05-21 21:25:07 +0100
commit0853401805fc95c71e237fe9b04ff023cd268361 (patch)
treed2b2794bb8a14a35bc76d2d391268cef9a3d78cd /src/gallium/winsys/nouveau
parent7c226d0ab833b4bd359c675aefbc6aaeb485fd98 (diff)
nouveau: Fix build after msaa merge
Diffstat (limited to 'src/gallium/winsys/nouveau')
-rw-r--r--src/gallium/winsys/nouveau/drm/nouveau_drm_api.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gallium/winsys/nouveau/drm/nouveau_drm_api.c b/src/gallium/winsys/nouveau/drm/nouveau_drm_api.c
index 3a4bba4ce3..c0047859b1 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;