From 6bf1984db9f596a0de295ecfda417e2477f3326a Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Wed, 29 Jan 2014 07:26:00 -0500 Subject: [PATCH] SDL_BlitScaled name --- src/SDL2.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/SDL2.cs b/src/SDL2.cs index 6ca4c7b..03b8fa1 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -2684,7 +2684,7 @@ namespace SDL2 /* src and dst refer to an SDL_Surface* */ [DllImport(nativeLibName, EntryPoint = "SDL_UpperBlitScaled", CallingConvention = CallingConvention.Cdecl)] - public static extern int SDL_BlitSurfaceScaled( + public static extern int SDL_BlitScaled( IntPtr src, ref SDL_Rect srcrect, IntPtr dst, @@ -2697,7 +2697,7 @@ namespace SDL2 * This overload allows for IntPtr.Zero (null) to be passed for srcrect. */ [DllImport(nativeLibName, EntryPoint = "SDL_UpperBlitScaled", CallingConvention = CallingConvention.Cdecl)] - public static extern int SDL_BlitSurfaceScaled( + public static extern int SDL_BlitScaled( IntPtr src, IntPtr srcrect, IntPtr dst, @@ -2710,7 +2710,7 @@ namespace SDL2 * This overload allows for IntPtr.Zero (null) to be passed for dstrect. */ [DllImport(nativeLibName, EntryPoint = "SDL_UpperBlitScaled", CallingConvention = CallingConvention.Cdecl)] - public static extern int SDL_BlitSurfaceScaled( + public static extern int SDL_BlitScaled( IntPtr src, ref SDL_Rect srcrect, IntPtr dst, @@ -2723,7 +2723,7 @@ namespace SDL2 * This overload allows for IntPtr.Zero (null) to be passed for both SDL_Rects. */ [DllImport(nativeLibName, EntryPoint = "SDL_UpperBlitScaled", CallingConvention = CallingConvention.Cdecl)] - public static extern int SDL_BlitSurfaceScaled( + public static extern int SDL_BlitScaled( IntPtr src, IntPtr srcrect, IntPtr dst,