updated to current repository head of SharpDX (Release version)
fixed some issues in DX10 RenderSystem due to the SharpDX update
This commit is contained in:
parent
1851fb2f6d
commit
4408acf3e8
@ -95,6 +95,7 @@ namespace ANX.Framework.Windows.DX10
|
||||
|
||||
#endregion
|
||||
|
||||
#region Private Members
|
||||
private Device device;
|
||||
private SwapChain swapChain;
|
||||
private RenderTargetView renderView;
|
||||
@ -103,6 +104,10 @@ namespace ANX.Framework.Windows.DX10
|
||||
private VertexBuffer currentVertexBuffer;
|
||||
private IndexBuffer currentIndexBuffer;
|
||||
private SharpDX.Direct3D10.Viewport currentViewport;
|
||||
private uint lastClearColor;
|
||||
private SharpDX.Color4 clearColor;
|
||||
|
||||
#endregion // Private Members
|
||||
|
||||
public GraphicsDeviceWindowsDX10(PresentationParameters presentationParameters)
|
||||
{
|
||||
@ -137,25 +142,23 @@ namespace ANX.Framework.Windows.DX10
|
||||
currentViewport = new SharpDX.Direct3D10.Viewport(0, 0, presentationParameters.BackBufferWidth, presentationParameters.BackBufferHeight);
|
||||
}
|
||||
|
||||
#region Clear
|
||||
private uint lastClearColor;
|
||||
private SharpDX.Color4 clearColor;
|
||||
public void Clear(ref Color color)
|
||||
{
|
||||
uint newClearColor = color.PackedValue;
|
||||
if (lastClearColor != newClearColor)
|
||||
{
|
||||
lastClearColor = newClearColor;
|
||||
clearColor.Red = color.R * ColorMultiplier;
|
||||
clearColor.Green = color.G * ColorMultiplier;
|
||||
clearColor.Blue = color.B * ColorMultiplier;
|
||||
clearColor.Alpha = color.A * ColorMultiplier;
|
||||
}
|
||||
device.ClearRenderTargetView(renderView, clearColor);
|
||||
}
|
||||
#endregion
|
||||
#region Clear
|
||||
public void Clear(ref Color color)
|
||||
{
|
||||
uint newClearColor = color.PackedValue;
|
||||
if (lastClearColor != newClearColor)
|
||||
{
|
||||
lastClearColor = newClearColor;
|
||||
clearColor.Red = color.R * ColorMultiplier;
|
||||
clearColor.Green = color.G * ColorMultiplier;
|
||||
clearColor.Blue = color.B * ColorMultiplier;
|
||||
clearColor.Alpha = color.A * ColorMultiplier;
|
||||
}
|
||||
device.ClearRenderTargetView(renderView, clearColor);
|
||||
}
|
||||
#endregion
|
||||
|
||||
public void Present()
|
||||
public void Present()
|
||||
{
|
||||
swapChain.Present(0, PresentFlags.None);
|
||||
}
|
||||
|
@ -6,6 +6,7 @@ using System.Text;
|
||||
using ANX.Framework.NonXNA;
|
||||
using SharpDX.Direct3D10;
|
||||
using ANX.Framework.Graphics;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -102,19 +103,29 @@ namespace ANX.Framework.Windows.DX10
|
||||
|
||||
//TODO: check offsetInBytes parameter for bounds etc.
|
||||
|
||||
using (var vData = new SharpDX.DataStream(data, true, false))
|
||||
{
|
||||
if (offsetInBytes > 0)
|
||||
{
|
||||
vData.Seek(offsetInBytes / (size == IndexElementSize.SixteenBits ? 2 : 4), System.IO.SeekOrigin.Begin);
|
||||
}
|
||||
GCHandle pinnedArray = GCHandle.Alloc(data, GCHandleType.Pinned);
|
||||
IntPtr dataPointer = pinnedArray.AddrOfPinnedObject();
|
||||
|
||||
using (var d = buffer.Map(MapMode.WriteDiscard))
|
||||
int dataLength = Marshal.SizeOf(typeof(T)) * data.Length;
|
||||
|
||||
unsafe
|
||||
{
|
||||
using (var vData = new SharpDX.DataStream(dataPointer, dataLength, true, false))
|
||||
{
|
||||
vData.CopyTo(d);
|
||||
buffer.Unmap();
|
||||
if (offsetInBytes > 0)
|
||||
{
|
||||
vData.Seek(offsetInBytes / (size == IndexElementSize.SixteenBits ? 2 : 4), System.IO.SeekOrigin.Begin);
|
||||
}
|
||||
|
||||
using (var d = buffer.Map(MapMode.WriteDiscard))
|
||||
{
|
||||
vData.CopyTo(d);
|
||||
buffer.Unmap();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pinnedArray.Free();
|
||||
}
|
||||
|
||||
public void SetData<T>(GraphicsDevice graphicsDevice, T[] data, int startIndex, int elementCount) where T : struct
|
||||
|
@ -6,6 +6,7 @@ using System.Text;
|
||||
using ANX.Framework.NonXNA;
|
||||
using SharpDX.Direct3D10;
|
||||
using ANX.Framework.Graphics;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -92,29 +93,39 @@ namespace ANX.Framework.Windows.DX10
|
||||
{
|
||||
//TODO: check offsetInBytes parameter for bounds etc.
|
||||
|
||||
using (var vData = new SharpDX.DataStream(data, true, false))
|
||||
{
|
||||
if (offsetInBytes > 0)
|
||||
{
|
||||
vData.Seek(offsetInBytes / vertexStride, System.IO.SeekOrigin.Begin);
|
||||
}
|
||||
GCHandle pinnedArray = GCHandle.Alloc(data, GCHandleType.Pinned);
|
||||
IntPtr dataPointer = pinnedArray.AddrOfPinnedObject();
|
||||
|
||||
using (var d = buffer.Map(MapMode.WriteDiscard))
|
||||
int dataLength = Marshal.SizeOf(typeof(T)) * data.Length;
|
||||
|
||||
unsafe
|
||||
{
|
||||
using (var vData = new SharpDX.DataStream(dataPointer, dataLength, true, false))
|
||||
{
|
||||
if (startIndex > 0 || elementCount < data.Length)
|
||||
if (offsetInBytes > 0)
|
||||
{
|
||||
for (int i = startIndex; i < startIndex + elementCount; i++)
|
||||
vData.Seek(offsetInBytes / vertexStride, System.IO.SeekOrigin.Begin);
|
||||
}
|
||||
|
||||
using (var d = buffer.Map(MapMode.WriteDiscard))
|
||||
{
|
||||
if (startIndex > 0 || elementCount < data.Length)
|
||||
{
|
||||
d.Write<T>(data[i]);
|
||||
for (int i = startIndex; i < startIndex + elementCount; i++)
|
||||
{
|
||||
d.Write<T>(data[i]);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
vData.CopyTo(d);
|
||||
}
|
||||
buffer.Unmap();
|
||||
}
|
||||
else
|
||||
{
|
||||
vData.CopyTo(d);
|
||||
}
|
||||
buffer.Unmap();
|
||||
}
|
||||
}
|
||||
|
||||
pinnedArray.Free();
|
||||
}
|
||||
|
||||
public void SetData<T>(GraphicsDevice graphicsDevice, T[] data) where T : struct
|
||||
|
@ -261,8 +261,7 @@ namespace ANX.Framework
|
||||
}
|
||||
}
|
||||
|
||||
protected virtual void Dispose(bool disposing
|
||||
)
|
||||
protected virtual void Dispose(bool disposing)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
BIN
lib/SharpDX/Bin/SharpDX.Animation.dll
Normal file
BIN
lib/SharpDX/Bin/SharpDX.Animation.dll
Normal file
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.Animation.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.Animation.pdb
Normal file
Binary file not shown.
1707
lib/SharpDX/Bin/SharpDX.Animation.xml
Normal file
1707
lib/SharpDX/Bin/SharpDX.Animation.xml
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.D3DCompiler.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.D3DCompiler.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.DXGI.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.DXGI.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.Diagnostics.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.Diagnostics.pdb
Normal file
Binary file not shown.
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.Direct2D1.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.Direct2D1.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.Direct3D10.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.Direct3D10.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.Direct3D11.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.Direct3D11.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.Direct3D9.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.Direct3D9.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.DirectSound.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.DirectSound.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.RawInput.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.RawInput.pdb
Normal file
Binary file not shown.
@ -4,39 +4,338 @@
|
||||
<name>SharpDX.X3DAudio</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:SharpDX.X3DAudio.Cone">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE']/*"/>
|
||||
<unmanaged>X3DAUDIO_CONE</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.InnerAngle">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::InnerAngle']/*"/>
|
||||
<unmanaged>float InnerAngle</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.OuterAngle">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::OuterAngle']/*"/>
|
||||
<unmanaged>float OuterAngle</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.InnerVolume">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::InnerVolume']/*"/>
|
||||
<unmanaged>float InnerVolume</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.OuterVolume">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::OuterVolume']/*"/>
|
||||
<unmanaged>float OuterVolume</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.InnerLpf">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::InnerLPF']/*"/>
|
||||
<unmanaged>float InnerLPF</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.OuterLpf">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::OuterLPF']/*"/>
|
||||
<unmanaged>float OuterLPF</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.InnerReverb">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::InnerReverb']/*"/>
|
||||
<unmanaged>float InnerReverb</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.OuterReverb">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::OuterReverb']/*"/>
|
||||
<unmanaged>float OuterReverb</unmanaged>
|
||||
</member>
|
||||
<member name="T:SharpDX.X3DAudio.CurvePoint">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE_POINT']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE_POINT</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CurvePoint.Distance">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE_POINT::Distance']/*"/>
|
||||
<unmanaged>float Distance</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CurvePoint.DspSetting">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE_POINT::DSPSetting']/*"/>
|
||||
<unmanaged>float DSPSetting</unmanaged>
|
||||
</member>
|
||||
<member name="T:SharpDX.X3DAudio.DistanceCurve">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DistanceCurve.PointsPointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE::pPoints']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE::pPoints']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE_POINT* pPoints</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DistanceCurve.PointCount">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE::PointCount']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE::PointCount']/*"/>
|
||||
<unmanaged>unsigned int PointCount</unmanaged>
|
||||
</member>
|
||||
<member name="T:SharpDX.X3DAudio.DspSettings">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS']/*"/>
|
||||
<unmanaged>X3DAUDIO_DSP_SETTINGS</unmanaged>
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS']/*"/>
|
||||
<unmanaged>X3DAUDIO_DSP_SETTINGS</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.MatrixCoefficientsPointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::pMatrixCoefficients']/*"/>
|
||||
<unmanaged>float* pMatrixCoefficients</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.DelayTimesPointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::pDelayTimes']/*"/>
|
||||
<unmanaged>float* pDelayTimes</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.SourceChannelCount">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::SrcChannelCount']/*"/>
|
||||
<unmanaged>unsigned int SrcChannelCount</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.DestinationChannelCount">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::DstChannelCount']/*"/>
|
||||
<unmanaged>unsigned int DstChannelCount</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.LpfDirectCoefficient">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::LPFDirectCoefficient']/*"/>
|
||||
<unmanaged>float LPFDirectCoefficient</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.LpfReverbCoefficient">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::LPFReverbCoefficient']/*"/>
|
||||
<unmanaged>float LPFReverbCoefficient</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.ReverbLevel">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::ReverbLevel']/*"/>
|
||||
<unmanaged>float ReverbLevel</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.DopplerFactor">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::DopplerFactor']/*"/>
|
||||
<unmanaged>float DopplerFactor</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.EmitterToListenerAngle">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::EmitterToListenerAngle']/*"/>
|
||||
<unmanaged>float EmitterToListenerAngle</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.EmitterToListenerDistance">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::EmitterToListenerDistance']/*"/>
|
||||
<unmanaged>float EmitterToListenerDistance</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.EmitterVelocityComponent">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::EmitterVelocityComponent']/*"/>
|
||||
<unmanaged>float EmitterVelocityComponent</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.ListenerVelocityComponent">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::ListenerVelocityComponent']/*"/>
|
||||
<unmanaged>float ListenerVelocityComponent</unmanaged>
|
||||
</member>
|
||||
<member name="T:SharpDX.X3DAudio.Emitter">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Failed to insert some or all of included XML --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER']/*"/>
|
||||
<unmanaged>X3DAUDIO_EMITTER</unmanaged>
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Failed to insert some or all of included XML --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER']/*"/>
|
||||
<unmanaged>X3DAUDIO_EMITTER</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.ConePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pCone']/*"/>
|
||||
<unmanaged>X3DAUDIO_CONE* pCone</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.OrientFront">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::OrientFront']/*"/>
|
||||
<unmanaged>D3DVECTOR OrientFront</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.OrientTop">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::OrientTop']/*"/>
|
||||
<unmanaged>D3DVECTOR OrientTop</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.Position">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::Position']/*"/>
|
||||
<unmanaged>D3DVECTOR Position</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.Velocity">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::Velocity']/*"/>
|
||||
<unmanaged>D3DVECTOR Velocity</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.InnerRadius">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::InnerRadius']/*"/>
|
||||
<unmanaged>float InnerRadius</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.InnerRadiusAngle">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::InnerRadiusAngle']/*"/>
|
||||
<unmanaged>float InnerRadiusAngle</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.ChannelCount">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::ChannelCount']/*"/>
|
||||
<unmanaged>unsigned int ChannelCount</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.ChannelRadius">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::ChannelRadius']/*"/>
|
||||
<unmanaged>float ChannelRadius</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.ChannelAzimuthsPointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pChannelAzimuths']/*"/>
|
||||
<unmanaged>float* pChannelAzimuths</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.VolumeCurvePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pVolumeCurve']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE* pVolumeCurve</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.LFECurvePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pLFECurve']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE* pLFECurve</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.LPFDirectCurvePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pLPFDirectCurve']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE* pLPFDirectCurve</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.LPFReverbCurvePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pLPFReverbCurve']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE* pLPFReverbCurve</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.ReverbCurvePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pReverbCurve']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE* pReverbCurve</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.CurveDistanceScaler">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::CurveDistanceScaler']/*"/>
|
||||
<unmanaged>float CurveDistanceScaler</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.DopplerScaler">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::DopplerScaler']/*"/>
|
||||
<unmanaged>float DopplerScaler</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.Cone">
|
||||
<summary>
|
||||
Reference to Cone data.
|
||||
@ -46,329 +345,143 @@
|
||||
<member name="M:SharpDX.X3DAudio.Emitter.__MarshalTo(SharpDX.X3DAudio.Emitter.__Native@)">
|
||||
disabled as it is not used
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.ConePointer">
|
||||
<member name="T:SharpDX.X3DAudio.Listener">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pCone']/*"/>
|
||||
<unmanaged>X3DAUDIO_CONE* pCone</unmanaged>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER']/*"/>
|
||||
<unmanaged>X3DAUDIO_LISTENER</unmanaged>
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER']/*"/>
|
||||
<unmanaged>X3DAUDIO_LISTENER</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.OrientFront">
|
||||
<member name="F:SharpDX.X3DAudio.Listener.OrientFront">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::OrientFront']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER::OrientFront']/*"/>
|
||||
<unmanaged>D3DVECTOR OrientFront</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.OrientTop">
|
||||
<member name="F:SharpDX.X3DAudio.Listener.OrientTop">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::OrientTop']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER::OrientTop']/*"/>
|
||||
<unmanaged>D3DVECTOR OrientTop</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.Position">
|
||||
<member name="F:SharpDX.X3DAudio.Listener.Position">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::Position']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER::Position']/*"/>
|
||||
<unmanaged>D3DVECTOR Position</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.Velocity">
|
||||
<member name="F:SharpDX.X3DAudio.Listener.Velocity">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::Velocity']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER::Velocity']/*"/>
|
||||
<unmanaged>D3DVECTOR Velocity</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.InnerRadius">
|
||||
<member name="F:SharpDX.X3DAudio.Listener.ConePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::InnerRadius']/*"/>
|
||||
<unmanaged>float InnerRadius</unmanaged>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER::pCone']/*"/>
|
||||
<unmanaged>X3DAUDIO_CONE* pCone</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.InnerRadiusAngle">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::InnerRadiusAngle']/*"/>
|
||||
<unmanaged>float InnerRadiusAngle</unmanaged>
|
||||
<member name="F:SharpDX.X3DAudio.Listener.Cone">
|
||||
<summary>
|
||||
Reference to Cone data.
|
||||
</summary>
|
||||
<unmanaged>X3DAUDIO_CONE* pCone</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.ChannelCount">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::ChannelCount']/*"/>
|
||||
<unmanaged>unsigned int ChannelCount</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.ChannelRadius">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::ChannelRadius']/*"/>
|
||||
<unmanaged>float ChannelRadius</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.ChannelAzimuthsPointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pChannelAzimuths']/*"/>
|
||||
<unmanaged>float* pChannelAzimuths</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.VolumeCurvePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pVolumeCurve']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE* pVolumeCurve</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.LFECurvePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pLFECurve']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE* pLFECurve</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.LPFDirectCurvePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pLPFDirectCurve']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE* pLPFDirectCurve</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.LPFReverbCurvePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pLPFReverbCurve']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE* pLPFReverbCurve</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.ReverbCurvePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::pReverbCurve']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE* pReverbCurve</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.CurveDistanceScaler">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::CurveDistanceScaler']/*"/>
|
||||
<unmanaged>float CurveDistanceScaler</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Emitter.DopplerScaler">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_EMITTER::DopplerScaler']/*"/>
|
||||
<unmanaged>float DopplerScaler</unmanaged>
|
||||
</member>
|
||||
<member name="T:SharpDX.X3DAudio.DspSettings">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Failed to insert some or all of included XML --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS']/*"/>
|
||||
<unmanaged>X3DAUDIO_DSP_SETTINGS</unmanaged>
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Failed to insert some or all of included XML --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS']/*"/>
|
||||
<unmanaged>X3DAUDIO_DSP_SETTINGS</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.MatrixCoefficientsPointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::pMatrixCoefficients']/*"/>
|
||||
<unmanaged>float* pMatrixCoefficients</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.DelayTimesPointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::pDelayTimes']/*"/>
|
||||
<unmanaged>float* pDelayTimes</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.SourceChannelCount">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::SrcChannelCount']/*"/>
|
||||
<unmanaged>unsigned int SrcChannelCount</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.DestinationChannelCount">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::DstChannelCount']/*"/>
|
||||
<unmanaged>unsigned int DstChannelCount</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.LpfDirectCoefficient">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::LPFDirectCoefficient']/*"/>
|
||||
<unmanaged>float LPFDirectCoefficient</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.LpfReverbCoefficient">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::LPFReverbCoefficient']/*"/>
|
||||
<unmanaged>float LPFReverbCoefficient</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.ReverbLevel">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::ReverbLevel']/*"/>
|
||||
<unmanaged>float ReverbLevel</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.DopplerFactor">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::DopplerFactor']/*"/>
|
||||
<unmanaged>float DopplerFactor</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.EmitterToListenerAngle">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::EmitterToListenerAngle']/*"/>
|
||||
<unmanaged>float EmitterToListenerAngle</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.EmitterToListenerDistance">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::EmitterToListenerDistance']/*"/>
|
||||
<unmanaged>float EmitterToListenerDistance</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.EmitterVelocityComponent">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::EmitterVelocityComponent']/*"/>
|
||||
<unmanaged>float EmitterVelocityComponent</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.DspSettings.ListenerVelocityComponent">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DSP_SETTINGS::ListenerVelocityComponent']/*"/>
|
||||
<unmanaged>float ListenerVelocityComponent</unmanaged>
|
||||
<member name="M:SharpDX.X3DAudio.Listener.__MarshalTo(SharpDX.X3DAudio.Listener.__Native@)">
|
||||
Disabled as it is not used
|
||||
</member>
|
||||
<member name="T:SharpDX.X3DAudio.CalculateFlags">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAudioCalculateFlags']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAudioCalculateFlags']/*"/>
|
||||
<unmanaged>X3DAudioCalculateFlags</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CalculateFlags.Matrix">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_MATRIX']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_MATRIX']/*"/>
|
||||
<unmanaged>X3DAUDIO_CALCULATE_MATRIX</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CalculateFlags.Delay">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_DELAY']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_DELAY']/*"/>
|
||||
<unmanaged>X3DAUDIO_CALCULATE_DELAY</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CalculateFlags.LpfDirect">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_LPF_DIRECT']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_LPF_DIRECT']/*"/>
|
||||
<unmanaged>X3DAUDIO_CALCULATE_LPF_DIRECT</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CalculateFlags.LpfReverb">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_LPF_REVERB']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_LPF_REVERB']/*"/>
|
||||
<unmanaged>X3DAUDIO_CALCULATE_LPF_REVERB</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CalculateFlags.Reverb">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_REVERB']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_REVERB']/*"/>
|
||||
<unmanaged>X3DAUDIO_CALCULATE_REVERB</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CalculateFlags.Doppler">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_DOPPLER']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_DOPPLER']/*"/>
|
||||
<unmanaged>X3DAUDIO_CALCULATE_DOPPLER</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CalculateFlags.EmitterAngle">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_EMITTER_ANGLE']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_EMITTER_ANGLE']/*"/>
|
||||
<unmanaged>X3DAUDIO_CALCULATE_EMITTER_ANGLE</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CalculateFlags.ZeroCenter">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_ZEROCENTER']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_ZEROCENTER']/*"/>
|
||||
<unmanaged>X3DAUDIO_CALCULATE_ZEROCENTER</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CalculateFlags.RedirectToLfe">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_REDIRECT_TO_LFE']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CALCULATE_REDIRECT_TO_LFE']/*"/>
|
||||
<unmanaged>X3DAUDIO_CALCULATE_REDIRECT_TO_LFE</unmanaged>
|
||||
</member>
|
||||
<member name="T:SharpDX.X3DAudio.X3DAudio">
|
||||
<summary>
|
||||
Functions
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SharpDX.X3DAudio.X3DAudio']/*"/>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SharpDX.X3DAudio.X3DAudio']/*"/>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.X3DAudio.SpeedOfSound">
|
||||
<summary>
|
||||
Speed of sound in the air.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.X3DAudio.DllHandle0_">
|
||||
<summary>
|
||||
DLLs loaders
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SharpDX.X3DAudio.X3DAudio.X3DAudioInitialize(SharpDX.Multimedia.Speakers,System.Single,SharpDX.X3DAudio.X3DAudioHandle@)">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<param name="speakerChannelMask">No documentation.</param>
|
||||
<param name="speedOfSound">No documentation.</param>
|
||||
<param name="instance">No documentation.</param>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAudioInitialize']/*"/>
|
||||
<unmanaged>void X3DAudioInitialize([In] SPEAKER_FLAGS SpeakerChannelMask,[In] float SpeedOfSound,[Out] X3DAUDIOHANDLE* Instance)</unmanaged>
|
||||
</member>
|
||||
<member name="M:SharpDX.X3DAudio.X3DAudio.X3DAudioCalculate(SharpDX.X3DAudio.X3DAudioHandle@,SharpDX.X3DAudio.Listener,SharpDX.X3DAudio.Emitter,SharpDX.X3DAudio.CalculateFlags,SharpDX.X3DAudio.DspSettings)">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<param name="instance">No documentation.</param>
|
||||
<param name="listenerRef">No documentation.</param>
|
||||
<param name="emitterRef">No documentation.</param>
|
||||
<param name="flags">No documentation.</param>
|
||||
<param name="dSPSettingsRef">No documentation.</param>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAudioCalculate']/*"/>
|
||||
<unmanaged>void X3DAudioCalculate([In] const X3DAUDIOHANDLE* Instance,[In] const X3DAUDIO_LISTENER* pListener,[In] const X3DAUDIO_EMITTER* pEmitter,[In] X3DAudioCalculateFlags Flags,[InOut] X3DAUDIO_DSP_SETTINGS* pDSPSettings)</unmanaged>
|
||||
</member>
|
||||
<member name="M:SharpDX.X3DAudio.X3DAudio.#ctor(SharpDX.Multimedia.Speakers)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:SharpDX.X3DAudio.X3DAudio"/> class.
|
||||
@ -393,145 +506,32 @@
|
||||
<param name="destinationChannelCount">The destination channel count.</param>
|
||||
<returns>Dsp settings</returns>
|
||||
</member>
|
||||
<member name="T:SharpDX.X3DAudio.Listener">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Failed to insert some or all of included XML --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER']/*"/>
|
||||
<unmanaged>X3DAUDIO_LISTENER</unmanaged>
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- Failed to insert some or all of included XML --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER']/*"/>
|
||||
<unmanaged>X3DAUDIO_LISTENER</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Listener.Cone">
|
||||
<member name="F:SharpDX.X3DAudio.X3DAudio.DllHandle0_">
|
||||
<summary>
|
||||
Reference to Cone data.
|
||||
DLLs loaders
|
||||
</summary>
|
||||
<unmanaged>X3DAUDIO_CONE* pCone</unmanaged>
|
||||
</member>
|
||||
<member name="M:SharpDX.X3DAudio.Listener.__MarshalTo(SharpDX.X3DAudio.Listener.__Native@)">
|
||||
Disabled as it is not used
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Listener.OrientFront">
|
||||
<member name="M:SharpDX.X3DAudio.X3DAudio.X3DAudioInitialize(SharpDX.Multimedia.Speakers,System.Single,SharpDX.X3DAudio.X3DAudioHandle@)">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER::OrientFront']/*"/>
|
||||
<unmanaged>D3DVECTOR OrientFront</unmanaged>
|
||||
<param name="speakerChannelMask">No documentation.</param>
|
||||
<param name="speedOfSound">No documentation.</param>
|
||||
<param name="instance">No documentation.</param>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAudioInitialize']/*"/>
|
||||
<unmanaged>void X3DAudioInitialize([In] SPEAKER_FLAGS SpeakerChannelMask,[In] float SpeedOfSound,[Out] X3DAUDIOHANDLE* Instance)</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Listener.OrientTop">
|
||||
<member name="M:SharpDX.X3DAudio.X3DAudio.X3DAudioCalculate(SharpDX.X3DAudio.X3DAudioHandle@,SharpDX.X3DAudio.Listener,SharpDX.X3DAudio.Emitter,SharpDX.X3DAudio.CalculateFlags,SharpDX.X3DAudio.DspSettings)">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER::OrientTop']/*"/>
|
||||
<unmanaged>D3DVECTOR OrientTop</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Listener.Position">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER::Position']/*"/>
|
||||
<unmanaged>D3DVECTOR Position</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Listener.Velocity">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER::Velocity']/*"/>
|
||||
<unmanaged>D3DVECTOR Velocity</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Listener.ConePointer">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_LISTENER::pCone']/*"/>
|
||||
<unmanaged>X3DAUDIO_CONE* pCone</unmanaged>
|
||||
</member>
|
||||
<member name="T:SharpDX.X3DAudio.Cone">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE']/*"/>
|
||||
<unmanaged>X3DAUDIO_CONE</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.InnerAngle">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::InnerAngle']/*"/>
|
||||
<unmanaged>float InnerAngle</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.OuterAngle">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::OuterAngle']/*"/>
|
||||
<unmanaged>float OuterAngle</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.InnerVolume">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::InnerVolume']/*"/>
|
||||
<unmanaged>float InnerVolume</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.OuterVolume">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::OuterVolume']/*"/>
|
||||
<unmanaged>float OuterVolume</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.InnerLpf">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::InnerLPF']/*"/>
|
||||
<unmanaged>float InnerLPF</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.OuterLpf">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::OuterLPF']/*"/>
|
||||
<unmanaged>float OuterLPF</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.InnerReverb">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::InnerReverb']/*"/>
|
||||
<unmanaged>float InnerReverb</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.Cone.OuterReverb">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_CONE::OuterReverb']/*"/>
|
||||
<unmanaged>float OuterReverb</unmanaged>
|
||||
</member>
|
||||
<member name="T:SharpDX.X3DAudio.CurvePoint">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE_POINT']/*"/>
|
||||
<unmanaged>X3DAUDIO_DISTANCE_CURVE_POINT</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CurvePoint.Distance">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE_POINT::Distance']/*"/>
|
||||
<unmanaged>float Distance</unmanaged>
|
||||
</member>
|
||||
<member name="F:SharpDX.X3DAudio.CurvePoint.DspSetting">
|
||||
<summary>
|
||||
No documentation.
|
||||
</summary>
|
||||
<!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAUDIO_DISTANCE_CURVE_POINT::DSPSetting']/*"/>
|
||||
<unmanaged>float DSPSetting</unmanaged>
|
||||
<param name="instance">No documentation.</param>
|
||||
<param name="listenerRef">No documentation.</param>
|
||||
<param name="emitterRef">No documentation.</param>
|
||||
<param name="flags">No documentation.</param>
|
||||
<param name="dSPSettingsRef">No documentation.</param>
|
||||
<!-- Für folgendes Include-Tag wurden keine übereinstimmenden Elemente gefunden. --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='X3DAudioCalculate']/*"/>
|
||||
<unmanaged>void X3DAudioCalculate([In] const X3DAUDIOHANDLE* Instance,[In] const X3DAUDIO_LISTENER* pListener,[In] const X3DAUDIO_EMITTER* pEmitter,[In] X3DAudioCalculateFlags Flags,[InOut] X3DAUDIO_DSP_SETTINGS* pDSPSettings)</unmanaged>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
|
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.X3DAudio.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.X3DAudio.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.XACT3.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.XACT3.pdb
Normal file
Binary file not shown.
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.XAPO.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.XAPO.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.XAudio2.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.XAudio2.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.XInput.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.XInput.pdb
Normal file
Binary file not shown.
Binary file not shown.
BIN
lib/SharpDX/Bin/SharpDX.pdb
Normal file
BIN
lib/SharpDX/Bin/SharpDX.pdb
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user