Searched refs:gc_image (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/usr.sbin/bhyve/
H A Dbhyvegc.c41 struct bhyvegc_image *gc_image; member in struct:bhyvegc
49 struct bhyvegc_image *gc_image; local
53 gc_image = calloc(1, sizeof(struct bhyvegc_image));
54 gc_image->width = width;
55 gc_image->height = height;
57 gc_image->data = fbaddr;
60 gc_image->data = calloc(width * height, sizeof (uint32_t));
64 gc->gc_image = gc_image;
73 if (gc->gc_image
81 struct bhyvegc_image *gc_image; local
[all...]
H A Drfb.c233 struct bhyvegc_image *gc_image; local
236 gc_image = console_get_image();
238 sinfo.width = htons(gc_image->width);
239 sinfo.height = htons(gc_image->height);
511 struct bhyvegc_image *gc_image; local
536 gc_image = console_get_image();
539 if (rc->crc_width != gc_image->width ||
540 rc->crc_height != gc_image->height) {
544 rc->crc_width = gc_image->width;
545 rc->crc_height = gc_image
[all...]
H A Dpci_fbuf.c111 struct bhyvegc_image *gc_image; member in struct:pci_fbuf_softc
168 if (!sc->gc_image->vgamode && sc->memregs.width == 0 &&
171 sc->gc_image->vgamode = 1;
174 } else if (sc->gc_image->vgamode && sc->memregs.width != 0 &&
177 sc->gc_image->vgamode = 0;
360 if (sc->vga_full && sc->gc_image->vgamode) {
454 sc->gc_image = console_get_image();
H A Dvga.c58 struct bhyvegc_image *gc_image; member in struct:vga_softc
194 old_width = sc->gc_image->width;
195 old_height = sc->gc_image->height;
253 sc->gc_image->data[offset] = vga_get_pixel(sc, x, y);
316 sc->gc_image->data[offset] = vga_get_text_pixel(sc, x, y);
329 memset(sc->gc_image->data, 0,
330 sc->gc_image->width * sc->gc_image->height *
1177 if (sc->gc_image)
1178 sc->gc_image
[all...]

Completed in 119 milliseconds