diff --git a/indra/llrender/llgltexture.h b/indra/llrender/llgltexture.h
index bdbb3f1e76f18d67bd9b01c6c13744bb07a9d4cb..b5dfa70e04c59a8bffb31cec72255adf1164eda2 100644
--- a/indra/llrender/llgltexture.h
+++ b/indra/llrender/llgltexture.h
@@ -163,6 +163,12 @@ public:
 	BOOL getDontDiscard() const { return mDontDiscard; }
 	//-----------------	
 
+	void setNeedsAlphaAndPickMask(BOOL need_mask) 
+	{ 
+		if (mGLTexturep.notNull())
+			mGLTexturep->setNeedsAlphaAndPickMask(need_mask);
+	}
+
 private:
 	void cleanup();
 	void init();
diff --git a/indra/newview/llvosky.cpp b/indra/newview/llvosky.cpp
index e9d1a3a940be755c57ca9779603bb05111808ef1..236eea6115704a4d836720f2d4ddd3d8a9a4008a 100755
--- a/indra/newview/llvosky.cpp
+++ b/indra/newview/llvosky.cpp
@@ -294,6 +294,7 @@ void LLSkyTex::create(const F32 brightness)
 
 void LLSkyTex::createGLImage(S32 which)
 {	
+	mTexture[which]->setNeedsAlphaAndPickMask(FALSE);
 	mTexture[which]->createGLTexture(0, mImageRaw[which], 0, TRUE, LLGLTexture::LOCAL);
 	mTexture[which]->setAddressMode(LLTexUnit::TAM_CLAMP);
 }