aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Frontend/ShiftOS.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Frontend/ShiftOS.cs')
-rw-r--r--ShiftOS.Frontend/ShiftOS.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/ShiftOS.Frontend/ShiftOS.cs b/ShiftOS.Frontend/ShiftOS.cs
index 65ec7aa..7cc142e 100644
--- a/ShiftOS.Frontend/ShiftOS.cs
+++ b/ShiftOS.Frontend/ShiftOS.cs
@@ -29,6 +29,8 @@ namespace ShiftOS.Frontend
private bool failEnded = false;
private double failCharAddMS = 0;
+ public Color UITint = Color.White;
+
private bool DisplayDebugInfo = false;
private KeyboardListener keyboardListener = new KeyboardListener ();
@@ -59,7 +61,7 @@ namespace ShiftOS.Frontend
);
Content.RootDirectory = "Content";
-
+ graphicsDevice.PreferMultiSampling = true;
//Make window borderless
Window.IsBorderless = false;
@@ -327,9 +329,10 @@ namespace ShiftOS.Frontend
var rasterizerState = new RasterizerState();
rasterizerState.CullMode = CullMode.None;
rasterizerState.MultiSampleAntiAlias = true;
+
spriteBatch.Begin(SpriteSortMode.Immediate, BlendState.NonPremultiplied,
- SamplerState.LinearClamp, DepthStencilState.Default,
+ SamplerState.LinearWrap, DepthStencilState.Default,
rasterizerState);
//Draw the desktop BG.
UIManager.DrawBackgroundLayer(GraphicsDevice, spriteBatch, 640, 480);