Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1.  
  2.  
  3. typedef struct
  4. {
  5.     u32_t   width;
  6.     u32_t   height;
  7.     u32_t   bpp;
  8.  
  9.     u32_t   lfb;
  10.     u32_t   pci_fb;
  11.     u32_t   gpu_fb;
  12.     u32_t   fb_object;
  13.  
  14.     struct drm_display_mode *mode;
  15.     cursor_t   *cursor;
  16.  
  17.     int     (*set_cursor)();
  18.     int     (*show_cursor)();
  19.     int     (*hide_cursor)();
  20.     int     (*move_cursor)();
  21.  
  22.     int     (*copy)();
  23.     int     (*blit)();
  24.  
  25. }display_t;
  26.