diff options
| author | Merov Linden <merov@lindenlab.com> | 2014-03-10 16:20:09 -0700 | 
|---|---|---|
| committer | Merov Linden <merov@lindenlab.com> | 2014-03-10 16:20:09 -0700 | 
| commit | 5690becdf4743286b196a331c48c8aa0332a8c66 (patch) | |
| tree | 7c64dba5dca5ccfc9631f92fa7d662257654137b /indra/newview/app_settings | |
| parent | 807fa3ee06cc139fcc41f69ed2caac20a8e8370d (diff) | |
| parent | cb91708332b8b8ddfe27808602ec5f43f11c24c2 (diff) | |
Pull merge from lindenlab/viewer-release
Diffstat (limited to 'indra/newview/app_settings')
5 files changed, 99 insertions, 13 deletions
| diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index e6bcb04cb9..de11309394 100755 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -1203,7 +1203,7 @@        <key>Type</key>        <string>Boolean</string>        <key>Value</key> -      <integer>0</integer> +      <integer>1</integer>      </map>      <key>BulkChangeShareWithGroup</key>      <map> @@ -3569,13 +3569,13 @@      <key>FPSLogFrequency</key>          <map>          <key>Comment</key> -            <string>Seconds between display of FPS in log (0 for never)</string> +        <string>Seconds between display of FPS in log (0 for never)</string>          <key>Persist</key> -            <integer>1</integer> +        <integer>1</integer>          <key>Type</key> -            <string>F32</string> +        <string>F32</string>          <key>Value</key> -            <real>10.0</real> +        <real>10.0</real>          </map>      <key>FilterItemsMaxTimePerFrameVisible</key>      <map> @@ -8707,7 +8707,7 @@    <key>RenderDepthOfField</key>    <map>      <key>Comment</key> -    <string>Whether to use depth of field effect when lighting and shadows are enabled</string> +    <string>Whether to use depth of field effect when Advanced Lighting Model is enabled</string>      <key>Persist</key>      <integer>1</integer>      <key>Type</key> @@ -10002,7 +10002,18 @@        <key>Value</key>        <integer>0</integer>      </map> -    <key>RevokePermsOnStopAnimation</key> +		<key>ReportBugURL</key> +		<map> +			<key>Comment</key> +			<string>URL used for filing bugs from viewer</string> +			<key>Persist</key> +			<integer>1</integer> +			<key>Type</key> +			<string>String</string> +			<key>Value</key> +			<string>https://jira.secondlife.com/secure/CreateIssueDetails!init.jspa?pid=10610&issuetype=1&environment=[ENVIRONMENT]&customfield_10253=[LOCATION]</string> +		</map> +	<key>RevokePermsOnStopAnimation</key>      <map>        <key>Comment</key>        <string>Clear animation permssions when choosing "Stop Animating Me"</string> diff --git a/indra/newview/app_settings/shaders/class1/interface/benchmarkF.glsl b/indra/newview/app_settings/shaders/class1/interface/benchmarkF.glsl new file mode 100644 index 0000000000..1936e0dcaa --- /dev/null +++ b/indra/newview/app_settings/shaders/class1/interface/benchmarkF.glsl @@ -0,0 +1,39 @@ +/**  + * @file benchmarkF.glsl + * + * $LicenseInfo:firstyear=2007&license=viewerlgpl$ + * Second Life Viewer Source Code + * Copyright (C) 2011, Linden Research, Inc. + *  + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; + * version 2.1 of the License only. + *  + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU + * Lesser General Public License for more details. + *  + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA + *  + * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA + * $/LicenseInfo$ + */ + +#ifdef DEFINE_GL_FRAGCOLOR +out vec4 frag_color; +#else +#define frag_color gl_FragColor +#endif + +uniform sampler2D diffuseMap; + +VARYING vec2 tc0; + +void main()  +{ +	frag_color = texture2D(diffuseMap, tc0); +} diff --git a/indra/newview/app_settings/shaders/class1/interface/benchmarkV.glsl b/indra/newview/app_settings/shaders/class1/interface/benchmarkV.glsl new file mode 100644 index 0000000000..7beb20ede4 --- /dev/null +++ b/indra/newview/app_settings/shaders/class1/interface/benchmarkV.glsl @@ -0,0 +1,38 @@ +/**  + * @file benchmarkV.glsl + * + * $LicenseInfo:firstyear=2007&license=viewerlgpl$ + * Second Life Viewer Source Code + * Copyright (C) 2011, Linden Research, Inc. + *  + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; + * version 2.1 of the License only. + *  + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU + * Lesser General Public License for more details. + *  + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA + *  + * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA + * $/LicenseInfo$ + */ + +uniform mat4 modelview_projection_matrix; + +ATTRIBUTE vec3 position; + +VARYING vec2 tc0; + +void main() +{ +	gl_Position = vec4(position, 1.0);  +	 +	tc0 = (position.xy*0.5+0.5); +} + diff --git a/indra/newview/app_settings/shaders/class1/interface/solidcolorF.glsl b/indra/newview/app_settings/shaders/class1/interface/solidcolorF.glsl index 67dc500493..da02534dbb 100755 --- a/indra/newview/app_settings/shaders/class1/interface/solidcolorF.glsl +++ b/indra/newview/app_settings/shaders/class1/interface/solidcolorF.glsl @@ -31,12 +31,13 @@ out vec4 frag_color;  uniform sampler2D tex0; -VARYING vec4 vertex_color; +uniform vec4 color; +  VARYING vec2 vary_texcoord0;  void main()   { -	float alpha = texture2D(tex0, vary_texcoord0.xy).a * vertex_color.a; +	float alpha = texture2D(tex0, vary_texcoord0.xy).a * color.a; -	frag_color = vec4(vertex_color.rgb, alpha); +	frag_color = vec4(color.rgb, alpha);  } diff --git a/indra/newview/app_settings/shaders/class1/interface/solidcolorV.glsl b/indra/newview/app_settings/shaders/class1/interface/solidcolorV.glsl index c58f9dfdaf..f33115d78d 100755 --- a/indra/newview/app_settings/shaders/class1/interface/solidcolorV.glsl +++ b/indra/newview/app_settings/shaders/class1/interface/solidcolorV.glsl @@ -26,16 +26,13 @@  uniform mat4 modelview_projection_matrix;  ATTRIBUTE vec3 position; -ATTRIBUTE vec4 diffuse_color;  ATTRIBUTE vec2 texcoord0; -VARYING vec4 vertex_color;  VARYING vec2 vary_texcoord0;  void main()  {  	gl_Position = modelview_projection_matrix * vec4(position.xyz, 1.0); -	vertex_color = diffuse_color;  	vary_texcoord0 = texcoord0;  } | 
