From cceef27e502483e5b89f779d315e8ac315b07ba6 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Tue, 26 Jan 2016 08:42:43 -0500 Subject: [PATCH] Removed QueryTexturePixels --- src/SDL2.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/SDL2.cs b/src/SDL2.cs index 637e21f..62a7c0e 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -1913,14 +1913,6 @@ namespace SDL2 out int h ); - /* texture refers to an SDL_Texture, pixels to a void* */ - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int SDL_QueryTexturePixels( - IntPtr texture, - out IntPtr pixels, - out int pitch - ); - /* renderer refers to an SDL_Renderer* */ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int SDL_RenderClear(IntPtr renderer);