We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec6e790 commit 707a8f3Copy full SHA for 707a8f3
src/vsg/app/CompileManager.cpp
@@ -33,7 +33,11 @@ void CompileResult::reset()
33
34
void CompileResult::add(const CompileResult& cr)
35
{
36
- if (result == VK_INCOMPLETE) result = cr.result;
+ if (result == VK_INCOMPLETE || result == VK_SUCCESS)
37
+ {
38
+ result = cr.result;
39
+ }
40
+
41
if (cr.maxSlot > maxSlot) maxSlot = cr.maxSlot;
42
if (!containsPagedLOD) containsPagedLOD = cr.containsPagedLOD;
43
0 commit comments