gimp/app/composite/gimp-composite-util.h
Sven Neumann 9bad7d216b removed ... ... and readded under a new name.
2003-07-09  Sven Neumann  <sven@gimp.org>

	* app/composite/tester.c: removed ...
	* app/composite/test-composite.c: ... and readded under a new name.

	* app/composite/Makefile.am: added a check target that builds and
	runs the test program.

	* app/composite/gimp-composite-generic.c
	* app/composite/gimp-composite-mmx.c
	* app/composite/gimp-composite-util.h
	* app/composite/gimp-composite.[ch]
	* app/composite/make-gimp-composite-dispatch.py: made it fit
	better into the GIMP source tree:
	- do not include any files from headers
	- don't use types from <sys/types.h> but use what glib provides
	- coding style ...
2003-07-09 11:52:10 +00:00

34 lines
384 B
C

#ifndef __GIMP_COMPOSITE_UTIL_H__
#define __GIMP_COMPOSITE_UTIL_H__
typedef struct
{
guchar r;
guchar g;
guchar b;
guchar a;
} rgba8_t;
typedef struct
{
guchar r;
guchar g;
guchar b;
} rgb8_t;
typedef struct
{
guchar v;
} v8_t;
typedef struct
{
guchar v;
guchar a;
} va8_t;
extern int gimp_composite_bpp[];
#endif /* __GIMP_COMPOSITE_UTIL_H__ */