Remove RMV from programming of command buffers
Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
parent
75b117b82f
commit
a7af94496b
|
@ -22,9 +22,11 @@ class LogicalStateHelperMock : public GfxFamily::LogicalStateHelperHw {
|
||||||
writeStreamInlineCalledCounter++;
|
writeStreamInlineCalledCounter++;
|
||||||
|
|
||||||
if (makeFakeStreamWrite) {
|
if (makeFakeStreamWrite) {
|
||||||
auto cmd = linearStream.getSpaceForCmd<typename GfxFamily::MI_NOOP>();
|
auto cmd = GfxFamily::cmdInitNoop;
|
||||||
*cmd = GfxFamily::cmdInitNoop;
|
cmd.setIdentificationNumber(0x123);
|
||||||
cmd->setIdentificationNumber(0x123);
|
|
||||||
|
auto cmdBuffer = linearStream.getSpaceForCmd<typename GfxFamily::MI_NOOP>();
|
||||||
|
*cmdBuffer = cmd;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue