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 'intern/cycles/render/osl.h')
-rw-r--r--intern/cycles/render/osl.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/intern/cycles/render/osl.h b/intern/cycles/render/osl.h
index ac985a84eef..110897ff300 100644
--- a/intern/cycles/render/osl.h
+++ b/intern/cycles/render/osl.h
@@ -129,13 +129,7 @@ public:
void parameter(const char *name, const Transform& tfm);
void parameter_array(const char *name, const float f[], int arraylen);
- void parameter_color_array(const char *name, const float f[][3], int arraylen);
- void parameter_vector_array(const char *name, const float f[][3], int arraylen);
- void parameter_normal_array(const char *name, const float f[][3], int arraylen);
- void parameter_point_array(const char *name, const float f[][3], int arraylen);
- void parameter_array(const char *name, const int f[], int arraylen);
- void parameter_array(const char *name, const char * const s[], int arraylen);
- void parameter_array(const char *name, const Transform tfm[], int arraylen);
+ void parameter_color_array(const char *name, const array<float3>& f);
ShaderType output_type() { return current_type; }