Changeset 87a7cdb in mainline for uspace/srv/hid/display/display.h


Ignore:
Timestamp:
2019-12-05T19:35:12Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
71cbe5c
Parents:
973efd36
Message:

Enumerate display devices for output, RFB conversion (WIP)

Currently we can only have one active output device. Bitmaps
do not work as ipcgfx does not accept alloc != NULL.
Need to fill in tests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/display.h

    r973efd36 r87a7cdb  
    4242#include <io/pos_event.h>
    4343#include "types/display/client.h"
     44#include "types/display/ddev.h"
    4445#include "types/display/display.h"
    4546#include "types/display/seat.h"
     
    6364extern ds_seat_t *ds_display_first_seat(ds_display_t *);
    6465extern ds_seat_t *ds_display_next_seat(ds_seat_t *);
     66extern void ds_display_add_ddev(ds_display_t *, ds_ddev_t *);
     67extern void ds_display_remove_ddev(ds_ddev_t *);
     68extern ds_ddev_t *ds_display_first_ddev(ds_display_t *);
     69extern ds_ddev_t *ds_display_next_ddev(ds_ddev_t *);
     70extern gfx_context_t *ds_display_get_gc(ds_display_t *);
    6571
    6672#endif
Note: See TracChangeset for help on using the changeset viewer.