summaryrefslogtreecommitdiff
path: root/indra/newview/lltexturefetch.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/lltexturefetch.h')
-rw-r--r--indra/newview/lltexturefetch.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/indra/newview/lltexturefetch.h b/indra/newview/lltexturefetch.h
index 1538fd78ab..3b08389042 100644
--- a/indra/newview/lltexturefetch.h
+++ b/indra/newview/lltexturefetch.h
@@ -261,8 +261,6 @@ private:
};
LLUUID mID;
S32 mRequestedSize;
- //S32 mFetchedDiscard;
- //S32 mComponents;
S32 mDecodedLevel;
S32 mFetchedSize;
S32 mDecodedSize;
@@ -272,6 +270,7 @@ private:
LLPointer<LLImageRaw> mRawImage;
e_curl_state mCurlState;
S32 mCurlReceivedSize;
+ S32 mHTTPFailCount;
FetchEntry() :
mDecodedLevel(-1),
@@ -281,12 +280,11 @@ private:
FetchEntry(LLUUID& id, S32 r_size, /*S32 f_discard, S32 c,*/ S32 level, S32 f_size, S32 d_size) :
mID(id),
mRequestedSize(r_size),
- //mFetchedDiscard(f_discard),
- //mComponents(c),
mDecodedLevel(level),
mFetchedSize(f_size),
mDecodedSize(d_size),
- mNeedsAux(false)
+ mNeedsAux(false),
+ mHTTPFailCount(0)
{}
};
std::vector<FetchEntry> mFetchingHistory;