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
path: root/intern
diff options
context:
space:
mode:
authorLukas Toenne <lukas.toenne@googlemail.com>2012-09-15 22:08:51 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2012-09-15 22:08:51 +0400
commitd9788e4fa4cf43c140d1a7ac6bad2c6bb0501ba9 (patch)
tree9d0d6db50150aa4eb2a8290ee95eba2b7a5deaf9 /intern
parentf4b7a8a545e7b65da52fec2a244f46c23d6057f3 (diff)
Yet another OSL fix: Some functions are missing stubs that were not used in old OSL implementation yet.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/render/osl.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/intern/cycles/render/osl.cpp b/intern/cycles/render/osl.cpp
index b104135b38d..6d23097d7a8 100644
--- a/intern/cycles/render/osl.cpp
+++ b/intern/cycles/render/osl.cpp
@@ -573,6 +573,14 @@ void OSLCompiler::parameter_vector(const char *name, float3 f)
{
}
+void OSLCompiler::parameter_point(const char *name, float3 f)
+{
+}
+
+void OSLCompiler::parameter_normal(const char *name, float3 f)
+{
+}
+
void OSLCompiler::parameter(const char *name, int f)
{
}