Added SDL_RenderSetLogicalSize and SDL_RenderGetLogicalSize

This commit is contained in:
Luís Reis 2013-11-30 15:52:55 +00:00
parent 062241ca82
commit 5caa264f85

View file

@ -1894,6 +1894,14 @@ namespace SDL2
int count int count
); );
/* renderer refers to an SDL_Renderer* */
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void SDL_RenderGetLogicalSize(
IntPtr renderer,
out int w,
out int h
);
/* renderer refers to an SDL_Renderer* */ /* renderer refers to an SDL_Renderer* */
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_RenderGetViewport( public static extern int SDL_RenderGetViewport(
@ -1915,6 +1923,14 @@ namespace SDL2
int pitch int pitch
); );
/* renderer refers to an SDL_Renderer* */
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_RenderSetLogicalSize(
IntPtr renderer,
int w,
int h
);
/* renderer refers to an SDL_Renderer* */ /* renderer refers to an SDL_Renderer* */
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_RenderSetViewport( public static extern int SDL_RenderSetViewport(