public new static Texture2D FromFile(GraphicsDevice graphicsDevice, string filename, int width, int height) { return((Texture2D)Texture.FromFile(graphicsDevice, filename, width, height, 0)); }
public new static Texture2D FromFile(GraphicsDevice graphicsDevice, string filename, TextureCreationParameters creationParameters) { return((Texture2D)Texture.FromFile(graphicsDevice, filename, creationParameters)); }
public new static Texture2D FromFile(GraphicsDevice graphicsDevice, string filename) { return((Texture2D)Texture.FromFile(graphicsDevice, filename)); }
public new static Texture2D FromFile(GraphicsDevice graphicsDevice, Stream textureStream, int numberBytes, TextureCreationParameters creationParameters) { return((Texture2D)Texture.FromFile(graphicsDevice, textureStream, numberBytes, creationParameters)); }
public new static Texture2D FromFile(GraphicsDevice graphicsDevice, Stream textureStream, int numberBytes) { return((Texture2D)Texture.FromFile(graphicsDevice, textureStream, numberBytes)); }
public new static Texture2D FromFile(GraphicsDevice graphicsDevice, Stream textureStream) { return((Texture2D)Texture.FromFile(graphicsDevice, textureStream, -1)); }