idTech4.Renderer.idImageManager.ParseImageProgram C# (CSharp) Метод

ParseImageProgram() публичный Метод

If data is NULL, the timestamps will be filled in, but no image will be generated If both data and timeStamp are NULL, it will just advance past it, which can be used to parse an image program from a text stream.
public ParseImageProgram ( string source, System.DateTime &timeStamp, TextureDepth &depth ) : Microsoft.Xna.Framework.Graphics.Texture2D
source string
timeStamp System.DateTime
depth TextureDepth
Результат Microsoft.Xna.Framework.Graphics.Texture2D
		public Texture2D ParseImageProgram(string source, ref DateTime timeStamp, ref TextureDepth depth)
		{
			return new idImageProgramParser().ParseImageProgram(source, ref timeStamp, ref depth);
		}
		#endregion