From d2e066b55a274541cb9da3018ef336ff3d4eb76b Mon Sep 17 00:00:00 2001 From: Armin Weatherwax Date: Wed, 16 Jun 2010 19:52:44 +0200 Subject: fix: despam streaming video "Cannot analyze alpha for image with format typ " --- linden/indra/llrender/llimagegl.cpp | 4 ++-- 1 file 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) { if (mFormatType != GL_UNSIGNED_BYTE) { - llwarns << "Cannot analyze alpha for image with format type " << std::hex << mFormatType << std::dec << llendl; + //spammer, no meaning: llwarns << "Cannot analyze alpha for image with format type " << std::hex << mFormatType << std::dec << llendl; } U32 stride = 0; @@ -1477,7 +1477,7 @@ void LLImageGL::analyzeAlpha(const void* data_in, S32 w, S32 h) stride = 4; break; default: - llwarns << "Cannot analyze alpha of image with primary format " << std::hex << mFormatPrimary << std::dec << llendl; + //never happend: llwarns << "Cannot analyze alpha of image with primary format " << std::hex << mFormatPrimary << std::dec << llendl; return; } -- cgit v1.1