Home
last modified time | relevance | path

Searched refs:shadow_fb (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/uts/i86pc/boot/
H A Dboot_fb.c339 fb_info.shadow_fb = (uint8_t *)bops->bsys_alloc(NULL, NULL, in boot_fb_shadow_init()
342 if (fb_info.shadow_fb == NULL) in boot_fb_shadow_init()
346 boot_fb_cpy(fb_info.shadow_fb, fb_info.fb, fb_info.fb_size); in boot_fb_shadow_init()
506 if (fb_info.shadow_fb != NULL) in boot_fb_blit()
507 sfbp = fb_info.shadow_fb + offset; in boot_fb_blit()
563 sdst = fb_info.shadow_fb + toffset; in boot_fb_eraseline_impl()
569 if (fb_info.shadow_fb != NULL) { in boot_fb_eraseline_impl()
571 if (fb_info.shadow_fb + fb_info.fb_size >= in boot_fb_eraseline_impl()
604 if (fb_info.shadow_fb != NULL) { in boot_fb_conscopy()
605 src = fb_info.shadow_fb + soffset; in boot_fb_conscopy()
[all …]
/illumos-gate/usr/src/uts/i86pc/io/gfx_private/
H A Dgfxp_bitmap.c154 kmem_free(softc->console->fb.shadow_fb, in gfxp_bm_detach()
156 softc->console->fb.shadow_fb = NULL; in gfxp_bm_detach()
164 bitmap_copy_fb(softc, softc->console->fb.shadow_fb, in bitmap_kdsettext()
242 softc->console->fb.shadow_fb = kmem_zalloc(size, KM_SLEEP); in bitmap_setup_fb()
280 bitmap_copy_fb(softc, console->fb.fb, console->fb.shadow_fb); in bitmap_devinit()
324 src = console->fb.shadow_fb + soffset; in bitmap_cons_copy()
326 sdst = console->fb.shadow_fb + toffset; in bitmap_cons_copy()
422 sfbp = console->fb.shadow_fb + da->col * console->fb.bpp + in bitmap_cons_display()
461 fb = console->fb.shadow_fb + i * pitch; in bitmap_cons_clear()
471 sfb16 = (uint16_t *)(console->fb.shadow_fb + i * pitch); in bitmap_cons_clear()
[all …]
/illumos-gate/usr/src/boot/efi/libefi/
H A Defi_console.c60 extern EFI_GRAPHICS_OUTPUT_BLT_PIXEL *shadow_fb;
454 if (shadow_fb != NULL) { in efi_framebuffer_setup()
455 BS->FreePages((EFI_PHYSICAL_ADDRESS)(uintptr_t)shadow_fb, in efi_framebuffer_setup()
459 sizeof (*shadow_fb)); in efi_framebuffer_setup()
461 shadow_sz, (EFI_PHYSICAL_ADDRESS *)&shadow_fb); in efi_framebuffer_setup()
463 shadow_fb = NULL; in efi_framebuffer_setup()
/illumos-gate/usr/src/boot/i386/libi386/
H A Dvbe.c409 extern struct paletteentry *shadow_fb; in vbe_set_mode()
450 if (shadow_fb != NULL) in vbe_set_mode()
451 free(shadow_fb); in vbe_set_mode()
452 shadow_fb = malloc(mi.XResolution * mi.YResolution * in vbe_set_mode()
453 sizeof (*shadow_fb)); in vbe_set_mode()
/illumos-gate/usr/src/boot/common/
H A Dgfx_fb.c115 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *shadow_fb; variable
118 struct paletteentry *shadow_fb; variable
834 if (shadow_fb == NULL) in gfxfb_shadow_fill()
854 *(uint32_t *)&shadow_fb[off + x] = *BltBuffer; in gfxfb_shadow_fill()
1018 if (shadow_fb == NULL) { in gfx_fb_cons_copy()
1031 bytes = width * sizeof (*shadow_fb); in gfx_fb_cons_copy()
1043 source = &shadow_fb[sy * pitch + sx]; in gfx_fb_cons_copy()
1044 destination = &shadow_fb[dy * pitch + dx]; in gfx_fb_cons_copy()
1149 if (shadow_fb != NULL) { in gfx_fb_cons_display()
1161 BltBuffer = shadow_fb + dy * pitch + dx; in gfx_fb_cons_display()
[all …]
/illumos-gate/usr/src/uts/i86pc/sys/
H A Dframebuffer.h66 uint8_t *shadow_fb; member