all repos — tint2 @ 6c36f79aae2df35a7ae80de1a2fa6ba8cf606d99

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/util/fps_distribution.h (raw)

1
2
3
4
5
6
7
8
9
#ifndef FPS_DISTRIBUTION_H
#define FPS_DISTRIBUTION_H

void init_fps_distribution();
void cleanup_fps_distribution();
void sample_fps(double fps);
void fps_compute_stats(double *low, double *median, double *high, double *samples);

#endif