diff options
Diffstat (limited to 'linden/indra/newview/lltextureview.h')
-rw-r--r-- | linden/indra/newview/lltextureview.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/linden/indra/newview/lltextureview.h b/linden/indra/newview/lltextureview.h index bfeb8f9..70ca39a 100644 --- a/linden/indra/newview/lltextureview.h +++ b/linden/indra/newview/lltextureview.h | |||
@@ -28,14 +28,17 @@ | |||
28 | #ifndef LL_LLTEXTUREVIEW_H | 28 | #ifndef LL_LLTEXTUREVIEW_H |
29 | #define LL_LLTEXTUREVIEW_H | 29 | #define LL_LLTEXTUREVIEW_H |
30 | 30 | ||
31 | #include "lltexturebar.h" | ||
32 | #include "llcontainerview.h" | 31 | #include "llcontainerview.h" |
33 | #include "linked_lists.h" | 32 | #include "linked_lists.h" |
34 | 33 | ||
35 | class LLViewerImage; | 34 | class LLViewerImage; |
35 | class LLTextureBar; | ||
36 | class LLGLTexMemBar; | ||
36 | 37 | ||
37 | class LLTextureView : public LLContainerView | 38 | class LLTextureView : public LLContainerView |
38 | { | 39 | { |
40 | friend class LLTextureBar; | ||
41 | friend class LLGLTexMemBar; | ||
39 | public: | 42 | public: |
40 | LLTextureView(const std::string& name, const LLRect& rect); | 43 | LLTextureView(const std::string& name, const LLRect& rect); |
41 | ~LLTextureView(); | 44 | ~LLTextureView(); |
@@ -55,16 +58,18 @@ public: | |||
55 | private: | 58 | private: |
56 | BOOL addBar(LLViewerImage *image, BOOL hilight = FALSE); | 59 | BOOL addBar(LLViewerImage *image, BOOL hilight = FALSE); |
57 | void removeAllBars(); | 60 | void removeAllBars(); |
58 | 61 | ||
59 | private: | 62 | private: |
63 | BOOL mFreezeView; | ||
64 | BOOL mOrderFetch; | ||
65 | BOOL mPrintList; | ||
66 | |||
60 | LLTextBox *mInfoTextp; | 67 | LLTextBox *mInfoTextp; |
61 | 68 | ||
62 | std::vector<LLTextureBar*> mTextureBars; | 69 | std::vector<LLTextureBar*> mTextureBars; |
63 | U32 mNumTextureBars; | 70 | U32 mNumTextureBars; |
64 | 71 | ||
65 | LLGLTexMemBar* mGLTexMemBar; | 72 | LLGLTexMemBar* mGLTexMemBar; |
66 | |||
67 | BOOL mFreezeView; | ||
68 | 73 | ||
69 | public: | 74 | public: |
70 | static std::set<LLViewerImage*> sDebugImages; | 75 | static std::set<LLViewerImage*> sDebugImages; |