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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-10-22 20:52:04 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-10-22 20:55:09 +0400
commit553ec988e7a44046c86ec1528c357269e4f23f7f (patch)
treec79c9585023b14bda2c29100577eabed7d38923d /intern/cycles/render/film.h
parent742911314322e5dae3a07469d0ca53b61427f978 (diff)
Revert "Cycles: Implement Mitchell-Netravali pixel filter"
As it appears we can't really use mitchell filter together with the current filter importance sampling, This reverts commit 742911314322e5dae3a07469d0ca53b61427f978.
Diffstat (limited to 'intern/cycles/render/film.h')
-rw-r--r--intern/cycles/render/film.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/intern/cycles/render/film.h b/intern/cycles/render/film.h
index 31cc7697679..cc7183bfd95 100644
--- a/intern/cycles/render/film.h
+++ b/intern/cycles/render/film.h
@@ -30,8 +30,7 @@ class Scene;
typedef enum FilterType {
FILTER_BOX,
- FILTER_GAUSSIAN,
- FILTER_MITCHELL,
+ FILTER_GAUSSIAN
} FilterType;
class Pass {