Remove RMV from programming of command buffers

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz 2022-08-30 16:39:28 +00:00 committed by Compute-Runtime-Automation
parent 75b117b82f
commit a7af94496b
1 changed files with 5 additions and 3 deletions

View File

@ -22,9 +22,11 @@ class LogicalStateHelperMock : public GfxFamily::LogicalStateHelperHw {
writeStreamInlineCalledCounter++;
if (makeFakeStreamWrite) {
auto cmd = linearStream.getSpaceForCmd<typename GfxFamily::MI_NOOP>();
*cmd = GfxFamily::cmdInitNoop;
cmd->setIdentificationNumber(0x123);
auto cmd = GfxFamily::cmdInitNoop;
cmd.setIdentificationNumber(0x123);
auto cmdBuffer = linearStream.getSpaceForCmd<typename GfxFamily::MI_NOOP>();
*cmdBuffer = cmd;
}
}