Reign.Video.ImageBMP.init C# (CSharp) Méthode

init() protected méthode

protected init ( Stream stream, bool flip, Loader loadedCallback ) : void
stream System.IO.Stream
flip bool
loadedCallback Reign.Core.Loader
Résultat void
		protected override void init(Stream stream, bool flip, Loader.LoadedCallbackMethod loadedCallback)
		{
			ImageType = ImageTypes.BMP;
			ImageFormat = ImageFormats.BMP;
			SurfaceFormat = SurfaceFormats.RGBAx8;

			base.init(stream, flip, loadedCallback);
		}
		#endregion