Skip to content

Commit a726ffb

Browse files
committed
Removed SM3 conditional compilation after talking to jjagg
1 parent 78dd0f6 commit a726ffb

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

BloomEffectRenderer.sln.DotSettings

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,17 @@ OTHER DEALINGS IN THE SOFTWARE.
3030

3131
For more information, please refer to <http://unlicense.org>
3232
***************************************************************************</s:String>
33+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=AutoRecoverer/@EntryIndexedValue">LIVE_MONITOR</s:String>
34+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=Format/@EntryIndexedValue">LIVE_MONITOR</s:String>
35+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=ShowAnnotations/@EntryIndexedValue">LIVE_MONITOR</s:String>
36+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=StartPage_002DIsDownloadRefreshEnabled/@EntryIndexedValue">LIVE_MONITOR</s:String>
37+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=StartPage_002DOnEnvironmentStatup/@EntryIndexedValue">LIVE_MONITOR</s:String>
38+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=SyncSettings/@EntryIndexedValue">LIVE_MONITOR</s:String>
39+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=TextEditor_002DCodeLens/@EntryIndexedValue">LIVE_MONITOR</s:String>
40+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=TextEditor_002DTrackChanges_002D2/@EntryIndexedValue">LIVE_MONITOR</s:String>
41+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=VCS/@EntryIndexedValue">LIVE_MONITOR</s:String>
42+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=VsBulb/@EntryIndexedValue">DO_NOTHING</s:String>
43+
<s:String x:Key="/Default/Environment/PerformanceGuide/SwitchBehaviour/=XAML_0020Designer/@EntryIndexedValue">LIVE_MONITOR</s:String>
3344
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpAttributeForSingleLineMethodUpgrade/@EntryIndexedValue">True</s:Boolean>
3445
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue">True</s:Boolean>
3546
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>

BloomEffectRenderer/Effects/Resources/BloomCombine.fx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ technique BloomCombine
5555
{
5656
#if SM4
5757
PixelShader = compile ps_4_0_level_9_1 PixelShaderFunction();
58-
#elif SM3
59-
PixelShader = compile ps_3_0 PixelShaderFunction();
6058
#else
6159
PixelShader = compile ps_2_0 PixelShaderFunction();
6260
#endif

BloomEffectRenderer/Effects/Resources/BloomExtract.fx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ technique BloomExtract
2525
{
2626
#if SM4
2727
PixelShader = compile ps_4_0_level_9_1 PixelShaderFunction();
28-
#elif SM3
29-
PixelShader = compile ps_3_0 PixelShaderFunction();
3028
#else
3129
PixelShader = compile ps_2_0 PixelShaderFunction();
3230
#endif

BloomEffectRenderer/Effects/Resources/GaussianBlur.fx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ technique GaussianBlur
3838
{
3939
#if SM4
4040
PixelShader = compile ps_4_0_level_9_1 PixelShaderFunction();
41-
#elif SM3
42-
PixelShader = compile ps_3_0 PixelShaderFunction();
4341
#else
4442
PixelShader = compile ps_2_0 PixelShaderFunction();
4543
#endif

0 commit comments

Comments
 (0)