2020-01-16 00:02:47 +08:00
|
|
|
/*
|
2021-01-21 20:10:13 +08:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2020-01-16 00:02:47 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/command_stream/linear_stream.h"
|
2021-01-21 20:10:13 +08:00
|
|
|
#include "shared/test/common/fixtures/device_fixture.h"
|
2020-01-16 00:02:47 +08:00
|
|
|
|
2020-03-19 21:26:08 +08:00
|
|
|
namespace NEO {
|
|
|
|
|
2020-06-02 16:14:02 +08:00
|
|
|
class DispatcherFixture : public DeviceFixture {
|
2020-01-16 00:02:47 +08:00
|
|
|
public:
|
|
|
|
void SetUp();
|
|
|
|
void TearDown();
|
|
|
|
|
|
|
|
NEO::LinearStream cmdBuffer;
|
|
|
|
void *bufferAllocation;
|
|
|
|
};
|
2020-03-19 21:26:08 +08:00
|
|
|
|
|
|
|
} // namespace NEO
|