Compare commits
No commits in common. "4a4939e65b7afea1bc68958ab79d4982bbd74c6d" and "059dc159bd7d8ec5db9829970c7da617853d7e7b" have entirely different histories.
4a4939e65b
...
059dc159bd
2 changed files with 3 additions and 18 deletions
|
@ -29,16 +29,9 @@ deps = [
|
|||
dependency('glfw3', include_type: 'system'),
|
||||
dependency('glm', include_type: 'system'),
|
||||
dependency('vulkan', include_type: 'system'),
|
||||
cpp.find_library('imgui'),
|
||||
]
|
||||
|
||||
imgui_dep = dependency('imgui', required: false, include_type: 'system')
|
||||
|
||||
if not imgui_dep.found()
|
||||
imgui_dep = cpp.find_library('imgui', required: true)
|
||||
endif
|
||||
|
||||
deps += imgui_dep
|
||||
|
||||
executable(
|
||||
'graphics-test',
|
||||
sources: files('src/main.cpp'),
|
||||
|
|
10
src/main.cpp
10
src/main.cpp
|
@ -342,14 +342,6 @@ class VulkanApp {
|
|||
IMGUI_CHECKVERSION();
|
||||
ImGui::CreateContext();
|
||||
|
||||
// Remember to use a reference here, otherwise
|
||||
// the ImGui::GetIO() function will return a
|
||||
// copy and the changes won't be saved.
|
||||
ImGuiIO& imGuiIO = ImGui::GetIO();
|
||||
|
||||
// Disable writing imgui.ini
|
||||
imGuiIO.IniFilename = nullptr;
|
||||
|
||||
// Setup Dear ImGui style
|
||||
ImGui::StyleColorsDark();
|
||||
|
||||
|
@ -378,7 +370,7 @@ class VulkanApp {
|
|||
.Queue = mGraphicsQueue,
|
||||
.DescriptorPool = mImGuiDescriptorPool.get(),
|
||||
.RenderPass = mRenderPass.get(),
|
||||
.MinImageCount = MAX_FRAMES_IN_FLIGHT,
|
||||
.MinImageCount = 1,
|
||||
.ImageCount = static_cast<uint32_t>(mSwapChainImages.size()),
|
||||
.MSAASamples = static_cast<VkSampleCountFlagBits>(mMsaaSamples),
|
||||
.PipelineCache = VK_NULL_HANDLE,
|
||||
|
|
Loading…
Add table
Reference in a new issue