Remove DispatchFlags param from CSR methods

Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski
2021-11-04 12:54:18 +00:00
committed by Compute-Runtime-Automation
parent 4b5a718f40
commit 5bbdd0fe2c
7 changed files with 10 additions and 12 deletions

View File

@ -45,11 +45,10 @@ GEN8TEST_F(CommandStreamReceiverHwTestGen8, GivenChangedL3ConfigWhenL3IsProgramm
void *buffer = alignedMalloc(bufferSize, 64);
LinearStream stream(buffer, bufferSize);
DispatchFlags flags = DispatchFlagsHelper::createDefaultDispatchFlags();
uint32_t l3Config = 0x12345678;
csr.programL3(stream, flags, l3Config);
csr.programL3(stream, l3Config);
this->parseCommands<FamilyType>(stream);