Backends: OSX: Adedd basic IME support for macOS. (#3108, #2598)

This commit is contained in:
Liu Liu
2022-01-12 14:30:04 +01:00
committed by ocornut
parent 290c51735e
commit 457d4b7b72
3 changed files with 54 additions and 2 deletions

View File

@ -104,6 +104,7 @@ Other Changes:
Enable with '#define IMGUI_IMPL_METAL_CPP' in your imconfig.h file.
- Backends: Metal: Ignore ImDrawCmd where ElemCount == 0, which are normally not emitted by the library but
can theorically be created by user code manipulating a ImDrawList. (#4857)
- Backends: OSX: Added basic Platform IME support. (#3108, #2598) [@liuliu]
- Backends: WebGPU: Fixed incorrect size parameters in wgpuRenderPassEncoderSetIndexBuffer() and
wgpuRenderPassEncoderSetVertexBuffer() calls. (#4891) [@FeepsDev]