aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
authorArmin Weatherwax2010-06-16 19:52:44 +0200
committerArmin Weatherwax2010-07-01 12:05:29 +0200
commitd2e066b55a274541cb9da3018ef336ff3d4eb76b (patch)
tree4c3119fdbff72cd88ed3106baa904aca60ae97b9 /linden/indra
parentHenri Beauchamp: Allow Copy Worn Attachments (diff)
downloadmeta-impy-d2e066b55a274541cb9da3018ef336ff3d4eb76b.zip
meta-impy-d2e066b55a274541cb9da3018ef336ff3d4eb76b.tar.gz
meta-impy-d2e066b55a274541cb9da3018ef336ff3d4eb76b.tar.bz2
meta-impy-d2e066b55a274541cb9da3018ef336ff3d4eb76b.tar.xz
fix: despam streaming video "Cannot analyze alpha for image with format typ <foo>"
Diffstat (limited to 'linden/indra')
-rw-r--r--linden/indra/llrender/llimagegl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llrender/llimagegl.cpp b/linden/indra/llrender/llimagegl.cpp
index 2a8fe01..d6474f7 100644
--- a/linden/indra/llrender/llimagegl.cpp
+++ b/linden/indra/llrender/llimagegl.cpp
@@ -1453,7 +1453,7 @@ void LLImageGL::analyzeAlpha(const void* data_in, S32 w, S32 h)
1453{ 1453{
1454 if (mFormatType != GL_UNSIGNED_BYTE) 1454 if (mFormatType != GL_UNSIGNED_BYTE)
1455 { 1455 {
1456 llwarns << "Cannot analyze alpha for image with format type " << std::hex << mFormatType << std::dec << llendl; 1456 //spammer, no meaning: llwarns << "Cannot analyze alpha for image with format type " << std::hex << mFormatType << std::dec << llendl;
1457 } 1457 }
1458 1458
1459 U32 stride = 0; 1459 U32 stride = 0;
@@ -1477,7 +1477,7 @@ void LLImageGL::analyzeAlpha(const void* data_in, S32 w, S32 h)
1477 stride = 4; 1477 stride = 4;
1478 break; 1478 break;
1479 default: 1479 default:
1480 llwarns << "Cannot analyze alpha of image with primary format " << std::hex << mFormatPrimary << std::dec << llendl; 1480 //never happend: llwarns << "Cannot analyze alpha of image with primary format " << std::hex << mFormatPrimary << std::dec << llendl;
1481 return; 1481 return;
1482 } 1482 }
1483 1483