Lines Matching refs:palette
314 void BgPutStringN(s32 x, s32 y, s32 palette, const char *text, s32 num) in BgPutStringN() argument
328 BgPutChar(x + i, y, palette, text[i]); in BgPutStringN()
341 void BgPutChar(s32 x, s32 y, s32 palette, s8 c) in BgPutChar() argument
343 vscr[((y * 32) + x) % (32 * 32)] = (u16)((palette << 12) | c); in BgPutChar()
355 void BgPutString(s32 x, s32 y, s32 palette, const char *text) in BgPutString() argument
357 BgPutStringN(x, y, palette, text, BGSTR_MAX_LENGTH); in BgPutString()
369 void BgPrintStr(s32 x, s32 y, s32 palette, const char *text, ...) in BgPrintStr() argument
378 BgPutString(x, y, palette, temp); in BgPrintStr()
390 void BgSetMessage(s32 palette, const char *text, ...) in BgSetMessage() argument
399 BgPutString(4, 22, palette, temp); in BgSetMessage()
429 void BgColorString(s16 x, s16 y, s16 length, u8 palette) in BgColorString() argument
445 temp |= (palette << 12); in BgColorString()