blob: 2d02faea0f03d32f960394da844c5b6922c05d2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <vector>
#include <cstddef>
#include <cstdint>
struct HistImage {
size_t width, height;
std::vector<uint64_t> data;
HistImage(size_t width, size_t height);
void add(const HistImage &other);
void render(const char *fname) const;
};
// vim: set sw=4 ts=4 noet:
|