gimp/app/composite/gimp-composite-util.h

34 lines
384 B
C
Raw Normal View History

2003-07-08 23:15:16 +00:00
#ifndef __GIMP_COMPOSITE_UTIL_H__
#define __GIMP_COMPOSITE_UTIL_H__
typedef struct
{
guchar r;
guchar g;
guchar b;
guchar a;
2003-07-08 23:15:16 +00:00
} rgba8_t;
typedef struct
{
guchar r;
guchar g;
guchar b;
2003-07-08 23:15:16 +00:00
} rgb8_t;
typedef struct
{
guchar v;
2003-07-08 23:15:16 +00:00
} v8_t;
typedef struct
{
guchar v;
guchar a;
2003-07-08 23:15:16 +00:00
} va8_t;
extern int gimp_composite_bpp[];
#endif /* __GIMP_COMPOSITE_UTIL_H__ */