index
:
scummvm-rg350
trimui-s
scummvm with trimui support. Forked from https://github.com/salvacam/scummvm-rg350
neonloop
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
engines
/
draci
/
font.cpp
Age
Commit message (
Expand
)
Author
2009-07-25
Handled the '|' char correctly when drawing text (it serves as both a newline...
Denis Kasak
2009-07-15
Renamed Font::setFont() to loadFont(). Removed DraciEngine::_font and added _...
Denis Kasak
2009-07-06
Cache the transparent colour instead of calling a function for every pixel.
Denis Kasak
2009-07-03
Added bool parameter markDirty to Sprite::draw() and Text::draw() to specify ...
Denis Kasak
2009-07-01
Added Text as a subclass of Drawable. Fixed syntax error in font.cpp
Denis Kasak
2009-07-01
Added Font::drawString overload that takes in a pointer to a byte buffer and ...
Denis Kasak
2009-06-22
Documentation fix for the Font class.
Denis Kasak
2009-06-19
Added support for the new Surface class to Font (transparency, marking dirty ...
Denis Kasak
2009-06-15
Changing font colour constants to an enum.
Denis Kasak
2009-06-15
Added const to reference parameters of Font::drawString() and Font::getString...
Denis Kasak
2009-06-15
Converted default font colours from static members of Font to constants. Move...
Denis Kasak
2009-06-14
Added a Font _font variable to the engine instance. Fixed font colour handlin...
Denis Kasak
2009-06-14
Renamed DraciFont class to Font to be more consistent with the rest of the cl...
Denis Kasak
2009-06-14
Changed DraciFont API to accept const Strings when loading fonts and added co...
Denis Kasak
2009-06-14
Reworded DraciFont docs (with regards to mentioning ASCII).
Denis Kasak
2009-06-14
Removed superfluous checks for NULL in DraciFont::freeFont().
Denis Kasak
2009-06-12
Made DraciFont::drawString() return early if the string is too long to fit on...
Denis Kasak
2009-06-12
Made DraciFont::drawString() take a String reference instead of a copy.
Denis Kasak
2009-06-12
Removed overflow/underflow checks from DraciFont::drawChar(). Instead, we now...
Denis Kasak
2009-06-12
Made the DraciFont::freeFont() method safe to call in any circumstance by mak...
Denis Kasak
2009-06-12
Properly documented everything (including the new DraciFont class). Reshuffle...
Denis Kasak
2009-06-11
Implemented font handling via the DraciFont class. Reprogrammed the test anim...
Denis Kasak