Beispiel #1
0
 public static int LoadTextureImage2D(ref GlfwImage img, ReadImageModes flags)
 {
     return(GlfwDelegates.glfwLoadTextureImage2D(ref img, (int)flags));
 }
Beispiel #2
0
 public static int LoadTexture2D(string name, ReadImageModes flags)
 {
     return(GlfwDelegates.glfwLoadTexture2D(name, (int)flags));
 }
Beispiel #3
0
 public static int LoadMemoryTexture2D(IntPtr data, long size, ReadImageModes flags)
 {
     return(GlfwDelegates.glfwLoadMemoryTexture2D(data, size, (int)flags));
 }
Beispiel #4
0
 public static int ReadImage(string name, out GlfwImage img, ReadImageModes flags)
 {
     return(GlfwDelegates.glfwReadImage(name, out img, (int)flags));
 }
Beispiel #5
0
 public static int ReadMemoryImage(IntPtr data, long size, ref GlfwImage img, ReadImageModes flags)
 {
     return(GlfwDelegates.glfwReadMemoryImage(data, size, ref img, (int)flags));
 }
Beispiel #6
0
		public static int LoadTextureImage2D(ref GlfwImage img, ReadImageModes flags) {
			return GlfwDelegates.glfwLoadTextureImage2D(ref img, (int)flags);
		}
Beispiel #7
0
		public static int LoadMemoryTexture2D(IntPtr data, long size, ReadImageModes flags) {
			return GlfwDelegates.glfwLoadMemoryTexture2D(data, size, (int)flags);
		}
Beispiel #8
0
		public static int LoadTexture2D(string name, ReadImageModes flags) {
			return GlfwDelegates.glfwLoadTexture2D(name, (int)flags);
		}
Beispiel #9
0
		public static int ReadMemoryImage(IntPtr data, long size, ref GlfwImage img, ReadImageModes flags) {
			return GlfwDelegates.glfwReadMemoryImage(data, size, ref img, (int)flags);
		}
Beispiel #10
0
		public static int ReadImage(string name, out GlfwImage img, ReadImageModes flags) {
			return GlfwDelegates.glfwReadImage(name, out img, (int)flags);
		}