mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-31 23:15:31 +00:00
SDL_BlitScaled name
This commit is contained in:
parent
0fb37403cd
commit
6bf1984db9
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue