seat->renderer = NULL;
}
-void
-ply_seat_set_splash (ply_seat_t *seat,
- ply_boot_splash_t *splash)
-{
- if (seat->splash == splash)
- return;
-
- if (seat->splash != NULL)
- ply_boot_splash_detach_from_seat (splash, seat);
-
- if (splash != NULL)
- ply_boot_splash_attach_to_seat (splash, seat);
-
- seat->splash = splash;
-}
-
static void
free_pixel_displays (ply_seat_t *seat)
{
#include <stdint.h>
#include <unistd.h>
-#include "ply-boot-splash.h"
#include "ply-buffer.h"
#include "ply-event-loop.h"
#include "ply-keyboard.h"
void ply_seat_activate_renderer (ply_seat_t *seat);
void ply_seat_refresh_displays (ply_seat_t *seat);
void ply_seat_close (ply_seat_t *seat);
-void ply_seat_set_splash (ply_seat_t *seat,
- ply_boot_splash_t *splash);
ply_list_t *ply_seat_get_pixel_displays (ply_seat_t *seat);
ply_list_t *ply_seat_get_text_displays (ply_seat_t *seat);