removed TODO

This commit is contained in:
Matthew Jennings 2025-05-11 17:26:31 +03:00
parent c33f2032cd
commit 5471b2e950

View file

@ -24,7 +24,6 @@ static size_t Clay_Playdate_CountUtf8Codepoints(const char *str, size_t byteLen)
// As the playdate can only display black and white, we need to resolve Clay_color to either black or white // As the playdate can only display black and white, we need to resolve Clay_color to either black or white
// for both color and draw mode. // for both color and draw mode.
// TODO: Convert to grayscale and then map the grayscale value to different dithering patterns
static LCDColor clayColorToLCDColor(Clay_Color color) { static LCDColor clayColorToLCDColor(Clay_Color color) {
if (color.r > 0 || color.g > 0 || color.b > 0) { if (color.r > 0 || color.g > 0 || color.b > 0) {
return kColorWhite; return kColorWhite;