This commit is contained in:
Joonas Rikkonen
2017-10-19 00:02:30 +03:00
6 changed files with 4 additions and 4 deletions

View File

@@ -146,8 +146,8 @@ namespace Barotrauma
{
GraphicsWidth = Config.GraphicsWidth;
GraphicsHeight = Config.GraphicsHeight;
GraphicsDeviceManager.GraphicsProfile = GraphicsProfile.HiDef;
GraphicsDeviceManager.PreferredBackBufferFormat = SurfaceFormat.Bgra32;
GraphicsDeviceManager.GraphicsProfile = GraphicsProfile.Reach;
GraphicsDeviceManager.PreferredBackBufferFormat = SurfaceFormat.Color;
GraphicsDeviceManager.PreferMultiSampling = false;
GraphicsDeviceManager.SynchronizeWithVerticalRetrace = Config.VSyncEnabled;

View File

@@ -5,7 +5,7 @@
/intermediateDir:obj/$(Platform)
/platform:Windows
/config:
/profile:HiDef
/profile:Reach
/compress:False
#-------------------------------- References --------------------------------#

View File

@@ -33,6 +33,6 @@ technique StencilShader
{
pass Pass1
{
PixelShader = compile ps_4_0_level_9_3 main();
PixelShader = compile ps_4_0_level_9_1 main();
}
}