You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.7 KiB
73 lines
1.7 KiB
4 months ago
|
/*****************************************************************************/
|
||
|
// Copyright 2006-2009 Adobe Systems Incorporated
|
||
|
// All Rights Reserved.
|
||
|
//
|
||
|
// NOTICE: Adobe permits you to use, modify, and distribute this file in
|
||
|
// accordance with the terms of the Adobe license agreement accompanying it.
|
||
|
/*****************************************************************************/
|
||
|
|
||
|
/* $Id: //mondo/dng_sdk_1_4/dng_sdk/source/dng_bottlenecks.cpp#1 $ */
|
||
|
/* $DateTime: 2012/05/30 13:28:51 $ */
|
||
|
/* $Change: 832332 $ */
|
||
|
/* $Author: tknoll $ */
|
||
|
|
||
|
/*****************************************************************************/
|
||
|
|
||
|
#include "dng_bottlenecks.h"
|
||
|
|
||
|
#include "dng_reference.h"
|
||
|
|
||
|
/*****************************************************************************/
|
||
|
|
||
|
dng_suite gDNGSuite =
|
||
|
{
|
||
|
RefZeroBytes,
|
||
|
RefCopyBytes,
|
||
|
RefSwapBytes16,
|
||
|
RefSwapBytes32,
|
||
|
RefSetArea8,
|
||
|
RefSetArea16,
|
||
|
RefSetArea32,
|
||
|
RefCopyArea8,
|
||
|
RefCopyArea16,
|
||
|
RefCopyArea32,
|
||
|
RefCopyArea8_16,
|
||
|
RefCopyArea8_S16,
|
||
|
RefCopyArea8_32,
|
||
|
RefCopyArea16_S16,
|
||
|
RefCopyArea16_32,
|
||
|
RefCopyArea8_R32,
|
||
|
RefCopyArea16_R32,
|
||
|
RefCopyAreaS16_R32,
|
||
|
RefCopyAreaR32_8,
|
||
|
RefCopyAreaR32_16,
|
||
|
RefCopyAreaR32_S16,
|
||
|
RefRepeatArea8,
|
||
|
RefRepeatArea16,
|
||
|
RefRepeatArea32,
|
||
|
RefShiftRight16,
|
||
|
RefBilinearRow16,
|
||
|
RefBilinearRow32,
|
||
|
RefBaselineABCtoRGB,
|
||
|
RefBaselineABCDtoRGB,
|
||
|
RefBaselineHueSatMap,
|
||
|
RefBaselineRGBtoGray,
|
||
|
RefBaselineRGBtoRGB,
|
||
|
RefBaseline1DTable,
|
||
|
RefBaselineRGBTone,
|
||
|
RefResampleDown16,
|
||
|
RefResampleDown32,
|
||
|
RefResampleAcross16,
|
||
|
RefResampleAcross32,
|
||
|
RefEqualBytes,
|
||
|
RefEqualArea8,
|
||
|
RefEqualArea16,
|
||
|
RefEqualArea32,
|
||
|
RefVignetteMask16,
|
||
|
RefVignette16,
|
||
|
RefVignette32,
|
||
|
RefMapArea16
|
||
|
};
|
||
|
|
||
|
/*****************************************************************************/
|