Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2022 Intel Corporation
0004  */
0005 
0006 #ifndef __I915_GEM_DOMAIN_H__
0007 #define __I915_GEM_DOMAIN_H__
0008 
0009 struct drm_i915_gem_object;
0010 enum i915_cache_level;
0011 
0012 int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
0013                     enum i915_cache_level cache_level);
0014 
0015 #endif /* __I915_GEM_DOMAIN_H__ */