From: Jakob Bornecrantz Date: Thu, 29 Jan 2009 01:32:58 +0000 (+0100) Subject: intel: Set render domain on read and write X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3b1b9f3cc70392bd1abb76e78a28db15bfbbbe85;p=mesa.git intel: Set render domain on read and write --- diff --git a/src/gallium/winsys/drm/intel/gem/intel_be_context.c b/src/gallium/winsys/drm/intel/gem/intel_be_context.c index 056a5f05029..c1f18a3a04d 100644 --- a/src/gallium/winsys/drm/intel/gem/intel_be_context.c +++ b/src/gallium/winsys/drm/intel/gem/intel_be_context.c @@ -26,10 +26,11 @@ intel_be_batch_reloc(struct i915_winsys *sws, if (access_flags & I915_BUFFER_ACCESS_WRITE) { write = I915_GEM_DOMAIN_RENDER; + read = I915_GEM_DOMAIN_RENDER; } if (access_flags & I915_BUFFER_ACCESS_READ) { - read = I915_GEM_DOMAIN_VERTEX; + read |= I915_GEM_DOMAIN_VERTEX; } debug_printf("%s\n", __FUNCTION__);