mirror of https://github.com/GNOME/gimp.git
25 lines
741 B
C
25 lines
741 B
C
#ifndef gimp_composite_3dnow_h
|
|
#define gimp_composite_3dnow_h
|
|
|
|
extern gboolean gimp_composite_3dnow_init (void);
|
|
|
|
/*
|
|
* The function gimp_composite_*_install() is defined in the code generated by make-install.py
|
|
* I hate to create a .h file just for that declaration, so I do it here (for now).
|
|
*/
|
|
extern gboolean gimp_composite_3dnow_install (void);
|
|
|
|
#if !defined(__INTEL_COMPILER)
|
|
#if defined(USE_MMX)
|
|
#if defined(ARCH_X86)
|
|
#if __GNUC__ >= 3
|
|
#if defined(ARCH_X86_64) || (!defined(PIC) && !defined(__PIC__))
|
|
#define COMPILE_3DNOW_IS_OKAY (1)
|
|
#endif /* ARCH_X86_64 || (!defined(PIC) && !defined(__PIC__)) */
|
|
#endif /* __GNUC__ > 3 */
|
|
#endif /* ARCH_X86 */
|
|
#endif /* USE_MMX */
|
|
#endif /* !defined(__INTEL_COMPILER) */
|
|
|
|
#endif
|