Docs, Backends: OpenGL3, Vulkan: added comments about custom sampler. (#9378)

This commit is contained in:
ocornut
2026-06-16 16:09:04 +02:00
parent b47a3898b4
commit 2064059a7f
4 changed files with 16 additions and 3 deletions

View File

@@ -142,6 +142,8 @@ Breaking Changes:
- DirectX10, DirectX11, SDLGPU3, Vulkan: removed samplers from `ImGui_ImplXXXX_RenderState`.
Prefer to use backend-agnostic DrawCallback_SetSamplerLinear which works everywhere! (#9378)
If there is a legit need/request for them or any render state we can always add them back.
- OpenGL3: the new sampler support system prioritize using glBindSampler() when available,
which would override glTexParameter() settings you may have set on custom textures. (#9378)
Other Changes: