2003-08-18 23:05:22 +08:00
|
|
|
#ifndef gimp_composite_regression_h
|
|
|
|
#define gimp_composite_regression_h
|
2003-07-22 07:49:48 +08:00
|
|
|
/*
|
|
|
|
* The following typedefs are temporary and only used in regression testing.
|
2006-04-12 20:49:29 +08:00
|
|
|
*/
|
2003-07-22 07:49:48 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
2006-08-22 23:55:40 +08:00
|
|
|
guint8 v;
|
2003-07-22 07:49:48 +08:00
|
|
|
} gimp_v8_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint8 v;
|
|
|
|
guint8 a;
|
|
|
|
} gimp_va8_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint8 r;
|
|
|
|
guint8 g;
|
|
|
|
guint8 b;
|
|
|
|
} gimp_rgb8_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint8 r;
|
|
|
|
guint8 g;
|
|
|
|
guint8 b;
|
|
|
|
guint8 a;
|
|
|
|
} gimp_rgba8_t;
|
|
|
|
|
|
|
|
#ifdef GIMP_COMPOSIE_16BIT
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint16 v;
|
|
|
|
} gimp_v16_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint16 v;
|
|
|
|
guint16 a;
|
|
|
|
} gimp_va16_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint16 r;
|
|
|
|
guint16 g;
|
|
|
|
guint16 b;
|
|
|
|
} gimp_rgb16_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint16 r;
|
|
|
|
guint16 g;
|
|
|
|
guint16 b;
|
|
|
|
guint16 a;
|
|
|
|
} gimp_rgba16_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef GIMP_COMPOSIE_32BIT
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint32 v;
|
|
|
|
} gimp_v32_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint32 v;
|
|
|
|
guint32 a;
|
|
|
|
} gimp_va32_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint32 r;
|
|
|
|
guint32 g;
|
|
|
|
guint32 b;
|
|
|
|
} gimp_rgb32_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint32 r;
|
|
|
|
guint32 g;
|
|
|
|
guint32 b;
|
|
|
|
guint32 a;
|
|
|
|
} gimp_rgba32_t;
|
|
|
|
#endif
|
|
|
|
|
2003-10-25 14:39:00 +08:00
|
|
|
extern void gimp_composite_regression_print_vector (guchar vector[],
|
2006-04-12 20:49:29 +08:00
|
|
|
GimpPixelFormat format,
|
|
|
|
gulong n_pixels);
|
2003-10-25 14:39:00 +08:00
|
|
|
|
|
|
|
extern void gimp_composite_regression_print_vector_v8 (gimp_v8_t v[],
|
2006-04-12 20:49:29 +08:00
|
|
|
unsigned int n_pixels);
|
2003-10-25 14:39:00 +08:00
|
|
|
|
|
|
|
extern void gimp_composite_regression_print_vector_va8 (gimp_va8_t v[],
|
2006-04-12 20:49:29 +08:00
|
|
|
unsigned int n_pixels);
|
2003-10-25 14:39:00 +08:00
|
|
|
|
|
|
|
extern void gimp_composite_regression_print_vector_rgb8 (gimp_rgb8_t v[],
|
2006-04-12 20:49:29 +08:00
|
|
|
unsigned int n_pixels);
|
2003-10-25 14:39:00 +08:00
|
|
|
|
|
|
|
extern void gimp_composite_regression_print_vector_rgba8 (gimp_rgba8_t v[],
|
2006-04-12 20:49:29 +08:00
|
|
|
unsigned int n_pixels);
|
2003-10-25 14:39:00 +08:00
|
|
|
|
|
|
|
|
2006-08-22 23:55:40 +08:00
|
|
|
extern double gimp_composite_regression_time_function (gulong iterations,
|
2006-04-12 20:49:29 +08:00
|
|
|
void (*func)(),
|
|
|
|
GimpCompositeContext *ctx);
|
app/composite/gimp-composite.h app/composite/gimp-composite-generic.h
* app/composite/gimp-composite.h
* app/composite/gimp-composite-generic.h
* app/composite/gimp-composite-regression.h: Reformatted to include
argument names in function prototypes.
* app/composite/gimp-composite.c
* app/composite/gimp-composite-generic.c
* app/composite/gimp-composite-regression.c: Added gtk-doc templates for functions.
* app/composite/make-install.py: migrated to new (trimmer) code and
removed dead code. Some beautification for generated code.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis,generic}.{c,h}:
All init() functions are also a run-time check and now expected to
return TRUE/FALSE if the particular set of compositing functions can
be used.
* app/composite/gimp-composite.c: No longer has to determine if
the particular set of compositing functions can be used.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-{install,test}.c:
Regenerated
* app/composite/test-composite.c: Deprecated, removed. All tests are automatically
generated and the code is in app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-test.c:
* app/composite/Makefile.am: removed unused references to test-composite.c
2003-10-12 08:10:21 +08:00
|
|
|
extern int gimp_composite_regression_comp_rgba8 (char *str,
|
2006-04-12 20:49:29 +08:00
|
|
|
gimp_rgba8_t *rgba8A,
|
|
|
|
gimp_rgba8_t *rgba8B,
|
|
|
|
gimp_rgba8_t *expected,
|
|
|
|
gimp_rgba8_t *actual,
|
2006-08-22 23:55:40 +08:00
|
|
|
gulong length);
|
app/composite/gimp-composite.h app/composite/gimp-composite-generic.h
* app/composite/gimp-composite.h
* app/composite/gimp-composite-generic.h
* app/composite/gimp-composite-regression.h: Reformatted to include
argument names in function prototypes.
* app/composite/gimp-composite.c
* app/composite/gimp-composite-generic.c
* app/composite/gimp-composite-regression.c: Added gtk-doc templates for functions.
* app/composite/make-install.py: migrated to new (trimmer) code and
removed dead code. Some beautification for generated code.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis,generic}.{c,h}:
All init() functions are also a run-time check and now expected to
return TRUE/FALSE if the particular set of compositing functions can
be used.
* app/composite/gimp-composite.c: No longer has to determine if
the particular set of compositing functions can be used.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-{install,test}.c:
Regenerated
* app/composite/test-composite.c: Deprecated, removed. All tests are automatically
generated and the code is in app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-test.c:
* app/composite/Makefile.am: removed unused references to test-composite.c
2003-10-12 08:10:21 +08:00
|
|
|
extern int gimp_composite_regression_comp_va8 (char *str,
|
2006-04-12 20:49:29 +08:00
|
|
|
gimp_va8_t *va8A,
|
|
|
|
gimp_va8_t *va8B,
|
|
|
|
gimp_va8_t *expected,
|
|
|
|
gimp_va8_t *actual,
|
2006-08-22 23:55:40 +08:00
|
|
|
gulong length);
|
app/composite/gimp-composite.h app/composite/gimp-composite-generic.h
* app/composite/gimp-composite.h
* app/composite/gimp-composite-generic.h
* app/composite/gimp-composite-regression.h: Reformatted to include
argument names in function prototypes.
* app/composite/gimp-composite.c
* app/composite/gimp-composite-generic.c
* app/composite/gimp-composite-regression.c: Added gtk-doc templates for functions.
* app/composite/make-install.py: migrated to new (trimmer) code and
removed dead code. Some beautification for generated code.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis,generic}.{c,h}:
All init() functions are also a run-time check and now expected to
return TRUE/FALSE if the particular set of compositing functions can
be used.
* app/composite/gimp-composite.c: No longer has to determine if
the particular set of compositing functions can be used.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-{install,test}.c:
Regenerated
* app/composite/test-composite.c: Deprecated, removed. All tests are automatically
generated and the code is in app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-test.c:
* app/composite/Makefile.am: removed unused references to test-composite.c
2003-10-12 08:10:21 +08:00
|
|
|
extern int gimp_composite_regression_compare_contexts (char *,
|
2006-04-12 20:49:29 +08:00
|
|
|
GimpCompositeContext *ctx1,
|
|
|
|
GimpCompositeContext *ctx2);
|
app/composite/gimp-composite.h app/composite/gimp-composite-generic.h
* app/composite/gimp-composite.h
* app/composite/gimp-composite-generic.h
* app/composite/gimp-composite-regression.h: Reformatted to include
argument names in function prototypes.
* app/composite/gimp-composite.c
* app/composite/gimp-composite-generic.c
* app/composite/gimp-composite-regression.c: Added gtk-doc templates for functions.
* app/composite/make-install.py: migrated to new (trimmer) code and
removed dead code. Some beautification for generated code.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis,generic}.{c,h}:
All init() functions are also a run-time check and now expected to
return TRUE/FALSE if the particular set of compositing functions can
be used.
* app/composite/gimp-composite.c: No longer has to determine if
the particular set of compositing functions can be used.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-{install,test}.c:
Regenerated
* app/composite/test-composite.c: Deprecated, removed. All tests are automatically
generated and the code is in app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-test.c:
* app/composite/Makefile.am: removed unused references to test-composite.c
2003-10-12 08:10:21 +08:00
|
|
|
extern void gimp_composite_regression_dump_rgba8 (char *str,
|
2006-04-12 20:49:29 +08:00
|
|
|
gimp_rgba8_t *rgba,
|
2006-08-22 23:55:40 +08:00
|
|
|
gulong n_pixels);
|
app/composite/gimp-composite.h app/composite/gimp-composite-generic.h
* app/composite/gimp-composite.h
* app/composite/gimp-composite-generic.h
* app/composite/gimp-composite-regression.h: Reformatted to include
argument names in function prototypes.
* app/composite/gimp-composite.c
* app/composite/gimp-composite-generic.c
* app/composite/gimp-composite-regression.c: Added gtk-doc templates for functions.
* app/composite/make-install.py: migrated to new (trimmer) code and
removed dead code. Some beautification for generated code.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis,generic}.{c,h}:
All init() functions are also a run-time check and now expected to
return TRUE/FALSE if the particular set of compositing functions can
be used.
* app/composite/gimp-composite.c: No longer has to determine if
the particular set of compositing functions can be used.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-{install,test}.c:
Regenerated
* app/composite/test-composite.c: Deprecated, removed. All tests are automatically
generated and the code is in app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-test.c:
* app/composite/Makefile.am: removed unused references to test-composite.c
2003-10-12 08:10:21 +08:00
|
|
|
extern void gimp_composite_regression_print_rgba8 (gimp_rgba8_t *rgba8);
|
|
|
|
extern void gimp_composite_regression_print_va8 (gimp_va8_t *va8);
|
|
|
|
extern void gimp_composite_regression_timer_report (char *name,
|
2006-04-12 20:49:29 +08:00
|
|
|
double t1,
|
|
|
|
double t2);
|
2003-07-22 07:49:48 +08:00
|
|
|
|
2006-08-22 23:55:40 +08:00
|
|
|
extern gimp_rgba8_t *gimp_composite_regression_random_rgba8 (gulong n_pixels);
|
|
|
|
extern gimp_rgba8_t *gimp_composite_regression_fixed_rgba8 (gulong n_pixels);
|
app/composite/gimp-composite.h app/composite/gimp-composite-generic.h
* app/composite/gimp-composite.h
* app/composite/gimp-composite-generic.h
* app/composite/gimp-composite-regression.h: Reformatted to include
argument names in function prototypes.
* app/composite/gimp-composite.c
* app/composite/gimp-composite-generic.c
* app/composite/gimp-composite-regression.c: Added gtk-doc templates for functions.
* app/composite/make-install.py: migrated to new (trimmer) code and
removed dead code. Some beautification for generated code.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis,generic}.{c,h}:
All init() functions are also a run-time check and now expected to
return TRUE/FALSE if the particular set of compositing functions can
be used.
* app/composite/gimp-composite.c: No longer has to determine if
the particular set of compositing functions can be used.
* app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-{install,test}.c:
Regenerated
* app/composite/test-composite.c: Deprecated, removed. All tests are automatically
generated and the code is in app/composite/gimp-composite-{mmx,sse,sse2,3dnow,altivec,vis}-test.c:
* app/composite/Makefile.am: removed unused references to test-composite.c
2003-10-12 08:10:21 +08:00
|
|
|
extern GimpCompositeContext *gimp_composite_context_init (GimpCompositeContext *ctx,
|
2006-04-12 20:49:29 +08:00
|
|
|
GimpCompositeOperation op,
|
|
|
|
GimpPixelFormat a_format,
|
|
|
|
GimpPixelFormat b_format,
|
|
|
|
GimpPixelFormat d_format,
|
|
|
|
GimpPixelFormat m_format,
|
|
|
|
unsigned long n_pixels,
|
|
|
|
unsigned char *A,
|
|
|
|
unsigned char *B,
|
|
|
|
unsigned char *M,
|
|
|
|
unsigned char *D);
|
2003-08-18 23:05:22 +08:00
|
|
|
#endif
|