From 420b91db29485df39fd6e724e782c449158811cb Mon Sep 17 00:00:00 2001 From: James Cook Date: Tue, 2 Jan 2007 08:33:20 +0000 Subject: Print done when done. --- indra/newview/lltexturefetch.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 indra/newview/lltexturefetch.h (limited to 'indra/newview/lltexturefetch.h') diff --git a/indra/newview/lltexturefetch.h b/indra/newview/lltexturefetch.h new file mode 100644 index 0000000000..9d841ae23a --- /dev/null +++ b/indra/newview/lltexturefetch.h @@ -0,0 +1,28 @@ +/** + * @file lltexturefetch.h + * @brief Object for managing texture fetches. + * + * Copyright (c) 2000-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#ifndef LL_LLTEXTUREFETCH_H +#define LL_LLTEXTUREFETCH_H + +#include "llworkerthread.h" + +class LLViewerImage; + +// Interface class +class LLTextureFetch +{ +public: + static void initClass(); + static void updateClass(); + static void cleanupClass(); + + static LLWorkerClass::handle_t addRequest(LLImageFormatted* image, S32 discard); + static bool getRequestFinished(LLWorkerClass::handle_t handle); +}; + +#endif LL_LLTEXTUREFETCH_H -- cgit v1.2.3