Do not debugBreak when createAllocation fails with GRAPHICS_NO_VIDEO_MEMORY

- this path is handled with host_ptr copy

Change-Id: If3f2c49f3c43262e018a43aff9f1b538daefc577
This commit is contained in:
Hoppe, Mateusz 2019-02-01 08:32:25 +01:00 committed by sys_ocldev
parent 758d91f406
commit c59bf5a6ea
1 changed files with 1 additions and 1 deletions

View File

@ -503,7 +503,7 @@ NTSTATUS Wddm::createAllocationsAndMapGpuVa(OsHandleStorage &osHandles) {
if (status != STATUS_SUCCESS) {
DBG_LOG(PrintDebugMessages, __FUNCTION__, "status: ", status);
DEBUG_BREAK_IF(true);
DEBUG_BREAK_IF(status != STATUS_GRAPHICS_NO_VIDEO_MEMORY);
break;
}
auto allocationIndex = 0;