You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
m_logger.log("Null descriptor set layout found at index %u, skipping!", system::ILogger::ELL_PERFORMANCE, i);
44
+
continue;
45
+
}
46
+
38
47
if (!isCompatibleDevicewise(layouts[i]))
39
48
{
40
-
m_logger.log("Device-Incompatible descriptor set layout found at index %u. Sets for the layouts following this index will not be created.", system::ILogger::ELL_ERROR, i);
41
-
break;
49
+
m_logger.log("Device-Incompatible descriptor set layout found at index %u.", system::ILogger::ELL_ERROR, i);
50
+
continue;
42
51
}
43
52
44
-
if (!allocateStorageOffsets(offsets.emplace_back(),layouts[i]))
53
+
if (!allocateStorageOffsets(offsets.emplace_back(),layouts[i]))
45
54
{
46
-
m_logger.log("Failed to allocate descriptor or descriptor set offsets in the pool's storage for descriptor set layout at index %u. Sets for the layouts following this index will not be created.", system::ILogger::ELL_WARNING, i);
55
+
m_logger.log("Failed to allocate descriptor or descriptor set offsets in the pool's storage for descriptor set layout at index %u.", system::ILogger::ELL_WARNING, i);
0 commit comments