graphics.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #define MAXCARDS 4
  2. struct graphics_ops {
  3. /* SGIism: Board owner, gets the shmiq requests from the kernel */
  4. struct task_struct *g_owner;
  5. /* Last process that got the graphics registers mapped  */
  6. struct task_struct *g_user;
  7. /* Board info */
  8. void               *g_board_info;
  9. int                g_board_info_len;
  10. /* These point to hardware registers that should be mapped with
  11.  * GFX_ATTACH_BOARD and the size of the information pointed to
  12.  */
  13. unsigned long      g_regs;
  14. int                g_regs_size;
  15. void (*g_save_context)(void *);
  16. void (*g_restore_context)(void *);
  17. void (*g_reset_console)(void);
  18. int  (*g_ioctl)(int device, int cmd, unsigned long arg);
  19. };
  20. void shmiq_init (void);
  21. void streamable_init (void);