- Sep 05, 2013
-
-
Graham Linden authored
-
- Aug 28, 2013
-
-
Graham Linden authored
-
- Aug 26, 2013
-
-
Graham Linden authored
-
Oz Linden authored
-
Oz Linden authored
-
- Aug 19, 2013
-
-
Graham Linden authored
-
Graham Linden authored
-
Graham Linden authored
Fix merge issues from genBBoxes optimizations fighting with genBBoxes optimizations and missing statics
-
Oz Linden authored
-
Oz Linden authored
-
Graham Linden authored
-
Arun Bapu authored
-
Oz Linden authored
-
Oz Linden authored
-
- Aug 15, 2013
-
-
maksymsproductengine authored
-
Graham Linden authored
NORSPEC-349 make render targets use original formats when resizing impostors and fix alpha for deferred impostor shader
-
Graham Linden authored
-
Graham Linden authored
NORSPEC-342 NORSPEC-352 make impostor alpha shader use vertex alpha to remedy unsightly blemishes, boxes, and the occasional extra wing.
-
Mnikolenko ProductEngine authored
-
- Aug 14, 2013
-
-
Graham Linden authored
NORSPEC-342 add simple pass type to things rendered for impostors to fix missing shoes/belts/handbags/cigarettecases/etc
-
Arun Bapu authored
Fix for NORSPEC 271 - Transparent prims in Materials Viewer are incorrectly affecting depth of field by modifying the depth buffer
-
- Aug 13, 2013
-
-
Graham Linden authored
-
Nicky authored
BUG-3605 / CHUIBUG-197 Don't create excessive amounts of string objects in LLNormalTextSegment::getNumChars.
-
maksymsproductengine authored
-
- Aug 12, 2013
-
-
Graham Linden authored
-
Graham Linden authored
-
Graham Linden authored
NORSPEC-342 WIP MATBUG-347 make impostor rendering not contribute to depth for mostly-transparent buffer pixels, aka hair in ALM only
-
Graham Linden authored
NORSPEC-346 fix knock-on causing alpha mask edits to cause materials to get removed and revert to alpha blend
-
- Aug 11, 2013
-
-
Graham Linden authored
-
Graham Linden authored
-
- Aug 07, 2013
-
-
Graham Linden authored
-
Graham Madarasz (Graham Linden) authored
-
Graham Linden authored
-
Graham Linden authored
NORSPEC-329 fix mangling of diffuse alpha mode by material edits when only one face really has alpha
-
Oz Linden authored
-
Graham Linden authored
-
- Aug 06, 2013
-
-
Graham Madarasz (Graham Linden) authored
-
Graham Linden authored
-
- Aug 05, 2013
-
-
Nat Goodspeed authored
The logic in llcommandlineparser.cpp's setControlValueCB() callback function for converting command-line switch argument values from string to the actual type of the map-to settings variable had a couple special cases for boolean and LLSD array. But for S32, U32 and F32, it simply used default LLSD string-to-numeric conversion. LLSD's string-to-numeric conversion is a bit lame: for non-numeric strings, it shrugs and returns 0. Introduce onevalue() and badvalue() helper functions that, like certain errors during command-line parsing, throw LLCLPError. Use them to streamline certain redundancies in setControlValueCB(). Introduce convertTo<T>() helper function that uses boost::lexical_cast() for slightly more stringent conversions. Add cases for U32, S32 and F32 targets. setControlValueCB() is actually called only by LLControlGroupCLP::notify(), not during actual command-line parsing. Make LLControlGroupCLP::notify() return bool. Make it catch LLCLPError, set the error for getErrorMessage() and return false on that exception. Package LLAppViewer::initConfiguration()'s response to initParseCommandLine() returning false as a new handleCommandLineError() function; invoke it both there and when LLControlGroupCLP::notify() returns false.