Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.14 21 lines 480 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2019 Intel Corporation 4 */ 5#ifndef __I915_GEM_CLIENT_BLT_H__ 6#define __I915_GEM_CLIENT_BLT_H__ 7 8#include <linux/types.h> 9 10struct drm_i915_gem_object; 11struct i915_page_sizes; 12struct intel_context; 13struct sg_table; 14 15int i915_gem_schedule_fill_pages_blt(struct drm_i915_gem_object *obj, 16 struct intel_context *ce, 17 struct sg_table *pages, 18 struct i915_page_sizes *page_sizes, 19 u32 value); 20 21#endif