Contentless/Build/MonoGame.Framework.Content.Pipeline.xml
2019-11-01 14:51:17 +01:00

7295 lines
402 KiB
XML

<?xml version="1.0"?>
<doc>
<assembly>
<name>MonoGame.Framework.Content.Pipeline</name>
</assembly>
<members>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent">
<summary>
Encapsulates and provides operations, such as format conversions, on the
source audio. This type is produced by the audio importers and used by audio
processors to produce compiled audio assets.
</summary>
<remarks>Note that AudioContent can load and process audio files that are not supported by the importers.</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent.FileName">
<summary>
The name of the original source audio file.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent.FileType">
<summary>
The type of the original source audio file.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent.Data">
<summary>
The current raw audio data without header information.
</summary>
<remarks>
This changes from the source data to the output data after conversion.
For MP3 and WMA files this throws an exception to match XNA behavior.
</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent.Duration">
<summary>
The duration of the audio data.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent.Format">
<summary>
The current format of the audio data.
</summary>
<remarks>This changes from the source format to the output format after conversion.</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent.LoopLength">
<summary>
The current loop length in samples.
</summary>
<remarks>This changes from the source loop length to the output loop length after conversion.</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent.LoopStart">
<summary>
The current loop start location in samples.
</summary>
<remarks>This changes from the source loop start to the output loop start after conversion.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent.#ctor(System.String,Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFileType)">
<summary>
Initializes a new instance of AudioContent.
</summary>
<param name="audioFileName">Name of the audio source file to be processed.</param>
<param name="audioFileType">Type of the processed audio: WAV, MP3 or WMA.</param>
<remarks>Constructs the object from the specified source file, in the format specified.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent.ConvertFormat(Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionFormat,Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionQuality,System.String)">
<summary>
Transcodes the source audio to the target format and quality.
</summary>
<param name="formatType">Format to convert this audio to.</param>
<param name="quality">Quality of the processed output audio. For streaming formats, it can be one of the following: Low (96 kbps), Medium (128 kbps), Best (192 kbps). For WAV formats, it can be one of the following: Low (11kHz ADPCM), Medium (22kHz ADPCM), Best (44kHz PCM)</param>
<param name="saveToFile">
The name of the file that the converted audio should be saved into. This is used for SongContent, where
the audio is stored external to the XNB file. If this is null, then the converted audio is stored in
the Data property.
</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFileType">
<summary>
Type of the audio file.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFileType.Mp3">
<summary>
The MP3 format
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFileType.Wav">
<summary>
The WAV format
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFileType.Wma">
<summary>
The WMA format
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFileType.Ogg">
<summary>
The Ogg format
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFormat">
<summary>
Encapsulates the native audio format (WAVEFORMATEX) information of the audio content.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFormat.AverageBytesPerSecond">
<summary>
Gets the average bytes processed per second.
</summary>
<value>Average bytes processed per second.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFormat.BitsPerSample">
<summary>
Gets the bit depth of the audio content.
</summary>
<value>If the audio has not been processed, the source bit depth; otherwise, the bit depth of the new format.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFormat.BlockAlign">
<summary>
Gets the number of bytes per sample block, taking channels into consideration. For example, for 16-bit stereo audio (PCM format), the size of each sample block is 4 bytes.
</summary>
<value>Number of bytes, per sample block.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFormat.ChannelCount">
<summary>
Gets the number of channels.
</summary>
<value>If the audio has not been processed, the source channel count; otherwise, the new channel count.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFormat.Format">
<summary>
Gets the format of the audio content.
</summary>
<value>If the audio has not been processed, the format tag of the source content; otherwise, the new format tag.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFormat.NativeWaveFormat">
<summary>
Gets the raw byte buffer for the format. For non-PCM formats, this buffer contains important format-specific information beyond the basic format information exposed in other properties of the AudioFormat type.
</summary>
<value>The raw byte buffer represented in a collection.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioFormat.SampleRate">
<summary>
Gets the sample rate of the audio content.
</summary>
<value>If the audio has not been processed, the source sample rate; otherwise, the new sample rate.</value>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioHelper">
<summary>
Helper methods for audio importing, conversion and processing.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioHelper.GetExtension(Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionFormat)">
<summary>
Gets the file extension for an audio format.
</summary>
<param name="format">The conversion format</param>
<returns>The file extension for the given conversion format.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioProfile.ForPlatform(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<summary>
Find the profile for this target platform.
</summary>
<param name="platform">The platform target for audio.</param>
<returns></returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioProfile.Supports(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<summary>
Returns true if this profile supports audio processing for this platform.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioProfile.ConvertAudio(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform,Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionQuality,Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent)">
<summary>
Converts the audio content to work on targeted platform.
</summary>
<param name="platform">The platform to build the audio content for.</param>
<param name="quality">The suggested audio quality level.</param>
<param name="content">The audio content to convert.</param>
<returns>The quality used for conversion which could be different from the suggested quality.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioProfile.ConvertStreamingAudio(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform,Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionQuality,Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent,System.String@)">
<summary>
Converts the audio content to a streaming format that works on targeted platform.
</summary>
<param name="platform">The platform to build the audio content for.</param>
<param name="quality">The suggested audio quality level.</param>
<param name="content">he audio content to convert.</param>
<param name="outputFileName"></param>
<returns>The quality used for conversion which could be different from the suggested quality.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionFormat">
<summary>
Target formats supported for audio source conversions.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionFormat.Adpcm">
<summary>
Microsoft ADPCM encoding technique using 4 bits
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionFormat.Pcm">
<summary>
8/16-bit mono/stereo PCM audio 8KHz-48KHz
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionFormat.WindowsMedia">
<summary>
Windows Media CBR formats (64 kbps, 128 kbps, 192 kbps)
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionFormat.Xma">
<summary>
The Xbox compression format
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionFormat.ImaAdpcm">
<summary>
QuickTime ADPCM format
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionFormat.Aac">
<summary>
Advanced Audio Coding
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionFormat.Vorbis">
<summary>
Vorbis open, patent-free audio encoding
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionQuality">
<summary>
Compression quality of the audio content.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionQuality.Low">
<summary>
High compression yielding lower file size, but could compromise audio quality
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionQuality.Medium">
<summary>
Moderate compression resulting in a compromise between audio quality and file size
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Audio.ConversionQuality.Best">
<summary>
Lowest compression, but the best audio quality
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel">
<summary>
Provides methods and properties for maintaining an animation channel. An animation channel is a collection of keyframes describing the movement of a single bone or rigid object.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.Count">
<summary>
Gets the number of keyframes in the collection.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.Item(System.Int32)">
<summary>
Gets the keyframe at the specified index position.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.System#Collections#Generic#ICollection{Microsoft#Xna#Framework#Content#Pipeline#Graphics#AnimationKeyframe}#IsReadOnly">
<summary>
Returns a value indicating whether the object is read-only.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.#ctor">
<summary>
Initializes a new instance of AnimationChannel.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.System#Collections#Generic#ICollection{Microsoft#Xna#Framework#Content#Pipeline#Graphics#AnimationKeyframe}#Add(Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe)">
<summary>
To satisfy ICollection
</summary>
<param name="item"></param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.Add(Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe)">
<summary>
Adds a new keyframe to the collection, automatically sorting the contents according to keyframe times.
</summary>
<param name="item">Keyframe to be added to the channel.</param>
<returns>Index of the new keyframe.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.Clear">
<summary>
Removes all keyframes from the collection.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.Contains(Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe)">
<summary>
Searches the collection for the specified keyframe.
</summary>
<param name="item">Keyframe being searched for.</param>
<returns>true if the keyframe exists; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.System#Collections#Generic#ICollection{Microsoft#Xna#Framework#Content#Pipeline#Graphics#AnimationKeyframe}#CopyTo(Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe[],System.Int32)">
<summary>
To satisfy ICollection
</summary>
<param name="array"></param>
<param name="arrayIndex"></param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.IndexOf(Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe)">
<summary>
Determines the index for the specified keyframe.
</summary>
<param name="item">Identity of a keyframe.</param>
<returns>Index of the specified keyframe.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.Remove(Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe)">
<summary>
Removes the specified keyframe from the collection.
</summary>
<param name="item">Keyframe being removed.</param>
<returns>true if the keyframe was removed; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.RemoveAt(System.Int32)">
<summary>
Removes the keyframe at the specified index position.
</summary>
<param name="index">Index of the keyframe being removed.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.GetEnumerator">
<summary>
Returns an enumerator that iterates through the keyframes.
</summary>
<returns>Enumerator for the keyframe collection.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannel.System#Collections#IEnumerable#GetEnumerator">
<summary>
To satisfy ICollection
</summary>
<returns></returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannelDictionary">
<summary>
Collection of animation data channels, one per bone or rigid object.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationChannelDictionary.#ctor">
<summary>
Initializes a new instance of AnimationChannelDictionary.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationContent">
<summary>
Provides properties for maintaining an animation.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationContent.Channels">
<summary>
Gets the collection of animation data channels. Each channel describes the movement of a single bone or rigid object.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationContent.Duration">
<summary>
Gets or sets the total length of the animation.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationContent.#ctor">
<summary>
Initializes a new instance of AnimationContent.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationContentDictionary">
<summary>
Collection of named animations.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationContentDictionary.#ctor">
<summary>
Initializes a new instance of AnimationContentDictionary.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe">
<summary>
Provides methods and properties for managing a keyframe. A keyframe describes the position of an animation channel at a single point in time.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe.Time">
<summary>
Gets the time offset from the start of the animation to the position described by this keyframe.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe.Transform">
<summary>
Gets or sets the position described by this keyframe.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe.#ctor(System.TimeSpan,Microsoft.Xna.Framework.Matrix)">
<summary>
Initializes a new instance of AnimationKeyframe with the specified time offsetand transform.
</summary>
<param name="time">Time offset of the keyframe.</param>
<param name="transform">Position of the keyframe.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe.CompareTo(Microsoft.Xna.Framework.Content.Pipeline.Graphics.AnimationKeyframe)">
<summary>
Compares this instance of a keyframe to another.
</summary>
<param name="other">Keyframe being compared to.</param>
<returns>Indication of their relative values.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AtcExplicitBitmapContent.#ctor">
<summary>
Creates an instance of AtcExplicitBitmapContent.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AtcExplicitBitmapContent.#ctor(System.Int32,System.Int32)">
<summary>
Creates an instance of AtcExplicitBitmapContent with the specified width and height.
</summary>
<param name="width">The width in pixels of the bitmap.</param>
<param name="height">The height in pixels of the bitmap.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AtcExplicitBitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AtcExplicitBitmapContent.ToString">
<summary>
Returns a string description of the bitmap.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AtcInterpolatedBitmapContent.#ctor">
<summary>
Creates an instance of AtcInterpolatedBitmapContent.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AtcInterpolatedBitmapContent.#ctor(System.Int32,System.Int32)">
<summary>
Creates an instance of AtcInterpolatedBitmapContent with the specified width and height.
</summary>
<param name="width">The width in pixels of the bitmap.</param>
<param name="height">The height in pixels of the bitmap.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AtcInterpolatedBitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.AtcInterpolatedBitmapContent.ToString">
<summary>
Returns a string description of the bitmap.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent">
<summary>
Provides properties and methods for creating and maintaining a bitmap resource.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.Height">
<summary>
Gets or sets the height of the bitmap, in pixels.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.Width">
<summary>
Gets or sets the width of the bitmap, in pixels.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.#ctor">
<summary>
Initializes a new instance of BitmapContent.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of BitmapContent with the specified width or height.
</summary>
<param name="width">Width, in pixels, of the bitmap resource.</param>
<param name="height">Height, in pixels, of the bitmap resource.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.Copy(Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent,Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent)">
<summary>
Copies one bitmap into another.
The destination bitmap can be in any format and size. If the destination is larger or smaller, the source bitmap is scaled accordingly.
</summary>
<param name="sourceBitmap">BitmapContent being copied.</param>
<param name="destinationBitmap">BitmapContent being overwritten.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.Copy(Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent,Microsoft.Xna.Framework.Rectangle,Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent,Microsoft.Xna.Framework.Rectangle)">
<summary>
Copies one bitmap into another.
The destination bitmap can be in any format and size. If the destination is larger or smaller, the source bitmap is scaled accordingly.
</summary>
<param name="sourceBitmap">BitmapContent being copied.</param>
<param name="sourceRegion">Region of sourceBitmap.</param>
<param name="destinationBitmap">BitmapContent being overwritten.</param>
<param name="destinationRegion">Region of bitmap to be overwritten.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.GetPixelData">
<summary>
Reads encoded bitmap content.
</summary>
<returns>Array containing encoded bitmap data.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.SetPixelData(System.Byte[])">
<summary>
Writes encoded bitmap content.
</summary>
<param name="sourceData">Array containing encoded bitmap data to be set.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.ToString">
<summary>
Returns a string description of the bitmap resource.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.TryCopyFrom(Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent,Microsoft.Xna.Framework.Rectangle,Microsoft.Xna.Framework.Rectangle)">
<summary>
Attempts to copy a region from a specified bitmap.
</summary>
<param name="sourceBitmap">BitmapContent being copied.</param>
<param name="sourceRegion">Location of sourceBitmap.</param>
<param name="destinationRegion">Region of destination bitmap to be overwritten.</param>
<returns>true if region copy is supported; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.TryCopyTo(Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent,Microsoft.Xna.Framework.Rectangle,Microsoft.Xna.Framework.Rectangle)">
<summary>
Attempts to copy a region of the specified bitmap onto another.
</summary>
<param name="destinationBitmap">BitmapContent being overwritten.</param>
<param name="sourceRegion">Location of the source bitmap.</param>
<param name="destinationRegion">Region of destination bitmap to be overwritten.</param>
<returns>true if region copy is supported; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent.ValidateCopyArguments(Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent,Microsoft.Xna.Framework.Rectangle,Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent,Microsoft.Xna.Framework.Rectangle)">
<summary>
Validates the arguments to the Copy function.
</summary>
<param name="sourceBitmap">BitmapContent being copied.</param>
<param name="sourceRegion">Location of sourceBitmap.</param>
<param name="destinationBitmap">BitmapContent being overwritten.</param>
<param name="destinationRegion">Region of bitmap to be overwritten.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneContent">
<summary>
Represents an animation skeleton.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneContent.#ctor">
<summary>
Initializes a new instance of BoneContent.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneWeight">
<summary>
Provides properties for managing a bone weight.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneWeight.BoneName">
<summary>
Gets the name of the bone.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneWeight.Weight">
<summary>
Gets the amount of bone influence, ranging from zero to one. The complete set of weights in a BoneWeightCollection should sum to one.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneWeight.#ctor(System.String,System.Single)">
<summary>
Initializes a new instance of BoneWeight with the specified name and weight.
</summary>
<param name="boneName">Name of the bone.</param>
<param name="weight">Amount of influence, ranging from zero to one.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneWeightCollection">
<summary>
Collection of bone weights of a vertex.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneWeightCollection.#ctor">
<summary>
Initializes a new instance of BoneWeightCollection.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneWeightCollection.NormalizeWeights">
<summary>
Normalizes the contents of the weights list.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneWeightCollection.NormalizeWeights(System.Int32)">
<summary>
Normalizes the contents of the bone weights list.
</summary>
<param name="maxWeights">Maximum number of weights allowed.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.CharacterRegion.Any``1(System.Collections.Generic.IEnumerable{``0})">
<summary>
Test if there is an element in this enumeration.
</summary>
<typeparam name="T">Type of the element</typeparam>
<param name="source">The enumerable source.</param>
<returns><c>true</c> if there is an element in this enumeration, <c>false</c> otherwise</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.CharacterRegion.SelectMany``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``1}})">
<summary>
Select elements from an enumeration.
</summary>
<typeparam name="TSource">The type of the T source.</typeparam>
<typeparam name="TResult">The type of the T result.</typeparam>
<param name="source">The source.</param>
<param name="selector">The selector.</param>
<returns>A enumeration of selected values</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.CharacterRegion.Distinct``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})">
<summary>
Selects distinct elements from an enumeration.
</summary>
<typeparam name="TSource">The type of the T source.</typeparam>
<param name="source">The source.</param>
<param name="comparer">The comparer.</param>
<returns>A enumeration of selected values</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Dxt1BitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Dxt1BitmapContent.ToString">
<summary>
Returns a string description of the bitmap.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Dxt3BitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Dxt3BitmapContent.ToString">
<summary>
Returns a string description of the bitmap.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Dxt5BitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Dxt5BitmapContent.ToString">
<summary>
Returns a string description of the bitmap.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.EffectContent">
<summary>
Contains the source code for a DirectX Effect, loaded from a .fx file.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.EffectContent.#ctor">
<summary>
Initializes a new instance of EffectContent.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.EffectContent.EffectCode">
<summary>
Gets or sets the effect program source code.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Etc1BitmapContent">
<summary>
Supports the processing of a texture compressed using ETC1.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Etc1BitmapContent.#ctor">
<summary>
Initializes a new instance of Etc1BitmapContent.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Etc1BitmapContent.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of Etc1BitmapContent with the specified width or height.
</summary>
<param name="width">Width in pixels of the bitmap resource.</param>
<param name="height">Height in pixels of the bitmap resource.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Etc1BitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.Etc1BitmapContent.ToString">
<summary>
Returns a string description of the bitmap.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription">
<summary>
Provides information to the FontDescriptionProcessor describing which font to rasterize, which font size to utilize, and which Unicode characters to include in the processor output.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription.FontName">
<summary>
Gets or sets the name of the font, such as "Times New Roman" or "Arial". This value cannot be null or empty.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription.Size">
<summary>
Gets or sets the size, in points, of the font.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription.Spacing">
<summary>
Gets or sets the amount of space, in pixels, to insert between letters in a string.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription.UseKerning">
<summary>
Indicates if kerning information is used when drawing characters.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription.Style">
<summary>
Gets or sets the style of the font, expressed as a combination of one or more FontDescriptionStyle flags.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription.DefaultCharacter">
<summary>
Gets or sets the default character for the font.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription.#ctor(System.String,System.Single,System.Single)">
<summary>
Initializes a new instance of FontDescription and initializes its members to the specified font, size, and spacing, using FontDescriptionStyle.Regular as the default value for Style.
</summary>
<param name="fontName">The name of the font, such as Times New Roman.</param>
<param name="size">The size, in points, of the font.</param>
<param name="spacing">The amount of space, in pixels, to insert between letters in a string.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription.#ctor(System.String,System.Single,System.Single,Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescriptionStyle)">
<summary>
Initializes a new instance of FontDescription and initializes its members to the specified font, size, spacing, and style.
</summary>
<param name="fontName">The name of the font, such as Times New Roman.</param>
<param name="size">The size, in points, of the font.</param>
<param name="spacing">The amount of space, in pixels, to insert between letters in a string.</param>
<param name="fontStyle">The font style for the font.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescription.#ctor(System.String,System.Single,System.Single,Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescriptionStyle,System.Boolean)">
<summary>
Initializes a new instance of FontDescription using the specified values.
</summary>
<param name="fontName">The name of the font, such as Times New Roman.</param>
<param name="size">The size, in points, of the font.</param>
<param name="spacing">The amount of space, in pixels, to insert between letters in a string.</param>
<param name="fontStyle">The font style for the font.</param>
<param name="useKerning">true if kerning information is used when drawing characters; false otherwise.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescriptionStyle">
<summary>
Flags that describe style information to be applied to text.
You can combine these flags by using a bitwise OR operator (|).
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescriptionStyle.Bold">
<summary>
Bold text.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescriptionStyle.Italic">
<summary>
Italic text.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Graphics.FontDescriptionStyle.Regular">
<summary>
Normal text.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.LocalizedFontDescription">
<summary>
Normally, when you add a .spritefont file to your project, this data is
deserialized into a FontDescription object, which is then built into a
SpriteFontContent by the FontDescriptionProcessor. But to localize the
font, we want to add some additional data, so our custom processor can
know what .resx files it needs to scan. We do this by defining our own
custom font description class, deriving from the built in FontDescription
type, and adding a new property to store the resource filenames.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.LocalizedFontDescription.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.LocalizedFontDescription.ResourceFiles">
<summary>
Add a new property to our font description, which will allow us to
include a ResourceFiles element in the .spritefont XML. We use the
ContentSerializer attribute to mark this as optional, so existing
.spritefont files that do not include this ResourceFiles element
can be imported as well.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent">
<summary>
Provides properties that define various aspects of a geometry batch.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent.Indices">
<summary>
Gets the list of triangle indices for this geometry batch. Geometry is stored as an indexed triangle list, where each group of three indices defines a single triangle.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent.Material">
<summary>
Gets or sets the material of the parent mesh.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent.Parent">
<summary>
Gets or sets the parent MeshContent for this object.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent.Vertices">
<summary>
Gets the set of vertex batches for the geometry batch.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent.#ctor">
<summary>
Creates an instance of GeometryContent.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContentCollection">
<summary>
Provides methods for maintaining a collection of geometry batches that make up a mesh.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContentCollection.GetParent(Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent)">
<summary>
Gets the parent of a child object.
</summary>
<param name="child">The child of the parent being retrieved.</param>
<returns>The parent of the child object.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContentCollection.SetParent(Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent,Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent)">
<summary>
Sets the parent of the specified child object.
</summary>
<param name="child">The child of the parent being set.</param>
<param name="parent">The parent of the child object.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GraphicsUtil.GetNextPowerOfTwo(System.Int32)">
<summary>
Returns the next power of two. Returns same value if already is PoT.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GraphicsUtil.AlphaRange.Opaque">
<summary>
Pixel data has no alpha values below 1.0.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GraphicsUtil.AlphaRange.Cutout">
<summary>
Pixel data contains alpha values that are either 0.0 or 1.0.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GraphicsUtil.AlphaRange.Full">
<summary>
Pixel data contains alpha values that cover the full range of 0.0 to 1.0.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GraphicsUtil.CalculateAlphaRange(Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent)">
<summary>
Gets the alpha range in a set of pixels.
</summary>
<param name="bitmap">A bitmap of full-colour floating point pixel data in RGBA or BGRA order.</param>
<returns>A member of the AlphaRange enum to describe the range of alpha in the pixel data.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndexCollection">
<summary>
Provides methods for maintaining a list of index values.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndexCollection.#ctor">
<summary>
Initializes a new instance of IndexCollection.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndexCollection.AddRange(System.Collections.Generic.IEnumerable{System.Int32})">
<summary>
Add a range of indices to the collection.
</summary>
<param name="indices">A collection of indices to add.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndirectPositionCollection">
<summary>
Provides methods for maintaining a list of vertex positions.
</summary>
<remarks>
This class is designed to collect the vertex positions for a VertexContent object. Use the contents
of the PositionIndices property (of the contained VertexContent object) to index into the Positions
property of the parent mesh.
</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndirectPositionCollection.Count">
<summary>
Number of positions in the collection.
</summary>
<value>Number of positions.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndirectPositionCollection.Item(System.Int32)">
<summary>
Gets or sets the position at the specified index.
</summary>
<value>Position located at index.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndirectPositionCollection.System#Collections#Generic#ICollection{Microsoft#Xna#Framework#Vector3}#IsReadOnly">
<summary>
Gets a value indicating whether this object is read-only.
</summary>
<value>true if this object is read-only; false otherwise.</value>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndirectPositionCollection.#ctor(Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent,Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel{System.Int32})">
<summary>
Initializes a new instance of IndirectPositionCollection.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndirectPositionCollection.Contains(Microsoft.Xna.Framework.Vector3)">
<summary>
Determines whether the specified position is in the collection.
</summary>
<param name="item">Position being searched for in the collection.</param>
<returns>true if the position was found; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndirectPositionCollection.CopyTo(Microsoft.Xna.Framework.Vector3[],System.Int32)">
<summary>
Copies the specified positions to an array, starting at the specified index.
</summary>
<param name="array">Array of positions to be copied.</param>
<param name="arrayIndex">Index of the first copied position.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndirectPositionCollection.GetEnumerator">
<summary>
Gets an enumerator interface for reading the position values.
</summary>
<returns>Interface for enumerating the collection of position values.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndirectPositionCollection.IndexOf(Microsoft.Xna.Framework.Vector3)">
<summary>
Gets the index of the specified position in a collection.
</summary>
<param name="item">Position being searched for.</param>
<returns>Index of the specified position or -1 if not found.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.IndirectPositionCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that can iterate through the collection.
</summary>
<returns>Enumerator that can iterate through the collection.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent">
<summary>
Provides methods and properties for maintaining a collection of named texture references.
</summary>
<remarks>In addition to texture references, opaque data values are stored in the OpaqueData property of the base class.</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent.Textures">
<summary>
Gets the texture collection of the material.
</summary>
<value>Collection of textures used by the material.</value>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent.#ctor">
<summary>
Initializes a new instance of MaterialContent.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent.GetReferenceTypeProperty``1(System.String)">
<summary>
Gets a reference type from the OpaqueDataDictionary collection.
</summary>
<typeparam name="T">Type of the related opaque data.</typeparam>
<param name="key">Key of the property being retrieved.</param>
<returns>The related opaque data.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent.GetTexture(System.String)">
<summary>
Gets a value from the Textures collection.
</summary>
<param name="key">Key of the texture being retrieved.</param>
<returns>Reference to a texture from the collection.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent.GetValueTypeProperty``1(System.String)">
<summary>
Gets a value type from the OpaqueDataDictionary collection.
</summary>
<typeparam name="T">Type of the value being retrieved.</typeparam>
<param name="key">Key of the value type being retrieved.</param>
<returns>Index of the value type beng retrieved.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent.SetProperty``1(System.String,``0)">
<summary>
Sets a value in the contained OpaqueDataDictionary object.
If null is passed, the value is removed.
</summary>
<typeparam name="T">Type of the element being set.</typeparam>
<param name="key">Name of the key being modified.</param>
<param name="value">Value being set.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent.SetTexture(System.String,Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureContent})">
<summary>
Sets a value in the contained TextureReferenceDictionary object.
If null is passed, the value is removed.
</summary>
<param name="key">Name of the key being modified.</param>
<param name="value">Value being set.</param>
<remarks>The key value differs depending on the type of attached dictionary.
If attached to a BasicMaterialContent dictionary (which becomes a BasicEffect object at run time), the value for the Texture key is used as the texture for the BasicEffect runtime object. Other keys are ignored.
If attached to a EffectMaterialContent dictionary, key names are the texture names used by the effect. These names are dependent upon the author of the effect object.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent.Clone">
<summary>
Helper method to make a copy of a material.
</summary>
<returns>A clone of the material.</returns>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.MergeDuplicatePositions">
<summary>
Gets or sets the current value for position merging of the mesh.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.MergePositionTolerance">
<summary>
Gets or sets the tolerance for <see cref="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.MergeDuplicatePositions"/>.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.Name">
<summary>
Gets or sets the name of the current <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent"/> object being processed.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.SwapWindingOrder">
<summary>
Reverses the triangle winding order of the specified mesh.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.AddTriangleVertex(System.Int32)">
<summary>
Adds a vertex into the index collection.
</summary>
<param name="indexIntoVertexCollection">Index of the inserted vertex, in the collection.
This corresponds to the value returned by <see cref="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.CreatePosition(System.Single,System.Single,System.Single)"/>.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.CreatePosition(System.Single,System.Single,System.Single)">
<summary>
Inserts the specified vertex position into the vertex channel.
</summary>
<param name="x">Value of the x component of the vector.</param>
<param name="y">Value of the y component of the vector.</param>
<param name="z">Value of the z component of the vector.</param>
<returns>Index of the inserted vertex.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.CreatePosition(Microsoft.Xna.Framework.Vector3)">
<summary>
Inserts the specified vertex position into the vertex channel at the specified index.
</summary>
<param name="pos">Value of the vertex being inserted.</param>
<returns>Index of the vertex being inserted.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.FinishMesh">
<summary>
Ends the creation of a mesh.
</summary>
<returns>Resultant mesh.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.SetMaterial(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent)">
<summary>
Sets the material for the next triangles.
</summary>
<param name="material">Material for the next triangles.</param>
<remarks>
Sets the material for the triangles being defined next. This material
and the opaque data dictionary, set with <see cref="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.SetOpaqueData(Microsoft.Xna.Framework.Content.Pipeline.OpaqueDataDictionary)"/>
define the <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent"/> object containing the next
triangles. When you set a new material or opaque data dictionary the
triangles you add afterwards will belong to a new
<see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent"/> object.
</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.SetOpaqueData(Microsoft.Xna.Framework.Content.Pipeline.OpaqueDataDictionary)">
<summary>
Sets the opaque data for the next triangles.
</summary>
<param name="opaqueData">Opaque data dictionary for the next triangles.</param>
<remarks>
Sets the opaque data dictionary for the triangles being defined next. This dictionary
and the material, set with <see cref="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.SetMaterial(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent)"/>, define the <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent"/>
object containing the next triangles. When you set a new material or opaque data dictionary
the triangles you add afterwards will belong to a new <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent"/> object.
</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.SetVertexChannelData(System.Int32,System.Object)">
<summary>
Sets the specified vertex data with new data.
</summary>
<param name="vertexDataIndex">Index of the vertex data channel being set. This should match the index returned by CreateVertexChannel.</param>
<param name="channelData">New data values for the vertex data. The data type being set must match the data type for the vertex channel specified by vertexDataIndex.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshBuilder.StartMesh(System.String)">
<summary>
Initializes the creation of a mesh.
</summary>
<param name="name">Name of the mesh.</param>
<returns>Object used when building the mesh.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent">
<summary>
Provides properties and methods that define various aspects of a mesh.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent.Geometry">
<summary>
Gets the list of geometry batches for the mesh.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent.Positions">
<summary>
Gets the list of vertex position values.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent.#ctor">
<summary>
Initializes a new instance of MeshContent.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent.TransformContents(Microsoft.Xna.Framework.Matrix@)">
<summary>
Applies a transform directly to position and normal channels. Node transforms are unaffected.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.CalculateNormals(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent,System.Boolean)">
<summary>
Generates vertex normals by accumulation of triangle face normals.
</summary>
<param name="mesh">The mesh which will recieve the normals.</param>
<param name="overwriteExistingNormals">Overwrite or skip over geometry with existing normals.</param>
<remarks>
This calls <see cref="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.CalculateNormals(Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent,System.Boolean)"/> to do the work.
</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.CalculateNormals(Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent,System.Boolean)">
<summary>
Generates vertex normals by accumulation of triangle face normals.
</summary>
<param name="geom">The geometry which will recieve the normals.</param>
<param name="overwriteExistingNormals">Overwrite or skip over geometry with existing normals.</param>
<remarks>
We use a "Mean Weighted Equally" method generate vertex normals from triangle
face normals. If normal cannot be calculated from the geometry we set it to zero.
</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.CalculateTangentFrames(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent,System.String,System.String,System.String)">
<summary>
Generate the tangents and binormals (tangent frames) for each vertex in the mesh.
</summary>
<param name="mesh">The mesh which will have add tangent and binormal channels added.</param>
<param name="textureCoordinateChannelName">The Vector2 texture coordinate channel used to generate tangent frames.</param>
<param name="tangentChannelName"></param>
<param name="binormalChannelName"></param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.FindSkeleton(Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent)">
<summary>
Search for the root bone of the skeletion.
</summary>
<param name="node">The node from which to begin the search for the skeleton.</param>
<returns>The root bone of the skeletion or null if none is found.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.FlattenSkeleton(Microsoft.Xna.Framework.Content.Pipeline.Graphics.BoneContent)">
<summary>
Traverses a skeleton depth-first and builds a list of its bones.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.MergeDuplicatePositions(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent,System.Single)">
<summary>
Merge any positions in the <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PositionCollection"/> of the
specified mesh that are at a distance less than the specified tolerance
from each other.
</summary>
<param name="mesh">Mesh to be processed.</param>
<param name="tolerance">Tolerance value that determines how close
positions must be to each other to be merged.</param>
<remarks>
This method will also update the <see cref="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.PositionIndices"/>
in the <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent"/> of the specified mesh.
</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.MergeDuplicateVertices(Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent)">
<summary>
Merge vertices with the same <see cref="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.PositionIndices"/> and
<see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel"/> data within the specified
<see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent"/>.
</summary>
<param name="geometry">Geometry to be processed.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.MergeDuplicateVertices(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent)">
<summary>
Merge vertices with the same <see cref="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.PositionIndices"/> and
<see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel"/> data within the <see cref="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent.Geometry"/>
of this mesh. If you want to merge positions too, call
<see cref="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.MergeDuplicatePositions(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent,System.Single)"/> on your mesh before this function.
</summary>
<param name="mesh">Mesh to be processed</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.SwapWindingOrder(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshContent)">
<summary>
Reverses the triangle winding order of the mesh.
</summary>
<param name="mesh">The mesh which will be modified.</param>
<remarks>
This method is useful when changing the direction of backface culling
like when switching between left/right handed coordinate systems.
</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.TransformScene(Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent,Microsoft.Xna.Framework.Matrix)">
<summary>
Transforms the contents of a node and its descendants.
</summary>
<remarks>The node transforms themselves are unaffected.</remarks>
<param name="scene">The root node of the scene to transform.</param>
<param name="transform">The transform matrix to apply to the scene.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MeshHelper.IsLeftHanded(Microsoft.Xna.Framework.Matrix@)">
<summary>
Determines whether the specified transform is left-handed.
</summary>
<param name="xform">The transform.</param>
<returns>
<see langword="true"/> if <paramref name="xform"/> is left-handed; otherwise,
<see langword="false"/> if <paramref name="xform"/> is right-handed.
</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MipmapChain">
<summary>
Provides methods for accessing a mipmap chain.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MipmapChain.#ctor">
<summary>
Initializes a new instance of MipmapChain.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MipmapChain.#ctor(Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent)">
<summary>
Initializes a new instance of MipmapChain with the specified mipmap.
</summary>
<param name="bitmap"></param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MipmapChain.op_Implicit(Microsoft.Xna.Framework.Content.Pipeline.Graphics.BitmapContent)~Microsoft.Xna.Framework.Content.Pipeline.Graphics.MipmapChain">
<summary>
Constructs a new mipmap chain containing the specified bitmap.
</summary>
<param name="bitmap">Bitmap used for the mipmap chain.</param>
<returns>Resultant mipmap chain.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MipmapChainCollection">
<summary>
Provides methods for maintaining a mipmap chain.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent">
<summary>
Provides a base class for graphics types that define local coordinate systems.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent.AbsoluteTransform">
<summary>
Gets the value of the local Transform property, multiplied by the AbsoluteTransform of the parent.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent.Animations">
<summary>
Gets the set of animations belonging to this node.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent.Children">
<summary>
Gets the children of the NodeContent object.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent.Parent">
<summary>
Gets the parent of this NodeContent object.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent.Transform">
<summary>
Gets the transform matrix of the scene.
The transform matrix defines a local coordinate system for the content in addition to any children of this object.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent.#ctor">
<summary>
Creates an instance of NodeContent.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContentCollection.#ctor(Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent)">
<summary>
Creates an instance of NodeContentCollection.
</summary>
<param name="parent">Parent object of the child objects returned in the collection.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContentCollection.GetParent(Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent)">
<summary>
Gets the parent of a child object.
</summary>
<param name="child">The child of the parent being retrieved.</param>
<returns>The parent of the child object.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContentCollection.SetParent(Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent,Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent)">
<summary>
Modifies the value of the parent object of the specified child object.
</summary>
<param name="child">The child of the parent being modified.</param>
<param name="parent">The new value for the parent object.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PixelBitmapContent`1.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PositionCollection">
<summary>
Provides a collection of vertex position values.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PositionCollection.#ctor">
<summary>
Initializes a new instance of PositionCollection.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgb2BitmapContent.#ctor(System.Int32,System.Int32)">
<summary>
Creates an instance of PvrtcRgb2BitmapContent with the specified width and height.
</summary>
<param name="width">The width in pixels of the bitmap.</param>
<param name="height">The height in pixels of the bitmap.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgb2BitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgb2BitmapContent.ToString">
<summary>
Returns a string description of the bitmap.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgb4BitmapContent.#ctor(System.Int32,System.Int32)">
<summary>
Creates an instance of PvrtcRgb4BitmapContent with the specified width and height.
</summary>
<param name="width">The width in pixels of the bitmap.</param>
<param name="height">The height in pixels of the bitmap.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgb4BitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgb4BitmapContent.ToString">
<summary>
Returns a string description of the bitmap.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgba2BitmapContent.#ctor(System.Int32,System.Int32)">
<summary>
Creates an instance of PvrtcRgba2BitBitmapContent with the specified width and height.
</summary>
<param name="width">The width in pixels of the bitmap.</param>
<param name="height">The height in pixels of the bitmap.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgba2BitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgba2BitmapContent.ToString">
<summary>
Returns a string description of the bitmap.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgba4BitmapContent.#ctor(System.Int32,System.Int32)">
<summary>
Creates an instance of PvrtcRgba4BitBitmapContent with the specified width and height.
</summary>
<param name="width">The width in pixels of the bitmap.</param>
<param name="height">The height in pixels of the bitmap.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgba4BitmapContent.TryGetFormat(Microsoft.Xna.Framework.Graphics.SurfaceFormat@)">
<summary>
Gets the corresponding GPU texture format for the specified bitmap type.
</summary>
<param name="format">Format being retrieved.</param>
<returns>The GPU texture format of the bitmap type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.PvrtcRgba4BitmapContent.ToString">
<summary>
Returns a string description of the bitmap.
</summary>
<returns>Description of the bitmap.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.SharpFontImporter.ExpandByteAndCopy(System.Byte,System.Int32,System.Byte[],System.Int32)">
<summary>
Reads each individual bit of a byte from left to right and expands it to a full byte,
ones get byte.maxvalue, and zeros get byte.minvalue.
</summary>
<param name="origin">Byte to expand and copy</param>
<param name="length">Number of Bits of the Byte to copy, from 1 to 8</param>
<param name="destination">Byte array where to copy the results</param>
<param name="startIndex">Position where to begin copying the results in destination</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureContent">
<summary>
Provides a base class for all texture objects.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureContent.Faces">
<summary>
Collection of image faces that hold a single mipmap chain for a regular 2D texture, six chains for a cube map, or an arbitrary number for volume and array textures.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureContent.#ctor(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MipmapChainCollection)">
<summary>
Initializes a new instance of TextureContent with the specified face collection.
</summary>
<param name="faces">Mipmap chain containing the face collection.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureContent.ConvertBitmapType(System.Type)">
<summary>
Converts all bitmaps for this texture to a different format.
</summary>
<param name="newBitmapType">Type being converted to. The new type must be a subclass of BitmapContent, such as PixelBitmapContent or DxtBitmapContent.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureContent.GenerateMipmaps(System.Boolean)">
<summary>
Generates a full set of mipmaps for the texture.
</summary>
<param name="overwriteExistingMipmaps">true if the existing mipmap set is replaced with the new set; false otherwise.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureContent.Validate(System.Nullable{Microsoft.Xna.Framework.Graphics.GraphicsProfile})">
<summary>
Verifies that all contents of this texture are present, correct and match the capabilities of the device.
</summary>
<param name="targetProfile">The profile identifier that defines the capabilities of the device.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureProfile.ForPlatform(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<summary>
Find the profile for this target platform.
</summary>
<param name="platform">The platform target for textures.</param>
<returns></returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureProfile.Supports(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<summary>
Returns true if this profile supports texture processing for this platform.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureProfile.Requirements(Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext,Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat,System.Boolean@,System.Boolean@)">
<summary>
Determines if the texture format will require power-of-two dimensions and/or equal width and height.
</summary>
<param name="context">The processor context.</param>
<param name="format">The desired texture format.</param>
<param name="requiresPowerOfTwo">True if the texture format requires power-of-two dimensions.</param>
<param name="requiresSquare">True if the texture format requires equal width and height.</param>
<returns>True if the texture format requires power-of-two dimensions.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureProfile.ConvertTexture(Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext,Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureContent,Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat,System.Boolean)">
<summary>
Performs conversion of the texture content to the correct format.
</summary>
<param name="context">The processor context.</param>
<param name="content">The content to be compressed.</param>
<param name="format">The user requested format for compression.</param>
<param name="isSpriteFont">If the texture has represents a sprite font, i.e. is greyscale and has sharp black/white contrast.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureReferenceDictionary">
<summary>
Provides a collection of named references to texture files.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureReferenceDictionary.#ctor">
<summary>
Initializes a new instance of TextureReferenceDictionary.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel">
<summary>
Provides methods and properties for maintaining a vertex channel.
A vertex channel is a list of arbitrary data with one value for each vertex. Channels are stored inside a GeometryContent and identified by name.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.Items">
<summary>
Allows overriding classes to implement the list, and for properties/methods in this class to access it.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.Count">
<summary>
Gets the number of elements in the vertex channel
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.ElementType">
<summary>
Gets the type of data contained in this channel.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.Name">
<summary>
Gets the name of the vertex channel.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.System#Collections#ICollection#IsSynchronized">
<summary>
Gets a value indicating whether access to the collection is synchronized (thread safe).
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.System#Collections#ICollection#SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the collection.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.System#Collections#IList#IsFixedSize">
<summary>
Gets a value indicating whether this list has a fixed size.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.System#Collections#IList#IsReadOnly">
<summary>
Gets a value indicating whether this object is read-only.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.#ctor(System.String)">
<summary>
Creates an instance of VertexChannel.
</summary>
<param name="name">Name of the channel.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.Contains(System.Object)">
<summary>
Determines whether the specified element is in the channel.
</summary>
<param name="value">Element being searched for.</param>
<returns>true if the element is present; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.CopyTo(System.Array,System.Int32)">
<summary>
Copies the elements of the channel to an array, starting at the specified index.
</summary>
<param name="array">Array that will receive the copied channel elements.</param>
<param name="index">Starting index for copy operation.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.GetEnumerator">
<summary>
Gets an enumerator interface for reading channel content.
</summary>
<returns>Enumeration of the channel content.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.IndexOf(System.Object)">
<summary>
Gets the index of the specified item.
</summary>
<param name="value">Item whose index is to be retrieved.</param>
<returns>Index of specified item.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.ReadConvertedContent``1">
<summary>
Reads channel content and automatically converts it to the specified vector format.
</summary>
<typeparam name="TargetType">Target vector format of the converted data.</typeparam>
<returns>The converted data.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.System#Collections#IList#Add(System.Object)">
<summary>
Adds a new element to the end of the collection.
</summary>
<param name="value">The element to add.</param>
<returns>Index of the element.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.System#Collections#IList#Clear">
<summary>
Removes all elements from the collection.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.System#Collections#IList#Insert(System.Int32,System.Object)">
<summary>
Inserts an element into the collection at the specified position.
</summary>
<param name="index">Index at which to insert the element.</param>
<param name="value">The element to insert.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.InsertRange(System.Int32,System.Collections.IEnumerable)">
<summary>
Inserts the range of values from the enumerable into the channel.
</summary>
<param name="index">The zero-based index at which the new elements should be inserted.</param>
<param name="data">The data to insert into the channel.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.System#Collections#IList#Remove(System.Object)">
<summary>
Removes a specified element from the collection.
</summary>
<param name="value">The element to remove.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.System#Collections#IList#RemoveAt(System.Int32)">
<summary>
Removes the element at the specified index position.
</summary>
<param name="index">Index of the element to remove.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel.RemoveRange(System.Int32,System.Int32)">
<summary>
Removes a range of values from the channel.
</summary>
<param name="index">The zero-based starting index of the range of elements to remove.</param>
<param name="count"> The number of elements to remove.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection">
<summary>
Provides methods and properties for managing a list of vertex data channels.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Count">
<summary>
Gets the number of vertex channels in the collection.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Item(System.Int32)">
<summary>
Gets or sets the vertex channel at the specified index position.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Item(System.String)">
<summary>
Gets or sets the vertex channel with the specified name.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.System#Collections#Generic#ICollection{Microsoft#Xna#Framework#Content#Pipeline#Graphics#VertexChannel}#IsReadOnly">
<summary>
Determines whether the collection is read-only.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.#ctor(Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent)">
<summary>
Creates an instance of VertexChannelCollection.
</summary>
<param name="vertexContent">The VertexContent object that owns this collection.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Add``1(System.String,System.Collections.Generic.IEnumerable{``0})">
<summary>
Adds a new vertex channel to the end of the collection.
</summary>
<typeparam name="ElementType">Type of the channel.</typeparam>
<param name="name">Name of the new channel.</param>
<param name="channelData">Initial data for the new channel. If null, the channel is filled with the default value for that type.</param>
<returns>The newly added vertex channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Add(System.String,System.Type,System.Collections.IEnumerable)">
<summary>
Adds a new vertex channel to the end of the collection.
</summary>
<param name="name">Name of the new channel.</param>
<param name="elementType">Type of data to be contained in the new channel.</param>
<param name="channelData">Initial data for the new channel. If null, the channel is filled with the default value for that type.</param>
<returns>The newly added vertex channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Clear">
<summary>
Removes all vertex channels from the collection.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Contains(System.String)">
<summary>
Determines whether the collection contains the specified vertex channel.
</summary>
<param name="name">Name of the channel being searched for.</param>
<returns>true if the channel was found; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Contains(Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel)">
<summary>
Determines whether the collection contains the specified vertex channel.
</summary>
<param name="item">The channel being searched for.</param>
<returns>true if the channel was found; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.ConvertChannelContent``1(System.Int32)">
<summary>
Converts the channel, at the specified index, to another vector format.
</summary>
<typeparam name="TargetType">Type of the target format. Can be one of the following: Single, Vector2, Vector3, Vector4, IPackedVector</typeparam>
<param name="index">Index of the channel to be converted.</param>
<returns>New channel in the specified format.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.ConvertChannelContent``1(System.String)">
<summary>
Converts the channel, specified by name to another vector format.
</summary>
<typeparam name="TargetType">Type of the target format. Can be one of the following: Single, Vector2, Vector3, Vector4, IPackedVector</typeparam>
<param name="name">Name of the channel to be converted.</param>
<returns>New channel in the specified format.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Get``1(System.Int32)">
<summary>
Gets the vertex channel with the specified index and content type.
</summary>
<typeparam name="T">Type of a vertex channel.</typeparam>
<param name="index">Index of a vertex channel.</param>
<returns>The vertex channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Get``1(System.String)">
<summary>
Gets the vertex channel with the specified name and content type.
</summary>
<typeparam name="T">Type of the vertex channel.</typeparam>
<param name="name">Name of a vertex channel.</param>
<returns>The vertex channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.GetEnumerator">
<summary>
Gets an enumerator that iterates through the vertex channels of a collection.
</summary>
<returns>Enumerator for the collection.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.IndexOf(System.String)">
<summary>
Determines the index of a vertex channel with the specified name.
</summary>
<param name="name">Name of the vertex channel being searched for.</param>
<returns>Index of the vertex channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.IndexOf(Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel)">
<summary>
Determines the index of the specified vertex channel.
</summary>
<param name="item">Vertex channel being searched for.</param>
<returns>Index of the vertex channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Insert``1(System.Int32,System.String,System.Collections.Generic.IEnumerable{``0})">
<summary>
Inserts a new vertex channel at the specified position.
</summary>
<typeparam name="ElementType">Type of the new channel.</typeparam>
<param name="index">Index for channel insertion.</param>
<param name="name">Name of the new channel.</param>
<param name="channelData">The new channel.</param>
<returns>The inserted vertex channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Insert(System.Int32,System.String,System.Type,System.Collections.IEnumerable)">
<summary>
Inserts a new vertex channel at the specified position.
</summary>
<param name="index">Index for channel insertion.</param>
<param name="name">Name of the new channel.</param>
<param name="elementType">Type of the new channel.</param>
<param name="channelData">Initial data for the new channel. If null, it is filled with the default value.</param>
<returns>The inserted vertex channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Remove(System.String)">
<summary>
Removes the specified vertex channel from the collection.
</summary>
<param name="name">Name of the vertex channel being removed.</param>
<returns>true if the channel was removed; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.Remove(Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel)">
<summary>
Removes the specified vertex channel from the collection.
</summary>
<param name="item">The vertex channel being removed.</param>
<returns>true if the channel was removed; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.RemoveAt(System.Int32)">
<summary>
Removes the vertex channel at the specified index position.
</summary>
<param name="index">Index of the vertex channel being removed.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.System#Collections#Generic#ICollection{Microsoft#Xna#Framework#Content#Pipeline#Graphics#VertexChannel}#Add(Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel)">
<summary>
Adds a new vertex channel to the collection.
</summary>
<param name="item">Vertex channel to be added.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.System#Collections#Generic#ICollection{Microsoft#Xna#Framework#Content#Pipeline#Graphics#VertexChannel}#CopyTo(Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel[],System.Int32)">
<summary>
Copies the elements of the collection to an array, starting at the specified index.
</summary>
<param name="array">The destination array.</param>
<param name="arrayIndex">The index at which to begin copying elements.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.System#Collections#Generic#IList{Microsoft#Xna#Framework#Content#Pipeline#Graphics#VertexChannel}#Insert(System.Int32,Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel)">
<summary>
Inserts an item at the specified index.
</summary>
<param name="index">The zero-based index at which item should be inserted.</param>
<param name="item">The item to insert.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that iterates through a collection.
</summary>
<returns>An object that can be used to iterate through the collection.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1">
<summary>
Provides methods and properties for maintaining a vertex channel.
This is a generic implementation of VertexChannel and, therefore, can handle strongly typed content data.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.Items">
<summary>
Gets the strongly-typed list for the base class to access.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.ElementType">
<summary>
Gets the type of data contained in this channel.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
<summary>
true if this object is read-only; false otherwise.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.#ctor(System.String)">
<summary>
Creates an instance of VertexChannel.
</summary>
<param name="name">Name of the channel.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.Contains(`0)">
<summary>
Determines whether the specified element is in the channel.
</summary>
<param name="item">Element being searched for.</param>
<returns>true if the element is present; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.CopyTo(`0[],System.Int32)">
<summary>
Copies the elements of the channel to an array, starting at the specified index.
</summary>
<param name="array">Array that will receive the copied channel elements.</param>
<param name="arrayIndex">Starting index for copy operation.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.GetEnumerator">
<summary>
Gets an enumerator interface for reading channel content.
</summary>
<returns>Enumeration of the channel content.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.IndexOf(`0)">
<summary>
Gets the index of the specified item.
</summary>
<param name="item">Item whose index is to be retrieved.</param>
<returns>Index of specified item.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.InsertRange(System.Int32,System.Collections.IEnumerable)">
<summary>
Inserts the range of values from the enumerable into the channel.
</summary>
<param name="index">The zero-based index at which the new elements should be inserted.</param>
<param name="data">The data to insert into the channel.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.ReadConvertedContent``1">
<summary>
Reads channel content and automatically converts it to the specified vector format.
</summary>
<typeparam name="TargetType">Target vector format for the converted channel data.</typeparam>
<returns>The converted channel data.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.System#Collections#Generic#ICollection{T}#Add(`0)">
<summary>
Adds a new element to the end of the collection.
</summary>
<param name="value">The element to add.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.System#Collections#Generic#ICollection{T}#Clear">
<summary>
Removes all elements from the collection.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.System#Collections#Generic#ICollection{T}#Remove(`0)">
<summary>
Removes a specified element from the collection.
</summary>
<param name="value">The element to remove.</param>
<returns>true if the channel was removed; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.System#Collections#Generic#IList{T}#Insert(System.Int32,`0)">
<summary>
Inserts an element into the collection at the specified position.
</summary>
<param name="index">Index at which to insert the element.</param>
<param name="value">The element to insert.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.System#Collections#Generic#IList{T}#RemoveAt(System.Int32)">
<summary>
Removes the element at the specified index position.
</summary>
<param name="index">Index of the element to remove.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannel`1.RemoveRange(System.Int32,System.Int32)">
<summary>
Removes a range of values from the channel.
</summary>
<param name="index">The zero-based starting index of the range of elements to remove.</param>
<param name="count"> The number of elements to remove.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames">
<summary>
Provides properties for managing a collection of vertex channel names.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.usages">
<summary>
A lookup for the TryDecodeUsage method.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.Binormal(System.Int32)">
<summary>
Gets the name of a binormal vector channel with the specified index.
This will typically contain Vector3 data.
</summary>
<param name="usageIndex">Zero-based index of the vector channel being retrieved.</param>
<returns>Name of the retrieved vector channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.Color(System.Int32)">
<summary>
Gets the name of a color channel with the specified index.
This will typically contain Vector3 data.
</summary>
<param name="usageIndex">Zero-based index of the color channel being retrieved.</param>
<returns>Name of the retrieved color channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.DecodeBaseName(System.String)">
<summary>
Gets a channel base name stub from the encoded string format.
</summary>
<param name="encodedName">Encoded string to be decoded.</param>
<returns>Extracted base name.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.DecodeUsageIndex(System.String)">
<summary>
Gets a channel usage index from the encoded format.
</summary>
<param name="encodedName">Encoded name to be decoded.</param>
<returns>Resulting channel usage index.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.EncodeName(System.String,System.Int32)">
<summary>
Combines a channel name stub and usage index into a string name.
</summary>
<param name="baseName">A channel base name stub.</param>
<param name="usageIndex">A channel usage index.</param>
<returns>Resulting encoded name.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.EncodeName(Microsoft.Xna.Framework.Graphics.VertexElementUsage,System.Int32)">
<summary>
Combines a vertex declaration usage and usage index into a string name.
</summary>
<param name="vertexElementUsage">A vertex declaration.</param>
<param name="usageIndex">An index for the vertex declaration.</param>
<returns>Resulting encoded name.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.Normal">
<summary>
Gets the name of the primary normal channel.
This will typically contain Vector3 data.
</summary>
<returns>Primary normal channel name.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.Normal(System.Int32)">
<summary>
Gets the name of a normal channel with the specified index.
This will typically contain Vector3 data.
</summary>
<param name="usageIndex">Zero-based index of the normal channel being retrieved.</param>
<returns>Normal channel at the specified index.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.Tangent(System.Int32)">
<summary>
Gets the name of a tangent vector channel with the specified index.
This will typically contain Vector3 data.
</summary>
<param name="usageIndex">Zero-based index of the tangent vector channel being retrieved.</param>
<returns>Name of the retrieved tangent vector channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.TextureCoordinate(System.Int32)">
<summary>
Gets the name of a texture coordinate channel with the specified index.
This will typically contain Vector3 data.
</summary>
<param name="usageIndex">Zero-based index of the texture coordinate channel being retrieved.</param>
<returns>Name of the retrieved texture coordinate channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.TryDecodeUsage(System.String,Microsoft.Xna.Framework.Graphics.VertexElementUsage@)">
<summary>
Gets a vertex declaration usage enumeration from the encoded string format.
</summary>
<param name="encodedName">Encoded name of a vertex declaration.</param>
<param name="usage">Value of the declaration usage for the vertex declaration.</param>
<returns>true if the encoded name maps to a VertexElementUsage enumeration value; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.Weights">
<summary>
Gets the name of the primary animation weights channel.
This will typically contain data on the bone weights for a vertex channel. For more information, see BoneWeightCollection.
</summary>
<returns>Name of the primary animation weights channel.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexChannelNames.Weights(System.Int32)">
<summary>
Gets the name of an animation weights channel at the specified index.
This will typically contain data on the bone weights for a vertex channel. For more information, see BoneWeightCollection.
</summary>
<param name="usageIndex">Index of the animation weight channel to be retrieved.</param>
<returns>Name of the retrieved animation weights channel.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent">
<summary>
Provides methods and properties for maintaining the vertex data of a GeometryContent.
</summary>
<remarks>This class combines a collection of arbitrarily named data channels with a list of position indices that reference the Positions collection of the parent MeshContent.</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.Channels">
<summary>
Gets the list of named vertex data channels in the VertexContent.
</summary>
<value>Collection of vertex data channels.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.PositionIndices">
<summary>
Gets the list of position indices.
</summary>
<value>Position of the position index being retrieved.</value>
<remarks>This list adds a level of indirection between the actual triangle indices and the Positions member of the parent. This indirection preserves the topological vertex identity in cases where a single vertex position is used by triangles that straddle a discontinuity in some other data channel.
For example, the following code gets the position of the first vertex of the first triangle in a GeometryContent object:
parent.Positions[Vertices.PositionIndices[Indices[0]]]</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.Positions">
<summary>
Gets position data from the parent mesh object.
</summary>
<value>Collection of vertex positions for the mesh.</value>
<remarks>The collection returned from this call provides a virtualized view of the vertex positions for this batch. The collection uses the contents of the PositionIndices property to index into the parent Positions. This collection is read-only. If you need to modify any contained values, edit the PositionIndices or Positions members directly.</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.VertexCount">
<summary>
Number of vertices for the content.
</summary>
<value>Number of vertices.</value>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.#ctor(Microsoft.Xna.Framework.Content.Pipeline.Graphics.GeometryContent)">
<summary>
Constructs a VertexContent instance.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.Add(System.Int32)">
<summary>
Appends a new vertex index to the end of the PositionIndices collection.
Other vertex channels will automatically be extended and the new indices populated with default values.
</summary>
<param name="positionIndex">Index into the MeshContent.Positions member of the parent.</param>
<returns>Index of the new entry. This can be added to the Indices member of the parent.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.AddRange(System.Collections.Generic.IEnumerable{System.Int32})">
<summary>
Appends multiple vertex indices to the end of the PositionIndices collection.
Other vertex channels will automatically be extended and the new indices populated with default values.
</summary>
<param name="positionIndexCollection">Index into the Positions member of the parent.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.CreateVertexBuffer">
<summary>
Converts design-time vertex position and channel data into a vertex buffer format that a graphics device can recognize.
</summary>
<returns>A packed vertex buffer.</returns>
<exception cref="T:Microsoft.Xna.Framework.Content.Pipeline.InvalidContentException">One or more of the vertex channel types are invalid or an unrecognized name was passed to VertexElementUsage.</exception>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.Insert(System.Int32,System.Int32)">
<summary>
Inserts a new vertex index to the PositionIndices collection.
Other vertex channels will automatically be extended and the new indices populated with default values.
</summary>
<param name="index">Vertex index to be inserted.</param>
<param name="positionIndex">Position of new vertex index in the collection.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{System.Int32})">
<summary>
Inserts multiple vertex indices to the PositionIndices collection.
Other vertex channels will automatically be extended and the new indices populated with default values.
</summary>
<param name="index">Vertex index to be inserted.</param>
<param name="positionIndexCollection">Position of the first element of the inserted range in the collection.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.RemoveAt(System.Int32)">
<summary>
Removes a vertex index from the specified location in both PositionIndices and VertexChannel&lt;T&gt;.
</summary>
<param name="index">Index of the vertex to be removed.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Graphics.VertexContent.RemoveRange(System.Int32,System.Int32)">
<summary>
Removes a range of vertex indices from the specified location in both PositionIndices and VertexChannel&lt;T&gt;.
</summary>
<param name="index">Index of the first vertex index to be removed.</param>
<param name="count">Number of indices to remove.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.CompiledEffectContent">
<summary>
Represents a compiled Effect.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.CompiledEffectContent.#ctor(System.Byte[])">
<summary>
Creates a new instance of the CompiledEffectContent class
</summary>
<param name="effectCode">The compiled effect code.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.CompiledEffectContent.GetEffectCode">
<summary>
Retrieves the compiled byte code for this shader.
</summary>
<returns>The compiled bytecode.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.EffectProcessor">
<summary>
Processes a string representation to a platform-specific compiled effect.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.EffectProcessor.DebugMode">
<summary>
The debug mode for compiling effects.
</summary>
<value>The debug mode to use when compiling effects.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.EffectProcessor.Defines">
<summary>
Define assignments for the effect.
</summary>
<value>A list of define assignments delimited by semicolons.</value>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.EffectProcessor.#ctor">
<summary>
Initializes a new instance of EffectProcessor.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.EffectProcessor.Process(Microsoft.Xna.Framework.Content.Pipeline.Graphics.EffectContent,Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext)">
<summary>
Processes the string representation of the specified effect into a platform-specific binary format using the specified context.
</summary>
<param name="input">The effect string to be processed.</param>
<param name="context">Context for the specified processor.</param>
<returns>A platform-specific compiled binary effect.</returns>
<remarks>If you get an error during processing, compilation stops immediately. The effect processor displays an error message. Once you fix the current error, it is possible you may get more errors on subsequent compilation attempts.</remarks>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.EffectProcessorDebugMode">
<summary>
Specifies how debugging of effects is to be supported in PIX.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.EffectProcessorDebugMode.Auto">
<summary>
Enables effect debugging when built with Debug profile.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.EffectProcessorDebugMode.Debug">
<summary>
Enables effect debugging for all profiles. Will produce unoptimized shaders.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.EffectProcessorDebugMode.Optimize">
<summary>
Disables debugging for all profiles, produce optimized shaders.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.LocalizedFontProcessor">
<summary>
Custom processor extends the SpriteFont build process to scan over the resource
strings used by the game, automatically adding whatever characters it finds in
them to the font. This makes sure the game will always have all the characters
it needs, no matter what languages it is localized into, while still producing
an efficient font that does not waste space on unnecessary characters. This is
especially useful for languages such as Japanese and Korean, which have
potentially thousands of different characters, although games typically only
use a small fraction of these. Building only the characters we need is far more
efficient than if we tried to include the entire CJK character region.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.LocalizedFontProcessor.Process(Microsoft.Xna.Framework.Content.Pipeline.Graphics.LocalizedFontDescription,Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext)">
<summary>
Converts a font description into SpriteFont format.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor">
<summary>
Provides methods and properties for maintaining a collection of named texture references.
</summary>
<remarks>In addition to texture references, opaque data values are stored in the OpaqueData property of the base class.</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.ColorKeyColor">
<summary>
Gets or sets the color value to replace with transparent black.
</summary>
<value>Color value of the material to replace with transparent black.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.ColorKeyEnabled">
<summary>
Specifies whether color keying of a texture is enabled.
</summary>
<value>true if color keying is enabled; false otherwise.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.DefaultEffect">
<summary>
The default effect type for this instance of MaterialProcessor.
</summary>
<value>The default effect type.</value>
<remarks>When MaterialProcessor is instantiated, DefaultEffect is set to default to BasicEffect Class.</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.GenerateMipmaps">
<summary>
Specifies if a full chain of mipmaps are generated from the source material. Existing mipmaps of the material are not replaced.
</summary>
<value>true if mipmap generation is enabled; false otherwise.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.PremultiplyTextureAlpha">
<summary>
Specifies whether alpha premultiply of textures is enabled.
</summary>
<value>true if alpha premultiply is enabled; false otherwise.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.ResizeTexturesToPowerOfTwo">
<summary>
Specifies whether resizing of a material is enabled. Typically used to maximize compatability with a graphics card because many graphics cards do not support a material size that is not a power of two. If ResizeTexturesToPowerOfTwo is enabled, the material is resized to the next largest power of two.
</summary>
<value>true if resizing is enabled; false otherwise.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.TextureFormat">
<summary>
Specifies the texture format of output materials. Materials can either be left unchanged from the source asset, converted to a corresponding Color, or compressed using the appropriate DxtCompressed format.
</summary>
<value>The texture format of the output.</value>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.#ctor">
<summary>
Initializes a new instance of the MaterialProcessor class.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.BuildEffect(Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{Microsoft.Xna.Framework.Content.Pipeline.Graphics.EffectContent},Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext)">
<summary>
Builds effect content.
</summary>
<param name="effect">An external reference to the effect content.</param>
<param name="context">Context for the specified processor.</param>
<returns>A platform-specific compiled binary effect.</returns>
<remarks>If the input to process is of type EffectMaterialContent, this function will be called to request that the EffectContent be built. The EffectProcessor is used to process the EffectContent. Subclasses of MaterialProcessor can override this function to modify the parameters used to build EffectContent. For example, a different version of this function could request a different processor for the EffectContent.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.BuildTexture(System.String,Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{Microsoft.Xna.Framework.Content.Pipeline.Graphics.TextureContent},Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext)">
<summary>
Builds texture content.
</summary>
<param name="textureName">The name of the texture. This should correspond to the key used to store the texture in Textures.</param>
<param name="texture">The asset to build. This should be a member of Textures.</param>
<param name="context">Context for the specified processor.</param>
<returns>The built texture content.</returns>
<remarks>textureName can be used to determine which processor to use. For example, if a texture is being used as a normal map, the user may not want to use the ModelTextureProcessor on it, which compresses textures.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.Process(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent,Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext)">
<summary>
Builds the texture and effect content for the material.
</summary>
<param name="input">The material content to build.</param>
<param name="context">Context for the specified processor.</param>
<returns>The built material.</returns>
<remarks>If the MaterialContent is of type EffectMaterialContent, a build is requested for Effect, and validation will be performed on the OpaqueData to ensure that all parameters are valid input to SetValue or SetValueTranspose. If the MaterialContent is a BasicMaterialContent, no validation will be performed on OpaqueData. Process requests builds for all textures in Textures, unless the MaterialContent is of type BasicMaterialContent, in which case a build will only be requested for DiffuseColor. The textures in Textures will be ignored.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.CreateDefaultMaterial(Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessorDefaultEffect)">
<summary>
Helper method which returns the material for a default effect.
</summary>
<returns>A material.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessor.GetDefaultEffect(Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent)">
<summary>
Helper method which returns the default effect for a material.
</summary>
<returns>The default effect.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessorDefaultEffect">
<summary>
Specifies the default effect type.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessorDefaultEffect.BasicEffect">
<summary>
A BasicEffect Class effect.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessorDefaultEffect.SkinnedEffect">
<summary>
A SkinnedEffect Class effect.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessorDefaultEffect.EnvironmentMapEffect">
<summary>
An EnvironmentMapEffect Class effect.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessorDefaultEffect.DualTextureEffect">
<summary>
A DualTextureEffect Class effect.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.MaterialProcessorDefaultEffect.AlphaTestEffect">
<summary>
An AlphaTestEffect Class effect.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.ModelEnumerableExtensions.SelectDeep``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Collections.Generic.IEnumerable{``0}})">
<summary>
Returns each element of a tree structure in hierarchical order.
</summary>
<typeparam name="T">The enumerated type.</typeparam>
<param name="source">The enumeration to traverse.</param>
<param name="selector">A function which returns the children of the element.</param>
<returns>An IEnumerable whose elements are in tree structure heriarchical order.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.ModelEnumerableExtensions.AsEnumerable``1(``0)">
<summary>
Returns an enumerable from a single element.
</summary>
<typeparam name="T"></typeparam>
<param name="item"></param>
<returns></returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.PassThroughProcessor">
<summary>
As the name implies, this processor simply passes data through as-is.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.SongContent">
<summary>
Represents a processed Song object.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.SongContent.#ctor(System.String,System.TimeSpan)">
<summary>
Creates a new instance of the SongContent class
</summary>
<param name="fileName">Filename of the song</param>
<param name="duration">Duration of the song</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.SongProcessor">
<summary>
A custom song processor that processes an intermediate AudioContent type. This type encapsulates the source audio content, producing a Song type that can be used in the game.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.SongProcessor.Quality">
<summary>
Gets or sets the target format quality of the audio content.
</summary>
<value>The ConversionQuality of this audio data.</value>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.SongProcessor.#ctor">
<summary>
Initializes a new instance of SongProcessor.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.SongProcessor.Process(Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent,Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext)">
<summary>
Builds the content for the source audio.
</summary>
<param name="input">The audio content to build.</param>
<param name="context">Context for the specified processor.</param>
<returns>The built audio.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.SoundEffectContent">
<summary>
Represents a processed sound effect.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.SoundEffectContent.#ctor(System.Collections.Generic.IEnumerable{System.Byte},System.Collections.Generic.IEnumerable{System.Byte},System.Int32,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the SoundEffectContent class.
</summary>
<param name="format">The WAV header.</param>
<param name="data">The audio waveform data.</param>
<param name="loopStart">The start of the loop segment (must be block aligned).</param>
<param name="loopLength">The length of the loop segment (must be block aligned).</param>
<param name="duration">The duration of the wave file in milliseconds.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.SoundEffectProcessor">
<summary>
A sound effect processor that processes an intermediate AudioContent type. This type encapsulates the source audio content, producing a SoundEffect type that can be used in the game.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.SoundEffectProcessor.Quality">
<summary>
Gets or sets the target format quality of the audio content.
</summary>
<value>The ConversionQuality of this audio data.</value>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.SoundEffectProcessor.#ctor">
<summary>
Initializes a new instance of SoundEffectProcessor.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.SoundEffectProcessor.Process(Microsoft.Xna.Framework.Content.Pipeline.Audio.AudioContent,Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext)">
<summary>
Builds the content for the source audio.
</summary>
<param name="input">The audio content to build.</param>
<param name="context">Context for the specified processor.</param>
<returns>The built audio.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat">
<summary>
Specifies the target output (of type SurfaceFormat) of the texture processor. Used by TextureProcessor.TextureFormat.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat.Color">
<summary>
The SurfaceFormat value, of the input TextureContent object, is converted to Color by the processor. Typically used for 2D graphics and overlays.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat.DxtCompressed">
<summary>
The SurfaceFormat value, of the input TextureContent object, is converted to an appropriate DXT compression by the processor. If the input texture
contains fractional alpha values, it is converted to DXT5 format (8 bits per texel); otherwise it is converted to DXT1 (4 bits per texel). This
conversion reduces the resource's size on the graphics card. Typically used for 3D textures such as 3D model textures.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat.NoChange">
<summary>
The SurfaceFormat value, of the input TextureContent object, is not changed by the processor. Typically used for textures processed by an external tool.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat.Compressed">
<summary>
The SurfaceFormat value, of the input TextureContent object, is converted to an appropriate compressed format for the target platform.
This can include PVRTC for iOS, DXT for desktop, Windows 8 and Windows Phone 8, and ETC1 or BGRA4444 for Android.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat.Color16Bit">
<summary>
The pixel depth of the input texture is reduced to BGR565 for opaque textures, otherwise it uses BGRA4444.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat.Etc1Compressed">
<summary>
The input texture is compressed using ETC1 texture compression. Used on Android platforms.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat.PvrCompressed">
<summary>
The input texture is compressed using PVR texture compression. Used on iOS and some Android platforms.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Processors.TextureProcessorOutputFormat.AtcCompressed">
<summary>
The input texture is compressed using ATI texture compression. Used on some Android platforms.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexBufferContent">
<summary>
Provides methods and properties for managing a design-time vertex buffer that holds packed vertex data.
</summary>
<remarks>This type directly corresponds to the runtime VertexBuffer class, and when a VertexBufferContent object is passed to the content compiler, the vertex data deserializes directly into a VertexBuffer at runtime. VertexBufferContent objects are not directly created by importers. The preferred method is to store vertex data in the more flexible VertexContent class.</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexBufferContent.VertexData">
<summary>
Gets the array containing the raw bytes of the packed vertex data. Use this method to get and set the contents of the vertex buffer.
</summary>
<value>Raw data of the packed vertex data.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexBufferContent.VertexDeclaration">
<summary>
Gets and sets the associated VertexDeclarationContent object.
</summary>
<value>The associated VertexDeclarationContent object.</value>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexBufferContent.#ctor">
<summary>
Initializes a new instance of VertexBufferContent.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexBufferContent.#ctor(System.Int32)">
<summary>
Initializes a new instance of VertexBufferContent of the specified size.
</summary>
<param name="size">The size of the vertex buffer content, in bytes.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexBufferContent.SizeOf(System.Type)">
<summary>
Gets the size of the specified type, in bytes.
</summary>
<param name="type">The type.</param>
<returns>The size of the specified type, in bytes.</returns>
<remarks>Call this method to compute offset parameters for the Write method. If the specified
data type cannot be packed into a vertex buffer—for example, if type is not a valid value type—a
NotSupportedException is thrown.</remarks>
<exception cref="T:System.NotSupportedException">type is not a valid value type</exception>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexBufferContent.Write``1(System.Int32,System.Int32,System.Collections.Generic.IEnumerable{``0})">
<summary>
Writes additional data into the vertex buffer. Writing begins at the specified byte offset, and each value is spaced according to the specified stride value (in bytes).
</summary>
<typeparam name="T">Type being written.</typeparam>
<param name="offset">Offset to begin writing at.</param>
<param name="stride">Stride of the data being written, in bytes.</param>
<param name="data">Enumerated collection of data.</param>
<exception cref="T:System.NotSupportedException">The specified data type cannot be packed into a vertex buffer.</exception>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexBufferContent.Write(System.Int32,System.Int32,System.Type,System.Collections.IEnumerable)">
<summary>
Writes additional data into the vertex buffer. Writing begins at the specified byte offset, and each value is spaced according to the specified stride value (in bytes).
</summary>
<param name="offset">Offset at which to begin writing.</param>
<param name="stride">Stride of the data being written, in bytes.</param>
<param name="dataType">The type of data to be written.</param>
<param name="data">The data to write.</param>
<exception cref="T:System.NotSupportedException">The specified data type cannot be packed into a vertex buffer.</exception>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexDeclarationContent">
<summary>
Provides methods and properties for maintaining the vertex declaration data of a VertexContent.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexDeclarationContent.VertexElements">
<summary>
Gets the VertexElement object of the vertex declaration.
</summary>
<value>The VertexElement object of the vertex declaration.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexDeclarationContent.VertexStride">
<summary>
The number of bytes from one vertex to the next.
</summary>
<value>The stride (in bytes).</value>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Processors.VertexDeclarationContent.#ctor">
<summary>
Initializes a new instance of VertexDeclarationContent.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ArrayWriter`1">
<summary>
Writes the array value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ArrayWriter`1.OnAddedToContentWriter(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter)">
<inheritdoc/>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BooleanWriter">
<summary>
Writes the boolean value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BooleanWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Boolean)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BoundingBoxWriter">
<summary>
Writes the BoundingBox value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BoundingBoxWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.BoundingBox)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BoundingFrustumWriter">
<summary>
Writes the BoundingFrustum value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BoundingFrustumWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.BoundingFrustum)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BoundingSphereWriter">
<summary>
Writes the BoundingSphere value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BoundingSphereWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.BoundingSphere)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BuiltInContentWriter`1">
<summary>
Base class for the built-in content type writers where the content type is the same as the runtime type.
</summary>
<typeparam name="T">The content type being written.</typeparam>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BuiltInContentWriter`1.OnAddedToContentWriter(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter)">
<inheritdoc/>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BuiltInContentWriter`1.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,`0)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.BuiltInContentWriter`1.GetRuntimeReader(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<summary>
Gets the assembly qualified name of the runtime loader for this type.
</summary>
<param name="targetPlatform">Name of the platform.</param>
<returns>Name of the runtime loader.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ByteWriter">
<summary>
Writes the unsigned byte value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ByteWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Byte)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.CharWriter">
<summary>
Writes the character value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.CharWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Char)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ColorWriter">
<summary>
Writes the Color value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ColorWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Color)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentCompiler">
<summary>
Provides methods for writing compiled binary format.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentCompiler.#ctor">
<summary>
Initializes a new instance of ContentCompiler.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentCompiler.GetTypeWriters">
<summary>
Iterates through all loaded assemblies and finds the content type writers.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentCompiler.GetTypeWriter(System.Type)">
<summary>
Retrieves the worker writer for the specified type.
</summary>
<param name="type">The type.</param>
<returns>The worker writer.</returns>
<remarks>This should be called from the ContentTypeWriter.Initialize method.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentCompiler.Compile(System.IO.Stream,System.Object,Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform,Microsoft.Xna.Framework.Graphics.GraphicsProfile,System.Boolean,System.String,System.String)">
<summary>
Write the content to a XNB file.
</summary>
<param name="stream">The stream to write the XNB file to.</param>
<param name="content">The content to write to the XNB file.</param>
<param name="targetPlatform">The platform the XNB is intended for.</param>
<param name="targetProfile">The graphics profile of the target.</param>
<param name="compressContent">True if the content should be compressed.</param>
<param name="rootDirectory">The root directory of the content.</param>
<param name="referenceRelocationPath">The path of the XNB file, used to calculate relative paths for external references.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter">
<summary>
Provides methods and properties for compiling a specific managed type into a binary format.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter.CanDeserializeIntoExistingObject">
<summary>
Determines if deserialization into an existing object is possible.
</summary>
<value>true if the object can be deserialized into; false otherwise.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter.TargetType">
<summary>
Gets the type handled by this compiler component.
</summary>
<value>The type handled by this compiler component.</value>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter.TypeVersion">
<summary>
Gets a format version number for this type.
</summary>
<value>A format version number for this type.</value>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter.#ctor(System.Type)">
<summary>
Initializes a new instance of the ContentTypeWriter class.
</summary>
<param name="targetType"></param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter.GetRuntimeReader(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<summary>
Gets the assembly qualified name of the runtime loader for this type.
</summary>
<param name="targetPlatform">Name of the platform.</param>
<returns>Name of the runtime loader.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter.GetRuntimeType(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<summary>
Gets the assembly qualified name of the runtime target type. The runtime target type often matches the design time type, but may differ.
</summary>
<param name="targetPlatform">The target platform.</param>
<returns>The qualified name.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter.Initialize(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentCompiler)">
<summary>
Retrieves and caches nested type writers and allows for reflection over the target data type. Called by the framework at creation time.
</summary>
<param name="compiler">The content compiler.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter.OnAddedToContentWriter(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter)">
<summary>
Allows type writers to add their element type writers to the content writer.
</summary>
<param name="writer">The content writer.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter.ShouldCompressContent(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform,System.Object)">
<summary>
Indicates whether a given type of content should be compressed.
</summary>
<param name="targetPlatform">The target platform of the content build.</param>
<param name="value">The object about to be serialized, or null if a collection of objects is to be serialized.</param>
<returns>true if the content of the requested type should be compressed; false otherwise.</returns>
<remarks>This base class implementation of this method always returns true. It should be overridden
to return false if there would be little or no useful reduction in size of the content type's data
from a general-purpose lossless compression algorithm.
The implementations for Song Class and SoundEffect Class data return false because data for these
content types is already in compressed form.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Object)">
<summary>
Compiles an object into binary format.
</summary>
<param name="output">The content writer serializing the value.</param>
<param name="value">The resultant object.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriterAttribute">
<summary>
Identifies the components of a type writer. Custom content writers must apply this attribute to their class as well as extend the ContentTypeWriter class.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriterAttribute.#ctor">
<summary>
Initializes a new instance of the ContentTypeWriterAttribute class.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter`1">
<summary>
Provides a generic implementation of ContentTypeWriter methods and properties for compiling a specific managed type into a binary format.
</summary>
<typeparam name="T">The type to write</typeparam>
<remarks>This is a generic implementation of ContentTypeWriter and, therefore, can handle strongly typed content data.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter`1.#ctor">
<summary>
Initializes a new instance of the ContentTypeWriter class.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter`1.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Object)">
<summary>
Compiles a strongly typed object into binary format.
</summary>
<param name="output">The content writer serializing the value.</param>
<param name="value">The value to write.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter`1.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,`0)">
<summary>
Compiles a strongly typed object into binary format.
</summary>
<param name="output">The content writer serializing the value.</param>
<param name="value">The value to write.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter">
<summary>
Provides an implementation for many of the ContentCompiler methods including compilation, state tracking for shared resources and creation of the header type manifest.
</summary>
<remarks>A new ContentWriter is constructed for each compilation operation.</remarks>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.TargetPlatform">
<summary>
Gets the content build target platform.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.TargetProfile">
<summary>
Gets or sets the target graphics profile.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.#ctor(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentCompiler,System.IO.Stream,Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform,Microsoft.Xna.Framework.Graphics.GraphicsProfile,System.Boolean,System.String,System.String)">
<summary>
Creates a new instance of ContentWriter.
</summary>
<param name="compiler">The compiler object that created this writer.</param>
<param name="output">The stream to write the XNB file to.</param>
<param name="targetPlatform">The platform the XNB is intended for.</param>
<param name="targetProfile">The graphics profile of the target.</param>
<param name="compressContent">True if the content should be compressed.</param>
<param name="rootDirectory">The root directory of the content.</param>
<param name="referenceRelocationPath">The path of the XNB file, used to calculate relative paths for external references.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.Dispose(System.Boolean)">
<summary>
Releases the resources used by the IDisposable class.
</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.Flush">
<summary>
All content has been written, so now finalize the header, footer and anything else that needs finalizing.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteTypeWriters">
<summary>
Write the table of content type writers.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteHeader">
<summary>
Write the header to the output stream.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteSharedResources">
<summary>
Write all shared resources at the end of the file.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteCompressedStream(System.IO.MemoryStream)">
<summary>
Compress the stream and write it to the output.
</summary>
<param name="stream">The stream to compress and write to the output.</param>
<returns>true if the write succeeds</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteUncompressedStream(System.IO.Stream)">
<summary>
Write the uncompressed stream to the output.
</summary>
<param name="stream">The stream to write to the output.</param>
<returns>true if the write succeeds</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.GetTypeWriter(System.Type)">
<summary>
Gets a ContentTypeWriter for the given type.
</summary>
<param name="type">The type of the object to write.</param>
<returns>The ContentTypeWriter for the type.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteExternalReference``1(Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{``0})">
<summary>
Writes the name of an external file to the output binary.
</summary>
<typeparam name="T">The type of reference.</typeparam>
<param name="reference">External reference to a data file for the content item.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteObject``1(``0)">
<summary>
Writes a single object preceded by a type identifier to the output binary.
</summary>
<typeparam name="T">The type of value.</typeparam>
<param name="value">The value to write.</param>
<remarks>This method can be called recursively with a null value.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteObject``1(``0,Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter)">
<summary>
Writes a single object to the output binary, using the specified type hint and writer worker.
</summary>
<typeparam name="T">The type of value.</typeparam>
<param name="value">The value to write.</param>
<param name="typeWriter">The content type writer.</param>
<remarks>The type hint should be retrieved from the Initialize method of the ContentTypeWriter
that is calling WriteObject, by calling GetTypeWriter and passing it the type of the field used
to hold the value being serialized.
</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteRawObject``1(``0)">
<summary>
Writes a single object to the output binary as an instance of the specified type.
</summary>
<typeparam name="T">The type of value.</typeparam>
<param name="value">The value to write.</param>
<remarks>If you specify a base class of the actual object value only data from this base type
will be written. This method does not write any type identifier so it cannot support null or
polymorphic values, and the reader must specify an identical type while loading the compiled data.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteRawObject``1(``0,Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentTypeWriter)">
<summary>
Writes a single object to the output binary using the specified writer worker.
</summary>
<typeparam name="T">The type of value.</typeparam>
<param name="value">The value to write.</param>
<param name="typeWriter">The writer worker. This should be looked up from the Initialize method
of the ContentTypeWriter that is calling WriteRawObject, by calling GetTypeWriter.</param>
<remarks>WriteRawObject does not write any type identifier, so it cannot support null or polymorphic
values, and the reader must specify an identical type while loading the compiled data.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.WriteSharedResource``1(``0)">
<summary>
Adds a shared reference to the output binary and records the object to be serialized later.
</summary>
<typeparam name="T">The type of value.</typeparam>
<param name="value">The object to record.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.Write(Microsoft.Xna.Framework.Color)">
<summary>
Writes a Color value.
</summary>
<param name="value">Value of a color using Red, Green, Blue, and Alpha values to write.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.Write(Microsoft.Xna.Framework.Matrix)">
<summary>
Writes a Matrix value.
</summary>
<param name="value">Value to write.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.Write(Microsoft.Xna.Framework.Quaternion)">
<summary>
Writes a Matrix value.
</summary>
<param name="value">Value to write.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.Write(Microsoft.Xna.Framework.Vector2)">
<summary>
Writes a Vector2 value.
</summary>
<param name="value">Value to write.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.Write(Microsoft.Xna.Framework.Vector3)">
<summary>
Writes a Vector3 value.
</summary>
<param name="value">Value to write.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.Write(Microsoft.Xna.Framework.Vector4)">
<summary>
Writes a Vector4 value.
</summary>
<param name="value">Value to write.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.Write(Microsoft.Xna.Framework.BoundingSphere)">
<summary>
Writes a BoundingSphere value.
</summary>
<param name="value">Value to write.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.Write(Microsoft.Xna.Framework.Rectangle)">
<summary>
Writes a Rectangle value.
</summary>
<param name="value">Value to write.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter.CanDeserializeIntoExistingObject(System.Type)">
<summary>
Helper for checking if a type can be deserialized into an existing object.
</summary>
<param name="type">The type to check.</param>
<returns>True if the type can be deserialized into an existing object.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.CurveWriter">
<summary>
Writes the Curve value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.CurveWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Curve)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.DateTimeWriter">
<summary>
Writes the DateTime value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.DateTimeWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.DateTime)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.DecimalWriter">
<summary>
Writes the decimal value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.DecimalWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Decimal)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.DictionaryWriter`2">
<summary>
Writes the dictionary to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.DictionaryWriter`2.OnAddedToContentWriter(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter)">
<inheritdoc/>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.DoubleWriter">
<summary>
Writes the double precision floating point value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.DoubleWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Double)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.EnumWriter`1">
<summary>
Writes the enum value to the output. Usually 32 bit, but can be other sizes if T is not integer.
</summary>
<typeparam name="T">The enum type to write.</typeparam>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.EnumWriter`1.OnAddedToContentWriter(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter)">
<inheritdoc/>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ExternalReferenceWriter`1">
<summary>
Writes the external reference to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ExternalReferenceWriter`1.OnAddedToContentWriter(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter)">
<inheritdoc/>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ExternalReferenceWriter`1.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{`0})">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ExternalReferenceWriter`1.GetRuntimeReader(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<inheritdoc/>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ExternalReferenceWriter`1.GetRuntimeType(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<inheritdoc/>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Int16Writer">
<summary>
Writes the signed short value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Int16Writer.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Int16)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Int32Writer">
<summary>
Writes the signed integer value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Int32Writer.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Int32)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Int64Writer">
<summary>
Writes the signed long value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Int64Writer.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Int64)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ListWriter`1">
<summary>
Writes the list to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ListWriter`1.OnAddedToContentWriter(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter)">
<inheritdoc/>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ListWriter`1.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Collections.Generic.List{`0})">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.MatrixWriter">
<summary>
Writes the Matrix value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.MatrixWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Matrix)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.MultiArrayWriter`1">
<summary>
Writes the array value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.MultiArrayWriter`1.OnAddedToContentWriter(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter)">
<inheritdoc/>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.NullableWriter`1">
<summary>
Writes the nullable value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.NullableWriter`1.OnAddedToContentWriter(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter)">
<inheritdoc/>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.NullableWriter`1.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Nullable{`0})">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.PlaneWriter">
<summary>
Writes the Plane value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.PlaneWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Plane)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.PointWriter">
<summary>
Writes the Point value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.PointWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Point)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.QuaternionWriter">
<summary>
Writes the Quaternion value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.QuaternionWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Quaternion)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.RayWriter">
<summary>
Writes the Ray value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.RayWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Ray)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.RectangleWriter">
<summary>
Writes the Rectangle value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.RectangleWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Rectangle)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ReflectiveWriter`1.OnAddedToContentWriter(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter)">
<inheritdoc/>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.SByteWriter">
<summary>
Writes the signed byte value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.SByteWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.SByte)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.SingleWriter">
<summary>
Writes the single precision floating point value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.SingleWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.Single)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.SongWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Content.Pipeline.Processors.SongContent)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.SoundEffectWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Content.Pipeline.Processors.SoundEffectContent)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.SpriteFontContentWriter.GetRuntimeReader(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<summary>
Gets the assembly qualified name of the runtime loader for this type.
</summary>
<param name="targetPlatform">Name of the platform.</param>
<returns>Name of the runtime loader.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.SpriteFontContentWriter.GetRuntimeType(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform)">
<summary>
Gets the assembly qualified name of the runtime target type. The runtime target type often matches the design time type, but may differ.
</summary>
<param name="targetPlatform">The target platform.</param>
<returns>The qualified name.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.SpriteFontContentWriter.ShouldCompressContent(Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform,System.Object)">
<summary>
Indicates whether a given type of content should be compressed.
</summary>
<param name="targetPlatform">The target platform of the content build.</param>
<param name="value">The object about to be serialized, or null if a collection of objects is to be serialized.</param>
<returns>true if the content of the requested type should be compressed; false otherwise.</returns>
<remarks>This base class implementation of this method always returns true. It should be overridden
to return false if there would be little or no useful reduction in size of the content type's data
from a general-purpose lossless compression algorithm.
The implementations for Song Class and SoundEffect Class data return false because data for these
content types is already in compressed form.</remarks>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.StringWriter">
<summary>
Writes the string value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.StringWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.String)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.TimeSpanWriter">
<summary>
Writes the TimeSpan value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.TimeSpanWriter.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.TimeSpan)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.UInt16Writer">
<summary>
Writes the unsigned short value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.UInt16Writer.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.UInt16)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.UInt32Writer">
<summary>
Writes the unsigned integer value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.UInt32Writer.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.UInt32)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.UInt64Writer">
<summary>
Writes the unsigned long value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.UInt64Writer.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,System.UInt64)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Vector2Writer">
<summary>
Writes the Vector2 value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Vector2Writer.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Vector2)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Vector3Writer">
<summary>
Writes the Vector3 value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Vector3Writer.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Vector3)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Vector4Writer">
<summary>
Writes the Vector4 value to the output.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.Vector4Writer.Write(Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler.ContentWriter,Microsoft.Xna.Framework.Vector4)">
<summary>
Writes the value to the output.
</summary>
<param name="output">The output writer object.</param>
<param name="value">The value to write to the output.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.ContentTypeSerializerAttribute">
<summary>
Used to identify custom ContentTypeSerializer classes.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.ContentTypeSerializerAttribute.#ctor">
<summary>
Initializes an instance of the ContentTypeSerializerAttribute.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.IntermediateReader.ReadTypeName">
<summary>
Reads the next type in the
</summary>
<returns></returns>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.IntermediateSerializer._typeAliases">
<summary>
According to the examples on Sean Hargreaves' blog, explicit types
can also specify the type aliases from C#. This maps those names
to the actual .NET framework types for parsing.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.IntermediateSerializer._namespaceLookup">
<summary>
Maps "ShortName:" -> "My.Namespace.LongName." for type lookups.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.IntermediateSerializer.CreateNamespaceLookup(System.Xml.XmlReader)">
<summary>
Builds a lookup table from a short name to the full namespace.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.IntermediateSerializer.FindType(System.String)">
<summary>
Finds the type in any assembly loaded into the AppDomain.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.IntermediateSerializer.GetFullTypeName(System.Type)">
<summary>
Gets the (potentially) aliased name for any type.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.IntermediateSerializer.GetTypeName(System.Type)">
<summary>
Returns the name of the type, without the namespace.
For generic types, we add the type parameters in square brackets.
i.e. List&lt;int&gt; becomes List[int]
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.NamespaceAliasHelper._namespaceLookupReverse">
<summary>
Maps "My.Namespace.LongName" -> "ShortName" for type lookups.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate.NamespaceAliasHelper.GetRelativeNamespace(System.String,System.String)">
<summary>
Returns just the portion <paramref name="namespace"/> relative to <paramref name="namespaceParent"/>.
For example, given namespaceParent=Foo.Bar and @namespace=Foo.Bar.Baz, will return Baz.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ChildCollection`2">
<summary>
Provides a collection of child objects for a content item.
Links from a child object to its parent are maintained as the collection contents are modified.
</summary>
<typeparam name="TParent"></typeparam>
<typeparam name="TChild"></typeparam>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ChildCollection`2.#ctor(`0)">
<summary>
Creates an instance of ChildCollection.
</summary>
<param name="parent">Parent object of the child objects returned in the collection.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ChildCollection`2.ClearItems">
<summary>
Removes all children from the collection.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ChildCollection`2.GetParent(`1)">
<summary>
Gets the parent of a child object.
</summary>
<param name="child">The child of the parent being retrieved.</param>
<returns>The parent of the child object.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ChildCollection`2.InsertItem(System.Int32,`1)">
<summary>
Inserts a child object into the collection at the specified location.
</summary>
<param name="index">The position in the collection.</param>
<param name="item">The child object being inserted.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ChildCollection`2.RemoveItem(System.Int32)">
<summary>
Removes a child object from the collection.
</summary>
<param name="index">The index of the item being removed.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ChildCollection`2.SetItem(System.Int32,`1)">
<summary>
Modifies the value of the child object at the specified location.
</summary>
<param name="index">The index of the child object being modified.</param>
<param name="item">The new value for the child object.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ChildCollection`2.SetParent(`1,`0)">
<summary>
Modifies the value of the parent object of the specified child object.
</summary>
<param name="child">The child of the parent being modified.</param>
<param name="parent">The new value for the parent object.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentBuildLogger">
<summary>
Provides methods for reporting informational messages or warnings from content importers and processors.
Do not use this class to report errors. Instead, report errors by throwing a PipelineException or InvalidContentException.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentBuildLogger.LoggerRootDirectory">
<summary>
Gets or sets the base reference path used when reporting errors during the content build process.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentBuildLogger.#ctor">
<summary>
Initializes a new instance of ContentBuildLogger.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentBuildLogger.GetRelativePath(System.String,System.String)">
<summary>
Returns the relative path to the filename from the root directory.
</summary>
<param name="filename">The target filename.</param>
<param name="rootDirectory">The root directory. If not specified, the current directory is used.</param>
<returns>The relative path.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentBuildLogger.GetCurrentFilename(Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity)">
<summary>
Gets the filename currently being processed, for use in warning and error messages.
</summary>
<param name="contentIdentity">Identity of a content item. If specified, GetCurrentFilename uses this value to refine the search. If no value is specified, the current PushFile state is used.</param>
<returns>Name of the file being processed.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentBuildLogger.LogImportantMessage(System.String,System.Object[])">
<summary>
Outputs a high-priority status message from a content importer or processor.
</summary>
<param name="message">Message being reported.</param>
<param name="messageArgs">Arguments for the reported message.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentBuildLogger.LogMessage(System.String,System.Object[])">
<summary>
Outputs a low priority status message from a content importer or processor.
</summary>
<param name="message">Message being reported.</param>
<param name="messageArgs">Arguments for the reported message.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentBuildLogger.LogWarning(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity,System.String,System.Object[])">
<summary>
Outputs a warning message from a content importer or processor.
</summary>
<param name="helpLink">Link to an existing online help topic containing related information.</param>
<param name="contentIdentity">Identity of the content item that generated the message.</param>
<param name="message">Message being reported.</param>
<param name="messageArgs">Arguments for the reported message.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentBuildLogger.PopFile">
<summary>
Outputs a message indicating that a content asset has completed processing.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentBuildLogger.PushFile(System.String)">
<summary>
Outputs a message indicating that a content asset has begun processing.
All logger warnings or error exceptions from this time forward to the next PopFile call refer to this file.
</summary>
<param name="filename">Name of the file containing future messages.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity">
<summary>
Provides properties describing the origin of the game asset, such as the original source file and creation tool. This information is used for error reporting, and by processors that need to determine from what directory the asset was originally loaded.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity.FragmentIdentifier">
<summary>
Gets or sets the specific location of the content item within the larger source file.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity.SourceFilename">
<summary>
Gets or sets the file name of the asset source.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity.SourceTool">
<summary>
Gets or sets the creation tool of the asset.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity.#ctor">
<summary>
Initializes a new instance of ContentIdentity.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity.#ctor(System.String)">
<summary>
Initializes a new instance of ContentIdentity with the specified values.
</summary>
<param name="sourceFilename">The absolute path to the file name of the asset source.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of ContentIdentity with the specified values.
</summary>
<param name="sourceFilename">The absolute path to the file name of the asset source.</param>
<param name="sourceTool">The name of the digital content creation (DCC) tool that created the asset.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of ContentIdentity with the specified values.
</summary>
<param name="sourceFilename">The absolute path to the file name of the asset source.</param>
<param name="sourceTool">The name of the digital content creation (DCC) tool that created the asset.</param>
<param name="fragmentIdentifier">Specific location of the content item within the larger source file. For example, this could be a line number in the file.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentImporter`1">
<summary>
Implements a file format importer for use with game assets.
Importers, either provided by the framework or written by a developer, must derive from ContentImporter, as well as being marked with a ContentImporterAttribute.
An importer should produce results in the standard intermediate object model. If an asset has information not supported by the object model, the importer should output it as opaque data (key/value attributes attached to the relevant object). By following this procedure, a content pipeline can access specialized digital content creation (DCC) tool information, even when that information has not been fully standardized into the official object model.
You can also design custom importers that accept and import types containing specific third-party extensions to the object model.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentImporter`1.#ctor">
<summary>
Initializes a new instance of ContentImporter.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentImporter`1.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the framework when importing a game asset. This is the method called by XNA when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentImporter`1.Microsoft#Xna#Framework#Content#Pipeline#IContentImporter#Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the framework when importing a game asset. This is the method called by XNA when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterAttribute">
<summary>
Provides properties that identify and provide metadata about the importer, such as supported file extensions and caching information.
Importers are required to initialize this attribute.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterAttribute.CacheImportedData">
<summary>
Gets and sets the caching of the content during importation.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterAttribute.DefaultProcessor">
<summary>
Gets or sets the name of the default processor for content read by this importer.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterAttribute.DisplayName">
<summary>
Gets or sets the string representing the importer in a user interface. This name is not used by the content pipeline and should not be passed to the BuildAssets task (a custom MSBuild task used by XNA Game Studio). It is used for display purposes only.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterAttribute.FileExtensions">
<summary>
Gets the supported file name extensions of the importer.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterAttribute.#ctor(System.String)">
<summary>
Initializes a new instance of ContentImporterAttribute and sets the file name extension supported by the importer.
</summary>
<param name="fileExtension">The list of file name extensions supported by the importer. Prefix each extension with a '.'.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterAttribute.#ctor(System.String[])">
<summary>
Initializes a new instance of ContentImporterAttribute and sets the file name extensions supported by the importer.
</summary>
<param name="fileExtensions">The list of file name extensions supported by the importer. Prefix each extension with a '.'.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext">
<summary>
Provides properties that define logging behavior for the importer.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext.IntermediateDirectory">
<summary>
The absolute path to the root of the build intermediate (object) directory.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext.Logger">
<summary>
Gets the logger for an importer.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext.OutputDirectory">
<summary>
The absolute path to the root of the build output (binaries) directory.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext.#ctor">
<summary>
Initializes a new instance of ContentImporterContext.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext.AddDependency(System.String)">
<summary>
Adds a dependency to the specified file. This causes a rebuild of the file, when modified, on subsequent incremental builds.
</summary>
<param name="filename">Name of an asset file.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentItem">
<summary>
Provides properties that define various aspects of content stored using the intermediate file format of the XNA Framework.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentItem.Identity">
<summary>
Gets or sets the identity of the content item.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentItem.Name">
<summary>
Gets or sets the name of the content item.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentItem.OpaqueData">
<summary>
Gets the opaque data of the content item.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentItem.#ctor">
<summary>
Initializes a new instance of ContentItem.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessor`2">
<summary>
Provides a base class to use when developing custom processor components. All processors must derive from this class.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessor`2.#ctor">
<summary>
Initializes a new instance of the ContentProcessor class.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessor`2.Process(`0,Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext)">
<summary>
Processes the specified input data and returns the result.
</summary>
<param name="input">Existing content object being processed.</param>
<param name="context">Contains any required custom process parameters.</param>
<returns>A typed object representing the processed input.</returns>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessor`2.Microsoft#Xna#Framework#Content#Pipeline#IContentProcessor#InputType">
<summary>
Gets the expected object type of the input parameter to IContentProcessor.Process.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessor`2.Microsoft#Xna#Framework#Content#Pipeline#IContentProcessor#OutputType">
<summary>
Gets the object type returned by IContentProcessor.Process.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessor`2.Microsoft#Xna#Framework#Content#Pipeline#IContentProcessor#Process(System.Object,Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext)">
<summary>
Processes the specified input data and returns the result.
</summary>
<param name="input">Existing content object being processed.</param>
<param name="context">Contains any required custom process parameters.</param>
<returns>The processed input.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorAttribute">
<summary>
Gets any existing content processor components.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorAttribute.DisplayName">
<summary>
Gets or sets the string representing the processor in a user interface. This name is not used by the content pipeline and should not be passed to the BuildAssets task (a custom MSBuild task used by XNA Game Studio). It is used for display purposes only.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorAttribute.#ctor">
<summary>
Initializes an instance of ContentProcessorAttribute.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext">
<summary>
Provides access to custom processor parameters, methods for converting member data, and triggering nested builds.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.BuildConfiguration">
<summary>
Gets the name of the current content build configuration.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.IntermediateDirectory">
<summary>
Gets the path of the directory that will contain any intermediate files generated by the content processor.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.Logger">
<summary>
Gets the logger interface used for status messages or warnings.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.SourceIdentity">
<summary>
Gets the ContentIdentity representing the source asset imported.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.OutputDirectory">
<summary>
Gets the output path of the content processor.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.OutputFilename">
<summary>
Gets the output file name of the content processor.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.Parameters">
<summary>
Gets the collection of parameters used by the content processor.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.TargetPlatform">
<summary>
Gets the current content build target platform.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.TargetProfile">
<summary>
Gets the current content build target profile.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.#ctor">
<summary>
Initializes a new instance of ContentProcessorContext.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.AddDependency(System.String)">
<summary>
Adds a dependency to the specified file. This causes a rebuild of the file, when modified, on subsequent incremental builds.
</summary>
<param name="filename">Name of an asset file.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.AddOutputFile(System.String)">
<summary>
Add a file name to the list of related output files maintained by the build item. This allows tracking build items that build multiple output files.
</summary>
<param name="filename">The name of the file.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.BuildAndLoadAsset``2(Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{``0},System.String)">
<summary>
Initiates a nested build of the specified asset and then loads the result into memory.
</summary>
<typeparam name="TInput">Type of the input.</typeparam>
<typeparam name="TOutput">Type of the converted output.</typeparam>
<param name="sourceAsset">Reference to the source asset.</param>
<param name="processorName">Optional processor for this content.</param>
<returns>Copy of the final converted content.</returns>
<remarks>An example of usage would be a mesh processor calling BuildAndLoadAsset to build any associated textures and replace the original .tga file references with an embedded copy of the converted texture.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.BuildAndLoadAsset``2(Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{``0},System.String,Microsoft.Xna.Framework.Content.Pipeline.OpaqueDataDictionary,System.String)">
<summary>
Initiates a nested build of the specified asset and then loads the result into memory.
</summary>
<typeparam name="TInput">Type of the input.</typeparam>
<typeparam name="TOutput">Type of the converted output.</typeparam>
<param name="sourceAsset">Reference to the source asset.</param>
<param name="processorName">Optional processor for this content.</param>
<param name="processorParameters">Optional collection of named values available as input to the content processor.</param>
<param name="importerName">Optional importer for this content.</param>
<returns>Copy of the final converted content.</returns>
<remarks>An example of usage would be a mesh processor calling BuildAndLoadAsset to build any associated textures and replace the original .tga file references with an embedded copy of the converted texture.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.BuildAsset``2(Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{``0},System.String)">
<summary>
Initiates a nested build of an additional asset.
</summary>
<typeparam name="TInput">Type of the input.</typeparam>
<typeparam name="TOutput">Type of the output.</typeparam>
<param name="sourceAsset">Reference to the source asset.</param>
<param name="processorName">Optional processor for this content.</param>
<returns>Reference to the final compiled content. The build work is not required to complete before returning. Therefore, this file may not be up to date when BuildAsset returns but it will be available for loading by the game at runtime.</returns>
<remarks>An example of usage for BuildAsset is being called by a mesh processor to request that any related textures used are also built, replacing the original TGA file references with new references to the converted texture files.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.BuildAsset``2(Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{``0},System.String,Microsoft.Xna.Framework.Content.Pipeline.OpaqueDataDictionary,System.String,System.String)">
<summary>
Initiates a nested build of an additional asset.
</summary>
<typeparam name="TInput">Type of the input.</typeparam>
<typeparam name="TOutput">Type of the output.</typeparam>
<param name="sourceAsset">Reference to the source asset.</param>
<param name="processorName">Optional processor for this content.</param>
<param name="processorParameters">Optional collection of named values available as input to the content processor.</param>
<param name="importerName">Optional importer for this content.</param>
<param name="assetName">Optional name of the final compiled content.</param>
<returns>Reference to the final compiled content. The build work is not required to complete before returning. Therefore, this file may not be up to date when BuildAsset returns but it will be available for loading by the game at runtime.</returns>
<remarks>An example of usage for BuildAsset is being called by a mesh processor to request that any related textures used are also built, replacing the original TGA file references with new references to the converted texture files.</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.Convert``2(``0,System.String)">
<summary>
Converts a content item object using the specified content processor.
</summary>
<typeparam name="TInput">Type of the input content.</typeparam>
<typeparam name="TOutput">Type of the converted output.</typeparam>
<param name="input">Source content to be converted.</param>
<param name="processorName">Optional processor for this content.</param>
<returns>Reference of the final converted content.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.Convert``2(``0,System.String,Microsoft.Xna.Framework.Content.Pipeline.OpaqueDataDictionary)">
<summary>
Converts a content item object using the specified content processor.
</summary>
<typeparam name="TInput">Type of the input content.</typeparam>
<typeparam name="TOutput">Type of the converted output.</typeparam>
<param name="input">Source content to be converted.</param>
<param name="processorName">Optional processor for this content.</param>
<param name="processorParameters">Optional parameters for the processor.</param>
<returns>Reference of the final converted content.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentStats">
<summary>
Content building statistics for a single source content file.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.ContentStats.SourceFile">
<summary>
The absolute path to the source content file.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.ContentStats.DestFile">
<summary>
The absolute path to the destination content file.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.ContentStats.ProcessorType">
<summary>
The content processor type name.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.ContentStats.ContentType">
<summary>
The content type name.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.ContentStats.SourceFileSize">
<summary>
The source file size in bytes.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.ContentStats.DestFileSize">
<summary>
The destination file size in bytes.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.ContentStats.BuildSeconds">
<summary>
The content build time in seconds.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ContentStatsCollection">
<summary>
A collection of content building statistics for use in diagnosing content issues.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentStatsCollection.PreviousStats">
<summary>
Optionally used for copying stats that were stored in another collection.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ContentStatsCollection.Stats">
<summary>
The internal content statistics dictionary.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentStatsCollection.TryGetStats(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentStats@)">
<summary>
Get the content statistics for a source file and returns true if found.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentStatsCollection.Reset">
<summary>
Clears all the content statistics.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentStatsCollection.RecordStats(System.String,System.String,System.String,System.Type,System.Single)">
<summary>
Store content building stats for a source file.
</summary>
<param name="sourceFile">The absolute path to the source asset file.</param>
<param name="destFile">The absolute path to the destination content file.</param>
<param name="processorType">The type name of the content processor.</param>
<param name="contentType">The content type object.</param>
<param name="buildSeconds">The build time in seconds.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentStatsCollection.CopyPreviousStats(System.String)">
<summary>
Copy content building stats to the current collection from the PreviousStats.
</summary>
<param name="sourceFile">The absolute path to the source asset file.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentStatsCollection.Read(System.String)">
<summary>
Load the content statistics from a folder.
</summary>
<param name="outputPath">The folder where the .mgstats file can be found.</param>
<returns>Returns the content statistics or an empty collection.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentStatsCollection.Write(System.String)">
<summary>
Write the content statistics to a folder with the .mgstats file name.
</summary>
<param name="outputPath">The folder to write the .mgstats file.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ContentStatsCollection.MergePreviousStats">
<summary>
Merge in statistics from PreviousStats that do not exist in this collection.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.DdsLoader">
<summary>
Loader class for DDS format image files.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.EffectImporter">
<summary>
Provides methods for reading effect (.fx) files for use in the Content Pipeline.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.#ctor">
<summary>
Initializes a new instance of EffectImporter.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the XNA Framework when importing an .fx file to be used as a game asset. This is the method called by the XNA Framework when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ExternalReference`1">
<summary>
Specifies external references to a data file for the content item.
While the object model is instantiated, reference file names are absolute. When the file containing the external reference is serialized to disk, file names are relative to the file. This allows movement of the content tree to a different location without breaking internal links.
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ExternalReference`1.Filename">
<summary>
Gets and sets the file name of an ExternalReference.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ExternalReference`1.#ctor">
<summary>
Initializes a new instance of ExternalReference.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ExternalReference`1.#ctor(System.String)">
<summary>
Initializes a new instance of ExternalReference.
</summary>
<param name="filename">The name of the referenced file.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ExternalReference`1.#ctor(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity)">
<summary>
Initializes a new instance of ExternalReference, specifying the file path relative to another content item.
</summary>
<param name="filename">The name of the referenced file.</param>
<param name="relativeToContent">The content that the path specified in filename is relative to.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ExternalTool">
<summary>
Helper to run an external tool installed in the system. Useful for when
we don't want to package the tool ourselves (ffmpeg) or it's provided
by a third party (console manufacturer).
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ExternalTool.FindCommand(System.String)">
<summary>
Returns the fully-qualified path for a command, searching the system path if necessary.
</summary>
<remarks>
It's apparently necessary to use the full path when running on some systems.
</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ExternalTool.EnsureExecutable(System.String)">
<summary>
Ensures the specified executable has the executable bit set. If the
executable doesn't have the executable bit set on Linux or Mac OS, then
Mono will refuse to execute it.
</summary>
<param name="path">The full path to the executable.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ExternalTool.DeleteFile(System.String)">
<summary>
Safely deletes the file if it exists.
</summary>
<param name="filePath">The path to the file to delete.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.FbxImporter">
<summary>
Provides methods for reading AutoDesk (.fbx) files for use in the Content Pipeline.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.FontDescriptionImporter">
<summary>
Provides methods for reading .spritefont files for use in the Content Pipeline.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.FontDescriptionImporter.#ctor">
<summary>
Initializes a new instance of FontDescriptionImporter.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.FontDescriptionImporter.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the XNA Framework when importing a .spritefont file to be used as a game asset. This is the method called by the XNA Framework when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.IContentImporter">
<summary>
Accesses a statically typed ContentImporter instance from generic code using dynamic typing.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.IContentImporter.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Imports an asset from the specified file.
</summary>
<param name="filename">Name of the game asset file.</param>
<param name="context">A ContentImporterContext class containing information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.IContentProcessor">
<summary>
Provides methods and properties for accessing a statically typed ContentProcessor subclass, using dynamically typed object data.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.IContentProcessor.InputType">
<summary>
Gets the expected object type of the input parameter to IContentProcessor.Process.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.IContentProcessor.OutputType">
<summary>
Gets the object type returned by IContentProcessor.Process.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.IContentProcessor.Process(System.Object,Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext)">
<summary>
Processes the specified input data and returns the result.
</summary>
<param name="input">Existing content object being processed.</param>
<param name="context">Contains any required custom process parameters.</param>
<returns>An object representing the processed input.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.InvalidContentException">
<summary>
Thrown when errors are encountered in content during processing.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.InvalidContentException.ContentIdentity">
<summary>
Gets or sets the identity of the content item that caused the exception.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.InvalidContentException.#ctor">
<summary>
Initializes a new instance of the InvalidContentException class
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.InvalidContentException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the InvalidContentException class with information on serialization and streaming context for the related content item.
</summary>
<param name="serializationInfo">Information necessary for serialization and deserialization of the content item.</param>
<param name="streamingContext">Information necessary for the source and destination of a given serialized stream. Also provides an additional caller-defined context.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.InvalidContentException.#ctor(System.String)">
<summary>
Initializes a new instance of the InvalidContentException class with the specified error message.
</summary>
<param name="message">A message that describes the error.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.InvalidContentException.#ctor(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity)">
<summary>
Initializes a new instance of the InvalidContentException class with the specified error message and the identity of the content throwing the exception.
</summary>
<param name="message">A message that describes the error.</param>
<param name="contentIdentity">Information about the content item that caused this error, including the file name. In some cases, a location within the file (of the problem) is specified.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.InvalidContentException.#ctor(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentIdentity,System.Exception)">
<summary>
Initializes a new instance of the InvalidContentException class with the specified error message, the identity of the content throwing the exception, and a reference to the inner exception that is the cause of this exception.
</summary>
<param name="message">A message that describes the error.</param>
<param name="contentIdentity">Information about the content item that caused this error, including the file name. In some cases, a location within the file (of the problem) is specified.</param>
<param name="innerException">The exception that is the cause of the current exception. If innerException is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.InvalidContentException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the InvalidContentException class with the specified error message and a reference to the inner exception that is the cause of this exception.
</summary>
<param name="message">A message that describes the error.</param>
<param name="innerException">The exception that is the cause of the current exception. If innerException is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.InvalidContentException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
When overridden in a derived class, returns information about the exception.
In addition to the base behavior, this method provides serialization functionality.
</summary>
<param name="info">Information necessary for serialization and deserialization of the content item.</param>
<param name="context">Information necessary for the source and destination of a given serialized stream. Also provides an additional caller-defined context.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.LoadedTypeCollection`1">
<summary>
A helper for collecting instances of a particular type
by scanning the types in loaded assemblies.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Mp3Importer">
<summary>
Provides methods for reading MP3 audio files for use in the Content Pipeline.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Mp3Importer.#ctor">
<summary>
Initializes a new instance of Mp3Importer.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Mp3Importer.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the XNA Framework when importing an MP3 audio file to be used as a game asset. This is the method called by the XNA Framework when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.#ctor">
<summary>
Initializes an instance of NamedValueDictionary.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.Add(System.String,`0)">
<summary>
Adds the specified key and value to the dictionary.
</summary>
<param name="key">Identity of the key of the new data pair.</param>
<param name="value">The value of the new data pair.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.ContainsKey(System.String)">
<summary>
Determines whether the specified key is present in the dictionary.
</summary>
<param name="key">Identity of a key.</param>
<returns></returns>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.Keys">
<summary>
Gets all keys contained in the dictionary.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.Remove(System.String)">
<summary>
Removes the specified key and value from the dictionary.
</summary>
<param name="key">Identity of the key to be removed.</param>
<returns>true if the value is present; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.TryGetValue(System.String,`0@)">
<summary>
Gets the value associated with the specified key.
</summary>
<param name="key">Identity of the key of the element whose value is to be retrieved.</param>
<param name="value">The current value of the element.</param>
<returns>true if the value is present; false otherwise.</returns>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.DefaultSerializerType">
<summary>
Specifies the type hint for the intermediate serializer. Values of this type do not store an explicit type attribute in the related XML source.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.Values">
<summary>
Gets all values contained in the dictionary.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.Item(System.String)">
<summary>
Gets or sets the specified item.
</summary>
<param name="key">Identity of a key.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,T}}#Add(System.Collections.Generic.KeyValuePair{System.String,`0})">
<summary>
Adds an item to the collection.
</summary>
<param name="item">The item to add to the collection.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.Clear">
<summary>
Removes all keys and values from the dictionary.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,T}}#Contains(System.Collections.Generic.KeyValuePair{System.String,`0})">
<summary>
Determines whether the collection contains a specific value.
</summary>
<param name="item">The object to locate in the collection.</param>
<returns>true if the collection contains the object; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,T}}#CopyTo(System.Collections.Generic.KeyValuePair{System.String,`0}[],System.Int32)">
<summary>
Copies the elements of the collection to an array, starting at a specified index.
</summary>
<param name="array">The destination array.</param>
<param name="arrayIndex">The index at which to begin the copy.</param>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.Count">
<summary>
Gets the number of items in the dictionary.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,T}}#IsReadOnly">
<summary>
Gets a value indicating if this object is read-only.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String,T}}#Remove(System.Collections.Generic.KeyValuePair{System.String,`0})">
<summary>
Removes the first occurrence of the specified object from the collection.
</summary>
<param name="item">The item to remove from the collection.</param>
<returns>true if the item was successfully removed from the collection; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.GetEnumerator">
<summary>
Gets an enumerator that iterates through items in a dictionary.
</summary>
<returns>Enumerator for iterating through the dictionary.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator that can iterate through this collection.
</summary>
<returns>An enumerator that can iterate through this collection</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.AddItem(System.String,`0)">
<summary>
Adds an element to the dictionary.
</summary>
<param name="key">Identity of the key of the new element.</param>
<param name="value">The value of the new element.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.ClearItems">
<summary>
Removes all elements from the dictionary.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.RemoveItem(System.String)">
<summary>
Removes the specified element from the dictionary.
</summary>
<param name="key">Identity of the key of the data pair to be removed.</param>
<returns>true if the value is present; false otherwise.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.NamedValueDictionary`1.SetItem(System.String,`0)">
<summary>
Modifies the value of an existing element.
</summary>
<param name="key">Identity of the element to be modified.</param>
<param name="value">The value to be set.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.OggImporter">
<summary>
Provides methods for reading .ogg audio files for use in the Content Pipeline.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OggImporter.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the XNA Framework when importing an ogg audio file to be used as a game asset. This is the method called by the XNA Framework when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpaqueDataDictionary.GetValue``1(System.String,``0)">
<summary>
Get the value for the specified key
</summary>
<key>The key of the item to retrieve.</key>
<defaultValue>The default value to return if the key does not exist.</defaultValue>
<returns>The item cast as T, or the default value if the item is not present in the dictonary.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.FbxPivot">
<summary>Defines the frame for local scale/rotation/translation of FBX nodes.</summary>
<remarks>
<para>
The transformation pivot defines the frame for local scale/rotation/translation. The
local transform of a node is:
</para>
<para>
Local Transform = Translation * RotationOffset * RotationPivot * PreRotation
* Rotation * PostRotation * RotationPivotInverse * ScalingOffset
* ScalingPivot * Scaling * ScalingPivotInverse
</para>
<para>
where the matrix multiplication order is right-to-left.
</para>
<para>
3ds max uses three additional transformations:
</para>
<para>
Local Transform = Translation * Rotation * Scaling
* GeometricTranslation * GeometricRotation * GeometricScaling
</para>
<para>
Transformation pivots are stored per FBX node. When Assimp hits an FBX node with
a transformation pivot it generates additional nodes named
</para>
<para>
<i>OriginalName</i>_$AssimpFbx$_<i>TransformName</i>
</para>
<para>
where <i>TransformName</i> is one of:
</para>
<para>
Translation, RotationOffset, RotationPivot, PreRotation, Rotation, PostRotation,
RotationPivotInverse, ScalingOffset, ScalingPivot, Scaling, ScalingPivotInverse,
GeometricTranslation, GeometricRotation, GeometricScaling
</para>
</remarks>
<seealso href="http://download.autodesk.com/us/fbx/20112/FBX_SDK_HELP/index.html?url=WS1a9193826455f5ff1f92379812724681e696651.htm,topicNumber=d0e7429"/>
<seealso href="http://area.autodesk.com/forum/autodesk-fbx/fbx-sdk/the-makeup-of-the-local-matrix-of-an-kfbxnode/"/>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.XnaComptatible">
<summary>
This disables some Assimp model loading features so that
the resulting content is the same as what the XNA FbxImporter
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.ImportXnaMaterials">
<summary>
Converts all Assimp <see cref="T:Assimp.Material"/>s to standard XNA compatible <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent"/>s.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.ImportMaterials">
<summary>
Returns all the Assimp <see cref="T:Assimp.Material"/> features as a <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.MaterialContent"/>.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.ImportNodes">
<summary>
Converts all Assimp nodes to XNA nodes. (Nodes representing bones are excluded!)
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.ImportNodes(Assimp.Node,Assimp.Node,Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent)">
<summary>
Converts the specified node and all descendant nodes.
</summary>
<param name="aiNode">The node.</param>
<param name="aiParent">The parent node. Can be <see langword="null"/>.</param>
<param name="parent">The <paramref name="aiParent"/> node converted to XNA.</param>
<returns>The XNA <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent"/>.</returns>
<remarks>
It may be necessary to skip certain "preserve pivot" nodes in the hierarchy. The
converted node needs to be relative to <paramref name="aiParent"/>, not <c>node.Parent</c>.
</remarks>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.FindSkeleton">
<summary>
Identifies the nodes that represent bones and stores the bone offset matrices.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.FindDeformationBones(Assimp.Scene)">
<summary>
Finds the deformation bones (= bones attached to meshes).
</summary>
<param name="scene">The scene.</param>
<returns>A dictionary of all deformation bones and their offset matrices.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.FindRootBone(Assimp.Scene,System.String)">
<summary>
Finds the root bone of a specific bone in the skeleton.
</summary>
<param name="scene">The scene.</param>
<param name="boneName">The name of a bone in the skeleton.</param>
<returns>The root bone.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.ImportSkeleton">
<summary>
Imports the skeleton including all skeletal animations.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.ImportBones(Assimp.Node,Assimp.Node,Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent)">
<summary>
Converts the specified node and all descendant nodes to XNA bones.
</summary>
<param name="aiNode">The node.</param>
<param name="aiParent">The parent node.</param>
<param name="parent">The <paramref name="aiParent"/> node converted to XNA.</param>
<returns>The XNA <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.Graphics.NodeContent"/>.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.ImportAnimation(Assimp.Animation,System.String)">
<summary>
Converts the specified animation to XNA.
</summary>
<param name="aiAnimation">The animation.</param>
<param name="nodeName">An optional filter.</param>
<returns>The animation converted to XNA.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.GetSubtree(Assimp.Node,System.Collections.Generic.List{Assimp.Node})">
<summary>
Copies the current node and all descendant nodes into a list.
</summary>
<param name="node">The current node.</param>
<param name="list">The list.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.GetRelativeTransform(Assimp.Node,Assimp.Node)">
<summary>
Gets the transform of node relative to a specific ancestor node.
</summary>
<param name="node">The node.</param>
<param name="ancestor">The ancestor node. Can be <see langword="null"/>.</param>
<returns>
The relative transform. If <paramref name="ancestor"/> is <see langword="null"/> the
absolute transform of <paramref name="node"/> is returned.
</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.GetAnimationName(System.String)">
<summary>
Gets the animation name without the "AnimStack::" part.
</summary>
<param name="name">The mangled animation name.</param>
<returns>The original animation name.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.OpenAssetImporter.GetNodeName(System.String)">
<summary>
Gets the node name without the "_$AssimpFbx$" part.
</summary>
<param name="name">The mangled node name.</param>
<returns>The original node name.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner">
<summary>
Implements a scanner object containing the available importers and processors for an application. Designed for internal use only.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.Errors">
<summary>
Gets the list of error messages produced by the last call to Update.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.ImporterAttributes">
<summary>
Gets a dictionary that maps importer names to their associated metadata attributes.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.ImporterNames">
<summary>
Gets the names of all available importers.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.ImporterOutputTypes">
<summary>
Gets a dictionary that maps importer names to the fully qualified name of their return types.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.ProcessorAttributes">
<summary>
Gets a dictionary that maps processor names to their associated metadata attributes.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.ProcessorInputTypes">
<summary>
Gets a dictionary that maps processor names to the fully qualified name of supported input types.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.ProcessorNames">
<summary>
Gets the names of all available processors.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.ProcessorOutputTypes">
<summary>
Gets a dictionary that maps processor names to the fully qualified name of their output types.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.ProcessorParameters">
<summary>
A collection of supported processor parameters.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.#ctor">
<summary>
Initializes a new instance of PipelineComponentScanner.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.Update(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Updates the scanner object with the latest available assembly states.
</summary>
<param name="pipelineAssemblies">Enumerated list of available assemblies.</param>
<returns>true if an actual scan was required, indicating the collection contents may have changed. false if no assembly changes were detected since the previous call.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.PipelineComponentScanner.Update(System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{System.String})">
<summary>
Updates the scanner object with the latest available assembly states.
</summary>
<param name="pipelineAssemblies">Enumerated list of available assemblies.</param>
<param name="pipelineAssemblyDependencies">Enumerated list of dependent assemblies.</param>
<returns>true if an actual scan was required, indicating the collection contents may have changed. false if no assembly changes were detected since the previous call.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.PipelineException">
<summary>
Thrown when errors are encountered during a content pipeline build.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.PipelineException.#ctor">
<summary>
Creates an instance of PipelineException.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.PipelineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Creates an instance of PipelineException with information on serialization and streaming context for the related content item.
</summary>
<param name="serializationInfo">Information necessary for serialization and deserialization of the content item.</param>
<param name="streamingContext">Information necessary for the source and destination of a given serialized stream. Also provides an additional caller-defined context.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.PipelineException.#ctor(System.String)">
<summary>
Initializes a new instance of the PipelineException class with the specified error message.
</summary>
<param name="message">A message that describes the error.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.PipelineException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the PipelineException class with the specified error message and a reference to the inner exception that is the cause of this exception.
</summary>
<param name="message">A message that describes the error.</param>
<param name="innerException">The exception that is the cause of the current exception. If innerException is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.PipelineException.#ctor(System.String,System.Object[])">
<summary>
Initializes a new instance of the PipelineException class with the specified error message.
</summary>
<param name="message">A message that describes the error.</param>
<param name="messageArgs">Array of strings specifying message-related arguments.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameter">
<summary>
Represents a processor parameter. Processor parameters are automatically discovered by the content pipeline. Therefore, only custom processor developers should use this class directly.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameter.DefaultValue">
<summary>
Default value of the processor parameter.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameter.Description">
<summary>
Description of the parameter, as specified by the [Description] attribute.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameter.DisplayName">
<summary>
Name of the parameter displayed in the designer, as specified by the [DisplayName] attribute.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameter.IsEnum">
<summary>
Gets a value indicating whether the parameter is an enumeration.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameter.PossibleEnumValues">
<summary>
Available options for enumerated type parameters. For parameters of other types, this value is null.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameter.PropertyName">
<summary>
Name of the property, as defined in the C# code.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameter.PropertyType">
<summary>
Type of the parameter.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameter.#ctor(System.Reflection.PropertyInfo)">
<summary>
Constructs a ProcessorParameter instance.
</summary>
<param name="propertyInfo">The info for the property.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameterCollection">
<summary>
Represents a collection of processor parameters, usually for a single processor. This class is primarily designed for internal use or for custom processor developers.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameterCollection.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Xna.Framework.Content.Pipeline.ProcessorParameter})">
<summary>
Constructs a new ProcessorParameterCollection instance.
</summary>
<param name="parameters">The parameters in the collection.</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform">
<summary>
Identifiers for the target platform.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.Windows">
<summary>
All desktop versions of Windows using DirectX.
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.Xbox360">
<summary>
Xbox 360 video game and entertainment system
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.iOS">
<summary>
Apple iOS-based devices (iPod Touch, iPhone, iPad)
(MonoGame)
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.Android">
<summary>
Android-based devices
(MonoGame)
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.DesktopGL">
<summary>
All desktop versions using OpenGL.
(MonoGame)
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.MacOSX">
<summary>
Apple Mac OSX-based devices (iMac, MacBook, MacBook Air, etc)
(MonoGame)
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.WindowsStoreApp">
<summary>
Windows Store App
(MonoGame)
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.NativeClient">
<summary>
Google Chrome Native Client
(MonoGame)
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.PlayStationMobile">
<summary>
Sony PlayStation Mobile (PS Vita)
(MonoGame)
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.WindowsPhone8">
<summary>
Windows Phone 8
(MonoGame)
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.RaspberryPi">
<summary>
Raspberry Pi
(MonoGame)
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.PlayStation4">
<summary>
Sony PlayStation4
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.PSVita">
<summary>
PlayStation Vita
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.XboxOne">
<summary>
Xbox One
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatform.Switch">
<summary>
Nintendo Switch
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.TargetPlatformTypeConverter">
<summary>
Deserialize legacy Platforms from .MGCB files.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.TextureImporter">
<summary>
Provides methods for reading texture files for use in the Content Pipeline.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.#ctor">
<summary>
Initializes a new instance of TextureImporter.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the XNA Framework when importing a texture file to be used as a game asset. This is the method called by the XNA Framework when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.ConvertAndSwapChannels(System.IntPtr,FreeImageAPI.FREE_IMAGE_TYPE)">
<summary>
Expands images to have an alpha channel and swaps red and blue channels
</summary>
<param name="fBitmap">Image to process</param>
<param name="imageType">Type of the image for the procedure</param>
<returns></returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.SwitchRedAndBlueChannels(System.IntPtr)">
<summary>
Switches the red and blue channels
</summary>
<param name="fBitmap">image</param>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.VideoContent">
<summary>
Provides a base class for all video objects.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.VideoContent.BitsPerSecond">
<summary>
Gets the bit rate for this video.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.VideoContent.Duration">
<summary>
Gets the duration of this video.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.VideoContent.Filename">
<summary>
Gets or sets the file name for this video.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.VideoContent.FramesPerSecond">
<summary>
Gets the frame rate for this video.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.VideoContent.Height">
<summary>
Gets the height of this video.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.VideoContent.VideoSoundtrackType">
<summary>
Gets or sets the type of soundtrack accompanying the video.
</summary>
</member>
<member name="P:Microsoft.Xna.Framework.Content.Pipeline.VideoContent.Width">
<summary>
Gets the width of this video.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.VideoContent.#ctor(System.String)">
<summary>
Initializes a new copy of the VideoContent class for the specified video file.
</summary>
<param name="filename">The file name of the video to import.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.VideoContent.Dispose">
<summary>
Immediately releases the unmanaged resources used by this object.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.WavImporter">
<summary>
Provides methods for reading .wav audio files for use in the Content Pipeline.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.WavImporter.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the XNA Framework when importing a .wav audio file to be used as a game asset. This is the method called by the XNA Framework when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
<remarks>This importer supports PCM in unsigned 8-bit, signed 16-bit, signed 24-bit, IEEE Float 32-bit, MS-ADPCM or IMA/ADPCM with sample rates from 8KHz up to 48KHz.</remarks>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.WmaImporter">
<summary>
Provides methods for reading Windows Media Audio (.wma) files for use in the Content Pipeline.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.WmaImporter.#ctor">
<summary>
Initializes a new instance of WmaImporter.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.WmaImporter.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the XNA Framework when importing a .wma file to be used as a game asset. This is the method called by the XNA Framework when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.WmvImporter">
<summary>
Provides methods for reading Windows Media Video (.wmv) files for use in the Content Pipeline.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.WmvImporter.#ctor">
<summary>
Initializes a new instance of WmvImporter.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.WmvImporter.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the XNA Framework when importing a .wmv file to be used as a game asset. This is the method called by the XNA Framework when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.XImporter">
<summary>
Provides methods for reading DirectX Object (.x) files for use in the Content Pipeline.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.XImporter.#ctor">
<summary>
Initializes a new instance of XImporter.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.XImporter.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the XNA Framework when importing a .x file to be used as a game asset. This is the method called by the XNA Framework when an asset is to be imported into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>Resulting game asset.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.XmlImporter">
<summary>
Implements an importer for reading intermediate XML files. This is a wrapper around IntermediateSerializer.
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.XmlImporter.Import(System.String,Microsoft.Xna.Framework.Content.Pipeline.ContentImporterContext)">
<summary>
Called by the XNA Framework when importing an intermediate file to be used as a game
asset. This is the method called by the XNA Framework when an asset is to be imported
into an object that can be recognized by the Content Pipeline.
</summary>
<param name="filename">Name of a game asset file.</param>
<param name="context">Contains information for importing a game asset, such as a logger interface.</param>
<returns>The imported game asset.</returns>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Utilities.Vector4Converter">
<summary>
Helper class used by PixelBitmapContent.TryCopyFrom and TryCopyTo to convert between non-PackedValue types and Vector4.
</summary>
</member>
<member name="T:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec">
<summary>Unsafe LZ4 codec.</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.MEMORY_USAGE">
<summary>
Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; etc.)
Increasing memory usage improves compression ratio
Reduced memory usage can improve speed, due to cache effect
Default value is 14, for 16KB, which nicely fits into Intel x86 L1 cache
</summary>
</member>
<member name="F:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.NOTCOMPRESSIBLE_DETECTIONLEVEL">
<summary>
Decreasing this value will make the algorithm skip faster data segments considered "incompressible"
This may decrease compression ratio dramatically, but will be faster on incompressible data
Increasing this value will make the algorithm search more before declaring a segment "incompressible"
This could improve compression a bit, but will be slower on incompressible data
The default value (6) is recommended
</summary>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.MaximumOutputLength(System.Int32)">
<summary>Gets maximum the length of the output.</summary>
<param name="inputLength">Length of the input.</param>
<returns>Maximum number of bytes needed for compressed buffer.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.BlockCopy(System.Byte*,System.Byte*,System.Int32)">
<summary>Copies block of memory.</summary>
<param name="src">The source.</param>
<param name="dst">The destination.</param>
<param name="len">The length (in bytes).</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.BlockFill(System.Byte*,System.Int32,System.Byte)">
<summary>Copies block of memory.</summary>
<param name="dst">The destination.</param>
<param name="len">The length (in bytes).</param>
<param name="val">The value.</param>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Encode32(System.Byte*,System.Byte*,System.Int32,System.Int32)">
<summary>Encodes the specified input.</summary>
<param name="input">The input.</param>
<param name="output">The output.</param>
<param name="inputLength">Length of the input.</param>
<param name="outputLength">Length of the output.</param>
<returns>Number of bytes written.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Encode32(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)">
<summary>Encodes the specified input.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<param name="output">The output.</param>
<param name="outputOffset">The output offset.</param>
<param name="outputLength">Length of the output.</param>
<returns>Number of bytes written.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Encode32(System.Byte[],System.Int32,System.Int32)">
<summary>Encodes the specified input.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<returns>Compressed buffer.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Decode32(System.Byte*,System.Int32,System.Byte*,System.Int32,System.Boolean)">
<summary>Decodes the specified input.</summary>
<param name="input">The input.</param>
<param name="inputLength">Length of the input.</param>
<param name="output">The output.</param>
<param name="outputLength">Length of the output.</param>
<param name="knownOutputLength">Set it to <c>true</c> if output length is known.</param>
<returns>Number of bytes written.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Decode32(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Boolean)">
<summary>Decodes the specified input.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<param name="output">The output.</param>
<param name="outputOffset">The output offset.</param>
<param name="outputLength">Length of the output.</param>
<param name="knownOutputLength">Set it to <c>true</c> if output length is known.</param>
<returns>Number of bytes written.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Decode32(System.Byte[],System.Int32,System.Int32,System.Int32)">
<summary>Decodes the specified input.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<param name="outputLength">Length of the output.</param>
<returns>Decompressed buffer.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Encode64(System.Byte*,System.Byte*,System.Int32,System.Int32)">
<summary>Encodes the specified input.</summary>
<param name="input">The input.</param>
<param name="output">The output.</param>
<param name="inputLength">Length of the input.</param>
<param name="outputLength">Length of the output.</param>
<returns>Number of bytes written.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Encode64(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)">
<summary>Encodes the specified input.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<param name="output">The output.</param>
<param name="outputOffset">The output offset.</param>
<param name="outputLength">Length of the output.</param>
<returns>Number of bytes written.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Encode64(System.Byte[],System.Int32,System.Int32)">
<summary>Encodes the specified input.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<returns>Compressed buffer.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Decode64(System.Byte*,System.Int32,System.Byte*,System.Int32,System.Boolean)">
<summary>Decodes the specified input.</summary>
<param name="input">The input.</param>
<param name="inputLength">Length of the input.</param>
<param name="output">The output.</param>
<param name="outputLength">Length of the output.</param>
<param name="knownOutputLength">Set it to <c>true</c> if output length is known.</param>
<returns>Number of bytes written.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Decode64(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Boolean)">
<summary>Decode64s the specified input.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<param name="output">The output.</param>
<param name="outputOffset">The output offset.</param>
<param name="outputLength">Length of the output.</param>
<param name="knownOutputLength">Set it to <c>true</c> if output length is known.</param>
<returns>Number of bytes written.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Decode64(System.Byte[],System.Int32,System.Int32,System.Int32)">
<summary>Decode64s the specified input.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<param name="outputLength">Length of the output.</param>
<returns>Decompressed buffer.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Encode32HC(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)">
<summary>Encodes the specified input using HC codec.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<param name="output">The output.</param>
<param name="outputOffset">The output offset.</param>
<param name="outputLength">Length of the output.</param>
<returns>Number of bytes written. NOTE: when output buffer is too small it returns negative value.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Encode32HC(System.Byte[],System.Int32,System.Int32)">
<summary>Encodes the specified input using HC codec.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<returns>Buffer with compressed data (NOTE: it can be bigger than input).</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Encode64HC(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)">
<summary>Encodes the specified input using HC codec.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<param name="output">The output.</param>
<param name="outputOffset">The output offset.</param>
<param name="outputLength">Length of the output.</param>
<returns>Number of bytes written. NOTE: when output buffer is too small it returns negative value.</returns>
</member>
<member name="M:Microsoft.Xna.Framework.Content.Pipeline.Utilities.LZ4.LZ4Codec.Encode64HC(System.Byte[],System.Int32,System.Int32)">
<summary>Encodes the specified input using HC codec.</summary>
<param name="input">The input.</param>
<param name="inputOffset">The input offset.</param>
<param name="inputLength">Length of the input.</param>
<returns>Buffer with compressed data (NOTE: it can be bigger than input).</returns>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.FileHelper.DeleteIfExists(System.String)">
<summary>
Checks deletes a file from disk without throwing exceptions.
</summary>
</member>
<member name="F:MonoGame.Framework.Content.Pipeline.Builder.PathHelper.DirectorySeparator">
<summary>
The/universal/standard/directory/seperator.
</summary>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.PathHelper.Normalize(System.String)">
<summary>
Returns a path string normalized to the/universal/standard.
</summary>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.PathHelper.NormalizeDirectory(System.String)">
<summary>
Returns a directory path string normalized to the/universal/standard
with a trailing seperator.
</summary>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.PathHelper.NormalizeWindows(System.String)">
<summary>
Returns a path string normalized to the\Windows\standard.
</summary>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.PathHelper.GetRelativePath(System.String,System.String)">
<summary>
Returns a path relative to the base path.
</summary>
<param name="basePath">The path to make relative to. Must end with directory seperator.</param>
<param name="path">The path to be made relative to the basePath.</param>
<returns>The relative path or the original string if it is not absolute or cannot be made relative.</returns>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent.SourceFile">
<summary>
Absolute path to the source file.
</summary>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent.SourceTime">
<summary>
The date/time stamp of the source file.
</summary>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent.DestFile">
<summary>
Absolute path to the output file.
</summary>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent.DestTime">
<summary>
The date/time stamp of the destination file.
</summary>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent.ImporterTime">
<summary>
The date/time stamp of the DLL containing the importer.
</summary>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent.ProcessorTime">
<summary>
The date/time stamp of the DLL containing the processor.
</summary>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent.Dependencies">
<summary>
Gets or sets the dependencies.
</summary>
<value>The dependencies.</value>
<remarks>
Dependencies are extra files that are required in addition to the <see cref="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent.SourceFile"/>.
Dependencies are added using <see cref="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.AddDependency(System.String)"/>. Changes
to the dependent file causes a rebuilt of the content.
</remarks>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent.BuildAsset">
<summary>
Gets or sets the additional (nested) assets.
</summary>
<value>The additional (nested) assets.</value>
<remarks>
<para>
Additional assets are built by using an <see cref="T:Microsoft.Xna.Framework.Content.Pipeline.ExternalReference`1"/> and calling
<see cref="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.BuildAndLoadAsset``2(Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{``0},System.String)"/>
or <see cref="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.BuildAsset``2(Microsoft.Xna.Framework.Content.Pipeline.ExternalReference{``0},System.String)"/>.
</para>
<para>
Examples: The mesh processor may build textures and effects in addition to the mesh.
</para>
</remarks>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent.BuildOutput">
<summary>
Gets or sets the related output files.
</summary>
<value>The related output files.</value>
<remarks>
Related output files are non-XNB files that are included in addition to the XNB files.
Related output files need to be copied to the output folder by a content processor and
registered by calling <see cref="M:Microsoft.Xna.Framework.Content.Pipeline.ContentProcessorContext.AddOutputFile(System.String)"/>.
</remarks>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.Profile">
<summary>
The current target graphics profile for which all content is built.
</summary>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.Platform">
<summary>
The current target platform for which all content is built.
</summary>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.Config">
<summary>
The build configuration passed thru to content processors.
</summary>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.CompressContent">
<summary>
Gets or sets if the content is compressed.
</summary>
</member>
<member name="P:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.RethrowExceptions">
<summary>
If true exceptions thrown from within an importer or processor are caught and then
thrown from the context. Default value is true.
</summary>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.GetProcessorDefaultValues(System.String)">
<summary>
Gets the default values for the content processor parameters.
</summary>
<param name="processorName">The name of the content processor.</param>
<returns>
A dictionary containing the default value for each parameter. Returns
<see langword="null"/> if the content processor has not been created yet.
</returns>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.TrackPipelineBuildEvent(MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent)">
<summary>
Stores the pipeline build event (in memory) if no matching event is found.
</summary>
<param name="pipelineEvent">The pipeline build event.</param>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.GetAssetName(System.String,System.String,System.String,Microsoft.Xna.Framework.Content.Pipeline.OpaqueDataDictionary)">
<summary>
Gets an automatic asset name, such as "AssetName_0".
</summary>
<param name="sourceFileName">The source file name.</param>
<param name="importerName">The name of the content importer. Can be <see langword="null"/>.</param>
<param name="processorName">The name of the content processor. Can be <see langword="null"/>.</param>
<param name="processorParameters">The processor parameters. Can be <see langword="null"/>.</param>
<returns>The asset name.</returns>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.FindMatchingEvent(System.Collections.Generic.List{MonoGame.Framework.Content.Pipeline.Builder.PipelineBuildEvent},System.String,System.String,System.String,Microsoft.Xna.Framework.Content.Pipeline.OpaqueDataDictionary)">
<summary>
Determines whether the specified list contains a matching pipeline build event.
</summary>
<param name="pipelineBuildEvents">The list of pipeline build events.</param>
<param name="destFile">Absolute path to the output file. Can be <see langword="null"/>.</param>
<param name="importerName">The name of the content importer. Can be <see langword="null"/>.</param>
<param name="processorName">The name of the content processor. Can be <see langword="null"/>.</param>
<param name="processorParameters">The processor parameters. Can be <see langword="null"/>.</param>
<returns>
The matching pipeline build event, or <see langword="null"/>.
</returns>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.AppendAssetNameSuffix(System.String)">
<summary>
Gets the asset name including a suffix, such as "_0". (The number is incremented
automatically.
</summary>
<param name="baseAssetName">
The asset name without suffix (relative to output folder).
</param>
<returns>The asset name with suffix.</returns>
</member>
<member name="M:MonoGame.Framework.Content.Pipeline.Builder.PipelineManager.IsAssetNameUsed(System.String)">
<summary>
Determines whether the specified asset name is already used.
</summary>
<param name="assetName">The asset name (relative to output folder).</param>
<returns>
<see langword="true"/> if the asset name is already used; otherwise,
<see langword="false"/> if the name is available.
</returns>
</member>
<member name="T:MonoGame.Framework.Content.Pipeline.Builder.XmlColor">
<summary>
Helper for serializing color types with the XmlSerializer.
</summary>
</member>
<member name="F:TwoMGFX.EffectObject.state_table">
<summary>
The shared state definition table.
</summary>
</member>
<member name="M:TwoMGFX.EffectObject.Write(System.IO.BinaryWriter,TwoMGFX.Options)">
<summary>
Writes the effect for loading later.
</summary>
</member>
<member name="F:TwoMGFX.ShaderData._cbuffers">
<summary>
The index to the constant buffers which are
required by this shader at runtime.
</summary>
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants._INCL_MOJOSHADER_H_">
_INCL_MOJOSHADER_H_ ->
Error generating expression: Value cannot be null.
Parameter name: node
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants._INCL_MOJOSHADER_VERSION_H_">
_INCL_MOJOSHADER_VERSION_H_ ->
Error generating expression: Value cannot be null.
Parameter name: node
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_VERSION">
MOJOSHADER_VERSION -> 1111
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_CHANGESET">
MOJOSHADER_CHANGESET -> "hg-1111:91a6af79b5e4"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_POSITION_NONE">
MOJOSHADER_POSITION_NONE -> (-3)
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_POSITION_BEFORE">
MOJOSHADER_POSITION_BEFORE -> (-2)
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_POSITION_AFTER">
MOJOSHADER_POSITION_AFTER -> (-1)
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_PROFILE_D3D">
MOJOSHADER_PROFILE_D3D -> "d3d"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_PROFILE_BYTECODE">
MOJOSHADER_PROFILE_BYTECODE -> "bytecode"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_PROFILE_GLSL">
MOJOSHADER_PROFILE_GLSL -> "glsl"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_PROFILE_GLSL120">
MOJOSHADER_PROFILE_GLSL120 -> "glsl120"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_PROFILE_ARB1">
MOJOSHADER_PROFILE_ARB1 -> "arb1"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_PROFILE_NV2">
MOJOSHADER_PROFILE_NV2 -> "nv2"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_PROFILE_NV3">
MOJOSHADER_PROFILE_NV3 -> "nv3"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_PROFILE_NV4">
MOJOSHADER_PROFILE_NV4 -> "nv4"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_SRC_PROFILE_HLSL_VS_1_1">
MOJOSHADER_SRC_PROFILE_HLSL_VS_1_1 -> "hlsl_vs_1_1"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_SRC_PROFILE_HLSL_VS_2_0">
MOJOSHADER_SRC_PROFILE_HLSL_VS_2_0 -> "hlsl_vs_2_0"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_SRC_PROFILE_HLSL_VS_3_0">
MOJOSHADER_SRC_PROFILE_HLSL_VS_3_0 -> "hlsl_vs_3_0"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_SRC_PROFILE_HLSL_PS_1_1">
MOJOSHADER_SRC_PROFILE_HLSL_PS_1_1 -> "hlsl_ps_1_1"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_SRC_PROFILE_HLSL_PS_1_2">
MOJOSHADER_SRC_PROFILE_HLSL_PS_1_2 -> "hlsl_ps_1_2"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_SRC_PROFILE_HLSL_PS_1_3">
MOJOSHADER_SRC_PROFILE_HLSL_PS_1_3 -> "hlsl_ps_1_3"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_SRC_PROFILE_HLSL_PS_1_4">
MOJOSHADER_SRC_PROFILE_HLSL_PS_1_4 -> "hlsl_ps_1_4"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_SRC_PROFILE_HLSL_PS_2_0">
MOJOSHADER_SRC_PROFILE_HLSL_PS_2_0 -> "hlsl_ps_2_0"
</member>
<member name="F:TwoMGFX.MojoShader.NativeConstants.MOJOSHADER_SRC_PROFILE_HLSL_PS_3_0">
MOJOSHADER_SRC_PROFILE_HLSL_PS_3_0 -> "hlsl_ps_3_0"
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_uniform.type">
MOJOSHADER_uniformType->Anonymous_cf91fd71_65e4_4c31_a6d5_9488d7f3d32a
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_uniform.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_uniform.array_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_uniform.constant">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_uniform.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_constant.type">
MOJOSHADER_uniformType->Anonymous_cf91fd71_65e4_4c31_a6d5_9488d7f3d32a
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_constant.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_constant.value">
Anonymous_5371dd6a_e42a_47c1_91d1_a2af9a8283be
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_sampler.type">
MOJOSHADER_samplerType->Anonymous_a752a39b_b479_42b0_9502_e39ba7d86100
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_sampler.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_sampler.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_sampler.texbem">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_samplerMap.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_samplerMap.type">
MOJOSHADER_samplerType->Anonymous_a752a39b_b479_42b0_9502_e39ba7d86100
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_attribute.usage">
MOJOSHADER_usage->Anonymous_9c01433d_7bb5_4c50_bf77_e65cef0661b5
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_attribute.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_attribute.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_swizzle.usage">
MOJOSHADER_usage->Anonymous_9c01433d_7bb5_4c50_bf77_e65cef0661b5
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_swizzle.index">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_swizzle.swizzles">
unsigned char[4]
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbolTypeInfo.parameter_class">
MOJOSHADER_symbolClass->Anonymous_681c4b26_94f7_4142_a8e9_b970fe0b60df
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbolTypeInfo.parameter_type">
MOJOSHADER_symbolType->Anonymous_d8534f21_7f44_465d_8843_40a435dbb54a
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbolTypeInfo.rows">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbolTypeInfo.columns">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbolTypeInfo.elements">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbolTypeInfo.member_count">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbolTypeInfo.members">
MOJOSHADER_symbolStructMember*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbolStructMember.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbolStructMember.info">
MOJOSHADER_symbolTypeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbol.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbol.register_set">
MOJOSHADER_symbolRegisterSet->Anonymous_9ff7ac54_131c_43b0_a295_9830d24ac76b
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbol.register_index">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbol.register_count">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_symbol.info">
MOJOSHADER_symbolTypeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_error.error">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_error.filename">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_error.error_position">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderOpcode.MOJOSHADER_PRESHADEROP_MIN_SCALAR">
MOJOSHADER_PRESHADEROP_MIN_SCALAR -> MOJOSHADER_PRESHADEROP_SCALAR_OPS
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderOperandType.MOJOSHADER_PRESHADEROPERAND_LITERAL">
MOJOSHADER_PRESHADEROPERAND_LITERAL -> 1
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderOperandType.MOJOSHADER_PRESHADEROPERAND_INPUT">
MOJOSHADER_PRESHADEROPERAND_INPUT -> 2
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderOperandType.MOJOSHADER_PRESHADEROPERAND_OUTPUT">
MOJOSHADER_PRESHADEROPERAND_OUTPUT -> 4
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderOperandType.MOJOSHADER_PRESHADEROPERAND_TEMP">
MOJOSHADER_PRESHADEROPERAND_TEMP -> 7
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderOperandType.MOJOSHADER_PRESHADEROPERAND_UNKN">
MOJOSHADER_PRESHADEROPERAND_UNKN -> 0xff
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderOperand.type">
MOJOSHADER_preshaderOperandType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderOperand.index">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderOperand.indexingType">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderOperand.indexingIndex">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderInstruction.opcode">
MOJOSHADER_preshaderOpcode
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderInstruction.element_count">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderInstruction.operand_count">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshaderInstruction.operands">
MOJOSHADER_preshaderOperand[4]
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshader.literal_count">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshader.literals">
double*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshader.temp_count">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshader.symbol_count">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshader.symbols">
MOJOSHADER_symbol*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshader.instruction_count">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preshader.instructions">
MOJOSHADER_preshaderInstruction*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.error_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.errors">
MOJOSHADER_error*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.profile">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.output">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.output_len">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.instruction_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.shader_type">
MOJOSHADER_shaderType->Anonymous_96517ad6_cc69_4542_8537_054e63919d54
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.major_ver">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.minor_ver">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.uniform_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.uniforms">
MOJOSHADER_uniform*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.constant_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.constants">
MOJOSHADER_constant*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.sampler_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.samplers">
MOJOSHADER_sampler*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.attribute_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.attributes">
MOJOSHADER_attribute*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.output_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.outputs">
MOJOSHADER_attribute*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.swizzle_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.swizzles">
MOJOSHADER_swizzle*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.symbol_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.symbols">
MOJOSHADER_symbol*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.preshader">
MOJOSHADER_preshader*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.malloc">
MOJOSHADER_malloc
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.free">
MOJOSHADER_free
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_parseData.malloc_data">
void*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectParam.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectParam.semantic">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectState.type">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectPass.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectPass.state_count">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectPass.states">
MOJOSHADER_effectState*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectTechnique.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectTechnique.pass_count">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectTechnique.passes">
MOJOSHADER_effectPass*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectTexture.param">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectTexture.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectShader.technique">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectShader.pass">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effectShader.shader">
MOJOSHADER_parseData*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.error_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.errors">
MOJOSHADER_error*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.profile">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.param_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.params">
MOJOSHADER_effectParam*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.technique_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.techniques">
MOJOSHADER_effectTechnique*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.texture_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.textures">
MOJOSHADER_effectTexture*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.shader_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.shaders">
MOJOSHADER_effectShader*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.malloc">
MOJOSHADER_malloc
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.free">
MOJOSHADER_free
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_effect.malloc_data">
void*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preprocessorDefine.identifier">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preprocessorDefine.definition">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preprocessData.error_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preprocessData.errors">
MOJOSHADER_error*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preprocessData.output">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preprocessData.output_len">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preprocessData.malloc">
MOJOSHADER_malloc
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preprocessData.free">
MOJOSHADER_free
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_preprocessData.malloc_data">
void*
</member>
<member name="T:TwoMGFX.MojoShader.MOJOSHADER_includeOpen">
Return Type: int
inctype: MOJOSHADER_includeType->Anonymous_f1eed39d_7d1b_46d4_972e_a3229d15c26e
fname: char*
parent: char*
outdata: char**
outbytes: unsigned int*
m: MOJOSHADER_malloc
f: MOJOSHADER_free
d: void*
</member>
<member name="T:TwoMGFX.MojoShader.MOJOSHADER_includeClose">
Return Type: void
data: char*
m: MOJOSHADER_malloc
f: MOJOSHADER_free
d: void*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeStructMember.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeStructMember.identifier">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeStruct.type">
MOJOSHADER_astDataTypeType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeStruct.members">
MOJOSHADER_astDataTypeStructMember*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeStruct.member_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeArray.type">
MOJOSHADER_astDataTypeType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeArray.base">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeArray.elements">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeMatrix.type">
MOJOSHADER_astDataTypeType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeMatrix.base">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeMatrix.rows">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeMatrix.columns">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeBuffer.type">
MOJOSHADER_astDataTypeType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeBuffer.base">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeFunction.type">
MOJOSHADER_astDataTypeType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeFunction.retval">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeFunction.params">
MOJOSHADER_astDataType**
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeFunction.num_params">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeFunction.intrinsic">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeUser.type">
MOJOSHADER_astDataTypeType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeUser.details">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataTypeUser.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataType.type">
MOJOSHADER_astDataTypeType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataType.array">
MOJOSHADER_astDataTypeArray
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataType.structure">
MOJOSHADER_astDataTypeStruct
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataType.vector">
MOJOSHADER_astDataTypeVector->MOJOSHADER_astDataTypeArray
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataType.matrix">
MOJOSHADER_astDataTypeMatrix
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataType.buffer">
MOJOSHADER_astDataTypeBuffer
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataType.user">
MOJOSHADER_astDataTypeUser
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astDataType.function">
MOJOSHADER_astDataTypeFunction
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNodeInfo.type">
MOJOSHADER_astNodeType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNodeInfo.filename">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNodeInfo.line">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astGeneric.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpression.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpression.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astArguments.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astArguments.argument">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astArguments.next">
MOJOSHADER_astArguments*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionUnary.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionUnary.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionUnary.operand">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionBinary.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionBinary.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionBinary.left">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionBinary.right">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionTernary.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionTernary.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionTernary.left">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionTernary.center">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionTernary.right">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionIdentifier.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionIdentifier.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionIdentifier.identifier">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionIdentifier.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionIntLiteral.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionIntLiteral.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionIntLiteral.value">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionFloatLiteral.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionFloatLiteral.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionFloatLiteral.value">
double
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionStringLiteral.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionStringLiteral.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionStringLiteral.string">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionBooleanLiteral.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionBooleanLiteral.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionBooleanLiteral.value">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionConstructor.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionConstructor.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionConstructor.args">
MOJOSHADER_astArguments*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionDerefStruct.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionDerefStruct.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionDerefStruct.identifier">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionDerefStruct.member">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionDerefStruct.isswizzle">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionDerefStruct.member_index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionCallFunction.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionCallFunction.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionCallFunction.identifier">
MOJOSHADER_astExpressionIdentifier*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionCallFunction.args">
MOJOSHADER_astArguments*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionCast.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionCast.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionCast.operand">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnit.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnit.next">
MOJOSHADER_astCompilationUnit*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionParameters.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionParameters.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionParameters.input_modifier">
MOJOSHADER_astInputModifier
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionParameters.identifier">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionParameters.semantic">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionParameters.interpolation_modifier">
MOJOSHADER_astInterpolationModifier
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionParameters.initializer">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionParameters.next">
MOJOSHADER_astFunctionParameters*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionSignature.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionSignature.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionSignature.identifier">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionSignature.params">
MOJOSHADER_astFunctionParameters*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionSignature.storage_class">
MOJOSHADER_astFunctionStorageClass
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astFunctionSignature.semantic">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astScalarOrArray.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astScalarOrArray.identifier">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astScalarOrArray.isarray">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astScalarOrArray.dimension">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astAnnotations.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astAnnotations.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astAnnotations.initializer">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astAnnotations.next">
MOJOSHADER_astAnnotations*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astPackOffset.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astPackOffset.ident1">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astPackOffset.ident2">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableLowLevel.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableLowLevel.packoffset">
MOJOSHADER_astPackOffset*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableLowLevel.register_name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructMembers.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructMembers.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructMembers.semantic">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructMembers.details">
MOJOSHADER_astScalarOrArray*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructMembers.interpolation_mod">
MOJOSHADER_astInterpolationModifier
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructMembers.next">
MOJOSHADER_astStructMembers*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructDeclaration.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructDeclaration.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructDeclaration.name">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructDeclaration.members">
MOJOSHADER_astStructMembers*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableDeclaration.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableDeclaration.attributes">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableDeclaration.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableDeclaration.anonymous_datatype">
MOJOSHADER_astStructDeclaration*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableDeclaration.details">
MOJOSHADER_astScalarOrArray*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableDeclaration.semantic">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableDeclaration.annotations">
MOJOSHADER_astAnnotations*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableDeclaration.initializer">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableDeclaration.lowlevel">
MOJOSHADER_astVariableLowLevel*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVariableDeclaration.next">
MOJOSHADER_astVariableDeclaration*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astBlockStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astBlockStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astBlockStatement.statements">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astReturnStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astReturnStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astReturnStatement.expr">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astExpressionStatement.expr">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astIfStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astIfStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astIfStatement.attributes">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astIfStatement.expr">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astIfStatement.statement">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astIfStatement.else_statement">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astSwitchCases.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astSwitchCases.expr">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astSwitchCases.statement">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astSwitchCases.next">
MOJOSHADER_astSwitchCases*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astSwitchStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astSwitchStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astSwitchStatement.attributes">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astSwitchStatement.expr">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astSwitchStatement.cases">
MOJOSHADER_astSwitchCases*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astWhileStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astWhileStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astWhileStatement.unroll">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astWhileStatement.expr">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astWhileStatement.statement">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astForStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astForStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astForStatement.unroll">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astForStatement.var_decl">
MOJOSHADER_astVariableDeclaration*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astForStatement.initializer">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astForStatement.looptest">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astForStatement.counter">
MOJOSHADER_astExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astForStatement.statement">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astTypedef.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astTypedef.datatype">
MOJOSHADER_astDataType*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astTypedef.isconst">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astTypedef.details">
MOJOSHADER_astScalarOrArray*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astTypedefStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astTypedefStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astTypedefStatement.type_info">
MOJOSHADER_astTypedef*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVarDeclStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVarDeclStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astVarDeclStatement.declaration">
MOJOSHADER_astVariableDeclaration*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructStatement.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructStatement.next">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astStructStatement.struct_info">
MOJOSHADER_astStructDeclaration*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitFunction.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitFunction.next">
MOJOSHADER_astCompilationUnit*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitFunction.declaration">
MOJOSHADER_astFunctionSignature*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitFunction.definition">
MOJOSHADER_astStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitFunction.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitTypedef.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitTypedef.next">
MOJOSHADER_astCompilationUnit*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitTypedef.type_info">
MOJOSHADER_astTypedef*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitStruct.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitStruct.next">
MOJOSHADER_astCompilationUnit*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitStruct.struct_info">
MOJOSHADER_astStructDeclaration*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitVariable.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitVariable.next">
MOJOSHADER_astCompilationUnit*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astCompilationUnitVariable.declaration">
MOJOSHADER_astVariableDeclaration*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.ast">
MOJOSHADER_astNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.generic">
MOJOSHADER_astGeneric
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.expression">
MOJOSHADER_astExpression
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.arguments">
MOJOSHADER_astArguments
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.unary">
MOJOSHADER_astExpressionUnary
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.binary">
MOJOSHADER_astExpressionBinary
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.ternary">
MOJOSHADER_astExpressionTernary
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.identifier">
MOJOSHADER_astExpressionIdentifier
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.intliteral">
MOJOSHADER_astExpressionIntLiteral
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.floatliteral">
MOJOSHADER_astExpressionFloatLiteral
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.stringliteral">
MOJOSHADER_astExpressionStringLiteral
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.boolliteral">
MOJOSHADER_astExpressionBooleanLiteral
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.constructor">
MOJOSHADER_astExpressionConstructor
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.derefstruct">
MOJOSHADER_astExpressionDerefStruct
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.callfunc">
MOJOSHADER_astExpressionCallFunction
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.cast">
MOJOSHADER_astExpressionCast
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.compunit">
MOJOSHADER_astCompilationUnit
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.params">
MOJOSHADER_astFunctionParameters
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.funcsig">
MOJOSHADER_astFunctionSignature
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.soa">
MOJOSHADER_astScalarOrArray
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.annotations">
MOJOSHADER_astAnnotations
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.packoffset">
MOJOSHADER_astPackOffset
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.varlowlevel">
MOJOSHADER_astVariableLowLevel
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.structmembers">
MOJOSHADER_astStructMembers
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.structdecl">
MOJOSHADER_astStructDeclaration
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.vardecl">
MOJOSHADER_astVariableDeclaration
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.stmt">
MOJOSHADER_astStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.emptystmt">
MOJOSHADER_astEmptyStatement->MOJOSHADER_astStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.breakstmt">
MOJOSHADER_astBreakStatement->MOJOSHADER_astStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.contstmt">
MOJOSHADER_astContinueStatement->MOJOSHADER_astStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.discardstmt">
MOJOSHADER_astDiscardStatement->MOJOSHADER_astStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.blockstmt">
MOJOSHADER_astBlockStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.returnstmt">
MOJOSHADER_astReturnStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.exprstmt">
MOJOSHADER_astExpressionStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.ifstmt">
MOJOSHADER_astIfStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.cases">
MOJOSHADER_astSwitchCases
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.switchstmt">
MOJOSHADER_astSwitchStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.whilestmt">
MOJOSHADER_astWhileStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.dostmt">
MOJOSHADER_astDoStatement->MOJOSHADER_astWhileStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.forstmt">
MOJOSHADER_astForStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.typdef">
MOJOSHADER_astTypedef
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.typedefstmt">
MOJOSHADER_astTypedefStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.vardeclstmt">
MOJOSHADER_astVarDeclStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.structstmt">
MOJOSHADER_astStructStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.funcunit">
MOJOSHADER_astCompilationUnitFunction
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.typedefunit">
MOJOSHADER_astCompilationUnitTypedef
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.structunit">
MOJOSHADER_astCompilationUnitStruct
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astNode.varunit">
MOJOSHADER_astCompilationUnitVariable
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astData.error_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astData.errors">
MOJOSHADER_error*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astData.source_profile">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astData.ast">
MOJOSHADER_astNode*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astData.malloc">
MOJOSHADER_malloc
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astData.free">
MOJOSHADER_free
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astData.malloc_data">
void*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_astData.opaque">
void*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irNodeInfo.type">
MOJOSHADER_irNodeType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irNodeInfo.filename">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irNodeInfo.line">
unsigned int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irGeneric.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExprInfo.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExprInfo.type">
MOJOSHADER_astDataTypeType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExprInfo.elements">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irConstant.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irConstant.value">
Anonymous_3a13e6d2_72d8_4c86_b5bf_9aff36c73111
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irTemp.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irTemp.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irBinOp.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irBinOp.op">
MOJOSHADER_irBinOpType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irBinOp.left">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irBinOp.right">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irMemory.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irMemory.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irCall.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irCall.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irCall.args">
MOJOSHADER_irExprList*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irESeq.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irESeq.stmt">
MOJOSHADER_irStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irESeq.expr">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irArray.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irArray.array">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irArray.element">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irConvert.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irConvert.expr">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irSwizzle.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irSwizzle.expr">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irSwizzle.channels">
char[4]
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irConstruct.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irConstruct.args">
MOJOSHADER_irExprList*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.info">
MOJOSHADER_irExprInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.constant">
MOJOSHADER_irConstant
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.temp">
MOJOSHADER_irTemp
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.binop">
MOJOSHADER_irBinOp
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.memory">
MOJOSHADER_irMemory
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.call">
MOJOSHADER_irCall
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.eseq">
MOJOSHADER_irESeq
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.array">
MOJOSHADER_irArray
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.convert">
MOJOSHADER_irConvert
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.swizzle">
MOJOSHADER_irSwizzle
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExpression.construct">
MOJOSHADER_irConstruct
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irMove.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irMove.dst">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irMove.src">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irMove.writemask">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExprStmt.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExprStmt.expr">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irJump.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irJump.label">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irCJump.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irCJump.cond">
MOJOSHADER_irConditionType
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irCJump.left">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irCJump.right">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irCJump.iftrue">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irCJump.iffalse">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irSeq.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irSeq.first">
MOJOSHADER_irStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irSeq.next">
MOJOSHADER_irStatement*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irLabel.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irLabel.index">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irStatement.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irStatement.generic">
MOJOSHADER_irGeneric
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irStatement.move">
MOJOSHADER_irMove
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irStatement.expr">
MOJOSHADER_irExprStmt
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irStatement.jump">
MOJOSHADER_irJump
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irStatement.cjump">
MOJOSHADER_irCJump
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irStatement.seq">
MOJOSHADER_irSeq
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irStatement.label">
MOJOSHADER_irLabel
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irStatement.discard">
MOJOSHADER_irDiscard->MOJOSHADER_irGeneric
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExprList.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExprList.expr">
MOJOSHADER_irExpression*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irExprList.next">
MOJOSHADER_irExprList*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irMisc.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irMisc.generic">
MOJOSHADER_irGeneric
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irMisc.exprlist">
MOJOSHADER_irExprList
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irNode.ir">
MOJOSHADER_irNodeInfo
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irNode.generic">
MOJOSHADER_irGeneric
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irNode.expr">
MOJOSHADER_irExpression
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irNode.stmt">
MOJOSHADER_irStatement
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_irNode.misc">
MOJOSHADER_irMisc
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.error_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.errors">
MOJOSHADER_error*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.warning_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.warnings">
MOJOSHADER_error*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.source_profile">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.output">
char*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.output_len">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.symbol_count">
int
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.symbols">
MOJOSHADER_symbol*
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.malloc">
MOJOSHADER_malloc
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.free">
MOJOSHADER_free
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_compileData.malloc_data">
void*
</member>
<member name="T:TwoMGFX.MojoShader.MOJOSHADER_glGetProcAddress">
Return Type: void*
fnname: char*
data: void*
</member>
<member name="F:TwoMGFX.MojoShader.Anonymous_5371dd6a_e42a_47c1_91d1_a2af9a8283be.f">
float[4]
</member>
<member name="F:TwoMGFX.MojoShader.Anonymous_5371dd6a_e42a_47c1_91d1_a2af9a8283be.i">
int[4]
</member>
<member name="F:TwoMGFX.MojoShader.Anonymous_5371dd6a_e42a_47c1_91d1_a2af9a8283be.b">
int
</member>
<member name="F:TwoMGFX.MojoShader.Anonymous_3a13e6d2_72d8_4c86_b5bf_9aff36c73111.ival">
int[16]
</member>
<member name="F:TwoMGFX.MojoShader.Anonymous_3a13e6d2_72d8_4c86_b5bf_9aff36c73111.fval">
float[16]
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_uniformType.MOJOSHADER_UNIFORM_UNKNOWN">
MOJOSHADER_UNIFORM_UNKNOWN -> -1
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_samplerType.MOJOSHADER_SAMPLER_UNKNOWN">
MOJOSHADER_SAMPLER_UNKNOWN -> -1
</member>
<member name="F:TwoMGFX.MojoShader.MOJOSHADER_usage.MOJOSHADER_USAGE_UNKNOWN">
MOJOSHADER_USAGE_UNKNOWN -> -1
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_version">
Return Type: int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_changeset">
Return Type: char*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_maxShaderModel(System.String)">
Return Type: int
profile: char*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_parseExpression(System.Byte[],System.Int32,System.IntPtr,System.IntPtr,System.IntPtr)">
Return Type: MOJOSHADER_parseData*
tokenbuf: char*
bufsize: int
m: MOJOSHADER_malloc
f: MOJOSHADER_free
d: void*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_runPreshader(TwoMGFX.MojoShader.MOJOSHADER_preshader@,System.Single@,System.Single@)">
Return Type: void
param0: MOJOSHADER_preshader*
param1: float*
param2: float*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_parse(System.String,System.Byte[],System.Int32,System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.IntPtr,System.IntPtr,System.IntPtr)">
Return Type: MOJOSHADER_parseData*
profile: char*
tokenbuf: char*
bufsize: int
swiz: MOJOSHADER_swizzle*
swizcount: int
smap: MOJOSHADER_samplerMap*
smapcount: int
m: MOJOSHADER_malloc
f: MOJOSHADER_free
d: void*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_freeParseData(TwoMGFX.MojoShader.MOJOSHADER_parseData@)">
Return Type: void
data: MOJOSHADER_parseData*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_parseEffect(System.String,System.String,System.Int32,TwoMGFX.MojoShader.MOJOSHADER_swizzle@,System.Int32,TwoMGFX.MojoShader.MOJOSHADER_samplerMap@,System.Int32,System.IntPtr,System.IntPtr,System.IntPtr)">
Return Type: MOJOSHADER_effect*
profile: char*
buf: char*
_len: int
swiz: MOJOSHADER_swizzle*
swizcount: int
smap: MOJOSHADER_samplerMap*
smapcount: int
m: MOJOSHADER_malloc
f: MOJOSHADER_free
d: void*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_freeEffect(TwoMGFX.MojoShader.MOJOSHADER_effect@)">
Return Type: void
effect: MOJOSHADER_effect*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_preprocess(System.String,System.String,System.UInt32,TwoMGFX.MojoShader.MOJOSHADER_preprocessorDefine@,System.UInt32,TwoMGFX.MojoShader.MOJOSHADER_includeOpen,TwoMGFX.MojoShader.MOJOSHADER_includeClose,System.IntPtr,System.IntPtr,System.IntPtr)">
Return Type: MOJOSHADER_preprocessData*
filename: char*
source: char*
sourcelen: unsigned int
defines: MOJOSHADER_preprocessorDefine*
define_count: unsigned int
include_open: MOJOSHADER_includeOpen
include_close: MOJOSHADER_includeClose
m: MOJOSHADER_malloc
f: MOJOSHADER_free
d: void*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_freePreprocessData(TwoMGFX.MojoShader.MOJOSHADER_preprocessData@)">
Return Type: void
data: MOJOSHADER_preprocessData*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_assemble(System.String,System.String,System.UInt32,System.IntPtr@,System.UInt32,TwoMGFX.MojoShader.MOJOSHADER_symbol@,System.UInt32,TwoMGFX.MojoShader.MOJOSHADER_preprocessorDefine@,System.UInt32,TwoMGFX.MojoShader.MOJOSHADER_includeOpen,TwoMGFX.MojoShader.MOJOSHADER_includeClose,System.IntPtr,System.IntPtr,System.IntPtr)">
Return Type: MOJOSHADER_parseData*
filename: char*
source: char*
sourcelen: unsigned int
comments: char**
comment_count: unsigned int
symbols: MOJOSHADER_symbol*
symbol_count: unsigned int
defines: MOJOSHADER_preprocessorDefine*
define_count: unsigned int
include_open: MOJOSHADER_includeOpen
include_close: MOJOSHADER_includeClose
m: MOJOSHADER_malloc
f: MOJOSHADER_free
d: void*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_parseAst(System.String,System.String,System.String,System.UInt32,TwoMGFX.MojoShader.MOJOSHADER_preprocessorDefine@,System.UInt32,TwoMGFX.MojoShader.MOJOSHADER_includeOpen,TwoMGFX.MojoShader.MOJOSHADER_includeClose,System.IntPtr,System.IntPtr,System.IntPtr)">
Return Type: MOJOSHADER_astData*
srcprofile: char*
filename: char*
source: char*
sourcelen: unsigned int
defs: MOJOSHADER_preprocessorDefine*
define_count: unsigned int
include_open: MOJOSHADER_includeOpen
include_close: MOJOSHADER_includeClose
m: MOJOSHADER_malloc
f: MOJOSHADER_free
d: void*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_freeAstData(TwoMGFX.MojoShader.MOJOSHADER_astData@)">
Return Type: void
data: MOJOSHADER_astData*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_compile(System.String,System.String,System.String,System.UInt32,TwoMGFX.MojoShader.MOJOSHADER_preprocessorDefine@,System.UInt32,TwoMGFX.MojoShader.MOJOSHADER_includeOpen,TwoMGFX.MojoShader.MOJOSHADER_includeClose,System.IntPtr,System.IntPtr,System.IntPtr)">
Return Type: MOJOSHADER_compileData*
srcprofile: char*
filename: char*
source: char*
sourcelen: unsigned int
defs: MOJOSHADER_preprocessorDefine*
define_count: unsigned int
include_open: MOJOSHADER_includeOpen
include_close: MOJOSHADER_includeClose
m: MOJOSHADER_malloc
f: MOJOSHADER_free
d: void*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_freeCompileData(TwoMGFX.MojoShader.MOJOSHADER_compileData@)">
Return Type: void
data: MOJOSHADER_compileData*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glAvailableProfiles(TwoMGFX.MojoShader.MOJOSHADER_glGetProcAddress,System.IntPtr,System.IntPtr@,System.Int32)">
Return Type: int
lookup: MOJOSHADER_glGetProcAddress
d: void*
profs: char**
size: int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glBestProfile(TwoMGFX.MojoShader.MOJOSHADER_glGetProcAddress,System.IntPtr)">
Return Type: char*
lookup: MOJOSHADER_glGetProcAddress
d: void*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glGetError">
Return Type: char*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glMaxUniforms(TwoMGFX.MojoShader.MOJOSHADER_shaderType)">
Return Type: int
shader_type: MOJOSHADER_shaderType->Anonymous_96517ad6_cc69_4542_8537_054e63919d54
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glSetVertexShaderUniformF(System.UInt32,System.Single@,System.UInt32)">
Return Type: void
idx: unsigned int
data: float*
vec4count: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glGetVertexShaderUniformF(System.UInt32,System.Single@,System.UInt32)">
Return Type: void
idx: unsigned int
data: float*
vec4count: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glSetVertexShaderUniformI(System.UInt32,System.Int32@,System.UInt32)">
Return Type: void
idx: unsigned int
data: int*
ivec4count: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glGetVertexShaderUniformI(System.UInt32,System.Int32@,System.UInt32)">
Return Type: void
idx: unsigned int
data: int*
ivec4count: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glSetVertexShaderUniformB(System.UInt32,System.Int32@,System.UInt32)">
Return Type: void
idx: unsigned int
data: int*
bcount: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glGetVertexShaderUniformB(System.UInt32,System.Int32@,System.UInt32)">
Return Type: void
idx: unsigned int
data: int*
bcount: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glSetPixelShaderUniformF(System.UInt32,System.Single@,System.UInt32)">
Return Type: void
idx: unsigned int
data: float*
vec4count: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glGetPixelShaderUniformF(System.UInt32,System.Single@,System.UInt32)">
Return Type: void
idx: unsigned int
data: float*
vec4count: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glSetPixelShaderUniformI(System.UInt32,System.Int32@,System.UInt32)">
Return Type: void
idx: unsigned int
data: int*
ivec4count: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glGetPixelShaderUniformI(System.UInt32,System.Int32@,System.UInt32)">
Return Type: void
idx: unsigned int
data: int*
ivec4count: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glSetPixelShaderUniformB(System.UInt32,System.Int32@,System.UInt32)">
Return Type: void
idx: unsigned int
data: int*
bcount: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glGetPixelShaderUniformB(System.UInt32,System.Int32@,System.UInt32)">
Return Type: void
idx: unsigned int
data: int*
bcount: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glSetLegacyBumpMapEnv(System.UInt32,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
Return Type: void
sampler: unsigned int
mat00: float
mat01: float
mat10: float
mat11: float
lscale: float
loffset: float
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glSetVertexAttribute(TwoMGFX.MojoShader.MOJOSHADER_usage,System.Int32,System.UInt32,TwoMGFX.MojoShader.MOJOSHADER_attributeType,System.Int32,System.UInt32,System.IntPtr)">
Return Type: void
usage: MOJOSHADER_usage->Anonymous_9c01433d_7bb5_4c50_bf77_e65cef0661b5
index: int
size: unsigned int
type: MOJOSHADER_attributeType->Anonymous_2f2591e6_1657_418c_9f54_80f3acd43cbe
normalized: int
stride: unsigned int
ptr: void*
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glSetVertexPreshaderUniformF(System.UInt32,System.Single@,System.UInt32)">
Return Type: void
idx: unsigned int
data: float*
vec4n: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glGetVertexPreshaderUniformF(System.UInt32,System.Single@,System.UInt32)">
Return Type: void
idx: unsigned int
data: float*
vec4n: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glSetPixelPreshaderUniformF(System.UInt32,System.Single@,System.UInt32)">
Return Type: void
idx: unsigned int
data: float*
vec4n: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glGetPixelPreshaderUniformF(System.UInt32,System.Single@,System.UInt32)">
Return Type: void
idx: unsigned int
data: float*
vec4n: unsigned int
</member>
<member name="M:TwoMGFX.MojoShader.NativeMethods.MOJOSHADER_glProgramReady">
Return Type: void
</member>
<member name="P:TwoMGFX.ShaderProfile.All">
<summary>
Returns all the loaded shader profiles.
</summary>
</member>
<member name="P:TwoMGFX.ShaderProfile.Name">
<summary>
Returns the name of the shader profile.
</summary>
</member>
<member name="P:TwoMGFX.ShaderProfile.FormatId">
<summary>
Returns the format identifier used in the MGFX file format.
</summary>
</member>
<member name="M:TwoMGFX.ShaderProfile.ForPlatform(System.String)">
<summary>
Returns the correct profile for the named platform or
null if no supporting profile is found.
</summary>
</member>
<member name="M:TwoMGFX.ShaderProfile.FromName(System.String)">
<summary>
Returns the profile by name or null if no match is found.
</summary>
</member>
<member name="M:TwoMGFX.TPGParser.ParseTree.Eval(System.Object[])">
<summary>
this is the entry point for executing and evaluating the parse tree.
</summary>
<param name="paramlist">additional optional input parameters</param>
<returns>the output of the evaluation function</returns>
</member>
<member name="M:TwoMGFX.TPGParser.ParseNode.Eval(TwoMGFX.TPGParser.ParseTree,System.Object[])">
<summary>
this implements the evaluation functionality, cannot be used directly
</summary>
<param name="tree">the parsetree itself</param>
<param name="paramlist">optional input parameters</param>
<returns>a partial result of the evaluation</returns>
</member>
<member name="M:TwoMGFX.TPGParser.Scanner.Scan(TwoMGFX.TPGParser.TokenType[])">
<summary>
executes a lookahead of the next token
and will advance the scan on the input string
</summary>
<returns></returns>
</member>
<member name="M:TwoMGFX.TPGParser.Scanner.LookAhead(TwoMGFX.TPGParser.TokenType[])">
<summary>
returns token with longest best match
</summary>
<returns></returns>
</member>
</members>
</doc>