diff --git a/doc/section_rfilters.tex b/doc/section_rfilters.tex index ecdcfb3c..7c93750d 100644 --- a/doc/section_rfilters.tex +++ b/doc/section_rfilters.tex @@ -31,7 +31,8 @@ this is a windowed Gaussian filter with configurable standard deviation. It produces pleasing results and never suffers from ringing, but may occasionally introduce too much blurring. When no reconstruction filter is explicitly requested, this is the default -choice in Mitsuba. +choice in Mitsuba. Takes a standard deviation parameter (\code{stddev}) +which is set to 0.5 pixels by default. \item[Mitchell-Netravali filter (\code{mitchell}):] Separable cubic spline reconstruction filter by Mitchell and Netravali \cite{Mitchell:1988:Reconstruction} diff --git a/src/integrators/photonmapper/photonmapper.cpp b/src/integrators/photonmapper/photonmapper.cpp index 9b205b67..77fd07d9 100644 --- a/src/integrators/photonmapper/photonmapper.cpp +++ b/src/integrators/photonmapper/photonmapper.cpp @@ -437,7 +437,7 @@ public: unsigned int bsdfType = bsdf->getType() & BSDF::EAll; - /* Irradiance cachq query -> trat as diffuse */ + /* Irradiance cache query -> treat as diffuse */ bool isDiffuse = (bsdfType == BSDF::EDiffuseReflection) || cacheQuery; bool hasSpecular = bsdfType & BSDF::EDelta;