blob: 166d5ca381576fd2722390b7fdea00d40ba961c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# liboutplugin - Makefile.am
INCLUDES = $(all_includes)
EXTRA_DIST = ditherDef.h ditherMMX.h \
ditherer_mmx16.cpp dither32mmx.cpp
noinst_LTLIBRARIES = libdither.la
noinst_HEADERS = ditherWrapper.h \
dither8Bit.h colorTable8Bit.h \
colorTableHighBit.h dither16Bit.h \
dither32Bit.h ditherRGB_flipped.h \
ditherRGB.h
libdither_la_SOURCES = ditherWrapper.cpp \
dither8Bit.cpp \
colorTable8Bit.cpp colorTableHighBit.cpp \
dither16Bit.cpp dither32Bit.cpp \
ditherRGB_flipped.cpp ditherRGB.cpp \
ditherer_mmx16.cpp dither32mmx.cpp
|