[PR #3921] [CLOSED] Fontfixes #3804

Closed
opened 2026-02-27 22:05:02 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/3921
Author: @georgemoralis
Created: 1/12/2026
Status: Closed

Base: mainHead: fontfixes


📝 Commits (10+)

  • f6aeb24 dummy fontlib libs
  • 1c48cc1 register font libs
  • e4cbd8f typo fix
  • 2b66b62 added font error file
  • aa56e60 added sceFontCharacterGetBidiLevel (from RE)
  • c63b1a0 fixup
  • 6470992 sceFontCharacterGetTextOrder , sceFontCharacterLooksFormatCharacters , sceFontCharacterLooksWhiteSpace RE
  • 97153ed sceFontCharacterRefersTextBack,sceFontCharacterRefersTextNext,sceFontRenderSurfaceInit,sceFontRenderSurfaceSetScissor RE
  • aa2cf2b sceFontRenderSurfaceSetStyleFrame ,sceFontStyleFrameGetEffectSlant RE added
  • 6184d51 clang fix

📊 Changes

19 files changed (+14220 additions, -662 deletions)

View changed files

📝 .gitmodules (+4 -0)
📝 CMakeLists.txt (+8 -2)
📝 externals/CMakeLists.txt (+10 -0)
externals/freetype (+1 -0)
📝 src/common/path_util.cpp (+11 -0)
📝 src/common/path_util.h (+2 -0)
src/core/emulator_settings.cpp (+293 -0)
src/core/emulator_settings.h (+194 -0)
📝 src/core/libraries/font/font.cpp (+5995 -345)
📝 src/core/libraries/font/font.h (+571 -299)
src/core/libraries/font/font_internal.cpp (+1983 -0)
src/core/libraries/font/font_internal.h (+760 -0)
📝 src/core/libraries/font/fontft.cpp (+83 -7)
📝 src/core/libraries/font/fontft.h (+21 -3)
src/core/libraries/font/fontft_internal.cpp (+3671 -0)
src/core/libraries/font/fontft_internal.h (+603 -0)
📝 src/core/libraries/libs.cpp (+4 -0)
📝 src/emulator.cpp (+1 -6)
📝 src/main.cpp (+5 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/shadps4-emu/shadPS4/pull/3921 **Author:** [@georgemoralis](https://github.com/georgemoralis) **Created:** 1/12/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fontfixes` --- ### 📝 Commits (10+) - [`f6aeb24`](https://github.com/shadps4-emu/shadPS4/commit/f6aeb24c91051f252b27e04cdf85a19650b9db94) dummy fontlib libs - [`1c48cc1`](https://github.com/shadps4-emu/shadPS4/commit/1c48cc16c8cc61f697432f88db7dca1b4d25927d) register font libs - [`e4cbd8f`](https://github.com/shadps4-emu/shadPS4/commit/e4cbd8f8abba6c02574628fca4de78eb96c74bf8) typo fix - [`2b66b62`](https://github.com/shadps4-emu/shadPS4/commit/2b66b6288dcaacbb4f2629c79398a9ad481c168c) added font error file - [`aa56e60`](https://github.com/shadps4-emu/shadPS4/commit/aa56e601dc1261ffedb66a2b39073c6bcd2b34c0) added sceFontCharacterGetBidiLevel (from RE) - [`c63b1a0`](https://github.com/shadps4-emu/shadPS4/commit/c63b1a058c2f3580e2b1429e5a57c1a7bd4e4a50) fixup - [`6470992`](https://github.com/shadps4-emu/shadPS4/commit/647099200745207c14d484b6e4e44faa624d517b) sceFontCharacterGetTextOrder , sceFontCharacterLooksFormatCharacters , sceFontCharacterLooksWhiteSpace RE - [`97153ed`](https://github.com/shadps4-emu/shadPS4/commit/97153ed62ce2560b8e533326a7df92a85ecdca6d) sceFontCharacterRefersTextBack,sceFontCharacterRefersTextNext,sceFontRenderSurfaceInit,sceFontRenderSurfaceSetScissor RE - [`aa2cf2b`](https://github.com/shadps4-emu/shadPS4/commit/aa2cf2be84e12e0896bc1395682a95033f537417) sceFontRenderSurfaceSetStyleFrame ,sceFontStyleFrameGetEffectSlant RE added - [`6184d51`](https://github.com/shadps4-emu/shadPS4/commit/6184d516212d7071a96296b871739a9ec6b66b9a) clang fix ### 📊 Changes **19 files changed** (+14220 additions, -662 deletions) <details> <summary>View changed files</summary> 📝 `.gitmodules` (+4 -0) 📝 `CMakeLists.txt` (+8 -2) 📝 `externals/CMakeLists.txt` (+10 -0) ➕ `externals/freetype` (+1 -0) 📝 `src/common/path_util.cpp` (+11 -0) 📝 `src/common/path_util.h` (+2 -0) ➕ `src/core/emulator_settings.cpp` (+293 -0) ➕ `src/core/emulator_settings.h` (+194 -0) 📝 `src/core/libraries/font/font.cpp` (+5995 -345) 📝 `src/core/libraries/font/font.h` (+571 -299) ➕ `src/core/libraries/font/font_internal.cpp` (+1983 -0) ➕ `src/core/libraries/font/font_internal.h` (+760 -0) 📝 `src/core/libraries/font/fontft.cpp` (+83 -7) 📝 `src/core/libraries/font/fontft.h` (+21 -3) ➕ `src/core/libraries/font/fontft_internal.cpp` (+3671 -0) ➕ `src/core/libraries/font/fontft_internal.h` (+603 -0) 📝 `src/core/libraries/libs.cpp` (+4 -0) 📝 `src/emulator.cpp` (+1 -6) 📝 `src/main.cpp` (+5 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 22:05:02 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shadPS4#3804
No description provided.