debuging memory leaks

This commit is contained in:
2021-04-21 21:20:20 +02:00
parent e9ff516b1d
commit f97291110f
29 changed files with 6306 additions and 38 deletions

View File

@@ -37,19 +37,19 @@ public:
void init(Uint8 type, Uint8 size);
// Escribe el texto en pantalla
void write(int x, int y, std::string text, int kerning = 0, Uint8 lenght = 0);
void write(int x, int y, std::string text, int kerning = 0, int lenght = -1);
// Escribe el texto con colores
void writeColored(int x, int y, std::string text, color_t color, int kerning = 0, Uint8 lenght = 0);
void writeColored(int x, int y, std::string text, color_t color, int kerning = 0, int lenght = -1);
// Escribe el texto con sombra
void writeShadowed(int x, int y, std::string text, color_t color, Uint8 shadowDistance = 1, int kerning = 0, Uint8 lenght = 0);
void writeShadowed(int x, int y, std::string text, color_t color, Uint8 shadowDistance = 1, int kerning = 0, int lenght = -1);
// Escribe el texto centrado en un punto x y con kerning
void writeCentered(int x, int y, std::string text, int kerning = 0, Uint8 lenght = 0);
void writeCentered(int x, int y, std::string text, int kerning = 0, int lenght = -1);
// Escribe texto con extras
void writeDX(Uint8 flags, int x, int y, std::string text, int kerning = 0, color_t textColor = {255, 255, 255}, Uint8 shadowDistance = 1, color_t shadowColor = {0, 0, 0}, Uint8 lenght = 0);
void writeDX(Uint8 flags, int x, int y, std::string text, int kerning = 0, color_t textColor = {255, 255, 255}, Uint8 shadowDistance = 1, color_t shadowColor = {0, 0, 0}, int lenght = -1);
// Obtiene la longitud en pixels de una cadena
Uint16 lenght(std::string text, int kerning);