|
| static void | drawFps (const Vector2f &pos={10, 10}, const int &fontSize=20) |
| | Draw the current fps. More...
|
| |
| static void | drawFps (const float &posX=10, const float &posY=10, const int &fontSize=20) |
| | Draw the current fps. More...
|
| |
| static void | drawFps (const Vector2f &pos={10, 10}) |
| | Draw the fps. More...
|
| |
| static void | drawFps (const int &posX=10, const int &posY=10) |
| | Draw the fps. More...
|
| |
| static void | drawText (const std::string &text, const Vector2f &pos, const int &fontSize, const RlColor &color=RlColor::Black) |
| | Draw a text (using default font) More...
|
| |
| static void | drawText (const std::string &text, const float &posX, const float &posY, const int &fontSize, const RlColor &color=RlColor::Black) |
| | Draw a text (using default font) More...
|
| |
| static void | drawText (const std::string &text, const raylib::text::RlFont &font, const Vector2f &position, const RlColor &color=RlColor::Black) |
| | Draw text using font and additional parameters. More...
|
| |
| static void | drawText (const std::string &text, const raylib::text::RlFont &font, const Vector2f &position, const float &fontSize, const RlColor &tint=RlColor::Black, const float &spacing=1) |
| | Draw text using font and additional parameters. More...
|
| |
| static void | drawText (const std::string &text, const raylib::text::RlFont &font, const Vector2f &position, const float &rotation, const float &fontSize, const RlColor &tint=RlColor::Black, const float &spacing=1) |
| | Draw text using font and additional parameters. More...
|
| |
| static void | drawText (const std::string &text, const raylib::text::RlFont &font, const Vector2f &position, const Vector2f &origin, const float &fontSize, const RlColor &tint=RlColor::Black, const float &spacing=1) |
| | Draw text using font and additional parameters. More...
|
| |
| static void | drawText (const std::string &text, const raylib::text::RlFont &font, const Vector2f &position, const Vector2f &origin, const float &rotation, const float &fontSize=20, const RlColor &tint=RlColor::Black, const float &spacing=1) |
| | Draw text using Font and 'pro' parameters (rotation) More...
|
| |
| static void | drawCenteredText (const std::string &text, const raylib::text::RlFont &font, const Vector2f &position, const RlColor &color=RlColor::Black, const float &spacing=1) |
| | Draw a text centered to the position. More...
|
| |
| static void | drawCenteredText (const std::string &text, const raylib::text::RlFont &font, const Vector2f &position, const float &fontSize, const RlColor &color=RlColor::Black, const float &spacing=1) |
| | Draw a text centered to the position. More...
|
| |
| static void | drawCenteredText (const raylib::text::RlText &text) |
| | Draw a text centered to the position of the text. More...
|
| |
| static void | drawTextUsingCodepoint (const raylib::text::RlFont &font, const int &codepoint, const Vector2f &position, float fontSize, const RlColor &tint) |
| | Draw one character (codepoint) More...
|
| |
| static void | drawText (const raylib::text::RlText &text, const Vector2f &position, const RlColor &color=RlColor::Black) |
| | Draw text using RlText and additional parameters. More...
|
| |
| static void | drawText (const raylib::text::RlText &text, const float &posX, const float &posY, const RlColor &color=RlColor::Black) |
| | Draw text using RlText and additional parameters. More...
|
| |
| static void | drawText (const raylib::text::RlText &text) |
| | Draw text using RlText values. More...
|
| |
Helper class for drawing text.