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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SHADER_H__
|
|
|
|
#define __SHADER_H__
|
|
|
|
|
|
|
|
#include "attribute.h"
|
|
|
|
#include "kernel_types.h"
|
|
|
|
|
|
|
|
#include "util_map.h"
|
|
|
|
#include "util_param.h"
|
|
|
|
#include "util_string.h"
|
|
|
|
#include "util_types.h"
|
|
|
|
|
2012-11-03 14:32:35 +00:00
|
|
|
#ifdef WITH_OSL
|
|
|
|
#include <OSL/oslexec.h>
|
|
|
|
#endif
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
class Device;
|
|
|
|
class DeviceScene;
|
|
|
|
class Mesh;
|
|
|
|
class Progress;
|
|
|
|
class Scene;
|
|
|
|
class ShaderGraph;
|
2011-05-03 18:29:11 +00:00
|
|
|
struct float3;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
/* Shader describing the appearance of a Mesh, Light or Background.
|
|
|
|
*
|
2011-10-12 23:03:12 +00:00
|
|
|
* While there is only a single shader graph, it has three outputs: surface,
|
|
|
|
* volume and displacement, that the shader manager will compile and execute
|
2011-04-27 11:58:34 +00:00
|
|
|
* separately. */
|
|
|
|
|
|
|
|
class Shader {
|
|
|
|
public:
|
|
|
|
/* name */
|
|
|
|
string name;
|
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
|
|
|
int pass_id;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
/* shader graph */
|
|
|
|
ShaderGraph *graph;
|
|
|
|
|
|
|
|
/* shader graph with auto bump mapping included, we compile two shaders,
|
2012-06-09 17:22:52 +00:00
|
|
|
* with and without bump, because the displacement method is a mesh
|
|
|
|
* level setting, so we need to handle both */
|
2011-04-27 11:58:34 +00:00
|
|
|
ShaderGraph *graph_bump;
|
|
|
|
|
2011-09-27 20:37:24 +00:00
|
|
|
/* sampling */
|
2013-06-18 09:36:00 +00:00
|
|
|
bool use_mis;
|
|
|
|
bool use_transparent_shadow;
|
2011-09-27 20:37:24 +00:00
|
|
|
bool homogeneous_volume;
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
/* synchronization */
|
|
|
|
bool need_update;
|
|
|
|
bool need_update_attributes;
|
|
|
|
|
|
|
|
/* information about shader after compiling */
|
2011-10-12 23:03:12 +00:00
|
|
|
bool has_surface;
|
2011-04-27 11:58:34 +00:00
|
|
|
bool has_surface_emission;
|
2011-09-27 20:37:24 +00:00
|
|
|
bool has_surface_transparent;
|
2011-10-12 15:42:35 +00:00
|
|
|
bool has_volume;
|
2011-10-12 23:03:12 +00:00
|
|
|
bool has_displacement;
|
2013-04-01 20:26:52 +00:00
|
|
|
bool has_surface_bssrdf;
|
2013-07-31 20:56:32 +00:00
|
|
|
bool has_converter_blackbody;
|
2013-08-18 14:15:57 +00:00
|
|
|
bool has_bssrdf_bump;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
/* requested mesh attributes */
|
|
|
|
AttributeRequestSet attributes;
|
|
|
|
|
2012-10-30 11:51:17 +00:00
|
|
|
/* determined before compiling */
|
|
|
|
bool used;
|
|
|
|
|
2012-11-03 14:32:35 +00:00
|
|
|
#ifdef WITH_OSL
|
|
|
|
/* osl shading state references */
|
|
|
|
OSL::ShadingAttribStateRef osl_surface_ref;
|
|
|
|
OSL::ShadingAttribStateRef osl_surface_bump_ref;
|
|
|
|
OSL::ShadingAttribStateRef osl_volume_ref;
|
|
|
|
OSL::ShadingAttribStateRef osl_displacement_ref;
|
|
|
|
#endif
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
Shader();
|
|
|
|
~Shader();
|
|
|
|
|
|
|
|
void set_graph(ShaderGraph *graph);
|
|
|
|
void tag_update(Scene *scene);
|
2012-10-30 11:51:17 +00:00
|
|
|
void tag_used(Scene *scene);
|
2011-04-27 11:58:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Shader Manager virtual base class
|
|
|
|
*
|
|
|
|
* From this the SVM and OSL shader managers are derived, that do the actual
|
|
|
|
* shader compiling and device updating. */
|
|
|
|
|
|
|
|
class ShaderManager {
|
|
|
|
public:
|
|
|
|
bool need_update;
|
|
|
|
|
2012-12-04 07:48:09 +00:00
|
|
|
static ShaderManager *create(Scene *scene, int shadingsystem);
|
2011-04-27 11:58:34 +00:00
|
|
|
virtual ~ShaderManager();
|
|
|
|
|
2013-02-14 16:11:47 +00:00
|
|
|
virtual void reset(Scene *scene) = 0;
|
|
|
|
|
2012-12-04 07:48:09 +00:00
|
|
|
virtual bool use_osl() { return false; }
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
/* device update */
|
|
|
|
virtual void device_update(Device *device, DeviceScene *dscene, Scene *scene, Progress& progress) = 0;
|
2013-04-01 20:26:52 +00:00
|
|
|
virtual void device_free(Device *device, DeviceScene *dscene, Scene *scene) = 0;
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2012-10-30 11:51:17 +00:00
|
|
|
void device_update_shaders_used(Scene *scene);
|
2011-09-27 20:37:24 +00:00
|
|
|
void device_update_common(Device *device, DeviceScene *dscene, Scene *scene, Progress& progress);
|
2013-04-01 20:26:52 +00:00
|
|
|
void device_free_common(Device *device, DeviceScene *dscene, Scene *scene);
|
2011-09-27 20:37:24 +00:00
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
/* get globally unique id for a type of attribute */
|
|
|
|
uint get_attribute_id(ustring name);
|
2012-04-30 12:49:26 +00:00
|
|
|
uint get_attribute_id(AttributeStandard std);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
/* get shader id for mesh faces */
|
|
|
|
int get_shader_id(uint shader, Mesh *mesh = NULL, bool smooth = false);
|
|
|
|
|
|
|
|
/* add default shaders to scene, to use as default for things that don't
|
2012-06-09 17:22:52 +00:00
|
|
|
* have any shader assigned explicitly */
|
2011-04-27 11:58:34 +00:00
|
|
|
static void add_default(Scene *scene);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
ShaderManager();
|
|
|
|
|
|
|
|
typedef unordered_map<ustring, uint, ustringHash> AttributeIDMap;
|
|
|
|
AttributeIDMap unique_attribute_id;
|
2013-04-01 20:26:52 +00:00
|
|
|
|
2013-07-31 20:56:32 +00:00
|
|
|
size_t blackbody_table_offset;
|
2011-04-27 11:58:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|
|
|
|
|
|
|
|
#endif /* __SHADER_H__ */
|
|
|
|
|