2011-04-27 11:58:34 +00:00
|
|
|
/*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Copyright 2011-2013 Blender Foundation
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License
|
2011-04-27 11:58:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_device float4 film_map(KernelGlobals *kg, float4 irradiance, float scale)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
2011-08-28 13:55:59 +00:00
|
|
|
float exposure = kernel_data.film.exposure;
|
2011-04-27 11:58:34 +00:00
|
|
|
float4 result = irradiance*scale;
|
|
|
|
|
2011-08-28 13:55:59 +00:00
|
|
|
/* conversion to srgb */
|
|
|
|
result.x = color_scene_linear_to_srgb(result.x*exposure);
|
|
|
|
result.y = color_scene_linear_to_srgb(result.y*exposure);
|
|
|
|
result.z = color_scene_linear_to_srgb(result.z*exposure);
|
|
|
|
|
|
|
|
/* clamp since alpha might be > 1.0 due to russian roulette */
|
|
|
|
result.w = clamp(result.w, 0.0f, 1.0f);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_device uchar4 film_float_to_byte(float4 color)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
|
|
|
uchar4 result;
|
|
|
|
|
|
|
|
/* simple float to byte conversion */
|
2011-05-03 18:29:11 +00:00
|
|
|
result.x = (uchar)clamp(color.x*255.0f, 0.0f, 255.0f);
|
|
|
|
result.y = (uchar)clamp(color.y*255.0f, 0.0f, 255.0f);
|
|
|
|
result.z = (uchar)clamp(color.z*255.0f, 0.0f, 255.0f);
|
2011-08-28 13:55:59 +00:00
|
|
|
result.w = (uchar)clamp(color.w*255.0f, 0.0f, 255.0f);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_device void kernel_film_convert_to_byte(KernelGlobals *kg,
|
|
|
|
ccl_global uchar4 *rgba, ccl_global float *buffer,
|
2013-08-30 23:49:38 +00:00
|
|
|
float sample_scale, int x, int y, int offset, int stride)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
Cycles: Render Passes
Currently supported passes:
* Combined, Z, Normal, Object Index, Material Index, Emission, Environment,
Diffuse/Glossy/Transmission x Direct/Indirect/Color
Not supported yet:
* UV, Vector, Mist
Only enabled for CPU devices at the moment, will do GPU tweaks tommorrow,
also for environment importance sampling.
Documentation:
http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Cycles/Passes
2012-01-25 17:23:52 +00:00
|
|
|
/* buffer offset */
|
2011-12-20 12:25:37 +00:00
|
|
|
int index = offset + x + y*stride;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
Cycles: Render Passes
Currently supported passes:
* Combined, Z, Normal, Object Index, Material Index, Emission, Environment,
Diffuse/Glossy/Transmission x Direct/Indirect/Color
Not supported yet:
* UV, Vector, Mist
Only enabled for CPU devices at the moment, will do GPU tweaks tommorrow,
also for environment importance sampling.
Documentation:
http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Cycles/Passes
2012-01-25 17:23:52 +00:00
|
|
|
rgba += index;
|
|
|
|
buffer += index*kernel_data.film.pass_stride;
|
|
|
|
|
|
|
|
/* map colors */
|
2013-11-15 23:17:10 +00:00
|
|
|
float4 irradiance = *((ccl_global float4*)buffer);
|
2013-08-30 23:49:38 +00:00
|
|
|
float4 float_result = film_map(kg, irradiance, sample_scale);
|
2011-04-27 11:58:34 +00:00
|
|
|
uchar4 byte_result = film_float_to_byte(float_result);
|
|
|
|
|
Cycles: Render Passes
Currently supported passes:
* Combined, Z, Normal, Object Index, Material Index, Emission, Environment,
Diffuse/Glossy/Transmission x Direct/Indirect/Color
Not supported yet:
* UV, Vector, Mist
Only enabled for CPU devices at the moment, will do GPU tweaks tommorrow,
also for environment importance sampling.
Documentation:
http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Cycles/Passes
2012-01-25 17:23:52 +00:00
|
|
|
*rgba = byte_result;
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_device void kernel_film_convert_to_half_float(KernelGlobals *kg,
|
|
|
|
ccl_global uchar4 *rgba, ccl_global float *buffer,
|
2013-08-30 23:49:38 +00:00
|
|
|
float sample_scale, int x, int y, int offset, int stride)
|
|
|
|
{
|
|
|
|
/* buffer offset */
|
|
|
|
int index = offset + x + y*stride;
|
|
|
|
|
2013-11-15 23:17:10 +00:00
|
|
|
ccl_global float4 *in = (ccl_global float4*)(buffer + index*kernel_data.film.pass_stride);
|
|
|
|
ccl_global half *out = (ccl_global half*)rgba + index*4;
|
2013-08-30 23:49:38 +00:00
|
|
|
|
2013-10-28 19:01:01 +00:00
|
|
|
float exposure = kernel_data.film.exposure;
|
|
|
|
|
2014-02-27 10:49:21 +00:00
|
|
|
float4 rgba_in = *in;
|
2013-10-28 19:01:01 +00:00
|
|
|
|
2014-02-10 13:19:26 +00:00
|
|
|
if(exposure != 1.0f) {
|
|
|
|
rgba_in.x *= exposure;
|
|
|
|
rgba_in.y *= exposure;
|
|
|
|
rgba_in.z *= exposure;
|
2013-10-28 19:01:01 +00:00
|
|
|
}
|
2014-02-10 13:19:26 +00:00
|
|
|
|
2014-02-27 10:49:21 +00:00
|
|
|
float4_store_half(out, rgba_in, sample_scale);
|
2013-08-30 23:49:38 +00:00
|
|
|
}
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
CCL_NAMESPACE_END
|
|
|
|
|