File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
29.SpecializationConstants Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 6
6
#include < nabla.h>
7
7
8
8
#include " ../common/CommonAPI.h"
9
- // #include "CFileSystem.h"
10
9
using namespace nbl ;
11
10
using namespace core ;
12
11
using namespace ui ;
@@ -155,7 +154,7 @@ class SpecializationConstantsSampleApp : public ApplicationBase
155
154
initOutp.system = system;
156
155
CommonAPI::Init (
157
156
initOutp,
158
- video::EAT_OPENGL ,
157
+ video::EAT_VULKAN ,
159
158
" 29.SpecializationConstants" ,
160
159
requiredInstanceFeatures,
161
160
optionalInstanceFeatures,
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ N = No support
60
60
| FREE_SLOT | | | | | | | | | |
61
61
| 27.PLYSTLDemo | Y | Y | B | S | S | S | N | N | COMPILE_WITH_STL_LOADER & COMPILE_WITH_PLY_LOADER |
62
62
| FREE_SLOT | | | | | | | | | |
63
- | 29.SpecializationConstants | S | S | S | S | S | S | N | S | |
63
+ | 29.SpecializationConstants | B | B | B | S | S | S | N | S | |
64
64
| FREE_SLOT | | | | | | | | | |
65
65
| FREE_SLOT | | | | | | | | | |
66
66
| FREE_SLOT | | | | | | | | | |
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ class IFileArchive : public core::IReferenceCounted
81
81
{
82
82
const IFileArchive::SListEntry itemToFind = { pathRelativeToArchive };
83
83
const auto found = std::lower_bound (m_items.begin (),m_items.end (),itemToFind);
84
- if (found! =m_items.end () || found->pathRelativeToArchive !=pathRelativeToArchive)
84
+ if (found= =m_items.end () || found->pathRelativeToArchive !=pathRelativeToArchive)
85
85
return nullptr ;
86
86
return &(*found);
87
87
}
You can’t perform that action at this time.
0 commit comments