mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-13 12:20:10 +00:00
33e963e7af
2000-01-05 Owen Taylor <otaylor@redhat.com> * gdk-pixbuf/pixops/: Directory full of pixel data scaling code that will eventually migrate into libart. * configure.in acconfig.h: Add checks for MMX compiler support * gdk-pixbuf/gdk-pixbuf.h gdk-pixbuf/gdk-pixbuf-scale.c: Nice wrapper routines for the code in pixops that operate on pixbufs instead of raw data. * gdk-pixbuf/testpixbuf-scale: Test program for scaling routines.
23 lines
407 B
Makefile
23 lines
407 B
Makefile
noinst_LTLIBRARIES = libpixops.la
|
|
|
|
INCLUDES = $(GLIB_CFLAGS)
|
|
|
|
bin_PROGRAMS = timescale
|
|
|
|
timescale_SOURCES = timescale.c
|
|
timescale_LDADD = libpixops.la $(GLIB_LIBS)
|
|
|
|
if USE_MMX
|
|
mmx_sources = \
|
|
have_mmx.S \
|
|
scale_line_22_33_mmx.S \
|
|
composite_line_22_4a4_mmx.S \
|
|
composite_line_color_22_4a4_mmx.S
|
|
endif
|
|
|
|
libpixops_la_SOURCES = \
|
|
pixops.c \
|
|
pixops.h \
|
|
pixops-internal.h \
|
|
$(mmx_sources)
|