summaryrefslogtreecommitdiff
path: root/src/xyz_srgb_lut.h
blob: 63f8917850102323ed155e6bd10fd03d8f30348a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "lut.h"
#include "lut_cache.h"

namespace libdcp {

class XYZsRGBLUT : public LUT<int>
{
public:
	XYZsRGBLUT(int colour_depth, float gamma);
	static LUTCache<XYZsRGBLUT> cache;
};

}