44 #include "TextureParameters.hh" 47 TexParameters::TexParameters() :
61 bool TexParameters::operator==(
const TexParameters& _comp)
const {
62 return ( (scale == _comp.scale) &&
63 (clampMin == _comp.clampMin) &&
64 (clampMax == _comp.clampMax) &&
65 (clamp == _comp.clamp) &&
66 (repeat == _comp.repeat) &&
67 (center == _comp.center) &&
69 (repeatMax == _comp.repeatMax) &&
70 (repeatMin == _comp.repeatMin) );
73 bool TexParameters::operator!=(
const TexParameters& _comp)
const {
74 return ( !( (*
this) == _comp) );