b2fcaac98b
Include the types used by the headers to they can be compiled standalone. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Matthew Auld <matthew.auld@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200103104516.1757103-2-chris@chris-wilson.co.uk
17 lines
278 B
C
17 lines
278 B
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright © 2016 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __MOCK_GEM_OBJECT_H__
|
|
#define __MOCK_GEM_OBJECT_H__
|
|
|
|
#include "gem/i915_gem_object_types.h"
|
|
|
|
struct mock_object {
|
|
struct drm_i915_gem_object base;
|
|
};
|
|
|
|
#endif /* !__MOCK_GEM_OBJECT_H__ */
|