HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PXL_CEUtil.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: PXL_CEUtil.h (PXL Library, C++)
7  *
8  * COMMENTS: Utilities that bridge the gap between PXL and CE. By adding
9  * functions here, we can avoid having to import cl.hpp every time
10  * PXL_Common is imported.
11  */
12 
13 #ifndef __PXL_CEUtil_h__
14 #define __PXL_CEUtil_h__
15 
16 #include "PXL_API.h"
17 
18 #include "PXL_Common.h"
19 
20 #include <CE/CE_Image.h>
21 
22 /// Convert format into storage and return whether it was successfully converted
25 
26 /// Convert storage into format and return whether it was successfully converted
29 
30 #endif
getFileOption("OpenEXR:storage") storage
Definition: HDK_Image.dox:276
#define PXL_API
Definition: PXL_API.h:10
PXL_API bool PXLgetStorageTypeFromDataFormat(const PXL_DataFormat format, CE_Image::StorageType &storage)
Convert format into storage and return whether it was successfully converted.
GLint GLint GLsizei GLint GLenum format
Definition: glcorearb.h:108
PXL_DataFormat
Definition: PXL_Common.h:20
StorageType
Definition: CE_Image.h:27
PXL_API bool PXLgetDataFormatFromStorageType(const CE_Image::StorageType storage, PXL_DataFormat &format)
Convert storage into format and return whether it was successfully converted.