int fd;
drm_intel_bufmgr *bufmgr;
struct intel_winsys_info info;
- unsigned long exec_flags;
/* these are protected by the mutex */
pipe_mutex mutex;
get_param(winsys, I915_PARAM_HAS_GEN7_SOL_RESET, &val);
info->has_gen7_sol_reset = val;
- /*
- * pipe drivers are expected to write the presumed offsets after adding
- * reloc entries
- */
- get_param(winsys, I915_PARAM_HAS_EXEC_NO_RELOC, &val);
- if (val)
- winsys->exec_flags |= I915_EXEC_NO_RELOC;
-
return true;
}
struct intel_context *ctx,
unsigned long flags)
{
- const unsigned long exec_flags =
- winsys->exec_flags | (unsigned long) ring | flags;
+ const unsigned long exec_flags = (unsigned long) ring | flags;
/* logical contexts are only available for the render ring */
if (ring != INTEL_RING_RENDER)