43 lines
1.5 KiB
C
Executable File
43 lines
1.5 KiB
C
Executable File
/* Copyright (c) 2006 NVIDIA Corporation. All rights reserved.
|
|
*
|
|
* NVIDIA Corporation and its licensors retain all intellectual property
|
|
* and proprietary rights in and to this software, related documentation
|
|
* and any modifications thereto. Any use, reproduction, disclosure or
|
|
* distribution of this software and related documentation without an
|
|
* express license agreement from NVIDIA Corporation is strictly prohibited.
|
|
*/
|
|
|
|
/** @file GFVxError.h
|
|
GFVxAPI error codes
|
|
*/
|
|
|
|
#ifndef __GFVXERROR_H__
|
|
#define __GFVXERROR_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
#define GFVX_ERROR_GET_COMPONENT (GFVX_ERROR | 0x00000001L)
|
|
/** GFVxAPI error code: Function not supported. */
|
|
#define GFVX_ERROR_NO_SUPPORT (GFVX_ERROR | 0x00000002L)
|
|
#define GFVX_ERROR_COLORFORMAT_NOT_SUPPORTED (GFVX_ERROR | 0x00000003L)
|
|
#define GFVX_ERROR_SURFACETYPE_NOT_SUPPORTED (GFVX_ERROR | 0x00000004L)
|
|
#define GFVX_ERROR_ILLEGAL_ALPHA_VALUE (GFVX_ERROR | 0x00000005L)
|
|
#define GFVX_ERROR_ILLEGAL_BAYER_VALUES (GFVX_ERROR | 0x00000006L)
|
|
#define GFVX_ERROR_ILLEGAL_PARAMETER (GFVX_ERROR | 0x00000007L)
|
|
#define GFVX_ERROR_DRIVER_NOT_SUPPORTED (GFVX_ERROR | 0x00000008L)
|
|
#define GFVX_ERROR_FLAG_NOT_SUPPORTED (GFVX_ERROR | 0x00000009L)
|
|
#define GFVX_ERROR_FAIL_ALLOCATE_MEMORY (GFVX_ERROR | 0x0000000AL)
|
|
#define GFVX_ERROR_ILLEGAL_VALUE (GFVX_ERROR | 0x0000000BL)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __GFVXERROR_H__
|
|
|
|
|
|
|