2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2020-01-27 13:06:03 +01:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
2019-03-26 11:59:46 +01:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
2017-12-21 00:45:38 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/command_stream/submissions_aggregator.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2017-12-21 00:45:38 +01:00
|
|
|
struct mockSubmissionsAggregator : public SubmissionAggregator {
|
|
|
|
CommandBufferList &peekCommandBuffers() {
|
|
|
|
return this->cmdBuffers;
|
|
|
|
}
|
|
|
|
uint32_t peekInspectionId() {
|
|
|
|
return this->inspectionId;
|
|
|
|
}
|
|
|
|
};
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|