~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to app/composite/gimp-composite-mmx.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
extern gboolean gimp_composite_mmx_init (void);
5
5
 
6
6
/*
7
 
        * The function gimp_composite_*_install() is defined in the code
8
 
        * generated by make-install.py I hate to have make-install.py create
9
 
        * a .h file just for that declaration, so I do it here.
 
7
        * The function gimp_composite_*_install() is defined in the code
 
8
        * generated by make-install.py I hate to have make-install.py create
 
9
        * a .h file just for that declaration, so I do it here.
10
10
 */
11
11
extern gboolean gimp_composite_mmx_install (void);
12
12
 
13
13
/*
14
14
 * Rummage through the compile-time environment to ensure this file
15
15
 * can actually be compiled like we expect it to.  If all is okay,
16
 
 * define the manifest constant COMPILE_IS_OKAY.
 
16
 * define the manifest constant COMPILE_MMX_IS_OKAY.
17
17
 */
18
18
#if !defined(__INTEL_COMPILER) || defined(USE_INTEL_COMPILER_ANYWAY)
19
19
#if defined(USE_MMX)
33
33
 *
34
34
 */
35
35
extern void gimp_composite_addition_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *ctx);
 
36
extern void gimp_composite_burn_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *ctx);
36
37
extern void gimp_composite_coloronly_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *ctx);
37
38
extern void gimp_composite_darken_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *ctx);
38
39
extern void gimp_composite_difference_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *ctx);
54
55
extern void gimp_composite_subtract_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *ctx);
55
56
extern void gimp_composite_swap_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *ctx);
56
57
extern void gimp_composite_valueonly_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *ctx);
 
58
 
57
59
extern void gimp_composite_addition_va8_va8_va8_mmx (GimpCompositeContext *ctx);
 
60
extern void gimp_composite_subtract_va8_va8_va8_mmx (GimpCompositeContext *ctx);
 
61
/*extern void gimp_composite_multiply_va8_va8_va8_mmx (GimpCompositeContext *ctx);*/
58
62
#endif /* COMPILE_IS_OKAY */
59
63
#endif