2019-05-28 09:29:49 +00:00
|
|
|
/*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
* Copyright © 2016 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
2017-02-13 17:15:17 +00:00
|
|
|
#ifndef __MOCK_GEM_OBJECT_H__
|
|
|
|
#define __MOCK_GEM_OBJECT_H__
|
|
|
|
|
2020-01-03 10:45:16 +00:00
|
|
|
#include "gem/i915_gem_object_types.h"
|
|
|
|
|
2017-02-13 17:15:17 +00:00
|
|
|
struct mock_object {
|
|
|
|
struct drm_i915_gem_object base;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !__MOCK_GEM_OBJECT_H__ */
|