Added SDL_GetRendererOutputSize

This commit is contained in:
David Barnett 2014-12-07 12:55:56 +13:00
Родитель 99f2688d2b
Коммит 19b00a2345
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -1744,6 +1744,14 @@ namespace SDL2
out SDL_RendererInfo info
);
/* renderer refers to an SDL_Renderer* */
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_GetRendererOutputSize(
IntPtr renderer,
out int w,
out int h
);
/* texture refers to an SDL_Texture* */
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_GetTextureAlphaMod(