This website works better with JavaScript.
Почетна
Помоћ
Пријавите Се
lolengine
/
lol
огледало од
https://github.com/lolengine/lol
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Издања
0
Вики
Activity
Преглед изворни кода
Implement naive bold font printing.
legacy
Sam Hocevar
sam
пре 14 година
родитељ
fa25646f80
комит
372d18bde6
2 измењених фајлова
са
8 додато
и
0 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
src/font.cpp
+1
-0
src/font.h
+ 7
- 0
src/font.cpp
Прегледај датотеку
@@ -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
Прегледај датотеку
@@ -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;
Write
Preview
Loading…
Откажи
Сачувај