aboutsummaryrefslogtreecommitdiff
path: root/graphics/fonts
AgeCommit message (Collapse)Author
2017-11-14GRAPHICS: Fix potentially uninitialized pointers in BDF loaderWillem Jan Palenstijn
2017-11-14GRAPHICS: Fix freeing invalid pointers in the BDF font destructorBastien Bouclet
Fixes a crash on exit when using a non default GUI font. Possibly fixes #10318.
2017-09-10GRAPHICS: Remove dead code in BDF loadCharacter codeColin Snover
2017-08-01GRAPHICS: Load Mac font heights too (still unused)Eugene Sandulenko
2017-07-10Revert "COMMON: Change way the Singleton instances are instantiated"Eugene Sandulenko
This reverts commit eefa72afa1978a9dea10f5b1833fcc8f58a3468e. With this patch ConfigManager is broken.
2017-07-10COMMON: Change way the Singleton instances are instantiatedThierry Crozat
This fixes tons of warnings with clang from a recent xcode version on macOS (and possibly other systems) complaining that an instantiation of _singleton is required but no definition is available.
2017-01-30GRAPHICS: Added missing includeEugene Sandulenko
2017-01-27JANITORIAL: CleanupEugene Sandulenko
2017-01-26GRAPHICS: More fixes to MacFont scaling. Now it does workEugene Sandulenko
2017-01-26GRAPHICS: Fixes to MacFont scalingEugene Sandulenko
2017-01-25GRAPHICS: Implemented test for MacFont scalingEugene Sandulenko
2017-01-24GRAPHICS: Plug MacFont scaler inEugene Sandulenko
2017-01-24GRAPHICS: Further work on MacFont scalingEugene Sandulenko
2017-01-23GRAPHICS: Fix number of memory leaks and wanringsEugene Sandulenko
2017-01-21GRAPHICS: More work on MacFont scalingEugene Sandulenko
2017-01-20GRAPHICS: Further work on MacFont font scalingEugene Sandulenko
2017-01-20GRAPHICS: Fix copy/paste errors with MacFont size processingEugene Sandulenko
2017-01-19GRAPHICS: Initial code for scaling MacFontsEugene Sandulenko
2017-01-19GRAPHICS: Encapsulate all MacFONTFont class variables into a single structEugene Sandulenko
2017-01-17GRAPHICS: Rename MacFont to MacFONTFont to avoid clashedEugene Sandulenko
2017-01-17GRAPHICS: Implementing kerning calculation for MacFontsEugene Sandulenko
2017-01-17GRAPHICS: Split out MacFontFamily class out of MacFontEugene Sandulenko
2017-01-17GRAPHICS: Fix Zero Length Format String Compiler Warnings.D G Turner
2017-01-17GRAPHICS: Fix FOND loadingEugene Sandulenko
2017-01-17GRAPHICS: Added debug output to FOND loadingEugene Sandulenko
2017-01-17GRAPHICS: More work on FOND loadingEugene Sandulenko
2017-01-16GRAPHICS: First part for reading FOND Mac resourcesEugene Sandulenko
2017-01-16GRAPHICS: Initial code for reading FONT Mac resourcesEugene Sandulenko
2016-10-31GRAPHICS: Fix compiler warning in BdfFontPaul Gilbert
2016-10-31JANITORIAL: TyposAlexandre Detiste
I've not fixed this one, maybe it's on purpose: RELASE -> RELEASE engines/mads/staticres.cpp:const char *const kGameReleaseTitleStr = "GAME RELASE VERSION INFO";
2016-10-18GRAPHICS: Remove debug leftoverEugene Sandulenko
2016-10-15GRAPHICS: Fixed BDF font scalingEugene Sandulenko
2016-10-14GRAPHICS: Further work on BDF font scalingEugene Sandulenko
2016-10-12GRAPHICS: Fix BDF font referencing on font generationEugene Sandulenko
2016-10-12GRAPHICS: Fix built-in font parametersEugene Sandulenko
2016-10-12GRAPHICS: Further work on BDF font scalingEugene Sandulenko
2016-10-11GRAPHICS: Added stub for BDF font scalerEugene Sandulenko
2016-10-10GRAPHICS: Use PIXEL_SIZE as BDF font sizeEugene Sandulenko
2016-10-07GRAPHICS: Parse slant from BDF fontsEugene Sandulenko
2016-10-06GRAPHICS: Fix BDF font parsingEugene Sandulenko
2016-10-06GRAPHICS: Parse font size from BDF fontsEugene Sandulenko
2016-10-06GRAPHICS: Use Family name instead of font name when reading from BDF fontsEugene Sandulenko
2016-10-05GRAPHICS: Load Face Name from BDF filesEugene Sandulenko
Also adjust the devtools and built-in fonts accordingly.
2016-01-08GRAPHICS: Silence an MSVC warningFilippos Karapetis
2015-12-21GRAPHICS: Introduce a size mode for TrueType fontsBastien Bouclet
Allows to match Windows font size selection by converting font heights to point sizes using the TrueType tables.
2015-04-11GRAPHICS: Force a cast to int to avoid gcc warningsMatthew Hoops
2015-03-02GRAPHICS: Fix GCC signed/unsigned warnings.Torbjörn Andersson
2014-09-03GRAPHICS: Allow negative xOffset in TTF.Johannes Schickel
This should improve the visual looks of many fonts. However, it might result in the first line of the glyph to be drawn left of the position specified in drawChar.
2014-09-03GRAPHICS: Allow to query the bounding box of chars/strings drawn with Font API.Johannes Schickel
2014-06-09GRAPHICS: Allow client code to specify TTF render mode.Johannes Schickel
This allows clients to use the default FreeType2 render mode instead of light. We really only use light as default because that's what looks best with the font we use in our GUI right now (which is the same reason why formerly light was always used in non-monochrome mode).