2012-01-05 17:50:09 +00:00
|
|
|
/*
|
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2007 Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
|
*
|
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
|
*
|
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** \file blender/render/intern/include/render_result.h
|
|
|
|
|
* \ingroup render
|
|
|
|
|
*/
|
|
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#ifndef __RENDER_RESULT_H__
|
|
|
|
|
#define __RENDER_RESULT_H__
|
2012-01-05 17:50:09 +00:00
|
|
|
|
|
|
|
|
#define PASS_VECTOR_MAX 10000.0f
|
|
|
|
|
|
|
|
|
|
#define RR_USE_MEM 0
|
|
|
|
|
#define RR_USE_EXR 1
|
|
|
|
|
|
2012-09-04 13:29:07 +00:00
|
|
|
#define RR_ALL_LAYERS NULL
|
|
|
|
|
|
2012-01-05 17:50:09 +00:00
|
|
|
struct ImBuf;
|
|
|
|
|
struct ListBase;
|
|
|
|
|
struct Render;
|
|
|
|
|
struct RenderData;
|
|
|
|
|
struct RenderLayer;
|
|
|
|
|
struct RenderResult;
|
|
|
|
|
struct Scene;
|
|
|
|
|
struct rcti;
|
Color Management, Stage 2: Switch color pipeline to use OpenColorIO
Replace old color pipeline which was supporting linear/sRGB color spaces
only with OpenColorIO-based pipeline.
This introduces two configurable color spaces:
- Input color space for images and movie clips. This space is used to convert
images/movies from color space in which file is saved to Blender's linear
space (for float images, byte images are not internally converted, only input
space is stored for such images and used later).
This setting could be found in image/clip data block settings.
- Display color space which defines space in which particular display is working.
This settings could be found in scene's Color Management panel.
When render result is being displayed on the screen, apart from converting image
to display space, some additional conversions could happen.
This conversions are:
- View, which defines tone curve applying before display transformation.
These are different ways to view the image on the same display device.
For example it could be used to emulate film view on sRGB display.
- Exposure affects on image exposure before tone map is applied.
- Gamma is post-display gamma correction, could be used to match particular
display gamma.
- RGB curves are user-defined curves which are applying before display
transformation, could be used for different purposes.
All this settings by default are only applying on render result and does not
affect on other images. If some particular image needs to be affected by this
transformation, "View as Render" setting of image data block should be set to
truth. Movie clips are always affected by all display transformations.
This commit also introduces configurable color space in which sequencer is
working. This setting could be found in scene's Color Management panel and
it should be used if such stuff as grading needs to be done in color space
different from sRGB (i.e. when Film view on sRGB display is use, using VD16
space as sequencer's internal space would make grading working in space
which is close to the space using for display).
Some technical notes:
- Image buffer's float buffer is now always in linear space, even if it was
created from 16bit byte images.
- Space of byte buffer is stored in image buffer's rect_colorspace property.
- Profile of image buffer was removed since it's not longer meaningful.
- OpenGL and GLSL is supposed to always work in sRGB space. It is possible
to support other spaces, but it's quite large project which isn't so
much important.
- Legacy Color Management option disabled is emulated by using None display.
It could have some regressions, but there's no clear way to avoid them.
- If OpenColorIO is disabled on build time, it should make blender behaving
in the same way as previous release with color management enabled.
More details could be found at this page (more details would be added soon):
http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.64/Color_Management
--
Thanks to Xavier Thomas, Lukas Toene for initial work on OpenColorIO
integration and to Brecht van Lommel for some further development and code/
usecase review!
2012-09-15 10:05:07 +00:00
|
|
|
struct ColorManagedDisplaySettings;
|
|
|
|
|
struct ColorManagedViewSettings;
|
2012-01-05 17:50:09 +00:00
|
|
|
|
|
|
|
|
/* New */
|
|
|
|
|
|
|
|
|
|
struct RenderResult *render_result_new(struct Render *re,
|
2012-09-04 13:29:07 +00:00
|
|
|
struct rcti *partrct, int crop, int savebuffers, const char *layername);
|
2012-01-05 17:50:09 +00:00
|
|
|
struct RenderResult *render_result_new_full_sample(struct Render *re,
|
|
|
|
|
struct ListBase *lb, struct rcti *partrct, int crop, int savebuffers);
|
|
|
|
|
|
2014-04-01 11:34:00 +11:00
|
|
|
struct RenderResult *render_result_new_from_exr(void *exrhandle, const char *colorspace, bool predivide, int rectx, int recty);
|
2012-01-05 17:50:09 +00:00
|
|
|
|
|
|
|
|
/* Merge */
|
|
|
|
|
|
|
|
|
|
void render_result_merge(struct RenderResult *rr, struct RenderResult *rrpart);
|
|
|
|
|
|
|
|
|
|
/* Free */
|
|
|
|
|
|
|
|
|
|
void render_result_free(struct RenderResult *rr);
|
|
|
|
|
void render_result_free_list(struct ListBase *lb, struct RenderResult *rr);
|
|
|
|
|
|
|
|
|
|
/* Single Layer Render */
|
|
|
|
|
|
|
|
|
|
void render_result_single_layer_begin(struct Render *re);
|
|
|
|
|
void render_result_single_layer_end(struct Render *re);
|
|
|
|
|
|
|
|
|
|
/* EXR Tile File Render */
|
|
|
|
|
|
|
|
|
|
void render_result_exr_file_begin(struct Render *re);
|
|
|
|
|
void render_result_exr_file_end(struct Render *re);
|
|
|
|
|
|
|
|
|
|
void render_result_exr_file_merge(struct RenderResult *rr, struct RenderResult *rrpart);
|
|
|
|
|
|
2012-09-04 13:29:07 +00:00
|
|
|
void render_result_exr_file_path(struct Scene *scene, const char *layname, int sample, char *filepath);
|
2014-06-28 19:13:54 +02:00
|
|
|
int render_result_exr_file_read_sample(struct Render *re, int sample);
|
2012-09-04 13:29:07 +00:00
|
|
|
int render_result_exr_file_read_path(struct RenderResult *rr, struct RenderLayer *rl_single, const char *filepath);
|
2012-01-05 17:50:09 +00:00
|
|
|
|
2014-06-28 19:13:54 +02:00
|
|
|
/* EXR cache */
|
|
|
|
|
|
|
|
|
|
void render_result_exr_file_cache_write(struct Render *re);
|
|
|
|
|
bool render_result_exr_file_cache_read(struct Render *re);
|
|
|
|
|
|
2012-01-05 17:50:09 +00:00
|
|
|
/* Combined Pixel Rect */
|
|
|
|
|
|
|
|
|
|
struct ImBuf *render_result_rect_to_ibuf(struct RenderResult *rr, struct RenderData *rd);
|
|
|
|
|
void render_result_rect_from_ibuf(struct RenderResult *rr, struct RenderData *rd,
|
|
|
|
|
struct ImBuf *ibuf);
|
|
|
|
|
|
|
|
|
|
void render_result_rect_fill_zero(struct RenderResult *rr);
|
2012-12-31 13:52:13 +00:00
|
|
|
void render_result_rect_get_pixels(struct RenderResult *rr,
|
Color Management, Stage 2: Switch color pipeline to use OpenColorIO
Replace old color pipeline which was supporting linear/sRGB color spaces
only with OpenColorIO-based pipeline.
This introduces two configurable color spaces:
- Input color space for images and movie clips. This space is used to convert
images/movies from color space in which file is saved to Blender's linear
space (for float images, byte images are not internally converted, only input
space is stored for such images and used later).
This setting could be found in image/clip data block settings.
- Display color space which defines space in which particular display is working.
This settings could be found in scene's Color Management panel.
When render result is being displayed on the screen, apart from converting image
to display space, some additional conversions could happen.
This conversions are:
- View, which defines tone curve applying before display transformation.
These are different ways to view the image on the same display device.
For example it could be used to emulate film view on sRGB display.
- Exposure affects on image exposure before tone map is applied.
- Gamma is post-display gamma correction, could be used to match particular
display gamma.
- RGB curves are user-defined curves which are applying before display
transformation, could be used for different purposes.
All this settings by default are only applying on render result and does not
affect on other images. If some particular image needs to be affected by this
transformation, "View as Render" setting of image data block should be set to
truth. Movie clips are always affected by all display transformations.
This commit also introduces configurable color space in which sequencer is
working. This setting could be found in scene's Color Management panel and
it should be used if such stuff as grading needs to be done in color space
different from sRGB (i.e. when Film view on sRGB display is use, using VD16
space as sequencer's internal space would make grading working in space
which is close to the space using for display).
Some technical notes:
- Image buffer's float buffer is now always in linear space, even if it was
created from 16bit byte images.
- Space of byte buffer is stored in image buffer's rect_colorspace property.
- Profile of image buffer was removed since it's not longer meaningful.
- OpenGL and GLSL is supposed to always work in sRGB space. It is possible
to support other spaces, but it's quite large project which isn't so
much important.
- Legacy Color Management option disabled is emulated by using None display.
It could have some regressions, but there's no clear way to avoid them.
- If OpenColorIO is disabled on build time, it should make blender behaving
in the same way as previous release with color management enabled.
More details could be found at this page (more details would be added soon):
http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.64/Color_Management
--
Thanks to Xavier Thomas, Lukas Toene for initial work on OpenColorIO
integration and to Brecht van Lommel for some further development and code/
usecase review!
2012-09-15 10:05:07 +00:00
|
|
|
unsigned int *rect, int rectx, int recty,
|
|
|
|
|
const struct ColorManagedViewSettings *view_settings,
|
|
|
|
|
const struct ColorManagedDisplaySettings *display_settings);
|
2012-01-05 17:50:09 +00:00
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#endif /* __RENDER_RESULT_H__ */
|
2012-01-05 17:50:09 +00:00
|
|
|
|