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 17 lines 366 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2021 Intel Corporation 4 */ 5 6#ifndef __I915_GEM_CREATE_H__ 7#define __I915_GEM_CREATE_H__ 8 9struct drm_file; 10struct drm_device; 11struct drm_mode_create_dumb; 12 13int i915_gem_dumb_create(struct drm_file *file_priv, 14 struct drm_device *dev, 15 struct drm_mode_create_dumb *args); 16 17#endif /* __I915_GEM_CREATE_H__ */