typos, added mention of 'stddev' to documentation of 'gaussian'

metadata
Wenzel Jakob 2014-05-19 11:13:14 +02:00
parent ab767f0328
commit 89fd8c1d52
2 changed files with 3 additions and 2 deletions

View File

@ -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}

View File

@ -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;