Correct cast operator position.
authorJarl Gullberg <jarl.gullberg@gmail.com>
Sun, 30 Jul 2017 15:58:15 +0000 (17:58 +0200)
committerJarl Gullberg <jarl.gullberg@gmail.com>
Fri, 4 Aug 2017 10:35:06 +0000 (12:35 +0200)
src/OpenTK/Math/Box2.cs
src/OpenTK/Math/Box2d.cs
src/OpenTK/Math/MathHelper.cs
src/OpenTK/Platform/Egl/EglAnglePlatformFactory.cs
src/OpenTK/Platform/Egl/EglContext.cs
src/OpenTK/Platform/Egl/EglGraphicsMode.cs
src/OpenTK/Platform/Windows/WinRawJoystick.cs
src/OpenTK/Platform/Windows/WinRawKeyboard.cs
src/OpenTK/Platform/Windows/WinRawMouse.cs
src/OpenTK/Platform/X11/Functions.cs

index 16789ef..51b27e6 100644 (file)
@@ -184,7 +184,7 @@ namespace OpenTK
         /// </summary>
         public override bool Equals(object obj)
         {
-            return obj is Box2 && Equals((Box2) obj);
+            return obj is Box2 && Equals((Box2)obj);
         }
 
         /// <summary>
index 8b32e23..232ab4e 100644 (file)
@@ -185,7 +185,7 @@ namespace OpenTK
         /// </summary>
         public override bool Equals(object obj)
         {
-            return obj is Box2d && Equals((Box2d) obj);
+            return obj is Box2d && Equals((Box2d)obj);
         }
 
         /// <summary>
index f5fac0a..66e0038 100644 (file)
@@ -306,7 +306,7 @@ namespace OpenTK
         }
 
         private static unsafe int FloatToInt32Bits(float f) {
-            return *((int*) &f);
+            return *((int*)&f);
         }
 
         /// <summary>
index 2d2cb07..d0dedb5 100644 (file)
@@ -53,7 +53,7 @@ namespace OpenTK.Platform.Egl
         public override IGraphicsContext CreateGLContext(GraphicsMode mode, IWindowInfo window,
             IGraphicsContext shareContext, bool directRendering, int major, int minor, GraphicsContextFlags flags)
         {
-            var angle_window = (IAngleWindowInfoInternal) window;
+            var angle_window = (IAngleWindowInfoInternal)window;
             var egl_window = CreateWindowInfo(angle_window, major, flags);
             var egl_context = new EglWinContext(mode, egl_window, shareContext, major, minor, flags);
             angle_window.EglContext = egl_context;
@@ -63,7 +63,7 @@ namespace OpenTK.Platform.Egl
         public override IGraphicsContext CreateGLContext(ContextHandle handle, IWindowInfo window,
             IGraphicsContext shareContext, bool directRendering, int major, int minor, GraphicsContextFlags flags)
         {
-            var angle_window = (IAngleWindowInfoInternal) window;
+            var angle_window = (IAngleWindowInfoInternal)window;
             var egl_window = CreateWindowInfo(angle_window, major, flags);
             var egl_context = new EglWinContext(handle, egl_window, shareContext, major, minor, flags);
             angle_window.EglContext = egl_context;
index 5e12332..d85850a 100644 (file)
@@ -152,12 +152,12 @@ namespace OpenTK.Platform.Egl
             {
                 if (window is EglWindowInfo)
                 {
-                    WindowInfo = (EglWindowInfo) window;
+                    WindowInfo = (EglWindowInfo)window;
                 }
 #if !ANDROID
                 else if (window is IAngleWindowInfoInternal)
                 {
-                    WindowInfo = ((IAngleWindowInfoInternal) window).EglWindowInfo;
+                    WindowInfo = ((IAngleWindowInfoInternal)window).EglWindowInfo;
                 }
 #endif
 
@@ -263,9 +263,9 @@ namespace OpenTK.Platform.Egl
             var internalContext = sharedContext as IGraphicsContextInternal;
             if (internalContext != null)
             {
-                return (EglContext) internalContext.Implementation;
+                return (EglContext)internalContext.Implementation;
             }
-            return (EglContext) sharedContext;
+            return (EglContext)sharedContext;
         }
     }
 }
index 91df6fb..c66385b 100644 (file)
@@ -58,7 +58,7 @@ namespace OpenTK.Platform.Egl
             IntPtr[] configs = new IntPtr[1];
             int[] attribList = new int[]
             {
-                Egl.SURFACE_TYPE, (int) surfaceType,
+                Egl.SURFACE_TYPE, (int)surfaceType,
                 Egl.RENDERABLE_TYPE, (int)renderableFlags,
 
                 Egl.RED_SIZE, color.Red,
index 233a640..cadd9a1 100644 (file)
@@ -426,8 +426,8 @@ namespace OpenTK.Platform.Windows
                 {
                     if (stick.AxisCaps[i].LogicalMin > 0)
                     {
-                        short scaled_value = (short) HidHelper.ScaleValue(
-                            (int) ((long) value + stick.AxisCaps[i].LogicalMin),
+                        short scaled_value = (short)HidHelper.ScaleValue(
+                            (int)((long)value + stick.AxisCaps[i].LogicalMin),
                             stick.AxisCaps[i].LogicalMin, stick.AxisCaps[i].LogicalMax,
                             Int16.MinValue, Int16.MaxValue);
                         stick.SetAxis(collection, page, usage, scaled_value);
index c19c901..bee7eca 100644 (file)
@@ -109,7 +109,7 @@ namespace OpenTK.Platform.Windows
                         // making a guess at backwards compatability. Not sure what older windows returns in these cases...
                         if (deviceClass == null || deviceClass.Equals(string.Empty)){
                             RegistryKey classGUIDKey = Registry.LocalMachine.OpenSubKey(@"SYSTEM\CurrentControlSet\Control\Class\" + deviceClassGUID);
-                            deviceClass = classGUIDKey != null ? (string) classGUIDKey.GetValue("Class") : string.Empty;
+                            deviceClass = classGUIDKey != null ? (string)classGUIDKey.GetValue("Class") : string.Empty;
                         }
 
                         if (String.IsNullOrEmpty(deviceDesc))
index 99d9c62..877f906 100644 (file)
@@ -111,7 +111,7 @@ namespace OpenTK.Platform.Windows
                             // Added to address OpenTK issue 3198 with mouse on Windows 8
                             string deviceClassGUID = (string)regkey.GetValue("ClassGUID");
                             RegistryKey classGUIDKey = Registry.LocalMachine.OpenSubKey(@"SYSTEM\CurrentControlSet\Control\Class\" + deviceClassGUID);
-                            deviceClass = classGUIDKey != null ? (string) classGUIDKey.GetValue("Class") : string.Empty;
+                            deviceClass = classGUIDKey != null ? (string)classGUIDKey.GetValue("Class") : string.Empty;
                         }
 
                         // deviceDesc remained null on a new Win7 system - not sure why.
index 672b74b..288e306 100644 (file)
@@ -553,7 +553,7 @@ namespace OpenTK.Platform.X11
             public byte A, R, G, B;
             public Pixel(byte a, byte r, byte g, byte b)
             {
-                A= a;
+                A = a;
                 R = r;
                 G = g;
                 B = b;
@@ -602,7 +602,7 @@ namespace OpenTK.Platform.X11
             {
                 for (int x = 0; x < width; ++x)
                 {
-                    byte bit = (byte) (1 << (msbfirst ? (7 - (x & 7)) : (x & 7)));
+                    byte bit = (byte)(1 << (msbfirst ? (7 - (x & 7)) : (x & 7)));
                     int offset = y * stride + (x >> 3);
 
                     if (image.GetPixel(x, y).A >= 128)