Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-17 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2018-01-10 | MAINT-8167 Fixed uploading JPEG image from Unicode directory fails | andreykproductengine | |
2017-12-05 | MAINT-2124 Texture allocation issues | andreykproductengine | |
2017-11-29 | DRTVWR-418: Merge from latest viewer-release | Nat Goodspeed | |
2017-11-27 | MAINT-8028 Fixed memory leak in allocateDataSize() | andreykproductengine | |
2017-10-27 | Merged from viewer-lynx | andreykproductengine | |
2017-10-11 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2017-08-16 | merge changes for DRTVWR-439 | Oz Linden | |
2017-06-12 | Fixed line endings for llpngwrapper.cpp | andreykproductengine | |
2017-06-06 | [SL-711] - Eliminate some overheads in texturecache. | ruslantproductengine | |
- Eliminate memory overhead when need duplicated scaled image. - Small improvement in LLImageBase::getCodecFromExtension() | |||
2017-05-31 | STORM-2148 Crash on trying to save texture file(s) to computer from inventory | pavelkproductengine | |
2017-02-23 | DRTVWR-418: Fix a round of compile errors surfaced by -std=c++11. | Nat Goodspeed | |
These are mostly things that were in fact erroneous, but accepted by older compilers. This changeset has not yet been built with Visual Studio 2013 or Linux gcc, even with -std=c++11. This changeset has not been built *without* -std=c++11. It should be used in conjunction with a corresponding change to LL_BUILD_DARWIN_BASE_SWITCHES in viewer-build-variables/variables. This is a work in progress. We do not assert that this changeset completes the work needed to turn on -std=c++11, even on the Mac. | |||
2017-02-03 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2016-12-08 | MAINT-6729 Additional fix for crash in LLImageGL::analyzeAlpha() | AndreyL ProductEngine | |
2016-10-19 | MAINT-6818 Fix for LLImageBase::allocateData crash | AndreyL ProductEngine | |
2016-09-16 | Merge | Rider Linden | |
2016-09-06 | merge changes for exception handling | Oz Linden | |
2016-09-06 | paren fix | Oz Linden | |
2016-09-06 | add run time error checking to LLImageRaw::scale | Oz Linden | |
2016-08-29 | Merged in andreyl_productengine/viewer-427 | AndreyL ProductEngine | |
2016-08-25 | MAINT-6476 VOB - User can add any size image to an Outfit Gallery outfit folders | pavelkproductengine | |
2016-08-17 | MAINT-5011: Derive image-load exceptions from LLContinueError. | Nat Goodspeed | |
Failure to load an image shouldn't crash the whole viewer. | |||
2016-08-17 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2016-08-17 | MAINT-5011: Use LLTHROW() instead of plain BOOST_THROW_EXCEPTION(). | Nat Goodspeed | |
A level of preprocessor indirection lets us later change the implementation if desired. | |||
2016-08-09 | MAINT-6618 More checks | AndreyL ProductEngine | |
2016-08-09 | MAINT-6618 Fixed the crash in LLImageRaw::scale() + some additional checks | AndreyL ProductEngine | |
2016-08-05 | Buildfix: brought back LINDEN_J2C_COMMENT_PREFIX | AndreyL ProductEngine | |
2016-07-27 | MAINT-4327/MAINT-6584 Supress the crash on memory allocation error when ↵ | AndreyL ProductEngine | |
decoding J2C images | |||
2016-07-22 | MAINT-6584: Convert LLImage class hierarchy to standard 'bool' | Nat Goodspeed | |
instead of legacy BOOL. | |||
2016-07-21 | MAINT-6584: Streamline static LLImageJ2C implementation API. | Nat Goodspeed | |
Specifically, remove unused function pointer types CreateLLImageJ2CFunction, DestroyLLImageJ2CFunction and EngineInfoLLImageJ2CFunction. Also eliminate static fallbackDestroyLLImageJ2CImpl() and fallbackEngineInfoLLImageJ2CImpl(), leaving only static fallbackCreateLLImageJ2CImpl(). We do need a factory function to instantiate the appropriate LLImageJ2CImpl subclass, so leave the fallbackCreateLLImageJ2CImpl() link seam in place. However, given that every known LLImageJ2CImpl subclass is cheap to instantiate, make getEngineInfo() a pure virtual method on that subclass: the static LLImageJ2C::getEngineInfo() method can temporarily construct an instance to query. While we're at it, make getEngineInfo() return std::string like LLImageJ2C::getEngineInfo(). It's ridiculous that fallbackEngineInfoLLImageJ2CImpl() implementations constructed a static std::string and returned its c_str(), only to have LLImageJ2C::getEngineInfo() construct ANOTHER std::string from the returned const char*. fallbackDestroyLLImageJ2CImpl() never did anything useful: it merely deleted the passed LLImageJ2CImpl subclass pointer as the specific subclass type. But since LLImageJ2CImpl's destructor is virtual, LLImageJ2C's destructor could simply delete the stored LLImageJ2CImpl*. In fact, make mImpl a boost::scoped_ptr<LLImageJ2CImpl> so we don't even have to delete it manually. | |||
2016-07-19 | MAINT-5011: Introduce LLException base class for viewer exceptions. | Nat Goodspeed | |
This also introduces LLContinueError for exceptions which should interrupt some part of viewer processing (e.g. the current coroutine) but should attempt to let the viewer session proceed. Derive all existing viewer exception classes from LLException rather than from std::runtime_error or std::logic_error. Use BOOST_THROW_EXCEPTION() rather than plain 'throw' to enrich the thrown exception with source file, line number and containing function. | |||
2016-07-14 | MAINT-5011: Per NickyD, put PngError in anonymous namespace. | Nat Goodspeed | |
2016-07-13 | MAINT-5011: Wrap thrown png_const_charp in new PngError class | Nat Goodspeed | |
derived from std::runtime_error. | |||
2016-04-22 | x64: Do not use a union of LLColor4U. Especially having the two pointer in ↵ | Nicky | |
there will blow up the struct to at least 8 byte, which will break VBO packing as this class needs to be 4 byte in size. (transplanted from 847df86d6b5daa69dcfc428df18876a9c1e8bef6) | |||
2015-11-10 | remove execute permission from many files that should not have it | Oz Linden | |
2015-08-04 | MAINT-5343 (Viewer sometimes crashes when updating a local tga texture when ↵ | ruslantproductengine | |
RLE or BMP compression is disabled - LLImageTGA::decodeTruecolorNonRle) | |||
2015-05-05 | Hotfix for build on OSX with -Werror,-Wtautological-compare | ruslantproductengine | |
2015-04-28 | Merge viewer-release, become version 3.7.29 | Mnikolenko ProductEngine | |
2015-04-13 | merge changes for 3.7.27-release | Oz Linden | |
2015-04-10 | restore the ll[io]fstream because we need them as wrappers on Windows for ↵ | Oz Linden | |
wide char paths; on other platforms they are now just typedefs to the std classes | |||
2015-04-07 | replace llifstream and llofstream with std::ifstream and std::ofstream ↵ | Oz Linden | |
respectively | |||
2015-04-07 | convert llifstream and llofstream to std::ifstream and std::ofstream ↵ | Oz Linden | |
respectively | |||
2015-02-24 | merge changes for 3.7.25-release | Oz Linden | |
2015-02-23 | MAINT-4329 FIXED LLImageRaw::scale() scales each image *twice* for no ↵ | ruslantproductengine | |
apparent reason Linux & OS X compile error fix | |||
2015-02-23 | Backed out changeset: 81b8de17a195 | ruslantproductengine | |
2015-02-23 | MAINT-4329 FIXED LLImageRaw::scale() scales each image *twice* for no ↵ | ruslantproductengine | |
apparent reason Linux & OS X compile error fix | |||
2015-02-23 | Backed out changeset: 4c24cfce033a | ruslantproductengine | |
2015-02-23 | MAINT-4329 FIXED LLImageRaw::scale() scales each image *twice* for no ↵ | ruslantproductengine | |
apparent reason Linux & OS X compile error fix | |||
2015-02-20 | MAINT-4329 FIXED LLImageRaw::scale() scales each image *twice* for no ↵ | ruslantproductengine | |
apparent reason | |||
2015-02-14 | MAINT-4329 Backed out changeset: fd3a4d5c2cf5 | ruslantproductengine | |