merge up to 3.7.0-release and get unit test fixes
commit
b0c255f4e6
|
|
@ -662,6 +662,7 @@ Jonathan Yap
|
|||
STORM-1858
|
||||
STORM-1862
|
||||
STORM-1918
|
||||
STORM-1915
|
||||
STORM-1953
|
||||
OPEN-161
|
||||
Kadah Coba
|
||||
|
|
|
|||
|
|
@ -649,7 +649,7 @@ namespace tut
|
|||
template<> template<>
|
||||
void LLSDMessageBuilderTestObject::test<37>()
|
||||
{
|
||||
LLQuaternion data(1,2,3,0);
|
||||
LLQuaternion data(0.3713907f, 0.5570861f, 0.7427813f,0.0f);
|
||||
|
||||
//we send a quaternion packed into a vec3 (w is infered) - so sizeof(vec) == 12 bytes not 16.
|
||||
LLVector3 vec = data.packToVector3();
|
||||
|
|
|
|||
|
|
@ -320,7 +320,7 @@ namespace tut
|
|||
{
|
||||
LLMessageTemplate messageTemplate = defaultTemplate();
|
||||
messageTemplate.addBlock(defaultBlock(MVT_LLQuaternion, 12));
|
||||
LLQuaternion outValue, inValue = LLQuaternion(1,2,3,0);
|
||||
LLQuaternion outValue, inValue = LLQuaternion(0.3713907f, 0.5570861f, 0.7427813f,0.0f);
|
||||
LLTemplateMessageBuilder* builder = defaultBuilder(messageTemplate);
|
||||
builder->addQuat(_PREHASH_Test0, inValue);
|
||||
LLTemplateMessageReader* reader = setReader(messageTemplate, builder);
|
||||
|
|
@ -787,7 +787,7 @@ namespace tut
|
|||
{
|
||||
LLMessageTemplate messageTemplate = defaultTemplate();
|
||||
messageTemplate.addBlock(defaultBlock(MVT_LLQuaternion, 12));
|
||||
LLQuaternion outValue, inValue = LLQuaternion(1,2,3,0);
|
||||
LLQuaternion outValue, inValue = LLQuaternion(0.3713907f, 0.5570861f, 0.7427813f,0.0f);
|
||||
LLTemplateMessageBuilder* builder = defaultBuilder(messageTemplate);
|
||||
builder->addQuat(_PREHASH_Test0, inValue);
|
||||
LLTemplateMessageReader* reader = setReader(
|
||||
|
|
|
|||
Loading…
Reference in New Issue