summaryrefslogtreecommitdiff
path: root/overlay/chart.h
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2013-08-17 11:12:07 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2013-08-17 11:21:51 +0100
commitf9a50de3dcc501e930de6c60983a4feb57121e7e (patch)
treee2a65ef9a1ce5c15faf8e95e0337e821e2579ac7 /overlay/chart.h
parent7df9caeea1606b4f0272de35f0d7f70eedd5ec30 (diff)
Introduce intel-gpu-overlay
A realtime display of GPU activity. Note, this is just at the point of minimum usability... Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'overlay/chart.h')
-rw-r--r--overlay/chart.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/overlay/chart.h b/overlay/chart.h
new file mode 100644
index 00000000..c0f0065c
--- /dev/null
+++ b/overlay/chart.h
@@ -0,0 +1,18 @@
+struct chart {
+ const char *name;
+ int x, y, w, h;
+ int num_samples;
+ int current_sample;
+ int range_automatic;
+ float rgb[4];
+ double range[2];
+ double *samples;
+};
+
+int chart_init(struct chart *chart, const char *name, int num_samples);
+void chart_set_rgba(struct chart *chart, float red, float green, float blue, float alpha);
+void chart_set_position(struct chart *chart, int x, int y);
+void chart_set_size(struct chart *chart, int w, int h);
+void chart_set_range(struct chart *chart, double min, double max);
+void chart_add_sample(struct chart *chart, double value);
+void chart_draw(struct chart *chart, cairo_t *cr);