typos, added mention of 'stddev' to documentation of 'gaussian'
parent
ab767f0328
commit
89fd8c1d52
|
@ -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
|
It produces pleasing results and never suffers from ringing, but may
|
||||||
occasionally introduce too much blurring.
|
occasionally introduce too much blurring.
|
||||||
When no reconstruction filter is explicitly requested, this is the default
|
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}):]
|
\item[Mitchell-Netravali filter (\code{mitchell}):]
|
||||||
Separable cubic spline reconstruction filter by Mitchell and Netravali
|
Separable cubic spline reconstruction filter by Mitchell and Netravali
|
||||||
\cite{Mitchell:1988:Reconstruction}
|
\cite{Mitchell:1988:Reconstruction}
|
||||||
|
|
|
@ -437,7 +437,7 @@ public:
|
||||||
|
|
||||||
unsigned int bsdfType = bsdf->getType() & BSDF::EAll;
|
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 isDiffuse = (bsdfType == BSDF::EDiffuseReflection) || cacheQuery;
|
||||||
|
|
||||||
bool hasSpecular = bsdfType & BSDF::EDelta;
|
bool hasSpecular = bsdfType & BSDF::EDelta;
|
||||||
|
|
Loading…
Reference in New Issue