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 __FILM_H__
|
|
|
|
#define __FILM_H__
|
|
|
|
|
|
|
|
#include "util_string.h"
|
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
|
|
|
#include "util_vector.h"
|
|
|
|
|
|
|
|
#include "kernel_types.h"
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
class Device;
|
|
|
|
class DeviceScene;
|
|
|
|
class Scene;
|
|
|
|
|
2013-04-01 20:26:43 +00:00
|
|
|
typedef enum FilterType {
|
|
|
|
FILTER_BOX,
|
|
|
|
FILTER_GAUSSIAN
|
|
|
|
} FilterType;
|
|
|
|
|
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
|
|
|
class Pass {
|
|
|
|
public:
|
|
|
|
PassType type;
|
|
|
|
int components;
|
|
|
|
bool filter;
|
|
|
|
bool exposure;
|
2012-03-28 12:18:12 +00:00
|
|
|
PassType divide_type;
|
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
|
|
|
|
|
|
|
static void add(PassType type, vector<Pass>& passes);
|
|
|
|
static bool equals(const vector<Pass>& A, const vector<Pass>& B);
|
2012-04-30 12:49:26 +00:00
|
|
|
static bool contains(const vector<Pass>& passes, PassType);
|
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
|
|
|
};
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
class Film {
|
|
|
|
public:
|
|
|
|
float exposure;
|
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
|
|
|
vector<Pass> passes;
|
2014-02-06 14:18:34 +00:00
|
|
|
float pass_alpha_threshold;
|
2013-04-01 20:26:43 +00:00
|
|
|
|
|
|
|
FilterType filter_type;
|
|
|
|
float filter_width;
|
|
|
|
size_t filter_table_offset;
|
|
|
|
|
2013-06-07 12:45:26 +00:00
|
|
|
float mist_start;
|
|
|
|
float mist_depth;
|
|
|
|
float mist_falloff;
|
|
|
|
|
2013-06-07 18:59:23 +00:00
|
|
|
bool use_light_visibility;
|
2014-02-11 13:14:13 +00:00
|
|
|
bool use_sample_clamp;
|
2013-06-07 18:59:23 +00:00
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
bool need_update;
|
|
|
|
|
|
|
|
Film();
|
|
|
|
~Film();
|
|
|
|
|
2013-04-01 20:26:43 +00:00
|
|
|
void device_update(Device *device, DeviceScene *dscene, Scene *scene);
|
|
|
|
void device_free(Device *device, DeviceScene *dscene, Scene *scene);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
bool modified(const Film& film);
|
2012-06-20 14:24:52 +00:00
|
|
|
void tag_passes_update(Scene *scene, const vector<Pass>& passes_);
|
2011-04-27 11:58:34 +00:00
|
|
|
void tag_update(Scene *scene);
|
|
|
|
};
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|
|
|
|
|
|
|
|
#endif /* __FILM_H__ */
|
|
|
|
|