1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2024 Intel Corporation
*/
#ifndef _INTEL_DRM_LOCAL_H_
#define _INTEL_DRM_LOCAL_H_
#if defined(__cplusplus)
extern "C" {
#endif
/*
* It is necessary on occasion to add uapi declarations to IGT before they
* appear in imported kernel uapi headers. This header is provided for this
* purpose.
* Early uapi declarations should be added here exactly as they are
* expected to appear in the kernel uapi headers, i.e. without the LOCAL_
* or local_ prefix and without any #ifndef's. Attempt should be made to
* clean these up when kernel uapi headers are sync'd.
*/
#define DRM_XE_GEM_CREATE_FLAG_NO_COMPRESSION (1 << 3)
#define DRM_XE_QUERY_CONFIG_FLAG_HAS_NO_COMPRESSION_HINT (1 << 3)
#if defined(__cplusplus)
}
#endif
#endif /* _INTEL_DRM_LOCAL_H_ */
|