mirror of https://github.com/GNOME/gimp.git
34 lines
580 B
C
34 lines
580 B
C
/* THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT */
|
|
/* REGENERATE BY USING make-installer.py */
|
|
#include "config.h"
|
|
#include <glib-object.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include "base/base-types.h"
|
|
#include "base/cpu-accel.h"
|
|
#include "gimp-composite.h"
|
|
|
|
#include "gimp-composite-3dnow.h"
|
|
|
|
|
|
gboolean
|
|
gimp_composite_3dnow_install (void)
|
|
{
|
|
/* nothing to do */
|
|
|
|
return (FALSE);
|
|
}
|
|
|
|
gboolean
|
|
gimp_composite_3dnow_init (void)
|
|
{
|
|
#if defined(COMPILE_3DNOW_IS_OKAY)
|
|
if (cpu_accel () & CPU_ACCEL_X86_3DNOW)
|
|
{
|
|
return (TRUE);
|
|
}
|
|
#endif
|
|
|
|
return (FALSE);
|
|
}
|