Backends: WebGPU: fixed validation error with default depth buffer settings. (#5869, #5914)

(initialize WGPUCompareFunction params to valid values)
This commit is contained in:
kdchambers
2022-11-23 15:58:02 -05:00
committed by ocornut
parent 856c6314ec
commit 233d7ad3f2
2 changed files with 5 additions and 1 deletions

View File

@ -46,6 +46,7 @@ HOW TO UPDATE?
active but a payload hasn't been submitted yet. This is convenient to detect new payload
from within a drag source handler. (#5910, #143)
- Backends: GLFW: cancel out errors emitted by glfwGetKeyName() when a name is missing. (#5908)
- Backends: WebGPU: fixed validation error with default depth buffer settings. (#5869, #5914) [@kdchambers]
-----------------------------------------------------------------------
@ -114,7 +115,6 @@ Breaking changes:
- Removed support for 1.42-era IMGUI_DISABLE_INCLUDE_IMCONFIG_H / IMGUI_INCLUDE_IMCONFIG_H. (#255)
They only made sense before we could use IMGUI_USER_CONFIG.
Other Changes:
- Popups & Modals: fixed nested Begin() inside a popup being erroneously input-inhibited.