diff --git a/dub.json b/dub.json index b449e9e..ee30fc8 100644 --- a/dub.json +++ b/dub.json @@ -13,10 +13,10 @@ "sourcePaths": ["src/editor", "src/dlib", "src/dlib/external/xxhash", "src/VulkanRenderer"], "libs-linux": ["xcb", "X11", "X11-xcb", "vulkan", "stdc++", "xcb-xfixes", "freetype"], "libs-windows": [], - "versions": ["VULKAN_DEBUG"], + "versions": [], "preGenerateCommands-linux": ["./build.sh"], "preGenerateCommands-windows": [], - "dflags": ["-Xcc=-mno-sse", "-P-I/usr/include/freetype2", "-Jbuild", "-Jassets", "-g"], + "dflags": ["-Xcc=-mno-sse", "-P-I/usr/include/freetype2", "-Jbuild", "-Jassets"], "dflags-dmd": ["-P=-DSTBI_NO_SIMD"] }, ] diff --git a/src/VulkanRenderer b/src/VulkanRenderer index fa33e37..0be80e3 160000 --- a/src/VulkanRenderer +++ b/src/VulkanRenderer @@ -1 +1 @@ -Subproject commit fa33e37c002b4ef98ab9d4d88f551c440be4436f +Subproject commit 0be80e3a3ec2acfc51f6591803bbe3f889389d22 diff --git a/src/dlib b/src/dlib index 6e1952e..ca5e84f 160000 --- a/src/dlib +++ b/src/dlib @@ -1 +1 @@ -Subproject commit 6e1952eab0ee2eed5c105311df56e603857798c2 +Subproject commit ca5e84f8b9c6f96abe8151e655ebd3f923ced598 diff --git a/src/editor/ui.d b/src/editor/ui.d index 91c1d78..f3814a7 100644 --- a/src/editor/ui.d +++ b/src/editor/ui.d @@ -365,7 +365,7 @@ InitUICtx(PlatformWindow* window) alpha_op: BO.Add, }; - assert(CreateGraphicsPipeline(&ctx.rd, &ctx.pipeline, &ui_info), "Unable to build UI pipeline"); + CreateGraphicsPipeline(&ctx.rd, &ctx.pipeline, &ui_info); CreateImageView(&ctx.rd, &ctx.font_atlas, ctx.atlas_buf.atlas.width, ctx.atlas_buf.atlas.height, 4, ctx.atlas_buf.data);