44#include "TextureParameters.hh"
47TexParameters::TexParameters() :
61bool 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) );
73bool TexParameters::operator!=(
const TexParameters& _comp)
const {
74 return ( !( (*
this) == _comp) );