Parcourir la source

Implement naive bold font printing.

legacy
Sam Hocevar sam il y a 14 ans
Parent
révision
372d18bde6
2 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. +7
    -0
      src/font.cpp
  2. +1
    -0
      src/font.h

+ 7
- 0
src/font.cpp Voir le fichier

@@ -118,3 +118,10 @@ void Font::Print(int x, int y, char const *str)
glEnd();
}

void Font::PrintBold(int x, int y, char const *str)
{
Print(x, y, str);
Print(x + 1, y, str);
Print(x, y + 1, str);
}


+ 1
- 0
src/font.h Voir le fichier

@@ -31,6 +31,7 @@ public:
char const *GetName();

void Print(int x, int y, char const *str);
void PrintBold(int x, int y, char const *str);

private:
FontData *data;


Chargement…
Annuler
Enregistrer