xref: /netbsd-src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/mock_gem_object.h (revision 41ec02673d281bbb3d38e6c78504ce6e30c228c1)
1 /*	$NetBSD: mock_gem_object.h,v 1.2 2021/12/18 23:45:30 riastradh Exp $	*/
2 
3 /*
4  * SPDX-License-Identifier: MIT
5  *
6  * Copyright © 2016 Intel Corporation
7  */
8 
9 #ifndef __MOCK_GEM_OBJECT_H__
10 #define __MOCK_GEM_OBJECT_H__
11 
12 #include "gem/i915_gem_object_types.h"
13 
14 struct mock_object {
15 	struct drm_i915_gem_object base;
16 };
17 
18 #endif /* !__MOCK_GEM_OBJECT_H__ */
19