50 #include "TextureParameters.hh"
53 TexParameters::TexParameters() :
67 bool TexParameters::operator==(
const TexParameters& _comp)
const {
68 return ( (scale == _comp.scale) &&
69 (clampMin == _comp.clampMin) &&
70 (clampMax == _comp.clampMax) &&
71 (clamp == _comp.clamp) &&
72 (repeat == _comp.repeat) &&
73 (center == _comp.center) &&
75 (repeatMax == _comp.repeatMax) &&
76 (repeatMin == _comp.repeatMin) );
79 bool TexParameters::operator!=(
const TexParameters& _comp)
const {
80 return ( !( (*
this) == _comp) );