summaryrefslogtreecommitdiffstats
path: root/video/out/gl_lcms.h
blob: 1debef485b3ef2aff0f0af0e60f7c6e02785c922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MP_GL_LCMS_H
#define MP_GL_LCMS_H

extern const struct m_sub_options mp_icc_conf;

struct mp_icc_opts {
    char *profile;
    char *cache;
    char *size_str;
    int intent;
};

struct lut3d;
struct lut3d *mp_load_icc(struct mp_icc_opts *opts);

#endif