1
mirror of https://github.com/mpv-player/mpv synced 2024-11-07 01:47:00 +01:00
mpv/video/out/gl_lcms.h
wm4 6ef06aa145 vo_opengl: split into multiple files, convert to new option API
gl_video.c contains all rendering code, gl_lcms.c the .icc loader and
creation of 3D LUT (and all LittleCMS specific code). vo_opengl.c is
reduced to interfacing between the various parts.
2013-03-28 21:46:17 +01:00

17 lines
263 B
C

#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