diff options
| author | Xiaohong Bao <bao@lindenlab.com> | 2011-11-30 11:21:59 -0700 | 
|---|---|---|
| committer | Xiaohong Bao <bao@lindenlab.com> | 2011-11-30 11:21:59 -0700 | 
| commit | 6c34646aa91bdd55c39de25653710a89a7f01070 (patch) | |
| tree | 71f73401f606a538fa338c99e4bdad3959e15945 | |
| parent | cc2324d17de664b0dc5f4b3169b232c2c1033433 (diff) | |
| parent | e6f5a57395a64b8dcfe85f20b0a63402c77a3c5f (diff) | |
Automated merge with https://bitbucket.org/VirLinden/viewer-development-shining-fixes
| -rw-r--r-- | indra/llimage/llimage.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llworld.cpp | 9 | 
2 files changed, 4 insertions, 7 deletions
diff --git a/indra/llimage/llimage.cpp b/indra/llimage/llimage.cpp index c239e3df88..56e01ac851 100644 --- a/indra/llimage/llimage.cpp +++ b/indra/llimage/llimage.cpp @@ -195,7 +195,7 @@ U8* LLImageBase::allocateData(S32 size)  		mData = (U8*)ALLOCATE_MEM(sPrivatePoolp, size);  		if (!mData)  		{ -			llwarns << "allocate image data: " << size << llendl; +			llwarns << "Failed to allocate image data size [" << size << "]" << llendl;  			size = 0 ;  			mWidth = mHeight = 0 ;  			mBadBufferAllocation = true ; diff --git a/indra/newview/llworld.cpp b/indra/newview/llworld.cpp index 6f6e0d2334..676287c0ad 100644 --- a/indra/newview/llworld.cpp +++ b/indra/newview/llworld.cpp @@ -818,14 +818,11 @@ void LLWorld::updateWaterObjects()  	max_x = (S32)region_x + range;  	max_y = (S32)region_y + range; -	F32 height = 0.f; -	  	for (region_list_t::iterator iter = mRegionList.begin();  		 iter != mRegionList.end(); ++iter)  	{  		LLViewerRegion* regionp = *iter;  		LLVOWater* waterp = regionp->getLand().getWaterObj(); -		height += regionp->getWaterHeight();  		if (waterp)  		{  			gObjectList.updateActive(waterp); @@ -842,6 +839,7 @@ void LLWorld::updateWaterObjects()  	// Now, get a list of the holes  	S32 x, y; +	F32 water_height = gAgent.getRegion()->getWaterHeight() + 256.f;  	for (x = min_x; x <= max_x; x += rwidth)  	{  		for (y = min_y; y <= max_y; y += rwidth) @@ -853,7 +851,7 @@ void LLWorld::updateWaterObjects()  				waterp->setUseTexture(FALSE);  				waterp->setPositionGlobal(LLVector3d(x + rwidth/2,  													 y + rwidth/2, -													 256.f+DEFAULT_WATER_HEIGHT)); +													 water_height));  				waterp->setScale(LLVector3((F32)rwidth, (F32)rwidth, 512.f));  				gPipeline.createObject(waterp);  				mHoleWaterObjects.push_back(waterp); @@ -910,8 +908,7 @@ void LLWorld::updateWaterObjects()  		}  		waterp->setRegion(gAgent.getRegion()); -		LLVector3d water_pos(water_center_x, water_center_y,  -			DEFAULT_WATER_HEIGHT+256.f); +		LLVector3d water_pos(water_center_x, water_center_y, water_height) ;  		LLVector3 water_scale((F32) dim[0], (F32) dim[1], 512.f);  		//stretch out to horizon  | 
