source: trunk/include/histogram.h @ 2798

Revision 2453, 647 bytes checked in by philmoz, 5 months ago (diff)

Merge philmoz-reorg branch back into trunk.

  • Property svn:eol-style set to native
Line 
1#ifndef HISTOGRAM_H
2#define HISTOGRAM_H
3
4// CHDK Histogram OSD interface
5
6// Note: used in modules and platform independent code.
7// Do not add platform dependent stuff in here (#ifdef/#endif compile options or camera dependent values)
8
9#define HISTO_WIDTH                 128 // Note code is optimised for this value, it should not be changed!
10#define HISTO_HEIGHT                50
11
12extern void histogram_process();
13extern void gui_osd_draw_histo();
14
15extern void live_histogram_process_quick();
16extern void live_histogram_end_process();
17extern int live_histogram_get_range(int from, int to);
18extern int live_histogram_read_y(int *buf);
19
20#endif
Note: See TracBrowser for help on using the repository browser.