Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_OutputFileOperation.h
| Show All 10 Lines | |||||
| * | * | ||||
| * You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | ||||
| * along with this program; if not, write to the Free Software Foundation, | * along with this program; if not, write to the Free Software Foundation, | ||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| * | * | ||||
| * Copyright 2011, Blender Foundation. | * Copyright 2011, Blender Foundation. | ||||
| */ | */ | ||||
| #ifndef __COM_OUTPUTFILEOPERATION_H__ | #pragma once | ||||
| #define __COM_OUTPUTFILEOPERATION_H__ | |||||
| #include "COM_NodeOperation.h" | #include "COM_NodeOperation.h" | ||||
| #include "BLI_path_util.h" | #include "BLI_path_util.h" | ||||
| #include "BLI_rect.h" | #include "BLI_rect.h" | ||||
| #include "DNA_color_types.h" | #include "DNA_color_types.h" | ||||
| #include "intern/openexr/openexr_multi.h" | #include "intern/openexr/openexr_multi.h" | ||||
| ▲ Show 20 Lines • Show All 106 Lines • ▼ Show 20 Lines | void add_exr_channels(void *exrhandle, | ||||
| const size_t width, | const size_t width, | ||||
| bool use_half_float, | bool use_half_float, | ||||
| float *buf); | float *buf); | ||||
| void free_exr_channels(void *exrhandle, | void free_exr_channels(void *exrhandle, | ||||
| const RenderData *rd, | const RenderData *rd, | ||||
| const char *layerName, | const char *layerName, | ||||
| const DataType datatype); | const DataType datatype); | ||||
| int get_datatype_size(DataType datatype); | int get_datatype_size(DataType datatype); | ||||
| #endif | |||||