mirror of
https://github.com/opnsense/src.git
synced 2026-02-03 20:49:35 -05:00
Fix two files forgotten in r269783 (vt_generate_cons_palette)
Reported by: bz MFC after: 1 week MFC with: 269783
This commit is contained in:
parent
fd71d3ebee
commit
ca885fdfde
2 changed files with 7 additions and 7 deletions
|
|
@ -163,18 +163,18 @@ ipu3_fb_init_cmap(uint32_t *cmap, int bytespp)
|
|||
|
||||
switch (bytespp) {
|
||||
case 8:
|
||||
return (vt_generate_vga_palette(cmap, COLOR_FORMAT_RGB,
|
||||
return (vt_generate_cons_palette(cmap, COLOR_FORMAT_RGB,
|
||||
0x7, 5, 0x7, 2, 0x3, 0));
|
||||
case 15:
|
||||
return (vt_generate_vga_palette(cmap, COLOR_FORMAT_RGB,
|
||||
return (vt_generate_cons_palette(cmap, COLOR_FORMAT_RGB,
|
||||
0x1f, 10, 0x1f, 5, 0x1f, 0));
|
||||
case 16:
|
||||
return (vt_generate_vga_palette(cmap, COLOR_FORMAT_RGB,
|
||||
return (vt_generate_cons_palette(cmap, COLOR_FORMAT_RGB,
|
||||
0x1f, 11, 0x3f, 5, 0x1f, 0));
|
||||
case 24:
|
||||
case 32: /* Ignore alpha. */
|
||||
return (vt_generate_vga_palette(cmap, COLOR_FORMAT_RGB,
|
||||
0xff, 16, 0xff, 8, 0xff, 0));
|
||||
return (vt_generate_cons_palette(cmap, COLOR_FORMAT_RGB,
|
||||
0xff, 0, 0xff, 8, 0xff, 16));
|
||||
default:
|
||||
return (1);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -178,8 +178,8 @@ ps3fb_init(struct vt_device *vd)
|
|||
sc->fb_info.fb_vbase = 0x10000000;
|
||||
|
||||
/* 32-bit VGA palette */
|
||||
vt_generate_vga_palette(sc->fb_info.fb_cmap, COLOR_FORMAT_RGB,
|
||||
255, 16, 255, 8, 255, 0);
|
||||
vt_generate_cons_palette(sc->fb_info.fb_cmap, COLOR_FORMAT_RGB,
|
||||
255, 0, 255, 8, 255, 16);
|
||||
|
||||
/* Set correct graphics context */
|
||||
lv1_gpu_context_attribute(sc->sc_fbcontext,
|
||||
|
|
|
|||
Loading…
Reference in a new issue