MCPcopy Create free account
hub / github.com/InkboxSoftware/all-screen-keyboard / writeText

Method writeText

keyboard/src/graphics.cpp:648–652  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

646}
647
648text* window::writeText(const char* inputText, int x, int y, float size, int r, int g, int b, int a){
649 text* newText = new text(inputText, x, y, size, r, g, b, a);
650 listOfText.push_back(newText);
651 return newText;
652}
653
654int window::deleteText(text* toRemove){
655 auto it = find(listOfText.begin(), listOfText.end(), toRemove);

Callers 2

runMethod · 0.45
freeDebugTextMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected