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++;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue