Lines Matching refs:plane
53 uint8_t plane; /* Video plan number */
384 case FIOC_MMAP: /* Get color plane info */
399 case FBIOGET_VIDEOINFO: /* Get color plane info */
417 case FBIOGET_PLANEINFO: /* Get video plane info */
423 ret = fb->vtable->getplaneinfo(fb->vtable, fb->plane, &pinfo);
519 ret = fb->vtable->getplaneinfo(fb->vtable, fb->plane, &pinfo);
709 * display number if the devices supports only a single plane. If the
712 * is the display plane.
718 * plane - Identifies the color plane on hardware that supports separate
727 int fb_register(int display, int plane)
759 DEBUGASSERT((unsigned)plane <= UINT8_MAX);
760 fb->plane = plane;
762 fb->vtable = up_fbgetvplane(display, plane);
765 gerr("ERROR: up_fbgetvplane() failed, vplane=%d\n", plane);
780 DEBUGASSERT(vinfo.nplanes > 0 && (unsigned)plane < vinfo.nplanes);
783 ret = fb->vtable->getplaneinfo(fb->vtable, plane, &pinfo);
809 /* Clear the overlay memory. Necessary when plane 0 and overlay 0
824 (void)snprintf(devname, 16, "/dev/fb%d.%d", display, plane);