Skip to content
Snippets Groups Projects
Select Git revision
  • 0f83188a3554cc44d9048a7d9870ad3c89cf1e45
  • master default protected
  • develop-GA
  • timeFstatmap
  • add-higher-spindown-components
  • develop-DK
  • adds-header-to-grid-search
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
11 results

glitch_robust_search.py

Blame
  • Forked from Gregory Ashton / PyFstat
    Source project has a limited visibility.
    • Gregory Ashton's avatar
      89f200ed
      Renames sftfilepath -> sftfilepattern · 89f200ed
      Gregory Ashton authored
      This renames the input sftfilepath to sftfilepattern and adds
      documentation on how that should be used, i.e. a colon separated list of
      wildstring or exact matches. In globbing for all matches, the colon
      split is added in. sftfilepath is still used by `Writer` since
      an exact path is known.
      89f200ed
      History
      Renames sftfilepath -> sftfilepattern
      Gregory Ashton authored
      This renames the input sftfilepath to sftfilepattern and adds
      documentation on how that should be used, i.e. a colon separated list of
      wildstring or exact matches. In globbing for all matches, the colon
      split is added in. sftfilepath is still used by `Writer` since
      an exact path is known.
    graphics2.h 1005 B
    #ifndef _GRAPHICS2_H_
    #define _GRAPHICS2_H_
    
    // Functions that must be supplied by the app
    //
    extern void app_graphics_render(int xs, int ys, double time_of_day);
    extern void app_graphics_init(void);
    extern void app_graphics_resize(int width, int height);
    extern void boinc_app_mouse_button(int x, int y, int which, int is_down);
    extern void boinc_app_mouse_move(int x, int y, int left, int middle, int right);
    extern void boinc_app_key_press(int, int);
    extern void boinc_app_key_release(int, int);
    
    // Functions that the app can call
    //
    extern void boinc_graphics_loop(int, char**);
    extern void* boinc_graphics_make_shmem(char*, int);
    extern void* boinc_graphics_get_shmem(char*);
    extern void boinc_set_windows_icon(const char* icon16,const char* icon48);
    extern void boinc_close_window_and_quit();
    
    // Implementation stuff
    //
    extern double boinc_max_fps;
    extern double boinc_max_gfx_cpu_frac;
    extern void get_window_title(char* buf, int len);
    extern bool throttled_app_render(int, int, double);
    
    #endif