Kaynağa Gözat

Implement naive bold font printing.

legacy
Sam Hocevar sam 14 yıl önce
ebeveyn
işleme
372d18bde6
2 değiştirilmiş dosya ile 8 ekleme ve 0 silme
  1. +7
    -0
      src/font.cpp
  2. +1
    -0
      src/font.h

+ 7
- 0
src/font.cpp Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

@@ -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;


Yükleniyor…
İptal
Kaydet