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

Method writeText

keyboard/src/shaders/graphics.cpp:483–487  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

481}
482
483text* window::writeText(const char* inputText, int x, int y, float size, int r, int g, int b, int a){
484 text* newText = new text(inputText, x, y, size, r, g, b, a);
485 listOfText.push_back(newText);
486 return newText;
487}
488
489int window::deleteText(text* toRemove){
490 auto it = find(listOfText.begin(), listOfText.end(), toRemove);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected