2020-01-22 23:22:30 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/command_stream/csr_deps.h"
|
2020-01-22 23:22:30 +08:00
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/helpers/timestamp_packet.h"
|
2020-01-22 23:22:30 +08:00
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
void CsrDependencies::makeResident(CommandStreamReceiver &commandStreamReceiver) const {
|
|
|
|
for (auto ×tampPacketContainer : *this) {
|
|
|
|
timestampPacketContainer->makeResident(commandStreamReceiver);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace NEO
|