patches into cvs we go.

SVN revision: 29708
This commit is contained in:
Carsten Haitzler 2007-04-24 11:16:24 +00:00
parent db70aa52ac
commit 970bc1e2a1
3 changed files with 285 additions and 0 deletions

View File

@ -11,3 +11,4 @@ Jose O Gonzalez <jose_ogp@juno.com>
Bernhard Nemec <Bernhard.Nemec@viasyshc.com>
Jorge Luis Zapata Muga <jorgeluis.zapata@gmail.com>
Cedric Bail <cedric.bail@free.fr>
Gustavo Sverzut Barbieri <barbieri@gmail.com>

View File

@ -1256,6 +1256,29 @@ AC_ARG_ENABLE(small-dither-mask,
]
)
#######################################
## No dither mask at all for 16bpp
conv_no_dither="no"
conv_no_dither="no"
AC_MSG_CHECKING(whether to build without dither mask for 16bpp)
AC_ARG_ENABLE(no-dither-mask,
[ --enable-no-dither-mask enable conversion to 16bpp without dither mask], [
if test x"$enableval" = x"yes" ; then
AC_MSG_RESULT(yes)
AC_DEFINE(BUILD_NO_DITHER_MASK, 1, [No Dither Mask Support])
conv_no_dither="yes"
else
AC_MSG_RESULT(no)
conv_no_dither="no"
fi
], [
AC_MSG_RESULT($conv_no_dither)
if test x"$conv_no_dither" = x"yes" ; then
AC_DEFINE(BUILD_NO_DITHER_MASK, 1, [No Dither Mask Support])
fi
]
)
#######################################
## Convert to 8bpp RGB 332
conv_8_rgb_332="no"
@ -2049,6 +2072,7 @@ echo " YUV Converter...........: $conv_yuv"
echo
echo "ARGB Conversion Options:"
echo " Smaller Dither Mask.....: $conv_small_dither"
echo " No Dither Mask for 16bpp: $conv_no_dither"
echo " 8bpp RGB 332............: $conv_8_rgb_332"
echo " 8bpp RGB 666............: $conv_8_rgb_666"
echo " 8bpp RGB 232............: $conv_8_rgb_232"

File diff suppressed because it is too large Load Diff