forked from KolibriOS/kolibrios
4af4fa5809
git-svn-id: svn://kolibrios.org@1179 a494cfbc-eb01-0410-851d-a64ba20cac60
26 lines
421 B
C
26 lines
421 B
C
|
|
|
|
typedef struct
|
|
{
|
|
u32_t width;
|
|
u32_t height;
|
|
u32_t bpp;
|
|
|
|
u32_t lfb;
|
|
u32_t pci_fb;
|
|
u32_t gpu_fb;
|
|
u32_t fb_object;
|
|
|
|
struct drm_display_mode *mode;
|
|
cursor_t *cursor;
|
|
|
|
int (*set_cursor)();
|
|
int (*show_cursor)();
|
|
int (*hide_cursor)();
|
|
int (*move_cursor)();
|
|
|
|
int (*copy)();
|
|
int (*blit)();
|
|
|
|
}display_t;
|