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 v6.18 18 lines 426 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6#ifndef __I915_GEM_DMABUF_H__ 7#define __I915_GEM_DMABUF_H__ 8 9struct drm_gem_object; 10struct drm_device; 11struct dma_buf; 12 13struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev, 14 struct dma_buf *dma_buf); 15 16struct dma_buf *i915_gem_prime_export(struct drm_gem_object *gem_obj, int flags); 17 18#endif /* __I915_GEM_DMABUF_H__ */