This is a colorspace implementation using LCMS to implement support for random colorspaces from ICC profiles.
16 lines
310 B
C
16 lines
310 B
C
#ifndef __GDK_COLOR_PROFILE_PRIVATE_H__
|
|
#define __GDK_COLOR_PROFILE_PRIVATE_H__
|
|
|
|
#include "gdkcolorprofile.h"
|
|
|
|
#include <lcms2.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
cmsHPROFILE * gdk_color_profile_get_lcms_profile (GdkColorProfile *self);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GDK_COLOR_PROFILE_PRIVATE_H__ */
|