mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
- move files to core - extract struct and enums to headers Change-Id: Id5509f284dfa9ffc5e5d9173124af8a860f5a6f4 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
22 lines
425 B
C++
22 lines
425 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "core/command_stream/submissions_aggregator.h"
|
|
|
|
namespace NEO {
|
|
struct mockSubmissionsAggregator : public SubmissionAggregator {
|
|
CommandBufferList &peekCommandBuffers() {
|
|
return this->cmdBuffers;
|
|
}
|
|
uint32_t peekInspectionId() {
|
|
return this->inspectionId;
|
|
}
|
|
};
|
|
} // namespace NEO
|