예제 #1
0
 internal static extern int glfwLoadTextureImage2D(ref GlfwImage img, int flags);
예제 #2
0
 internal static extern int glfwReadMemoryImage(IntPtr data, long size, ref GlfwImage img, int flags);
예제 #3
0
 internal static extern void glfwFreeImage(ref GlfwImage img);
예제 #4
0
 public static int LoadTextureImage2D(ref GlfwImage img, ReadImageModes flags)
 {
     return(GlfwDelegates.glfwLoadTextureImage2D(ref img, (int)flags));
 }
예제 #5
0
 internal static extern int glfwReadImage([MarshalAs(UnmanagedType.LPStr)] string name, out GlfwImage img, int flags);
예제 #6
0
 public static int ReadMemoryImage(IntPtr data, long size, ref GlfwImage img, ReadImageModes flags)
 {
     return(GlfwDelegates.glfwReadMemoryImage(data, size, ref img, (int)flags));
 }
예제 #7
0
 public static void FreeImage(ref GlfwImage img)
 {
     GlfwDelegates.glfwFreeImage(ref img);
 }
예제 #8
0
		public static int LoadTextureImage2D(ref GlfwImage img, ReadImageModes flags) {
			return GlfwDelegates.glfwLoadTextureImage2D(ref img, (int)flags);
		}
예제 #9
0
 public static int ReadImage(string name, out GlfwImage img, ReadImageModes flags)
 {
     return(GlfwDelegates.glfwReadImage(name, out img, (int)flags));
 }
예제 #10
0
		public static int ReadMemoryImage(IntPtr data, long size, ref GlfwImage img, ReadImageModes flags) {
			return GlfwDelegates.glfwReadMemoryImage(data, size, ref img, (int)flags);
		}
예제 #11
0
		public static void FreeImage(ref GlfwImage img) {
			GlfwDelegates.glfwFreeImage(ref img);
		}
예제 #12
0
		public static int ReadImage(string name, out GlfwImage img, ReadImageModes flags) {
			return GlfwDelegates.glfwReadImage(name, out img, (int)flags);
		}
예제 #13
0
		internal static extern int glfwLoadTextureImage2D(ref GlfwImage img, int flags);
예제 #14
0
		internal static extern void glfwFreeImage(ref GlfwImage img);
예제 #15
0
		internal static extern int glfwReadMemoryImage(IntPtr data, long size, ref GlfwImage img, int flags);
예제 #16
0
		internal static extern int glfwReadImage([MarshalAs(UnmanagedType.LPStr)] string name, out GlfwImage img, int flags);