Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/imbuf/intern/openexr/openexr_api.cpp')
-rw-r--r--source/blender/imbuf/intern/openexr/openexr_api.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/openexr/openexr_api.cpp b/source/blender/imbuf/intern/openexr/openexr_api.cpp
index 979e7703e81..2a9cb9af891 100644
--- a/source/blender/imbuf/intern/openexr/openexr_api.cpp
+++ b/source/blender/imbuf/intern/openexr/openexr_api.cpp
@@ -1108,7 +1108,7 @@ void IMB_exr_write_channels(void *handle)
const size_t num_pixels = ((size_t)data->width) * data->height;
half *rect_half = nullptr, *current_rect_half = nullptr;
- /* We allocate teporary storage for half pixels for all the channels at once. */
+ /* We allocate temporary storage for half pixels for all the channels at once. */
if (data->num_half_channels != 0) {
rect_half = (half *)MEM_mallocN(sizeof(half) * data->num_half_channels * num_pixels,
__func__);
@@ -1235,7 +1235,7 @@ void IMB_exr_read_channels(void *handle)
Header header = in.header();
Box2i dw = header.dataWindow();
- /* Insert all matching channel into framebuffer. */
+ /* Insert all matching channel into frame-buffer. */
FrameBuffer frameBuffer;
ExrChannel *echan;