22 lines
434 B
C++
22 lines
434 B
C++
/*
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/command_stream/submissions_aggregator.h"
|
|
|
|
namespace NEO {
|
|
struct MockSubmissionsAggregator : public SubmissionAggregator {
|
|
CommandBufferList &peekCommandBuffers() {
|
|
return this->cmdBuffers;
|
|
}
|
|
uint32_t peekInspectionId() {
|
|
return this->inspectionId;
|
|
}
|
|
};
|
|
} // namespace NEO
|