X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fcore%2Fsampler.h;h=c9f8ec963bd462ea3bf978a3990b0ee481d55986;hp=7cf3d83a7b0915481eef1417e2fe48c0a1e8bcee;hb=HEAD;hpb=190a7e11237351f6b730c28f7b16f183e8adc69c diff --git a/source/core/sampler.h b/source/core/sampler.h index 7cf3d83a..c9f8ec96 100644 --- a/source/core/sampler.h +++ b/source/core/sampler.h @@ -125,15 +125,16 @@ public: than 1, filtering will consider more than than four samples when the texture is drawn at an oblique angle. */ void set_max_anisotropy(float); - float get_max_anisotropy() const { return max_anisotropy; } - /** Sets the wrapping mode for all coordinates. */ - void set_wrap(TextureWrap); + float get_max_anisotropy() const { return max_anisotropy; } void set_wrap_s(TextureWrap); void set_wrap_t(TextureWrap); void set_wrap_r(TextureWrap); + /** Sets the wrapping mode for all coordinates. */ + void set_wrap(TextureWrap); + /** Sets the border color for CLAMP_TO_BORDER wrap mode. */ void set_border_color(const Color &);