From 0184bb1c6d946bcaf198f7680b3405adca676790 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Sun, 19 Dec 2010 13:01:15 +0000 Subject: intel: Export CONSTANT_BUFFER addressing mode Signed-off-by: Chris Wilson --- intel/intel_bufmgr_gem.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'intel/intel_bufmgr_gem.c') diff --git a/intel/intel_bufmgr_gem.c b/intel/intel_bufmgr_gem.c index c5bb5885..72c8731f 100644 --- a/intel/intel_bufmgr_gem.c +++ b/intel/intel_bufmgr_gem.c @@ -1555,13 +1555,13 @@ drm_intel_gem_bo_exec(drm_intel_bo *bo, int used, static int drm_intel_gem_bo_mrb_exec2(drm_intel_bo *bo, int used, drm_clip_rect_t *cliprects, int num_cliprects, int DR4, - int ring_flag) + unsigned int flags) { drm_intel_bufmgr_gem *bufmgr_gem = (drm_intel_bufmgr_gem *)bo->bufmgr; struct drm_i915_gem_execbuffer2 execbuf; int ret, i; - switch (ring_flag) { + switch (flags & 0x7) { default: return -EINVAL; case I915_EXEC_BLT: @@ -1594,7 +1594,7 @@ drm_intel_gem_bo_mrb_exec2(drm_intel_bo *bo, int used, execbuf.num_cliprects = num_cliprects; execbuf.DR1 = 0; execbuf.DR4 = DR4; - execbuf.flags = ring_flag; + execbuf.flags = flags; execbuf.rsvd1 = 0; execbuf.rsvd2 = 0; -- cgit v1.2.3