No longer include llerrorlegacy.h. Updated llstl to include deletion utilites.
This commit is contained in:
@@ -297,7 +297,7 @@ BOOL LLVLComposition::generateTexture(const F32 x, const F32 y,
|
||||
{
|
||||
mDetailTextures[i]->destroyRawImage() ;
|
||||
}
|
||||
lldebugs << "cached raw data for terrain detail texture is not ready yet: " << mDetailTextures[i]->getID() << llendl;
|
||||
LL_DEBUGS() << "cached raw data for terrain detail texture is not ready yet: " << mDetailTextures[i]->getID() << LL_ENDL;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@@ -333,12 +333,12 @@ BOOL LLVLComposition::generateTexture(const F32 x, const F32 y,
|
||||
|
||||
if (x_end > mWidth)
|
||||
{
|
||||
llwarns << "x end > width" << llendl;
|
||||
LL_WARNS() << "x end > width" << LL_ENDL;
|
||||
x_end = mWidth;
|
||||
}
|
||||
if (y_end > mWidth)
|
||||
{
|
||||
llwarns << "y end > width" << llendl;
|
||||
LL_WARNS() << "y end > width" << LL_ENDL;
|
||||
y_end = mWidth;
|
||||
}
|
||||
|
||||
@@ -368,7 +368,7 @@ BOOL LLVLComposition::generateTexture(const F32 x, const F32 y,
|
||||
|
||||
if (tex_comps != st_comps)
|
||||
{
|
||||
llwarns << "Base texture comps != input texture comps" << llendl;
|
||||
LL_WARNS() << "Base texture comps != input texture comps" << LL_ENDL;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@@ -426,8 +426,8 @@ BOOL LLVLComposition::generateTexture(const F32 x, const F32 y,
|
||||
if (st_offset >= st_data_size[tex0] || st_offset >= st_data_size[tex1])
|
||||
{
|
||||
// SJB: This shouldn't be happening, but does... Rounding error?
|
||||
//llwarns << "offset 0 [" << tex0 << "] =" << st_offset << " >= size=" << st_data_size[tex0] << llendl;
|
||||
//llwarns << "offset 1 [" << tex1 << "] =" << st_offset << " >= size=" << st_data_size[tex1] << llendl;
|
||||
//LL_WARNS() << "offset 0 [" << tex0 << "] =" << st_offset << " >= size=" << st_data_size[tex0] << LL_ENDL;
|
||||
//LL_WARNS() << "offset 1 [" << tex1 << "] =" << st_offset << " >= size=" << st_data_size[tex1] << LL_ENDL;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user