diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2009-10-29 16:12:12 -0600 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2009-10-29 16:12:12 -0600 |
commit | 361a2277733a0afaf61f6c6150f1933d2e5aceb7 (patch) | |
tree | 8c57f7684112c13bd9ac8dc2e6d0a14ea0bddc49 /indra/llrender | |
parent | 95031093c795f3a97cdc673c7b7807c944742ab8 (diff) |
fix EXT-1661: Avatars' icons should be cached only once per 24 hours, but not every time the viewer is restarted.
to be reviewed by steve.
Diffstat (limited to 'indra/llrender')
-rw-r--r-- | indra/llrender/lltexture.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llrender/lltexture.h b/indra/llrender/lltexture.h index c18917b663..0cd9667644 100644 --- a/indra/llrender/lltexture.h +++ b/indra/llrender/lltexture.h @@ -61,6 +61,8 @@ public: // //interfaces to access LLViewerTexture // + virtual S8 getType() const = 0 ; + virtual void setKnownDrawSize(S32 width, S32 height) = 0 ; virtual bool bindDefaultImage(const S32 stage = 0) const = 0 ; virtual void forceImmediateUpdate() = 0 ; virtual void setActive() = 0 ; |