mock_timeline.h 323 B

12345678910111213141516
  1. /*
  2. * SPDX-License-Identifier: MIT
  3. *
  4. * Copyright © 2017-2018 Intel Corporation
  5. */
  6. #ifndef __MOCK_TIMELINE__
  7. #define __MOCK_TIMELINE__
  8. struct i915_timeline;
  9. void mock_timeline_init(struct i915_timeline *timeline, u64 context);
  10. void mock_timeline_fini(struct i915_timeline *timeline);
  11. #endif /* !__MOCK_TIMELINE__ */