Fixed compilation errors resulting from updated git submodules.

This commit is contained in:
2022-09-21 18:33:56 -07:00
parent 9eec4aafc7
commit 7a14f5122c
2 changed files with 11 additions and 1 deletions

View File

@@ -218,6 +218,16 @@ const TBuiltInResource DefaultTBuiltInResource = {
/* .maxTaskWorkGroupSizeY_NV = */ 1, /* .maxTaskWorkGroupSizeY_NV = */ 1,
/* .maxTaskWorkGroupSizeZ_NV = */ 1, /* .maxTaskWorkGroupSizeZ_NV = */ 1,
/* .maxMeshViewCountNV = */ 4, /* .maxMeshViewCountNV = */ 4,
/* .maxMeshOutputVerticesEXT = */ 256,
/* .maxMeshOutputPrimitivesEXT = */ 256,
/* .maxMeshWorkGroupSizeX_EXT = */ 128,
/* .maxMeshWorkGroupSizeY_EXT = */ 128,
/* .maxMeshWorkGroupSizeZ_EXT = */ 128,
/* .maxTaskWorkGroupSizeX_EXT = */ 128,
/* .maxTaskWorkGroupSizeY_EXT = */ 128,
/* .maxTaskWorkGroupSizeZ_EXT = */ 128,
/* .maxMeshViewCountEXT = */ 4,
/* .maxDualSourceDrawBuffersEXT = */ 1,
/* .limits = */ { /* .limits = */ {
/* .nonInductiveForLoops = */ 1, /* .nonInductiveForLoops = */ 1,

View File

@@ -42,7 +42,7 @@ KRSurface::KRSurface(KRContext& context)
#ifdef WIN32 #ifdef WIN32
, m_hWnd(hWnd) , m_hWnd(hWnd)
#endif #endif
, m_deviceHandle(VK_NULL_HANDLE) , m_deviceHandle(0)
, m_surface(VK_NULL_HANDLE) , m_surface(VK_NULL_HANDLE)
, m_imageAvailableSemaphores{VK_NULL_HANDLE} , m_imageAvailableSemaphores{VK_NULL_HANDLE}
, m_renderFinishedSemaphores{VK_NULL_HANDLE} , m_renderFinishedSemaphores{VK_NULL_HANDLE}