MCPcopy Create free account
hub / github.com/NetHack/NetHack / vesa_MakeColor

Function vesa_MakeColor

sys/msdos/vidvesa.c:486–495  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

484}
485
486static unsigned long
487vesa_MakeColor(struct Pixel p)
488{
489 unsigned long r = p.r >> vesa_red_shift;
490 unsigned long g = p.g >> vesa_green_shift;
491 unsigned long b = p.b >> vesa_blue_shift;
492 return (r << vesa_red_pos)
493 | (g << vesa_green_pos)
494 | (b << vesa_blue_pos);
495}
496
497static void
498vesa_FillRect(unsigned left, unsigned top, unsigned width,

Callers 2

vesa_InitFunction · 0.85
vesa_SetSoftPaletteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected