Skip to content

Commit 3e6bdc2

Browse files
committed
Examples: SDL3+SDL_GPU: use SDL_GPU_PRESENTMODE_MAILBOX swapchain parameters.
1 parent bf13442 commit 3e6bdc2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

examples/example_sdl3_sdlgpu3/main.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// - Introduction, links and more at the top of imgui.cpp
88

99
// Important note to the reader who wish to integrate imgui_impl_sdlgpu3.cpp/.h in their own engine/app.
10-
// - Unline other backends, the user must call the function Imgui_ImplSDLGPU_PrepareDrawData BEFORE issuing a SDL_GPURenderPass containing ImGui_ImplSDLGPU_RenderDrawData.
10+
// - Unlike other backends, the user must call the function Imgui_ImplSDLGPU_PrepareDrawData() BEFORE issuing a SDL_GPURenderPass containing ImGui_ImplSDLGPU_RenderDrawData.
1111
// Calling the function is MANDATORY, otherwise the ImGui will not upload neither the vertex nor the index buffer for the GPU. See imgui_impl_sdlgpu3.cpp for more info.
1212

1313
#include "imgui.h"
@@ -54,6 +54,7 @@ int main(int, char**)
5454
printf("Error: SDL_ClaimWindowForGPUDevice(): %s\n", SDL_GetError());
5555
return -1;
5656
}
57+
SDL_SetGPUSwapchainParameters(gpu_device, window, SDL_GPU_SWAPCHAINCOMPOSITION_SDR, SDL_GPU_PRESENTMODE_MAILBOX);
5758

5859
// Setup Dear ImGui context
5960
IMGUI_CHECKVERSION();
@@ -140,7 +141,7 @@ int main(int, char**)
140141
ImGui::Checkbox("Another Window", &show_another_window);
141142

142143
ImGui::SliderFloat("float", &f, 0.0f, 1.0f); // Edit 1 float using a slider from 0.0f to 1.0f
143-
ImGui::ColorEdit3("clear color", (float*)&clear_color); // Edit 3 floats representing a color
144+
ImGui::ColorEdit4("clear color", (float*)&clear_color); // Edit 3 floats representing a color
144145

145146
if (ImGui::Button("Button")) // Buttons return true when clicked (most widgets return true when edited/activated)
146147
counter++;
@@ -179,7 +180,7 @@ int main(int, char**)
179180
// Setup and start a render pass
180181
SDL_GPUColorTargetInfo target_info = {};
181182
target_info.texture = swapchain_texture;
182-
target_info.clear_color = SDL_FColor{ clear_color.x,clear_color.y,clear_color.z,clear_color.w };
183+
target_info.clear_color = SDL_FColor { clear_color.x, clear_color.y, clear_color.z, clear_color.w };
183184
target_info.load_op = SDL_GPU_LOADOP_CLEAR;
184185
target_info.store_op = SDL_GPU_STOREOP_STORE;
185186
target_info.mip_level = 0;
@@ -196,6 +197,7 @@ int main(int, char**)
196197
// Submit the command buffer
197198
SDL_SubmitGPUCommandBuffer(command_buffer);
198199
}
200+
199201
// Cleanup
200202
SDL_WaitForGPUIdle(gpu_device);
201203
ImGui_ImplSDL3_Shutdown();

0 commit comments

Comments
 (0)