diff options
| author | Monroe Linden <monroe@lindenlab.com> | 2009-11-13 13:05:56 -0800 | 
|---|---|---|
| committer | Monroe Linden <monroe@lindenlab.com> | 2009-11-13 13:05:56 -0800 | 
| commit | 39c53fcf0eb718b0a3d1f43a3c9ee1a38ffef49f (patch) | |
| tree | e05d498a8b62193b689960ac7c54ff3eecc22255 /indra/newview | |
| parent | 5890c850f8db30e105717b7c5fbbec91c434ebff (diff) | |
Clear the media texture to black instead of almost-black.
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llviewermedia.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index 69d4da373e..513fae41eb 100644 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -1704,7 +1704,7 @@ LLViewerMediaTexture* LLViewerMediaImpl::updatePlaceholderImage()  		// MEDIAOPT: seems insane that we actually have to make an imageraw then  		// immediately discard it  		LLPointer<LLImageRaw> raw = new LLImageRaw(texture_width, texture_height, texture_depth); -		raw->clear(0x0f, 0x0f, 0x0f, 0xff); +		raw->clear(0x00, 0x00, 0x00, 0xff);  		int discard_level = 0;  		// ask media source for correct GL image format constants  | 
