mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-29 19:49:58 +02:00
11 lines
257 B
C++
11 lines
257 B
C++
#include <kandinsky/text.h>
|
|
#include <string.h>
|
|
#include "font.h"
|
|
|
|
KDSize KDText::stringSize(const char * text) {
|
|
if (text == nullptr) {
|
|
return KDSizeZero;
|
|
}
|
|
return KDSize(BITMAP_FONT_CHARACTER_WIDTH*strlen(text), BITMAP_FONT_CHARACTER_HEIGHT);
|
|
}
|