diff options
| author | Andrey Lihatskiy <118752495+marchcat@users.noreply.github.com> | 2026-07-24 12:26:16 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-24 12:26:16 +0300 |
| commit | e32d763ccbe1b02c7d74a5b63712ec946a24b42e (patch) | |
| tree | f09286325dfcda29510115ff6d8c2fdb71e7ff5c /indra/llwindow/llwindowwin32.cpp | |
| parent | a6a2f98070cd55fcaadafc237bd0ffba9d466655 (diff) | |
| parent | cd7295e09b354a99c29f2bb80da7c0a77ccb0457 (diff) | |
Merge pull request #5993 from nibbbl/cjk-lazy-font-fallback
Fix missing CJK/Indic text on Linux with lazy font fallback
Diffstat (limited to 'indra/llwindow/llwindowwin32.cpp')
| -rw-r--r-- | indra/llwindow/llwindowwin32.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index 07caeff11d..6ac17f8779 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -5023,6 +5023,12 @@ std::vector<std::string> LLWindowWin32::getDynamicFallbackFontList() // Fonts previously in getFontListSans() have moved to fonts.xml. return std::vector<std::string>(); } + +LLFontFallbackMatch LLWindowWin32::findFallbackFontForChar(llwchar wch) +{ + // Not implemented on Windows; would use DirectWrite (IDWriteFontFallback::MapCharacters). + return LLFontFallbackMatch(); +} #endif // LL_WINDOWS inline LLWindowWin32::LLWindowWin32Thread::LLWindowWin32Thread() |
