You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: backends/imgui_impl_dx12.cpp
+9-2
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@
19
19
// CHANGELOG
20
20
// (minor and older changes stripped away, please see git history for details)
21
21
// 2024-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
22
+
// 2024-10-23: DirectX12: Unmap() call specify written range. The range is informational and may be used by debug tools.
22
23
// 2024-10-07: DirectX12: Changed default texture sampler to Clamp instead of Repeat/Wrap.
23
24
// 2024-10-07: DirectX12: Expose selected render state in ImGui_ImplDX12_RenderState, which you can access in 'void* platform_io.Renderer_RenderState' during draw callbacks.
24
25
// 2024-10-07: DirectX12: Compiling with '#define ImTextureID=ImU64' is unnecessary now that dear imgui defaults ImTextureID to u64 instead of void*.
Copy file name to clipboardexpand all lines: backends/imgui_impl_wgpu.cpp
+18
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@
19
19
20
20
// CHANGELOG
21
21
// (minor and older changes stripped away, please see git history for details)
22
+
// 2024-10-14: Update Dawn support for change of string usages. (#8082, #8083)
22
23
// 2024-10-07: Expose selected render state in ImGui_ImplWGPU_RenderState, which you can access in 'void* platform_io.Renderer_RenderState' during draw callbacks.
23
24
// 2024-10-07: Changed default texture sampler to Clamp instead of Repeat/Wrap.
24
25
// 2024-09-16: Added support for optional IMGUI_IMPL_WEBGPU_BACKEND_DAWN / IMGUI_IMPL_WEBGPU_BACKEND_WGPU define to handle ever-changing native implementations. (#7977)
@@ -277,7 +278,11 @@ static WGPUProgrammableStageDescriptor ImGui_ImplWGPU_CreateShaderModule(const c
0 commit comments