Searched defs:i915_execbuffer (Results 1 – 2 of 2) sorted by relevance
236 struct i915_execbuffer { struct237 struct drm_i915_private *i915; /** i915 backpointer */238 struct drm_file *file; /** per-file lookup tables and limits */239 struct drm_i915_gem_execbuffer2 *args; /** ioctl parameters */240 struct drm_i915_gem_exec_object2 *exec; /** ioctl execobj[] */241 struct eb_vma *vma;243 struct intel_engine_cs *engine; /** engine to queue the request to */244 struct intel_context *context; /* logical state for the request */245 struct i915_gem_context *gem_context; /** caller's context */247 struct i915_request *request; /** our request to build */[all …]
229 struct i915_execbuffer { struct230 struct drm_i915_private *i915; /** i915 backpointer */231 struct drm_file *file; /** per-file lookup tables and limits */232 struct drm_i915_gem_execbuffer2 *args; /** ioctl parameters */233 struct drm_i915_gem_exec_object2 *exec; /** ioctl execobj[] */234 struct i915_vma **vma;235 unsigned int *flags;237 struct intel_engine_cs *engine; /** engine to queue the request to */238 struct i915_gem_context *ctx; /** context for building the request */239 struct i915_address_space *vm; /** GTT and vma for the request */[all …]