Skip to content

Commit 204cebc

Browse files
committed
Backends: Metal: Fixed a crash on application resources. (#8367, #7419) [@anszom]
1 parent 6265339 commit 204cebc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

backends/imgui_impl_metal.mm

+2-2
Original file line numberDiff line numberDiff line change
@@ -311,11 +311,11 @@ void ImGui_ImplMetal_RenderDrawData(ImDrawData* drawData, id<MTLCommandBuffer> c
311311
indexBufferOffset += (size_t)draw_list->IdxBuffer.Size * sizeof(ImDrawIdx);
312312
}
313313

314-
__block MetalContext* sharedMetalContext = bd->SharedMetalContext;
314+
MetalContext* sharedMetalContext = bd->SharedMetalContext;
315315
[commandBuffer addCompletedHandler:^(id<MTLCommandBuffer>)
316316
{
317317
dispatch_async(dispatch_get_main_queue(), ^{
318-
@synchronized(bd->SharedMetalContext.bufferCache)
318+
@synchronized(sharedMetalContext.bufferCache)
319319
{
320320
[sharedMetalContext.bufferCache addObject:vertexBuffer];
321321
[sharedMetalContext.bufferCache addObject:indexBuffer];

docs/CHANGELOG.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ Breaking changes:
4343

4444
Other changes:
4545

46-
- Fixed IsItemDeactivatedAfterEdit() signal being broken for Checkbox(), Selectable(). (#8370)
47-
Regression from 2025/01/13.
48-
46+
- Fixed IsItemDeactivatedAfterEdit() signal being broken for Checkbox(),
47+
RadioButton(), Selectable(). Regression from 2025/01/13. (#8370)
48+
- Backends: Metal: Fixed a crash on application resources. (#8367, #7419) [@anszom]
4949

5050
-----------------------------------------------------------------------
5151
VERSION 1.91.8 (Released 2025-01-31)

0 commit comments

Comments
 (0)