diff options
| author | Jonathan "Geenz" Goodman <geenz@lindenlab.com> | 2026-08-25 13:21:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-25 13:21:03 -0400 |
| commit | f6f5cd0f888dd8ec53821aa4f26e307b51465da0 (patch) | |
| tree | addb875c9bc2b217d39d7d6fd4e4e0a5ea333745 /indra/llwindow/llwindowwin32.cpp | |
| parent | 82caf452cdaa59357a25d0844afe0012419beed2 (diff) | |
| parent | 2e9c387fee881022aec13d5c85f901539683c18f (diff) | |
Merge pull request #3537 from secondlife/project/lua_editor
Alpha Viewer: Lua editor
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 3fccc1fbff..a93a3150e1 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -5341,6 +5341,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() |
