~ubuntu-branches/ubuntu/hoary/gimp/hoary

« back to all changes in this revision

Viewing changes to app/composite/gimp-composite-3dnow.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-04-04 14:51:23 UTC
  • Revision ID: james.westby@ubuntu.com-20050404145123-9py049eeelfymur8
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef gimp_composite_3dnow_h
 
2
#define gimp_composite_3dnow_h
 
3
 
 
4
extern gboolean gimp_composite_3dnow_init (void);
 
5
 
 
6
/*
 
7
        * The function gimp_composite_*_install() is defined in the code generated by make-install.py
 
8
        * I hate to create a .h file just for that declaration, so I do it here (for now).
 
9
 */
 
10
extern gboolean gimp_composite_3dnow_install (void);
 
11
 
 
12
#if !defined(__INTEL_COMPILER)
 
13
#if defined(USE_MMX)
 
14
#if defined(ARCH_X86)
 
15
#if __GNUC__ >= 3
 
16
#if defined(ARCH_X86_64) || !defined(PIC)
 
17
#define COMPILE_3DNOW_IS_OKAY (1)
 
18
#endif /* ARCH_X86_64 || !PIC */
 
19
#endif /* __GNUC__ > 3 */
 
20
#endif /* ARCH_X86 */
 
21
#endif  /* USE_MMX */
 
22
#endif /* !defined(__INTEL_COMPILER) */
 
23
 
 
24
#endif