Lines Matching refs:palette
311 void BgPutStringN(s32 x, s32 y, s32 palette, const char *text, s32 num) in BgPutStringN() argument
325 BgPutChar(x + i, y, palette, text[i]); in BgPutStringN()
338 void BgPutChar(s32 x, s32 y, s32 palette, s8 c) in BgPutChar() argument
340 vscr[((y * 32) + x) % (32 * 32)] = (u16)((palette << 12) | c); in BgPutChar()
352 void BgPutString(s32 x, s32 y, s32 palette, const char *text) in BgPutString() argument
354 BgPutStringN(x, y, palette, text, BGSTR_MAX_LENGTH); in BgPutString()
366 void BgPrintStr(s32 x, s32 y, s32 palette, const char *text, ...) in BgPrintStr() argument
375 BgPutString(x, y, palette, temp); in BgPrintStr()
387 void BgSetMessage(s32 palette, const char *text, ...) in BgSetMessage() argument
396 BgPutString(4, 22, palette, temp); in BgSetMessage()
426 void BgColorString(s16 x, s16 y, s16 length, u8 palette) in BgColorString() argument
442 temp |= (palette << 12); in BgColorString()