diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-01-07 14:59:20 -0500 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-01-07 14:59:20 -0500 | 
| commit | 6b8ed2ae6f92d6f9559cbc86699b9ca3197f2e81 (patch) | |
| tree | 31919a63096b8d245bd0b834879139c9d9a82129 | |
| parent | e55193cf85e285ba229254994d88d7a875b82ef6 (diff) | |
| parent | b552f7efe94af690006ae3567eb1dbe289618c01 (diff) | |
merge
| -rw-r--r-- | indra/llplugin/llpluginprocesschild.cpp | 10 | ||||
| -rw-r--r-- | indra/newview/llfloaterpreference.cpp | 20 | ||||
| -rw-r--r-- | indra/newview/llfloaterpreference.h | 1 | ||||
| -rw-r--r-- | indra/newview/llvovolume.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_preferences_privacy.xml | 5 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_prim_media_controls.xml | 18 | 
6 files changed, 55 insertions, 6 deletions
| diff --git a/indra/llplugin/llpluginprocesschild.cpp b/indra/llplugin/llpluginprocesschild.cpp index ccf6dab942..07fc82c770 100644 --- a/indra/llplugin/llpluginprocesschild.cpp +++ b/indra/llplugin/llpluginprocesschild.cpp @@ -54,8 +54,14 @@ LLPluginProcessChild::~LLPluginProcessChild()  	if(mInstance != NULL)  	{  		sendMessageToPlugin(LLPluginMessage("base", "cleanup")); -		delete mInstance; -		mInstance = NULL; + +		// IMPORTANT: under some (unknown) circumstances the apr_dso_unload() triggered when mInstance is deleted  +		// appears to fail and lock up which means that a given instance of the slplugin process never exits.  +		// This is bad, especially when users try to update their version of SL - it fails because the slplugin  +		// process as well as a bunch of plugin specific files are locked and cannot be overwritten. +		exit( 0 ); +		//delete mInstance; +		//mInstance = NULL;  	}  } diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp index 11dd48056c..d0716f67b8 100644 --- a/indra/newview/llfloaterpreference.cpp +++ b/indra/newview/llfloaterpreference.cpp @@ -325,6 +325,7 @@ LLFloaterPreference::LLFloaterPreference(const LLSD& key)  	mCommitCallbackRegistrar.add("Pref.WindowedMod",            boost::bind(&LLFloaterPreference::onCommitWindowedMode, this));	  	mCommitCallbackRegistrar.add("Pref.UpdateSliderText",       boost::bind(&LLFloaterPreference::onUpdateSliderText,this, _1,_2));	  	mCommitCallbackRegistrar.add("Pref.AutoDetectAspect",       boost::bind(&LLFloaterPreference::onCommitAutoDetectAspect, this));	 +	mCommitCallbackRegistrar.add("Pref.ParcelMediaAutoPlayEnable",       boost::bind(&LLFloaterPreference::onCommitParcelMediaAutoPlayEnable, this));	  	mCommitCallbackRegistrar.add("Pref.onSelectAspectRatio",    boost::bind(&LLFloaterPreference::onKeystrokeAspectRatio, this));	  	mCommitCallbackRegistrar.add("Pref.QualityPerformance",     boost::bind(&LLFloaterPreference::onChangeQuality, this, _2));	  	mCommitCallbackRegistrar.add("Pref.applyUIColor",			boost::bind(&LLFloaterPreference::applyUIColor, this ,_1, _2)); @@ -986,6 +987,25 @@ void LLFloaterPreference::onCommitAutoDetectAspect()  	}  } +void LLFloaterPreference::onCommitParcelMediaAutoPlayEnable() +{ +	BOOL autoplay = getChild<LLCheckBoxCtrl>("autoplay_enabled")->get(); +		 +	gSavedSettings.setBOOL(LLViewerMedia::AUTO_PLAY_MEDIA_SETTING, autoplay); + +	lldebugs << "autoplay now = " << int(autoplay) << llendl; + +	if (autoplay) +	{ +		// autoplay toggle has gone from FALSE to TRUE; ensure that +		// the media system is thus actually turned on too. +		gSavedSettings.setBOOL("AudioStreamingVideo", TRUE); +		gSavedSettings.setBOOL("AudioStreamingMusic", TRUE); +		gSavedSettings.setBOOL("AudioStreamingMedia", TRUE); +		llinfos << "autoplay turned on, turned all media subsystems on" << llendl; +	} +} +  void LLFloaterPreference::refresh()  {  	LLPanel::refresh(); diff --git a/indra/newview/llfloaterpreference.h b/indra/newview/llfloaterpreference.h index 74a53d673c..b2bc34231d 100644 --- a/indra/newview/llfloaterpreference.h +++ b/indra/newview/llfloaterpreference.h @@ -132,6 +132,7 @@ public:  //	void fractionFromDecimal(F32 decimal_val, S32& numerator, S32& denominator);  	void onCommitAutoDetectAspect(); +	void onCommitParcelMediaAutoPlayEnable();  	void applyResolution();  	void applyUIColor(LLUICtrl* ctrl, const LLSD& param);  	void getUIColor(LLUICtrl* ctrl, const LLSD& param);	 diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 70bfc67523..55609621b3 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -2689,13 +2689,16 @@ U32 LLVOVolume::getRenderCost(std::set<LLUUID> &textures) const  		const LLTextureEntry* te = face->getTextureEntry();  		const LLViewerTexture* img = face->getTexture(); -		textures.insert(img->getID()); +		if (img) +		{ +			textures.insert(img->getID()); +		}  		if (face->getPoolType() == LLDrawPool::POOL_ALPHA)  		{  			alpha++;  		} -		else if (img->getPrimaryFormat() == GL_ALPHA) +		else if (img && img->getPrimaryFormat() == GL_ALPHA)  		{  			invisi = 1;  		} diff --git a/indra/newview/skins/default/xui/en/panel_preferences_privacy.xml b/indra/newview/skins/default/xui/en/panel_preferences_privacy.xml index 25d7ba0903..5dd93d0f7e 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_privacy.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_privacy.xml @@ -85,7 +85,10 @@       left="30"       name="autoplay_enabled"       top_pad="10" -     width="350" /> +     width="350"> +       <check_box.commit_callback +          function="Pref.ParcelMediaAutoPlayEnable" /> +    </check_box>     <text        type="string"      length="1" diff --git a/indra/newview/skins/default/xui/en/panel_prim_media_controls.xml b/indra/newview/skins/default/xui/en/panel_prim_media_controls.xml index 4cef1f9c60..075d9232b1 100644 --- a/indra/newview/skins/default/xui/en/panel_prim_media_controls.xml +++ b/indra/newview/skins/default/xui/en/panel_prim_media_controls.xml @@ -14,7 +14,7 @@    <string name="min_width">300</string>    <string name="min_height">75</string>    <string name="zoom_near_padding">1.0</string> -  <string name="zoom_medium_padding">1.25</string> +  <string name="zoom_medium_padding">1.1</string>    <string name="zoom_far_padding">1.5</string>    <string name="top_world_view_avoid_zone">50</string>    <layout_stack @@ -113,6 +113,7 @@  	</layout_panel>  	<layout_panel  		name="fwd" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -140,6 +141,7 @@  	</layout_panel>  	<layout_panel  		name="home" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -167,6 +169,7 @@  	</layout_panel>  	<layout_panel  		name="media_stop" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -194,6 +197,7 @@  	</layout_panel>  	<layout_panel  		name="reload" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -221,6 +225,7 @@  	</layout_panel>  	<layout_panel  		name="stop" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -248,6 +253,7 @@  	</layout_panel>  	<layout_panel  		name="play" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -276,6 +282,7 @@  	</layout_panel>  	<layout_panel  		name="pause" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -303,6 +310,7 @@  	<!-- media URL entry  -->  	<layout_panel  		name="media_address" +		mouse_opaque="false"  		auto_resize="true"  		user_resize="false"  		height="24" @@ -367,6 +375,7 @@  	</layout_panel>  	<layout_panel  		name="media_play_position" +		mouse_opaque="false"  		auto_resize="true"  		user_resize="false"  		follows="left|right" @@ -392,6 +401,7 @@  	</layout_panel>  	<layout_panel  		name="skip_back" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -419,6 +429,7 @@  	</layout_panel>  	<layout_panel  		name="skip_forward" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -445,6 +456,7 @@  	</layout_panel>  	<layout_panel  		name="media_volume" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -501,6 +513,7 @@  	</layout_panel>  	<layout_panel  		name="zoom_frame" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -528,6 +541,7 @@  	</layout_panel>  	<layout_panel  		name="close" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -554,6 +568,7 @@  	</layout_panel>  	<layout_panel  		name="new_window" +		mouse_opaque="false"  		auto_resize="false"  		user_resize="false"  		layout="topleft" @@ -581,6 +596,7 @@  	<!-- bookend panel -->  	<layout_panel  		name="right_bookend" +		mouse_opaque="false"  		top="0"  		width="0"  		layout="topleft" | 
