Cycles: OSL build fixes, based on patch from erwin94.

This commit is contained in:
Brecht Van Lommel
2011-05-14 09:42:02 +00:00
parent 922bb24865
commit fd5937fd1f
5 changed files with 54 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ SET(headers
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${RTTI_DISABLE_FLAGS}")
ADD_LIBRARY(kernel_osl ${sources} ${headers})
ADD_LIBRARY(cycles_kernel_osl ${sources} ${headers})
ADD_SUBDIRECTORY(nodes)

View File

@@ -0,0 +1,50 @@
/*
* 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.
*/
/* Color Management */
float color_srgb_to_scene_linear(float c)
{
if(c < 0.04045)
return (c < 0.0)? 0.0: c * (1.0/12.92);
else
return pow((c + 0.055)*(1.0/1.055), 2.4);
}
float color_scene_linear_to_srgb(float c)
{
if(c < 0.0031308)
return (c < 0.0)? 0.0: c * 12.92;
else
return 1.055 * pow(c, 1.0/2.4) - 0.055;
}
color color_srgb_to_scene_linear(color c)
{
return color(
color_srgb_to_scene_linear(c[0]),
color_srgb_to_scene_linear(c[1]),
color_srgb_to_scene_linear(c[2]));
}
color color_scene_linear_to_srgb(color c)
{
return color(
color_scene_linear_to_srgb(c[0]),
color_scene_linear_to_srgb(c[1]),
color_scene_linear_to_srgb(c[2]));
}

View File

@@ -17,6 +17,7 @@
*/
#include "stdosl.h"
#include "node_color.h"
shader node_environment_texture(
vector Vector = P,

View File

@@ -17,6 +17,7 @@
*/
#include "stdosl.h"
#include "node_color.h"
shader node_image_texture(
point Vector = P,

View File

@@ -31,7 +31,7 @@
CCL_NAMESPACE_BEGIN
tls_ptr(ThreadData, OSLGlobals::thread_data);
tls_ptr(OSLGlobals::ThreadData, OSLGlobals::thread_data);
/* Threads */