Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

eglcommon.h 413B

1234567891011121314151617181920
  1. #ifndef EGLCOMMON_H
  2. #define EGLCOMMON_H
  3. typedef void (*init_func)();
  4. typedef void (*reshape_func)(int, int);
  5. typedef void (*draw_func)();
  6. typedef int (*key_func)(unsigned key);
  7. void set_window_size(int width, int height);
  8. int window_width(void);
  9. int window_height(void);
  10. int run(int argc, char **argv,
  11. init_func init,
  12. reshape_func resh,
  13. draw_func draw,
  14. key_func key);
  15. #endif