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