ilXint.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these librararies and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /* $XConsortium: ilXint.h /main/3 1995/10/23 15:41:15 rswiston $ */
  24. #ifndef ILXINT_H
  25. #define ILXINT_H
  26. /* PRIVATE definitions shared between /ilc/ilX.c and /ilc/ilXycbcr.c .
  27. NO OTHER CODE SHOULD INCLUDE THIS FILE !
  28. */
  29. /* Called by ilConvertForXWrite() to do fast dithered display of YCbCr.
  30. The pipe image must be planar, subsampled by 2 in Cb/Cr, 1 in Y.
  31. "pMapPixels" points to 256 bytes from the XWC map image, which are folded
  32. into the lookup table used for this function.
  33. */
  34. IL_EXTERN ilBool _ilFastYCbCrDither (
  35. ilPipe pipe,
  36. ilImageDes *pDes,
  37. ilPipeInfo *pInfo,
  38. int nBitsRed,
  39. int nBitsGreen,
  40. int nBitsBlue,
  41. ilBool doDouble,
  42. ilPtr pMapPixels
  43. );
  44. #endif