diff options
| author | andreykproductengine <akleshchev@productengine.com> | 2016-05-18 17:17:32 +0300 | 
|---|---|---|
| committer | andreykproductengine <akleshchev@productengine.com> | 2016-05-18 17:17:32 +0300 | 
| commit | d3de134da047460c68ffd7cc732e592049a1e83d (patch) | |
| tree | 6a609f8e88026c50d277e1c9225d812f07b78705 | |
| parent | e795fee86448970881066af95de7eac8e4847d14 (diff) | |
MAINT-6409 invisiprims should be preloaded
| -rwxr-xr-x | indra/llcommon/indra_constants.cpp | 4 | ||||
| -rwxr-xr-x | indra/llcommon/indra_constants.h | 4 | ||||
| -rwxr-xr-x | indra/newview/lldrawpoolterrain.cpp | 17 | ||||
| -rwxr-xr-x | indra/newview/llviewertexturelist.cpp | 17 | 
4 files changed, 25 insertions, 17 deletions
| diff --git a/indra/llcommon/indra_constants.cpp b/indra/llcommon/indra_constants.cpp index f3989ee1d0..b45e3df1d8 100755 --- a/indra/llcommon/indra_constants.cpp +++ b/indra/llcommon/indra_constants.cpp @@ -60,6 +60,10 @@ const LLUUID IMG_SMOKE_POOF				("1e63e323-5fe0-452e-92f8-b98bd0f764e3"); // On d  const LLUUID IMG_BIG_EXPLOSION_1		("5e47a0dc-97bf-44e0-8b40-de06718cee9d"); // On dataserver  const LLUUID IMG_BIG_EXPLOSION_2		("9c8eca51-53d5-42a7-bb58-cef070395db8"); // On dataserver +const LLUUID IMG_ALPHA_GRAD				("e97cf410-8e61-7005-ec06-629eba4cd1fb"); // VIEWER +const LLUUID IMG_ALPHA_GRAD_2D			("38b86f85-2575-52a9-a531-23108d8da837"); // VIEWER +const LLUUID IMG_TRANSPARENT			("8dcd4a48-2d37-4909-9f78-f7a9eb4ef903"); // VIEWER +  const LLUUID IMG_BLOOM1	  			    ("3c59f7fe-9dc8-47f9-8aaf-a9dd1fbc3bef"); // VIEWER  const LLUUID TERRAIN_DIRT_DETAIL		("0bc58228-74a0-7e83-89bc-5c23464bcec5"); // VIEWER  const LLUUID TERRAIN_GRASS_DETAIL		("63338ede-0037-c4fd-855b-015d77112fc8"); // VIEWER diff --git a/indra/llcommon/indra_constants.h b/indra/llcommon/indra_constants.h index 02f063f5e8..fda84aa5a8 100755 --- a/indra/llcommon/indra_constants.h +++ b/indra/llcommon/indra_constants.h @@ -197,6 +197,10 @@ LL_COMMON_API extern const LLUUID IMG_SMOKE_POOF;  LL_COMMON_API extern const LLUUID IMG_BIG_EXPLOSION_1;  LL_COMMON_API extern const LLUUID IMG_BIG_EXPLOSION_2; +LL_COMMON_API extern const LLUUID IMG_ALPHA_GRAD; +LL_COMMON_API extern const LLUUID IMG_ALPHA_GRAD_2D; +LL_COMMON_API extern const LLUUID IMG_TRANSPARENT; +  LL_COMMON_API extern const LLUUID IMG_BLOOM1;  LL_COMMON_API extern const LLUUID TERRAIN_DIRT_DETAIL;  LL_COMMON_API extern const LLUUID TERRAIN_GRASS_DETAIL; diff --git a/indra/newview/lldrawpoolterrain.cpp b/indra/newview/lldrawpoolterrain.cpp index 33675bd261..b716a76543 100755 --- a/indra/newview/lldrawpoolterrain.cpp +++ b/indra/newview/lldrawpoolterrain.cpp @@ -62,28 +62,15 @@ LLDrawPoolTerrain::LLDrawPoolTerrain(LLViewerTexture *texturep) :  	LLFacePool(POOL_TERRAIN),  	mTexturep(texturep)  { -	U32 format = GL_ALPHA8; -	U32 int_format = GL_ALPHA; -  	// Hack!  	sDetailScale = 1.f/gSavedSettings.getF32("RenderTerrainScale");  	sDetailMode = gSavedSettings.getS32("RenderTerrainDetail"); -	mAlphaRampImagep = LLViewerTextureManager::getFetchedTextureFromFile("alpha_gradient.tga",  -													FTT_LOCAL_FILE, -													TRUE, LLGLTexture::BOOST_UI,  -													LLViewerTexture::FETCHED_TEXTURE, -													format, int_format, -													LLUUID("e97cf410-8e61-7005-ec06-629eba4cd1fb")); +	mAlphaRampImagep = LLViewerTextureManager::getFetchedTexture(IMG_ALPHA_GRAD);  	//gGL.getTexUnit(0)->bind(mAlphaRampImagep.get());  	mAlphaRampImagep->setAddressMode(LLTexUnit::TAM_CLAMP); -	m2DAlphaRampImagep = LLViewerTextureManager::getFetchedTextureFromFile("alpha_gradient_2d.j2c",  -													FTT_LOCAL_FILE, -													TRUE, LLGLTexture::BOOST_UI,  -													LLViewerTexture::FETCHED_TEXTURE, -													format, int_format, -													LLUUID("38b86f85-2575-52a9-a531-23108d8da837")); +	m2DAlphaRampImagep = LLViewerTextureManager::getFetchedTexture(IMG_ALPHA_GRAD_2D);  	//gGL.getTexUnit(0)->bind(m2DAlphaRampImagep.get());  	m2DAlphaRampImagep->setAddressMode(LLTexUnit::TAM_CLAMP); diff --git a/indra/newview/llviewertexturelist.cpp b/indra/newview/llviewertexturelist.cpp index 766164ebf8..5150fc9ade 100755 --- a/indra/newview/llviewertexturelist.cpp +++ b/indra/newview/llviewertexturelist.cpp @@ -171,13 +171,26 @@ void LLViewerTextureList::doPreloadImages()  		mImagePreloads.insert(image);  	}  	image = LLViewerTextureManager::getFetchedTextureFromFile("transparent.j2c", FTT_LOCAL_FILE, MIPMAP_YES, LLViewerFetchedTexture::BOOST_UI, LLViewerTexture::FETCHED_TEXTURE, -		0,0,LLUUID("8dcd4a48-2d37-4909-9f78-f7a9eb4ef903")); +		0, 0, IMG_TRANSPARENT);  	if (image)   	{  		image->setAddressMode(LLTexUnit::TAM_WRAP);  		mImagePreloads.insert(image);  	} -	 +	image = LLViewerTextureManager::getFetchedTextureFromFile("alpha_gradient.tga", FTT_LOCAL_FILE, MIPMAP_YES, LLViewerFetchedTexture::BOOST_UI, LLViewerTexture::FETCHED_TEXTURE, +		GL_ALPHA8, GL_ALPHA, IMG_ALPHA_GRAD); +	if (image) +	{ +		image->setAddressMode(LLTexUnit::TAM_CLAMP); +		mImagePreloads.insert(image); +	} +	image = LLViewerTextureManager::getFetchedTextureFromFile("alpha_gradient_2d.j2c", FTT_LOCAL_FILE, MIPMAP_YES, LLViewerFetchedTexture::BOOST_UI, LLViewerTexture::FETCHED_TEXTURE, +		GL_ALPHA8, GL_ALPHA, IMG_ALPHA_GRAD_2D); +	if (image) +	{ +		image->setAddressMode(LLTexUnit::TAM_CLAMP); +		mImagePreloads.insert(image); +	}  }  static std::string get_texture_list_name() | 
