2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2019-03-26 18:59:46 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "runtime/command_stream/submissions_aggregator.h"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
struct mockSubmissionsAggregator : public SubmissionAggregator {
|
|
|
|
CommandBufferList &peekCommandBuffers() {
|
|
|
|
return this->cmdBuffers;
|
|
|
|
}
|
|
|
|
uint32_t peekInspectionId() {
|
|
|
|
return this->inspectionId;
|
|
|
|
}
|
|
|
|
};
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|