From: Jason Ekstrand Date: Tue, 28 Feb 2017 02:02:02 +0000 (-0800) Subject: anv/gem: Use EXECBUFFER2_WR when the FENCE_OUT flag is set X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e4054ab77b4f5867d0a86830bd9daec685941a23;p=mesa.git anv/gem: Use EXECBUFFER2_WR when the FENCE_OUT flag is set Reviewed-by: Chad Versace Reviewed-by: Lionel Landwerlin --- diff --git a/src/intel/vulkan/anv_gem.c b/src/intel/vulkan/anv_gem.c index ac47da41171..36692f567ca 100644 --- a/src/intel/vulkan/anv_gem.c +++ b/src/intel/vulkan/anv_gem.c @@ -185,7 +185,10 @@ int anv_gem_execbuffer(struct anv_device *device, struct drm_i915_gem_execbuffer2 *execbuf) { - return anv_ioctl(device->fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, execbuf); + if (execbuf->flags & I915_EXEC_FENCE_OUT) + return anv_ioctl(device->fd, DRM_IOCTL_I915_GEM_EXECBUFFER2_WR, execbuf); + else + return anv_ioctl(device->fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, execbuf); } int