Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

23554 строки
1.9 MiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>SharpDX.Direct3D10</name>
  5. </assembly>
  6. <members>
  7. <member name="T:SharpDX.Direct3D10.AssemblyDoc">
  8. <summary>
  9. The <see cref="A:SharpDX.Direct3D10"/> assembly provides managed Direct3D10 API.
  10. </summary>
  11. <msdn-id>bb205066</msdn-id>
  12. <unmanaged>Direct3D10</unmanaged>
  13. <unmanaged-short>Direct3D10</unmanaged-short>
  14. </member>
  15. <member name="T:SharpDX.Direct3D10.Asynchronous">
  16. <summary>
  17. <p>This interface encapsulates methods for retrieving data from the GPU asynchronously.</p>
  18. </summary>
  19. <remarks>
  20. <p>There are three types of asynchronous interfaces, all of which inherit this interface:</p><ul> <li> <strong><see cref="T:SharpDX.Direct3D10.Query" /> Interface</strong> - Queries information from the GPU.</li> <li> <strong><see cref="T:SharpDX.Direct3D10.Predicate" /> Interface</strong> - Determines whether a piece of geometry should be processed or not depending on the results of a previous draw call.</li> <li> <strong><see cref="T:SharpDX.Direct3D10.Counter" /> Interface</strong> - Measures GPU performance.</li> </ul>
  21. </remarks>
  22. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Asynchronous']/*" />
  23. <msdn-id>bb173500</msdn-id>
  24. <unmanaged>ID3D10Asynchronous</unmanaged>
  25. <unmanaged-short>ID3D10Asynchronous</unmanaged-short>
  26. </member>
  27. <member name="M:SharpDX.Direct3D10.Asynchronous.GetData">
  28. <summary>
  29. Get data from the GPU asynchronously.
  30. </summary>
  31. <remarks>
  32. GetData retrieves the data collected between calls to <see cref="M:SharpDX.Direct3D10.Asynchronous.Begin"/> and <see cref="M:SharpDX.Direct3D10.Asynchronous.End"/>. Certain queries only require a call to ID3D10Asynchronous::End in which case the data returned by GetData is accurate up to the last call to ID3D10Asynchronous::End (See <see cref="T:SharpDX.Direct3D10.Query"/>). If DataSize is 0, GetData is only used to check status where a return value of S_OK indicates that data is available to give to an application, and a return value of S_FALSE indicates data is not yet available. It is invalid to invoke this function on a predicate created with the flag D3D10_QUERY_MISCFLAG_PREDICATEHINT. If the asynchronous interface that calls this function is <see cref="T:SharpDX.Direct3D10.Query"/>, then the following table applies. Query TypeOutput Data TypeSupports Begin Method EVENTBOOLNO OCCLUSIONUINT64YES TIMESTAMPUINT64NO TIMESTAMP_DISJOINTQUERYDATA_TIMESTAMP_DISJOINTYES PIPELINE_STATISTICSQUERYDATA_PIPELINE_STATISTICSYES OCCLUSION_PREDICATEBOOLYES SO_STATISTICSQUERYDATA_SO_STATISTICSYES SO_OVERFLOW_PREDICATEBOOLYES ? If the asynchronous interface that calls this API is <see cref="T:SharpDX.Direct3D10.Counter"/>, then the following applies. Counter TypeOutput Data TypeUnits GPU_IDLEFLOAT32fraction of time VERTEX_PROCESSINGFLOAT32fraction of time GEOMETRY_PROCESSINGFLOAT32fraction of time PIXEL_PROCESSINGFLOAT32fraction of time OTHER_GPU_PROCESSINGFLOAT32fraction of time HOST_ADAPTER_BANDWIDTH_UTILIZATIONFLOAT32fraction of theoretical maximum LOCAL_VIDMEM_BANDWIDTH_UTILIZATIONFLOAT32fraction of theoretical maximum VERTEX_THROUGHPUT_UTILIZATIONFLOAT32fraction of theoretical maximum TRISETUP_THROUGHPUT_UTILIZATIONFLOAT32fraction of theoretical maximum FILLRATE_THROUGHPUT_UTILIZATIONFLOAT32fraction of theoretical maximum VERTEXSHADER_MEMORY_LIMITEDFLOAT32fraction of time VERTEXSHADER_COMPUTATION_LIMITEDFLOAT32fraction of time GEOMETRYSHADER_MEMORY_LIMITEDFLOAT32fraction of time GEOMETRYSHADER_COMPUTATION_LIMITEDFLOAT32fraction of time PIXELSHADER_MEMORY_LIMITEDFLOAT32fraction of time PIXELSHADER_COMPUTATION_LIMITEDFLOAT32fraction of time POST_TRANSFORM_CACHE_HIT_RATEFLOAT32fraction TEXTURE_CACHE_HIT_RATEFLOAT32fraction ? The value returned by a GPU_IDLE, VERTEX_PROCESSING, GEOMETRY_PROCESSING, PIXEL_PROCESSING, or OTHER_GPU_PROCESSING counter may be different depending on the number of parallel counters that exist on a video card, and those values can be interpreted with the following equation: ? Equation to interpret the number of parallel counters ? The number of parallel counters that a video card has is available from NumDetectableParallelUnits in <see cref="T:SharpDX.Direct3D10.CounterMetadata"/>, and it can be retrieved by calling <see cref="M:SharpDX.Direct3D10.Device.CheckCounter(SharpDX.Direct3D10.CounterDescription,SharpDX.Direct3D10.CounterType@,System.Int32@,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"/>.
  33. </remarks>
  34. <returns>If this function succeeds, returns a <see cref="T:SharpDX.DataStream"/> containing the asynchronous data sent from the GPU. </returns>
  35. <unmanaged>HRESULT ID3D10Asynchronous::GetData([Out, Buffer, Optional] void* pData,[In] int DataSize,[In] int GetDataFlags)</unmanaged>
  36. </member>
  37. <member name="M:SharpDX.Direct3D10.Asynchronous.GetData(SharpDX.Direct3D10.AsynchronousFlags)">
  38. <summary>
  39. Get data from the GPU asynchronously.
  40. </summary>
  41. <remarks>
  42. GetData retrieves the data collected between calls to <see cref="M:SharpDX.Direct3D10.Asynchronous.Begin"/> and <see cref="M:SharpDX.Direct3D10.Asynchronous.End"/>. Certain queries only require a call to ID3D10Asynchronous::End in which case the data returned by GetData is accurate up to the last call to ID3D10Asynchronous::End (See <see cref="T:SharpDX.Direct3D10.Query"/>). If DataSize is 0, GetData is only used to check status where a return value of S_OK indicates that data is available to give to an application, and a return value of S_FALSE indicates data is not yet available. It is invalid to invoke this function on a predicate created with the flag D3D10_QUERY_MISCFLAG_PREDICATEHINT. If the asynchronous interface that calls this function is <see cref="T:SharpDX.Direct3D10.Query"/>, then the following table applies. Query TypeOutput Data TypeSupports Begin Method EVENTBOOLNO OCCLUSIONUINT64YES TIMESTAMPUINT64NO TIMESTAMP_DISJOINTQUERYDATA_TIMESTAMP_DISJOINTYES PIPELINE_STATISTICSQUERYDATA_PIPELINE_STATISTICSYES OCCLUSION_PREDICATEBOOLYES SO_STATISTICSQUERYDATA_SO_STATISTICSYES SO_OVERFLOW_PREDICATEBOOLYES ? If the asynchronous interface that calls this API is <see cref="T:SharpDX.Direct3D10.Counter"/>, then the following applies. Counter TypeOutput Data TypeUnits GPU_IDLEFLOAT32fraction of time VERTEX_PROCESSINGFLOAT32fraction of time GEOMETRY_PROCESSINGFLOAT32fraction of time PIXEL_PROCESSINGFLOAT32fraction of time OTHER_GPU_PROCESSINGFLOAT32fraction of time HOST_ADAPTER_BANDWIDTH_UTILIZATIONFLOAT32fraction of theoretical maximum LOCAL_VIDMEM_BANDWIDTH_UTILIZATIONFLOAT32fraction of theoretical maximum VERTEX_THROUGHPUT_UTILIZATIONFLOAT32fraction of theoretical maximum TRISETUP_THROUGHPUT_UTILIZATIONFLOAT32fraction of theoretical maximum FILLRATE_THROUGHPUT_UTILIZATIONFLOAT32fraction of theoretical maximum VERTEXSHADER_MEMORY_LIMITEDFLOAT32fraction of time VERTEXSHADER_COMPUTATION_LIMITEDFLOAT32fraction of time GEOMETRYSHADER_MEMORY_LIMITEDFLOAT32fraction of time GEOMETRYSHADER_COMPUTATION_LIMITEDFLOAT32fraction of time PIXELSHADER_MEMORY_LIMITEDFLOAT32fraction of time PIXELSHADER_COMPUTATION_LIMITEDFLOAT32fraction of time POST_TRANSFORM_CACHE_HIT_RATEFLOAT32fraction TEXTURE_CACHE_HIT_RATEFLOAT32fraction ? The value returned by a GPU_IDLE, VERTEX_PROCESSING, GEOMETRY_PROCESSING, PIXEL_PROCESSING, or OTHER_GPU_PROCESSING counter may be different depending on the number of parallel counters that exist on a video card, and those values can be interpreted with the following equation: ? Equation to interpret the number of parallel counters ? The number of parallel counters that a video card has is available from NumDetectableParallelUnits in <see cref="T:SharpDX.Direct3D10.CounterMetadata"/>, and it can be retrieved by calling <see cref="M:SharpDX.Direct3D10.Device.CheckCounter(SharpDX.Direct3D10.CounterDescription,SharpDX.Direct3D10.CounterType@,System.Int32@,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)"/>.
  43. </remarks>
  44. <param name="flags">Optional flags. Can be 0 or any combination of the flags enumerated by <see cref="T:SharpDX.Direct3D10.AsynchronousFlags"/>. </param>
  45. <returns>If this function succeeds, returns a <see cref="T:SharpDX.DataStream"/> containing the asynchronous data sent from the GPU. </returns>
  46. <unmanaged>HRESULT ID3D10Asynchronous::GetData([Out, Buffer, Optional] void* pData,[In] int DataSize,[In] int GetDataFlags)</unmanaged>
  47. </member>
  48. <member name="P:SharpDX.Direct3D10.Asynchronous.IsDataAvailable">
  49. <summary>
  50. Gets a value indicating whether or not data is available for consumption.
  51. </summary>
  52. </member>
  53. <member name="M:SharpDX.Direct3D10.Asynchronous.#ctor(System.IntPtr)">
  54. <summary>
  55. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Asynchronous"/> class.
  56. </summary>
  57. <param name="nativePtr">The native pointer.</param>
  58. </member>
  59. <member name="M:SharpDX.Direct3D10.Asynchronous.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Asynchronous">
  60. <summary>
  61. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Asynchronous"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  62. </summary>
  63. <param name="nativePointer">The native pointer.</param>
  64. <returns>
  65. The result of the conversion.
  66. </returns>
  67. </member>
  68. <member name="M:SharpDX.Direct3D10.Asynchronous.Begin">
  69. <summary>
  70. <p>Starts the collection of GPU data.</p>
  71. </summary>
  72. <remarks>
  73. <p>Calling Begin starts the asynchronous collection of GPU data. Calling <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong> causes data collection to stop. See <strong><see cref="T:SharpDX.Direct3D10.Asynchronous" /> Interface</strong> for additional information.</p>
  74. </remarks>
  75. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Asynchronous::Begin']/*" />
  76. <msdn-id>bb173501</msdn-id>
  77. <unmanaged>void ID3D10Asynchronous::Begin()</unmanaged>
  78. <unmanaged-short>ID3D10Asynchronous::Begin</unmanaged-short>
  79. </member>
  80. <member name="M:SharpDX.Direct3D10.Asynchronous.End">
  81. <summary>
  82. <p>Ends the collection of GPU data.</p>
  83. </summary>
  84. <remarks>
  85. <p>Calling <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.Begin" /></strong> starts the asynchronous collection of GPU data. Calling <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong> causes data collection to stop. See <strong><see cref="T:SharpDX.Direct3D10.Asynchronous" /> Interface</strong> for additional information.</p>
  86. </remarks>
  87. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Asynchronous::End']/*" />
  88. <msdn-id>bb173502</msdn-id>
  89. <unmanaged>void ID3D10Asynchronous::End()</unmanaged>
  90. <unmanaged-short>ID3D10Asynchronous::End</unmanaged-short>
  91. </member>
  92. <member name="M:SharpDX.Direct3D10.Asynchronous.GetData(System.IntPtr,System.Int32,System.Int32)">
  93. <summary>
  94. <p>Get data from the GPU asynchronously.</p>
  95. </summary>
  96. <param name="dataRef"><dd> <p>Address of memory that will receive the data. If <strong><c>null</c></strong>, <strong>GetData</strong> will be used only to check status. The type of data output depends on the type of asynchronous interface. See Remarks.</p> </dd></param>
  97. <param name="dataSize"><dd> <p>Size of the data to retrieve or 0. This value can be obtained with <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetDataSize" /></strong>. Must be 0 when <em>pData</em> is <strong><c>null</c></strong>.</p> </dd></param>
  98. <param name="getDataFlags"><dd> <p>Optional flags. Can be 0 or any combination of the flags enumerated by <strong><see cref="T:SharpDX.Direct3D10.AsynchronousFlags" /></strong>.</p> </dd></param>
  99. <returns><p>If this function succeeds, it returns <see cref="F:SharpDX.Result.Ok" />. Otherwise, possible return values are the following:</p><ul> <li>S_FALSE</li> <li><see cref="F:SharpDX.DXGI.ResultCode.DeviceRemoved" /></li> <li><see cref="F:SharpDX.DXGI.ResultCode.InvalidCall" /></li> </ul></returns>
  100. <remarks>
  101. <p><strong>GetData</strong> retrieves the data collected between calls to <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.Begin" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong>. Certain queries only require a call to <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong> in which case the data returned by <strong>GetData</strong> is accurate up to the last call to <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong> (See <strong><see cref="T:SharpDX.Direct3D10.Query" /> Interface</strong>).</p><p>If <em>DataSize</em> is 0, <strong>GetData</strong> is only used to check status where a return value of <see cref="F:SharpDX.Result.Ok" /> indicates that data is available to give to an application, and a return value of S_FALSE indicates data is not yet available.</p><p>It is invalid to invoke this function on a predicate created with the flag D3D10_QUERY_MISCFLAG_PREDICATEHINT.</p><p>If the asynchronous interface that calls this function is <strong><see cref="T:SharpDX.Direct3D10.Query" /> Interface</strong>, then the following table applies.</p><table> <tr><th>Query Type</th><th>Output Data Type</th><th>Supports Begin Method</th></tr> <tr><td><see cref="F:SharpDX.Direct3D10.QueryType.Event" /></td><td><see cref="T:SharpDX.Mathematics.Interop.RawBool" /></td><td>NO</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.QueryType.Occlusion" /></td><td>UINT64</td><td>YES</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.QueryType.Timestamp" /></td><td>UINT64</td><td>NO</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.QueryType.TimestampDisjoint" /></td><td><see cref="T:SharpDX.Direct3D10.QueryDataTimestampDisjoint" /></td><td>YES</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.QueryType.PipelineStatistics" /></td><td><see cref="T:SharpDX.Direct3D10.QueryDataPipelineStatistics" /></td><td>YES</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.QueryType.OcclusionPredicate" /></td><td><see cref="T:SharpDX.Mathematics.Interop.RawBool" /></td><td>YES</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.QueryType.StreamOutputStatistics" /></td><td><see cref="T:SharpDX.Direct3D10.StreamOutputStatistics" /></td><td>YES</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.QueryType.StreamOutputOverflowPredicate" /></td><td><see cref="T:SharpDX.Mathematics.Interop.RawBool" /></td><td>YES</td></tr> </table><p>?</p><p>If the asynchronous interface that calls this API is <strong><see cref="T:SharpDX.Direct3D10.Counter" /> Interface</strong>, then the following applies.</p><table> <tr><th>Counter Type</th><th>Output Data Type</th><th>Units</th></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.GpuIdle" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.VertexProcessing" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.GeometryProcessing" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.PixelProcessing" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.OtherGpuProcessing" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.HostAdapterBandwidthUtilization" /></td><td>FLOAT32</td><td>fraction of theoretical maximum</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.LocalVidmemBandwidthUtilization" /></td><td>FLOAT32</td><td>fraction of theoretical maximum</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.VertexThroughputUtilization" /></td><td>FLOAT32</td><td>fraction of theoretical maximum</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.TriangleSetupThroughputUtilization" /></td><td>FLOAT32</td><td>fraction of theoretical maximum</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.FillrateThroughputUtilization" /></td><td>FLOAT32</td><td>fraction of theoretical maximum</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.VertexShaderMemoryLimited" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.VertexShaderComputationLimited" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.GeometryShaderMemoryLimited" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.GeometryShaderComputationLimited" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.PixelShaderMemoryLimited" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.PixelShaderComputationLimited" /></td><td>FLOAT32</td><td>fraction of time</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.PostTransformCacheHitRate" /></td><td>FLOAT32</td><td>fraction</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.CounterKind.TextureCacheHitRate" /></td><td>FLOAT32</td><td>fraction</td></tr> </table><p>?</p><p>The value returned by a <see cref="F:SharpDX.Direct3D10.CounterKind.GpuIdle" />, <see cref="F:SharpDX.Direct3D10.CounterKind.VertexProcessing" />, <see cref="F:SharpDX.Direct3D10.CounterKind.GeometryProcessing" />, <see cref="F:SharpDX.Direct3D10.CounterKind.PixelProcessing" />, or <see cref="F:SharpDX.Direct3D10.CounterKind.OtherGpuProcessing" /> counter may be different depending on the number of parallel counters that exist on a video card, and those values can be interpreted with the following equation:</p><p /><p>The number of parallel counters that a video card has is available from <strong>NumDetectableParallelUnits</strong> in <strong><see cref="T:SharpDX.Direct3D10.CounterCapabilities" /></strong>, and it can be retrieved by calling <strong><see cref="M:SharpDX.Direct3D10.Device.GetCounterCapabilities" /></strong>.</p>
  102. </remarks>
  103. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Asynchronous::GetData']/*" />
  104. <msdn-id>bb173503</msdn-id>
  105. <unmanaged>HRESULT ID3D10Asynchronous::GetData([Out, Buffer, Optional] void* pData,[In] unsigned int DataSize,[In] unsigned int GetDataFlags)</unmanaged>
  106. <unmanaged-short>ID3D10Asynchronous::GetData</unmanaged-short>
  107. </member>
  108. <member name="M:SharpDX.Direct3D10.Asynchronous.GetDataSize">
  109. <summary>
  110. <p>Get the size of the data (in bytes) that is output when calling <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong>.</p>
  111. </summary>
  112. <returns><p>Size of the data (in bytes) that is output when calling GetData.</p></returns>
  113. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Asynchronous::GetDataSize']/*" />
  114. <msdn-id>bb173504</msdn-id>
  115. <unmanaged>unsigned int ID3D10Asynchronous::GetDataSize()</unmanaged>
  116. <unmanaged-short>ID3D10Asynchronous::GetDataSize</unmanaged-short>
  117. </member>
  118. <member name="T:SharpDX.Direct3D10.BlendState">
  119. <summary>
  120. <p>This blend-state interface accesses blending state for a Direct3D 10.0 device for the output-merger stage.</p>
  121. </summary>
  122. <remarks>
  123. <p>Blending combines two pixel values. You have control over how the pixels are blended by using a predefined set of blending operations, as well as preblending operations. The Blending Block Diagram shows conceptually how blending works.</p><p>To create a blend-state interface, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateBlendState(SharpDX.Direct3D10.BlendStateDescription@,SharpDX.Direct3D10.BlendState)" /></strong>. To initialize the blend state, call <strong><see cref="M:SharpDX.Direct3D10.OutputMergerStage.SetBlendState(SharpDX.Direct3D10.BlendState,SharpDX.Mathematics.Interop.RawColor4,System.Int32)" /></strong>.</p>
  124. </remarks>
  125. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10BlendState']/*" />
  126. <msdn-id>bb173505</msdn-id>
  127. <unmanaged>ID3D10BlendState</unmanaged>
  128. <unmanaged-short>ID3D10BlendState</unmanaged-short>
  129. </member>
  130. <member name="M:SharpDX.Direct3D10.BlendState.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.BlendStateDescription)">
  131. <summary>
  132. Constructs a new <see cref = "T:SharpDX.Direct3D10.BlendState" /> based on the specified description.
  133. </summary>
  134. <param name = "device">The device with which to associate the state object.</param>
  135. <param name = "description">The state description.</param>
  136. <returns>The newly created object.</returns>
  137. </member>
  138. <member name="M:SharpDX.Direct3D10.BlendState.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.BlendStateDescription@)">
  139. <summary>
  140. Constructs a new <see cref = "T:SharpDX.Direct3D10.BlendState" /> based on the specified description.
  141. </summary>
  142. <param name = "device">The device with which to associate the state object.</param>
  143. <param name = "description">The state description.</param>
  144. <returns>The newly created object.</returns>
  145. </member>
  146. <member name="M:SharpDX.Direct3D10.BlendState.#ctor(System.IntPtr)">
  147. <summary>
  148. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.BlendState"/> class.
  149. </summary>
  150. <param name="nativePtr">The native pointer.</param>
  151. </member>
  152. <member name="M:SharpDX.Direct3D10.BlendState.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.BlendState">
  153. <summary>
  154. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.BlendState"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  155. </summary>
  156. <param name="nativePointer">The native pointer.</param>
  157. <returns>
  158. The result of the conversion.
  159. </returns>
  160. </member>
  161. <member name="P:SharpDX.Direct3D10.BlendState.Description">
  162. <summary>
  163. <p>Get the blend state.</p>
  164. </summary>
  165. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10BlendState::GetDesc']/*" />
  166. <msdn-id>bb173506</msdn-id>
  167. <unmanaged>GetDesc</unmanaged>
  168. <unmanaged-short>GetDesc</unmanaged-short>
  169. <unmanaged>void ID3D10BlendState::GetDesc([Out] D3D10_BLEND_DESC* pDesc)</unmanaged>
  170. </member>
  171. <member name="M:SharpDX.Direct3D10.BlendState.GetDescription(SharpDX.Direct3D10.BlendStateDescription@)">
  172. <summary>
  173. <p>Get the blend state.</p>
  174. </summary>
  175. <param name="descRef"><dd> <p>A reference to the blend state (see <strong><see cref="T:SharpDX.Direct3D10.BlendStateDescription" /></strong>).</p> </dd></param>
  176. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10BlendState::GetDesc']/*" />
  177. <msdn-id>bb173506</msdn-id>
  178. <unmanaged>void ID3D10BlendState::GetDesc([Out] D3D10_BLEND_DESC* pDesc)</unmanaged>
  179. <unmanaged-short>ID3D10BlendState::GetDesc</unmanaged-short>
  180. </member>
  181. <member name="T:SharpDX.Direct3D10.BlendState1">
  182. <summary>
  183. <p>This blend-state interface accesses blending state for a Direct3D 10.1 device for the output-merger stage.</p>
  184. </summary>
  185. <remarks>
  186. <p>Blending combines two pixel values. You have control over how the pixels are blended by using a predefined set of blending operations, as well as preblending operations. The Blending Block Diagram shows conceptually how blending works.</p><p>To create a blend-state interface, call <strong><see cref="M:SharpDX.Direct3D10.Device1.CreateBlendState1(SharpDX.Direct3D10.BlendStateDescription1@,SharpDX.Direct3D10.BlendState1)" /></strong>. To initialize the blend state, call <strong><see cref="M:SharpDX.Direct3D10.OutputMergerStage.SetBlendState(SharpDX.Direct3D10.BlendState,SharpDX.Mathematics.Interop.RawColor4,System.Int32)" /></strong>.</p><p>This method requires Windows Vista Service Pack 1.</p>
  187. </remarks>
  188. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10BlendState1']/*" />
  189. <msdn-id>bb694544</msdn-id>
  190. <unmanaged>ID3D10BlendState1</unmanaged>
  191. <unmanaged-short>ID3D10BlendState1</unmanaged-short>
  192. </member>
  193. <member name="M:SharpDX.Direct3D10.BlendState1.#ctor(SharpDX.Direct3D10.Device1,SharpDX.Direct3D10.BlendStateDescription1)">
  194. <summary>
  195. Constructs a new <see cref = "T:SharpDX.Direct3D10.BlendState1" /> based on the specified description.
  196. </summary>
  197. <param name = "device">The device with which to associate the state object.</param>
  198. <param name = "description">The state description.</param>
  199. <returns>The newly created object.</returns>
  200. </member>
  201. <member name="M:SharpDX.Direct3D10.BlendState1.#ctor(SharpDX.Direct3D10.Device1,SharpDX.Direct3D10.BlendStateDescription1@)">
  202. <summary>
  203. Constructs a new <see cref = "T:SharpDX.Direct3D10.BlendState1" /> based on the specified description.
  204. </summary>
  205. <param name = "device">The device with which to associate the state object.</param>
  206. <param name = "description">The state description.</param>
  207. <returns>The newly created object.</returns>
  208. </member>
  209. <member name="M:SharpDX.Direct3D10.BlendState1.#ctor(System.IntPtr)">
  210. <summary>
  211. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.BlendState1"/> class.
  212. </summary>
  213. <param name="nativePtr">The native pointer.</param>
  214. </member>
  215. <member name="M:SharpDX.Direct3D10.BlendState1.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.BlendState1">
  216. <summary>
  217. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.BlendState1"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  218. </summary>
  219. <param name="nativePointer">The native pointer.</param>
  220. <returns>
  221. The result of the conversion.
  222. </returns>
  223. </member>
  224. <member name="P:SharpDX.Direct3D10.BlendState1.Description1">
  225. <summary>
  226. No documentation.
  227. </summary>
  228. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10BlendState1::GetDesc1']/*" />
  229. <unmanaged>GetDesc1</unmanaged>
  230. <unmanaged-short>GetDesc1</unmanaged-short>
  231. <unmanaged>void ID3D10BlendState1::GetDesc1([Out] D3D10_BLEND_DESC1* pDesc)</unmanaged>
  232. </member>
  233. <member name="M:SharpDX.Direct3D10.BlendState1.GetDescription1(SharpDX.Direct3D10.BlendStateDescription1@)">
  234. <summary>
  235. No documentation.
  236. </summary>
  237. <param name="descRef">No documentation.</param>
  238. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10BlendState1::GetDesc1']/*" />
  239. <unmanaged>void ID3D10BlendState1::GetDesc1([Out] D3D10_BLEND_DESC1* pDesc)</unmanaged>
  240. <unmanaged-short>ID3D10BlendState1::GetDesc1</unmanaged-short>
  241. </member>
  242. <member name="T:SharpDX.Direct3D10.Buffer">
  243. <summary>
  244. <p>A buffer interface accesses a buffer resource, which is unstructured memory. Buffers typically store vertex or index data.</p>
  245. </summary>
  246. <remarks>
  247. <p>Three types of buffers can be created; vertex, index, and shader-constant buffers. To create a buffer resource, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateBuffer(SharpDX.Direct3D10.BufferDescription@,System.Nullable{SharpDX.DataBox},SharpDX.Direct3D10.Buffer)" /></strong>.</p><p>A buffer must be bound to the pipeline before it can be accessed. Buffers can be bound to the input-assembler stage by calls to <strong><see cref="M:SharpDX.Direct3D10.InputAssemblerStage.SetVertexBuffers(System.Int32,SharpDX.Direct3D10.VertexBufferBinding)" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.InputAssemblerStage.SetIndexBuffer(SharpDX.Direct3D10.Buffer,SharpDX.DXGI.Format,System.Int32)" /></strong>, and to the stream-output stage by a call to <strong><see cref="M:SharpDX.Direct3D10.StreamOutputStage.SetTargets(SharpDX.Direct3D10.StreamOutputBufferBinding[])" /></strong>.</p><p>Buffers can be bound to multiple pipeline stages simultaneously for reading. A buffer can also be bound to a single pipeline stage for writing; however, the same buffer cannot be bound for reading and writing simultaneously. For more information, see binding resources.</p>
  248. </remarks>
  249. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Buffer']/*" />
  250. <msdn-id>bb173510</msdn-id>
  251. <unmanaged>ID3D10Buffer</unmanaged>
  252. <unmanaged-short>ID3D10Buffer</unmanaged-short>
  253. </member>
  254. <member name="M:SharpDX.Direct3D10.Buffer.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.BufferDescription)">
  255. <summary>
  256. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Buffer" /> class.
  257. </summary>
  258. <param name = "device">The device with which to associate the buffer.</param>
  259. <param name = "description">The description of the buffer.</param>
  260. </member>
  261. <member name="M:SharpDX.Direct3D10.Buffer.#ctor(SharpDX.Direct3D10.Device,SharpDX.DataStream,SharpDX.Direct3D10.BufferDescription)">
  262. <summary>
  263. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Buffer" /> class.
  264. </summary>
  265. <param name = "device">The device with which to associate the buffer.</param>
  266. <param name = "data">Initial data used to initialize the buffer.</param>
  267. <param name = "description">The description of the buffer.</param>
  268. </member>
  269. <member name="M:SharpDX.Direct3D10.Buffer.#ctor(SharpDX.Direct3D10.Device,System.Int32,SharpDX.Direct3D10.ResourceUsage,SharpDX.Direct3D10.BindFlags,SharpDX.Direct3D10.CpuAccessFlags,SharpDX.Direct3D10.ResourceOptionFlags)">
  270. <summary>
  271. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Buffer" /> class.
  272. </summary>
  273. <param name = "device">The device with which to associate the buffer.</param>
  274. <param name = "sizeInBytes">The size, in bytes, of the buffer.</param>
  275. <param name = "usage">The usage pattern for the buffer.</param>
  276. <param name = "bindFlags">Flags specifying how the buffer will be bound to the pipeline.</param>
  277. <param name = "accessFlags">Flags specifying how the buffer will be accessible from the CPU.</param>
  278. <param name = "optionFlags">Miscellaneous resource options.</param>
  279. </member>
  280. <member name="M:SharpDX.Direct3D10.Buffer.#ctor(SharpDX.Direct3D10.Device,SharpDX.DataStream,System.Int32,SharpDX.Direct3D10.ResourceUsage,SharpDX.Direct3D10.BindFlags,SharpDX.Direct3D10.CpuAccessFlags,SharpDX.Direct3D10.ResourceOptionFlags)">
  281. <summary>
  282. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Buffer" /> class.
  283. </summary>
  284. <param name = "device">The device with which to associate the buffer.</param>
  285. <param name = "data">Initial data used to initialize the buffer.</param>
  286. <param name = "sizeInBytes">The size, in bytes, of the buffer.</param>
  287. <param name = "usage">The usage pattern for the buffer.</param>
  288. <param name = "bindFlags">Flags specifying how the buffer will be bound to the pipeline.</param>
  289. <param name = "accessFlags">Flags specifying how the buffer will be accessible from the CPU.</param>
  290. <param name = "optionFlags">Miscellaneous resource options.</param>
  291. </member>
  292. <member name="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode)">
  293. <summary>
  294. Get a reference to the data contained in the resource and deny GPU access to the resource.
  295. </summary>
  296. <remarks>
  297. For the CPU to write the contents of a resource, the resource must be created with the dynamic usage flag, D3D10_USAGE_DYNAMIC. To both read and write those contents, the resource must be created with the staging usage flag, D3D10_USAGE_STAGING. (For more information about these flags, see <see cref="T:SharpDX.Direct3D10.ResourceUsage"/>.) ID3D10Buffer::Map will retrieve a reference to the resource data. For a discussion on how to access resources efficiently, see {{Copying and Accessing Resource Data (Direct3D 10)}}. Call <see cref="M:SharpDX.Direct3D10.Buffer.Unmap"/> to signify that the application has finished accessing the resource. ID3D10Buffer::Map has a few other restrictions. For example: The same buffer cannot be mapped multiple times; in other words, do not call ID3D10Buffer::Map on a buffer that is already mapped. Any buffer that is bound to the pipeline must be unmapped before any rendering operation (that is, <see cref="M:SharpDX.Direct3D10.Device.Draw(System.Int32,System.Int32)"/>) can be executed. Differences between Direct3D 9 and Direct3D 10: ID3D10Buffer::Map in Direct3D 10 is analogous to resource {{Lock}} in Direct3D 9. ?
  298. </remarks>
  299. <param name="mapType">Flag that specifies the CPU's permissions for the reading and writing of a resource. For possible values, see <see cref="T:SharpDX.Direct3D10.MapMode"/>. </param>
  300. <returns>If this function succeeds returns a <see cref="T:SharpDX.DataStream"/> with the size this buffer.</returns>
  301. <unmanaged>HRESULT ID3D10Buffer::Map([In] D3D10_MAP MapType,[In] int MapFlags,[Out] void** ppData)</unmanaged>
  302. </member>
  303. <member name="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags)">
  304. <summary>
  305. Get a reference to the data contained in the resource and deny GPU access to the resource.
  306. </summary>
  307. <remarks>
  308. For the CPU to write the contents of a resource, the resource must be created with the dynamic usage flag, D3D10_USAGE_DYNAMIC. To both read and write those contents, the resource must be created with the staging usage flag, D3D10_USAGE_STAGING. (For more information about these flags, see <see cref="T:SharpDX.Direct3D10.ResourceUsage"/>.) ID3D10Buffer::Map will retrieve a reference to the resource data. For a discussion on how to access resources efficiently, see {{Copying and Accessing Resource Data (Direct3D 10)}}. Call <see cref="M:SharpDX.Direct3D10.Buffer.Unmap"/> to signify that the application has finished accessing the resource. ID3D10Buffer::Map has a few other restrictions. For example: The same buffer cannot be mapped multiple times; in other words, do not call ID3D10Buffer::Map on a buffer that is already mapped. Any buffer that is bound to the pipeline must be unmapped before any rendering operation (that is, <see cref="M:SharpDX.Direct3D10.Device.Draw(System.Int32,System.Int32)"/>) can be executed. Differences between Direct3D 9 and Direct3D 10: ID3D10Buffer::Map in Direct3D 10 is analogous to resource {{Lock}} in Direct3D 9. ?
  309. </remarks>
  310. <param name="mode">Flag that specifies the CPU's permissions for the reading and writing of a resource. For possible values, see <see cref="T:SharpDX.Direct3D10.MapMode"/>. </param>
  311. <param name="mapFlags">Flag that specifies what the CPU should do when the GPU is busy (see <see cref="T:SharpDX.Direct3D10.MapFlags"/>). This flag is optional. </param>
  312. <returns>If this function succeeds returns a <see cref="T:SharpDX.DataStream"/> with the size this buffer.</returns>
  313. <unmanaged>HRESULT ID3D10Buffer::Map([In] D3D10_MAP MapType,[In] int MapFlags,[Out] void** ppData)</unmanaged>
  314. </member>
  315. <member name="M:SharpDX.Direct3D10.Buffer.Create``1(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.BindFlags,``0@,System.Int32,SharpDX.Direct3D10.ResourceUsage,SharpDX.Direct3D10.CpuAccessFlags,SharpDX.Direct3D10.ResourceOptionFlags,System.Int32)">
  316. <summary>
  317. Creates a new instance of the <see cref="T:SharpDX.Direct3D10.Buffer"/> class.
  318. </summary>
  319. <typeparam name="T">Type of the data to upload</typeparam>
  320. <param name="device">The device with which to associate the buffer.</param>
  321. <param name="bindFlags">Flags specifying how the buffer will be bound to the pipeline.</param>
  322. <param name="data">Initial data used to initialize the buffer.</param>
  323. <param name="sizeInBytes">The size, in bytes, of the buffer. If 0 is specified, sizeof(T) is used. </param>
  324. <param name="usage">The usage pattern for the buffer.</param>
  325. <param name="accessFlags">Flags specifying how the buffer will be accessible from the CPU.</param>
  326. <param name="optionFlags">Miscellaneous resource options.</param>
  327. <param name="structureByteStride">The size (in bytes) of the structure element for structured buffers.</param>
  328. <returns>An initialized buffer</returns>
  329. </member>
  330. <member name="M:SharpDX.Direct3D10.Buffer.Create``1(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.BindFlags,``0[],System.Int32,SharpDX.Direct3D10.ResourceUsage,SharpDX.Direct3D10.CpuAccessFlags,SharpDX.Direct3D10.ResourceOptionFlags,System.Int32)">
  331. <summary>
  332. Creates a new instance of the <see cref="T:SharpDX.Direct3D10.Buffer"/> class.
  333. </summary>
  334. <typeparam name="T">Type of the data to upload</typeparam>
  335. <param name="device">The device with which to associate the buffer.</param>
  336. <param name="bindFlags">Flags specifying how the buffer will be bound to the pipeline.</param>
  337. <param name="data">Initial data used to initialize the buffer.</param>
  338. <param name="sizeInBytes">The size, in bytes, of the buffer. If 0 is specified, sizeof(T) is used.</param>
  339. <param name="usage">The usage pattern for the buffer.</param>
  340. <param name="accessFlags">Flags specifying how the buffer will be accessible from the CPU.</param>
  341. <param name="optionFlags">Miscellaneous resource options.</param>
  342. <param name="structureByteStride">The size (in bytes) of the structure element for structured buffers.</param>
  343. <returns>An initialized buffer</returns>
  344. </member>
  345. <member name="M:SharpDX.Direct3D10.Buffer.Create``1(SharpDX.Direct3D10.Device,``0@,SharpDX.Direct3D10.BufferDescription)">
  346. <summary>
  347. Creates a new instance of the <see cref="T:SharpDX.Direct3D10.Buffer"/> class.
  348. </summary>
  349. <typeparam name="T">Type of the data to upload</typeparam>
  350. <param name="device">The device with which to associate the buffer.</param>
  351. <param name="data">Initial data used to initialize the buffer.</param>
  352. <param name="description">The description.</param>
  353. <returns>
  354. An initialized buffer
  355. </returns>
  356. </member>
  357. <member name="M:SharpDX.Direct3D10.Buffer.Create``1(SharpDX.Direct3D10.Device,``0[],SharpDX.Direct3D10.BufferDescription)">
  358. <summary>
  359. Creates a new instance of the <see cref="T:SharpDX.Direct3D10.Buffer"/> class.
  360. </summary>
  361. <typeparam name="T">Type of the data to upload</typeparam>
  362. <param name="device">The device with which to associate the buffer.</param>
  363. <param name="data">Initial data used to initialize the buffer.</param>
  364. <param name="description">The description.</param>
  365. <returns>
  366. An initialized buffer
  367. </returns>
  368. </member>
  369. <member name="M:SharpDX.Direct3D10.Buffer.#ctor(System.IntPtr)">
  370. <summary>
  371. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Buffer"/> class.
  372. </summary>
  373. <param name="nativePtr">The native pointer.</param>
  374. </member>
  375. <member name="M:SharpDX.Direct3D10.Buffer.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Buffer">
  376. <summary>
  377. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Buffer"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  378. </summary>
  379. <param name="nativePointer">The native pointer.</param>
  380. <returns>
  381. The result of the conversion.
  382. </returns>
  383. </member>
  384. <member name="P:SharpDX.Direct3D10.Buffer.Description">
  385. <summary>
  386. <p>Get the properties of a buffer resource.</p>
  387. </summary>
  388. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Buffer::GetDesc']/*" />
  389. <msdn-id>bb173511</msdn-id>
  390. <unmanaged>GetDesc</unmanaged>
  391. <unmanaged-short>GetDesc</unmanaged-short>
  392. <unmanaged>void ID3D10Buffer::GetDesc([Out] D3D10_BUFFER_DESC* pDesc)</unmanaged>
  393. </member>
  394. <member name="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,System.IntPtr@)">
  395. <summary>
  396. <p>Get a reference to the data contained in the resource and deny GPU access to the resource.</p>
  397. </summary>
  398. <param name="mapType"><dd> <p>Flag that specifies the CPU's permissions for the reading and writing of a resource. For possible values, see <strong><see cref="T:SharpDX.Direct3D10.MapMode" /></strong>.</p> </dd></param>
  399. <param name="mapFlags"><dd> <p>Flag that specifies what the CPU should do when the GPU is busy (see <strong><see cref="T:SharpDX.Direct3D10.MapFlags" /></strong>). This flag is optional.</p> </dd></param>
  400. <param name="dataOut"><dd> <p>Pointer to the buffer resource data.</p> </dd></param>
  401. <returns><p>If this function succeeds, it returns <see cref="F:SharpDX.Result.Ok" />. The following list contains some of the reasons that <strong>Map</strong> can fail: </p><ul> <li>If <em>MapFlags</em> specifies <see cref="F:SharpDX.Direct3D10.MapFlags.DoNotWait" /> and the GPU is not yet finished with the resource, <strong><see cref="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode)" /></strong> returns <see cref="F:SharpDX.DXGI.ResultCode.WasStillDrawing" />.</li> <li><strong><see cref="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode)" /></strong> returns <see cref="F:SharpDX.DXGI.ResultCode.DeviceRemoved" /> if <em>MapType</em> includes any flags that permit reading and the hardware device (that is, the video card) has been removed.</li> </ul><p>For more information about the preceding return values, see DXGI_ERROR.</p></returns>
  402. <remarks>
  403. <p>For the CPU to write the contents of a resource, the resource must be created with the dynamic usage flag, <see cref="F:SharpDX.Direct3D10.ResourceUsage.Dynamic" />. To both read and write those contents, the resource must be created with the staging usage flag, <see cref="F:SharpDX.Direct3D10.ResourceUsage.Staging" />. (For more information about these flags, see <strong><see cref="T:SharpDX.Direct3D10.ResourceUsage" /></strong>.) <strong><see cref="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode)" /></strong> will retrieve a reference to the resource data. For a discussion on how to access resources efficiently, see Copying and Accessing Resource Data (Direct3D 10).</p><p>Call <strong><see cref="M:SharpDX.Direct3D10.Buffer.Unmap" /></strong> to signify that the application has finished accessing the resource.</p><p><strong><see cref="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode)" /></strong> has a few other restrictions. For example:</p><ul> <li>The same buffer cannot be mapped multiple times; in other words, do not call <strong><see cref="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode)" /></strong> on a buffer that is already mapped.</li> <li>Any buffer that is bound to the pipeline must be unmapped before any rendering operation (that is, <strong><see cref="M:SharpDX.Direct3D10.Device.Draw(System.Int32,System.Int32)" /></strong>) can be executed.</li> </ul><table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p><strong><see cref="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode)" /></strong> in Direct3D 10 is analogous to resource Lock in Direct3D 9.</p> </td></tr> </table><p>?</p>
  404. </remarks>
  405. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Buffer::Map']/*" />
  406. <msdn-id>bb173512</msdn-id>
  407. <unmanaged>HRESULT ID3D10Buffer::Map([In] D3D10_MAP MapType,[In] D3D10_MAP_FLAG MapFlags,[Out] void** ppData)</unmanaged>
  408. <unmanaged-short>ID3D10Buffer::Map</unmanaged-short>
  409. </member>
  410. <member name="M:SharpDX.Direct3D10.Buffer.Unmap">
  411. <summary>
  412. <p>Invalidate the reference to the resource retrieved by <strong><see cref="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode)" /></strong> and reenable GPU access to the resource.</p>
  413. </summary>
  414. <remarks>
  415. <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>Unmap() in Direct3D 10 is analogous to resource Unlock() in Direct3D 9.</p> </td></tr> </table><p>?</p>
  416. </remarks>
  417. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Buffer::Unmap']/*" />
  418. <msdn-id>bb173513</msdn-id>
  419. <unmanaged>void ID3D10Buffer::Unmap()</unmanaged>
  420. <unmanaged-short>ID3D10Buffer::Unmap</unmanaged-short>
  421. </member>
  422. <member name="M:SharpDX.Direct3D10.Buffer.GetDescription(SharpDX.Direct3D10.BufferDescription@)">
  423. <summary>
  424. <p>Get the properties of a buffer resource.</p>
  425. </summary>
  426. <param name="descRef"><dd> <p>Pointer to a resource description (see <strong><see cref="T:SharpDX.Direct3D10.BufferDescription" /></strong>) filled in by the method. This reference cannot be <strong><c>null</c></strong>.</p> </dd></param>
  427. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Buffer::GetDesc']/*" />
  428. <msdn-id>bb173511</msdn-id>
  429. <unmanaged>void ID3D10Buffer::GetDesc([Out] D3D10_BUFFER_DESC* pDesc)</unmanaged>
  430. <unmanaged-short>ID3D10Buffer::GetDesc</unmanaged-short>
  431. </member>
  432. <member name="T:SharpDX.Direct3D10.BufferDescription">
  433. <summary>
  434. <p>Describes a buffer resource.</p>
  435. </summary>
  436. <remarks>
  437. <p>This structure is used by <strong><see cref="M:SharpDX.Direct3D10.Device.CreateBuffer(SharpDX.Direct3D10.BufferDescription@,System.Nullable{SharpDX.DataBox},SharpDX.Direct3D10.Buffer)" /></strong> to create buffer resources.</p><p>In addition to this structure, there is also a derived structure in D3D10.h (CD3D10_BUFFER_DESC) which behaves like an inherited class to help create a buffer description.</p>
  438. </remarks>
  439. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_DESC']/*" />
  440. <msdn-id>bb204896</msdn-id>
  441. <unmanaged>D3D10_BUFFER_DESC</unmanaged>
  442. <unmanaged-short>D3D10_BUFFER_DESC</unmanaged-short>
  443. </member>
  444. <member name="M:SharpDX.Direct3D10.BufferDescription.#ctor(System.Int32,SharpDX.Direct3D10.ResourceUsage,SharpDX.Direct3D10.BindFlags,SharpDX.Direct3D10.CpuAccessFlags,SharpDX.Direct3D10.ResourceOptionFlags)">
  445. <summary>
  446. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.BufferDescription"/> struct.
  447. </summary>
  448. <param name="sizeInBytes">The size in bytes.</param>
  449. <param name="usage">The usage.</param>
  450. <param name="bindFlags">The bind flags.</param>
  451. <param name="cpuAccessFlags">The CPU access flags.</param>
  452. <param name="optionFlags">The option flags.</param>
  453. </member>
  454. <member name="F:SharpDX.Direct3D10.BufferDescription.SizeInBytes">
  455. <summary>
  456. No documentation.
  457. </summary>
  458. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_DESC::ByteWidth']/*" />
  459. <msdn-id>bb204896</msdn-id>
  460. <unmanaged>unsigned int ByteWidth</unmanaged>
  461. <unmanaged-short>unsigned int ByteWidth</unmanaged-short>
  462. </member>
  463. <member name="F:SharpDX.Direct3D10.BufferDescription.Usage">
  464. <summary>
  465. No documentation.
  466. </summary>
  467. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_DESC::Usage']/*" />
  468. <msdn-id>bb204896</msdn-id>
  469. <unmanaged>D3D10_USAGE Usage</unmanaged>
  470. <unmanaged-short>D3D10_USAGE Usage</unmanaged-short>
  471. </member>
  472. <member name="F:SharpDX.Direct3D10.BufferDescription.BindFlags">
  473. <summary>
  474. No documentation.
  475. </summary>
  476. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_DESC::BindFlags']/*" />
  477. <msdn-id>bb204896</msdn-id>
  478. <unmanaged>D3D10_BIND_FLAG BindFlags</unmanaged>
  479. <unmanaged-short>D3D10_BIND_FLAG BindFlags</unmanaged-short>
  480. </member>
  481. <member name="F:SharpDX.Direct3D10.BufferDescription.CpuAccessFlags">
  482. <summary>
  483. No documentation.
  484. </summary>
  485. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_DESC::CPUAccessFlags']/*" />
  486. <msdn-id>bb204896</msdn-id>
  487. <unmanaged>D3D10_CPU_ACCESS_FLAG CPUAccessFlags</unmanaged>
  488. <unmanaged-short>D3D10_CPU_ACCESS_FLAG CPUAccessFlags</unmanaged-short>
  489. </member>
  490. <member name="F:SharpDX.Direct3D10.BufferDescription.OptionFlags">
  491. <summary>
  492. No documentation.
  493. </summary>
  494. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_DESC::MiscFlags']/*" />
  495. <msdn-id>bb204896</msdn-id>
  496. <unmanaged>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged>
  497. <unmanaged-short>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged-short>
  498. </member>
  499. <member name="T:SharpDX.Direct3D10.Counter">
  500. <summary>
  501. <p>This interface encapsulates methods for measuring GPU performance.</p>
  502. </summary>
  503. <remarks>
  504. <p>A counter can be created with <strong><see cref="M:SharpDX.Direct3D10.Device.CreateCounter(SharpDX.Direct3D10.CounterDescription,SharpDX.Direct3D10.Counter)" /></strong>.</p><p>This is a derived class of <strong><see cref="T:SharpDX.Direct3D10.Asynchronous" /> Interface</strong>.</p><p>Counter data is gathered by issuing an <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.Begin" /></strong> command, issuing some graphics commands, issuing an <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong> command, and then calling <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> to get data about what happened in between the Begin and End calls. The data returned by GetData will be different depending on the type of counter. The call to End causes the data returned by GetData to be accurate up until the last call to End.</p><p>Counters are best suited for profiling.</p><p>For a list of the types of performance counters, see <strong><see cref="T:SharpDX.Direct3D10.CounterKind" /></strong>.</p>
  505. </remarks>
  506. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Counter']/*" />
  507. <msdn-id>bb173514</msdn-id>
  508. <unmanaged>ID3D10Counter</unmanaged>
  509. <unmanaged-short>ID3D10Counter</unmanaged-short>
  510. </member>
  511. <member name="M:SharpDX.Direct3D10.Counter.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.CounterDescription)">
  512. <summary>
  513. Constructs a new <see cref = "T:SharpDX.Direct3D10.Counter" /> based on the specified description.
  514. </summary>
  515. <param name = "device">The device with which to associate the state object.</param>
  516. <param name = "description">The counter description.</param>
  517. <returns>The newly created object.</returns>
  518. </member>
  519. <member name="M:SharpDX.Direct3D10.Counter.#ctor(System.IntPtr)">
  520. <summary>
  521. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Counter"/> class.
  522. </summary>
  523. <param name="nativePtr">The native pointer.</param>
  524. </member>
  525. <member name="M:SharpDX.Direct3D10.Counter.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Counter">
  526. <summary>
  527. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Counter"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  528. </summary>
  529. <param name="nativePointer">The native pointer.</param>
  530. <returns>
  531. The result of the conversion.
  532. </returns>
  533. </member>
  534. <member name="P:SharpDX.Direct3D10.Counter.Description">
  535. <summary>
  536. <p>Get a counter description.</p>
  537. </summary>
  538. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Counter::GetDesc']/*" />
  539. <msdn-id>bb173515</msdn-id>
  540. <unmanaged>GetDesc</unmanaged>
  541. <unmanaged-short>GetDesc</unmanaged-short>
  542. <unmanaged>void ID3D10Counter::GetDesc([Out] D3D10_COUNTER_DESC* pDesc)</unmanaged>
  543. </member>
  544. <member name="M:SharpDX.Direct3D10.Counter.GetDescription(SharpDX.Direct3D10.CounterDescription@)">
  545. <summary>
  546. <p>Get a counter description.</p>
  547. </summary>
  548. <param name="descRef"><dd> <p>Pointer to a counter description (see <strong><see cref="T:SharpDX.Direct3D10.CounterDescription" /></strong>).</p> </dd></param>
  549. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Counter::GetDesc']/*" />
  550. <msdn-id>bb173515</msdn-id>
  551. <unmanaged>void ID3D10Counter::GetDesc([Out] D3D10_COUNTER_DESC* pDesc)</unmanaged>
  552. <unmanaged-short>ID3D10Counter::GetDesc</unmanaged-short>
  553. </member>
  554. <member name="T:SharpDX.Direct3D10.CounterMetadata">
  555. <summary>
  556. Counter metadata that contains the type, name, units of measure, and a description of an existing counter.
  557. </summary>
  558. </member>
  559. <member name="P:SharpDX.Direct3D10.CounterMetadata.Type">
  560. <summary>
  561. Gets the data type of a counter (see <see cref="T:SharpDX.Direct3D10.CounterType"/>).
  562. </summary>
  563. <value>The type.</value>
  564. </member>
  565. <member name="P:SharpDX.Direct3D10.CounterMetadata.HardwareCounterCount">
  566. <summary>
  567. Gets the number of hardware counters that are needed for this counter type to be created. All instances of the same counter type use the same hardware counters.
  568. </summary>
  569. <value>The hardware counter count.</value>
  570. </member>
  571. <member name="P:SharpDX.Direct3D10.CounterMetadata.Name">
  572. <summary>
  573. Gets a brief name for the counter.
  574. </summary>
  575. <value>The name.</value>
  576. </member>
  577. <member name="P:SharpDX.Direct3D10.CounterMetadata.Units">
  578. <summary>
  579. Gets the units a counter measures.
  580. </summary>
  581. <value>The units.</value>
  582. </member>
  583. <member name="P:SharpDX.Direct3D10.CounterMetadata.Description">
  584. <summary>
  585. Gets a description of the counter.
  586. </summary>
  587. <value>The description.</value>
  588. </member>
  589. <member name="T:SharpDX.Direct3D10.DepthStencilState">
  590. <summary>
  591. <p>A depth-stencil-state interface accesses depth-stencil state which sets up the depth-stencil test for the output-merger stage.</p>
  592. </summary>
  593. <remarks>
  594. <p>Create a depth-stencil state object by calling <strong><see cref="M:SharpDX.Direct3D10.Device.CreateDepthStencilState(SharpDX.Direct3D10.DepthStencilStateDescription@,SharpDX.Direct3D10.DepthStencilState)" /></strong>.</p><p>To initialize depth-stencil state, bind the depth-stencil-state object to the pipeline by calling <strong><see cref="M:SharpDX.Direct3D10.OutputMergerStage.SetDepthStencilState(SharpDX.Direct3D10.DepthStencilState,System.Int32)" /></strong>.</p>
  595. </remarks>
  596. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DepthStencilState']/*" />
  597. <msdn-id>bb173524</msdn-id>
  598. <unmanaged>ID3D10DepthStencilState</unmanaged>
  599. <unmanaged-short>ID3D10DepthStencilState</unmanaged-short>
  600. </member>
  601. <member name="M:SharpDX.Direct3D10.DepthStencilState.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.DepthStencilStateDescription)">
  602. <summary>
  603. Constructs a new <see cref = "T:SharpDX.Direct3D10.DepthStencilState" /> based on the specified description.
  604. </summary>
  605. <param name = "device">The device with which to associate the state object.</param>
  606. <param name = "description">The state description.</param>
  607. <returns>The newly created object.</returns>
  608. </member>
  609. <member name="M:SharpDX.Direct3D10.DepthStencilState.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.DepthStencilStateDescription@)">
  610. <summary>
  611. Constructs a new <see cref = "T:SharpDX.Direct3D10.DepthStencilState" /> based on the specified description.
  612. </summary>
  613. <param name = "device">The device with which to associate the state object.</param>
  614. <param name = "description">The state description.</param>
  615. <returns>The newly created object.</returns>
  616. </member>
  617. <member name="M:SharpDX.Direct3D10.DepthStencilState.#ctor(System.IntPtr)">
  618. <summary>
  619. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.DepthStencilState"/> class.
  620. </summary>
  621. <param name="nativePtr">The native pointer.</param>
  622. </member>
  623. <member name="M:SharpDX.Direct3D10.DepthStencilState.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.DepthStencilState">
  624. <summary>
  625. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.DepthStencilState"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  626. </summary>
  627. <param name="nativePointer">The native pointer.</param>
  628. <returns>
  629. The result of the conversion.
  630. </returns>
  631. </member>
  632. <member name="P:SharpDX.Direct3D10.DepthStencilState.Description">
  633. <summary>
  634. <p>Get the depth-stencil state.</p>
  635. </summary>
  636. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DepthStencilState::GetDesc']/*" />
  637. <msdn-id>bb173525</msdn-id>
  638. <unmanaged>GetDesc</unmanaged>
  639. <unmanaged-short>GetDesc</unmanaged-short>
  640. <unmanaged>void ID3D10DepthStencilState::GetDesc([Out] D3D10_DEPTH_STENCIL_DESC* pDesc)</unmanaged>
  641. </member>
  642. <member name="M:SharpDX.Direct3D10.DepthStencilState.GetDescription(SharpDX.Direct3D10.DepthStencilStateDescription@)">
  643. <summary>
  644. <p>Get the depth-stencil state.</p>
  645. </summary>
  646. <param name="descRef"><dd> <p>A reference to the depth-stencil state (see <strong><see cref="T:SharpDX.Direct3D10.DepthStencilStateDescription" /></strong>).</p> </dd></param>
  647. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DepthStencilState::GetDesc']/*" />
  648. <msdn-id>bb173525</msdn-id>
  649. <unmanaged>void ID3D10DepthStencilState::GetDesc([Out] D3D10_DEPTH_STENCIL_DESC* pDesc)</unmanaged>
  650. <unmanaged-short>ID3D10DepthStencilState::GetDesc</unmanaged-short>
  651. </member>
  652. <member name="T:SharpDX.Direct3D10.DepthStencilView">
  653. <summary>
  654. <p>A depth-stencil-view interface accesses a texture resource during depth-stencil testing.</p>
  655. </summary>
  656. <remarks>
  657. <p>To create a depth-stencil view, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateDepthStencilView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.DepthStencilViewDescription},SharpDX.Direct3D10.DepthStencilView)" /></strong>.</p><p>To bind a depth-stencil view to the pipeline, call <strong><see cref="M:SharpDX.Direct3D10.OutputMergerStage.SetRenderTargets(System.Int32,SharpDX.Direct3D10.RenderTargetView[],SharpDX.Direct3D10.DepthStencilView)" /></strong>.</p>
  658. </remarks>
  659. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DepthStencilView']/*" />
  660. <msdn-id>bb173526</msdn-id>
  661. <unmanaged>ID3D10DepthStencilView</unmanaged>
  662. <unmanaged-short>ID3D10DepthStencilView</unmanaged-short>
  663. </member>
  664. <member name="M:SharpDX.Direct3D10.DepthStencilView.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Resource)">
  665. <summary>
  666. Creates a <see cref = "T:SharpDX.Direct3D10.DepthStencilView" /> for accessing resource data.
  667. </summary>
  668. <param name = "device">The device to use when creating this <see cref = "T:SharpDX.Direct3D10.DepthStencilView" />.</param>
  669. <param name = "resource">The resource that represents the render-target surface. This surface must have been created with the <see cref = "T:SharpDX.Direct3D10.BindFlags">DepthStencil</see> flag.</param>
  670. <unmanaged>ID3D10Device::CreateDepthStencilView</unmanaged>
  671. </member>
  672. <member name="M:SharpDX.Direct3D10.DepthStencilView.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.DepthStencilViewDescription)">
  673. <summary>
  674. Creates a <see cref = "T:SharpDX.Direct3D10.DepthStencilView" /> for accessing resource data.
  675. </summary>
  676. <param name = "device">The device to use when creating this <see cref = "T:SharpDX.Direct3D10.DepthStencilView" />.</param>
  677. <param name = "resource">The resource that represents the render-target surface. This surface must have been created with the <see cref = "T:SharpDX.Direct3D10.BindFlags">DepthStencil</see> flag.</param>
  678. <param name = "description">A structure describing the <see cref = "T:SharpDX.Direct3D10.DepthStencilView" /> to be created.</param>
  679. <unmanaged>ID3D10Device::CreateDepthStencilView</unmanaged>
  680. </member>
  681. <member name="M:SharpDX.Direct3D10.DepthStencilView.#ctor(System.IntPtr)">
  682. <summary>
  683. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.DepthStencilView"/> class.
  684. </summary>
  685. <param name="nativePtr">The native pointer.</param>
  686. </member>
  687. <member name="M:SharpDX.Direct3D10.DepthStencilView.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.DepthStencilView">
  688. <summary>
  689. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.DepthStencilView"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  690. </summary>
  691. <param name="nativePointer">The native pointer.</param>
  692. <returns>
  693. The result of the conversion.
  694. </returns>
  695. </member>
  696. <member name="P:SharpDX.Direct3D10.DepthStencilView.Description">
  697. <summary>
  698. <p>Get the depth-stencil view.</p>
  699. </summary>
  700. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DepthStencilView::GetDesc']/*" />
  701. <msdn-id>bb173527</msdn-id>
  702. <unmanaged>GetDesc</unmanaged>
  703. <unmanaged-short>GetDesc</unmanaged-short>
  704. <unmanaged>void ID3D10DepthStencilView::GetDesc([Out] D3D10_DEPTH_STENCIL_VIEW_DESC* pDesc)</unmanaged>
  705. </member>
  706. <member name="M:SharpDX.Direct3D10.DepthStencilView.GetDescription(SharpDX.Direct3D10.DepthStencilViewDescription@)">
  707. <summary>
  708. <p>Get the depth-stencil view.</p>
  709. </summary>
  710. <param name="descRef">No documentation.</param>
  711. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DepthStencilView::GetDesc']/*" />
  712. <msdn-id>bb173527</msdn-id>
  713. <unmanaged>void ID3D10DepthStencilView::GetDesc([Out] D3D10_DEPTH_STENCIL_VIEW_DESC* pDesc)</unmanaged>
  714. <unmanaged-short>ID3D10DepthStencilView::GetDesc</unmanaged-short>
  715. </member>
  716. <member name="T:SharpDX.Direct3D10.CommonShaderStage`1">
  717. <summary>
  718. Common Shader class. Provides a common set of methods for a Shader Stage.
  719. TODO: check if usage of abstract is not introducing an unacceptable overhead...
  720. </summary>
  721. <typeparam name = "T">Type of the shader</typeparam>
  722. </member>
  723. <member name="F:SharpDX.Direct3D10.CommonShaderStage`1.MaximumConstantBufferSlotCount">
  724. <summary>
  725. Maximum number of bindable constant buffers to a pipeline stage.
  726. </summary>
  727. </member>
  728. <member name="F:SharpDX.Direct3D10.CommonShaderStage`1.MaximumResourceSlotCount">
  729. <summary>
  730. Maximum number of bindable resources to a pipeline stage.
  731. </summary>
  732. </member>
  733. <member name="F:SharpDX.Direct3D10.CommonShaderStage`1.MaximumSamplerSlotCount">
  734. <summary>
  735. Maximum number of bindable samplers to a pipeline stage.
  736. </summary>
  737. </member>
  738. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.#ctor(System.IntPtr)">
  739. <summary>
  740. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.CommonShaderStage`1"/> class.
  741. </summary>
  742. <param name="pointer">The pointer.</param>
  743. </member>
  744. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.GetConstantBuffers(System.Int32,System.Int32)">
  745. <summary>
  746. Gets the constant buffers used by the shader stage.
  747. </summary>
  748. <param name = "startSlot">Index into the device's zero-based array from which to begin retrieving constant buffers.</param>
  749. <param name = "count">Number of buffers to retrieve.</param>
  750. <returns>An array of constant buffers.</returns>
  751. </member>
  752. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.GetSamplers(System.Int32,System.Int32)">
  753. <summary>
  754. Gets the sampler states used by the shader stage.
  755. </summary>
  756. <param name = "startSlot">Index into the device's zero-based array from which to begin retrieving samplers.</param>
  757. <param name = "count">Number of samplers to retrieve.</param>
  758. <returns>An array of sampler states.</returns>
  759. </member>
  760. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.GetShaderResources(System.Int32,System.Int32)">
  761. <summary>
  762. Gets the shader resources used by the shader stage.
  763. </summary>
  764. <param name = "startSlot">Index into the device's zero-based array from which to begin retrieving shader resources.</param>
  765. <param name = "count">Number of resources to retrieve.</param>
  766. <returns>An array of shader resources.</returns>
  767. </member>
  768. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.SetConstantBuffer(System.Int32,SharpDX.Direct3D10.Buffer)">
  769. <summary>
  770. Sets a single constant buffer to be used by the shader stage.
  771. </summary>
  772. <param name = "slot">Index into the device's zero-based array to which to set the constant buffer.</param>
  773. <param name = "constantBuffer">constant buffer to set</param>
  774. </member>
  775. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.SetSampler(System.Int32,SharpDX.Direct3D10.SamplerState)">
  776. <summary>
  777. Sets a single sampler to be used by the shader stage.
  778. </summary>
  779. <param name = "slot">Index into the device's zero-based array to which to set the sampler.</param>
  780. <param name = "sampler">sampler state to set</param>
  781. </member>
  782. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.SetShaderResource(System.Int32,SharpDX.Direct3D10.ShaderResourceView)">
  783. <summary>
  784. Sets a single shader resource to be used by the shader stage.
  785. </summary>
  786. <param name = "slot">Index into the device's zero-based array to which to set the resource.</param>
  787. <param name = "resourceView">Resource view to attach</param>
  788. </member>
  789. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.GetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])">
  790. <summary>
  791. Get the shader resources.
  792. </summary>
  793. <remarks>
  794. Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.
  795. </remarks>
  796. <param name = "startSlot">Index into the device's zero-based array to begin getting shader resources from (ranges from 0 to D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1).</param>
  797. <param name = "numViews">The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources (ranges from 0 to D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot).</param>
  798. <param name = "shaderResourceViewsRef">Array of {{shader resource view}} interfaces to be returned by the device.</param>
  799. <unmanaged>void PSGetShaderResources([In] UINT StartSlot,[In] UINT NumViews,[Out, Buffer] ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  800. </member>
  801. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.GetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])">
  802. <summary>
  803. Get an array of sampler states from the shader pipeline stage.
  804. </summary>
  805. <remarks>
  806. Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.
  807. </remarks>
  808. <param name = "startSlot">Index into a zero-based array to begin getting samplers from (ranges from 0 to D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1).</param>
  809. <param name = "numSamplers">Number of samplers to get from a device context. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot).</param>
  810. <param name = "samplersRef">Array of sampler-state interface pointers (see <see cref = "T:SharpDX.Direct3D10.SamplerState" />) to be returned by the device.</param>
  811. <unmanaged>void PSGetSamplers([In] UINT StartSlot,[In] UINT NumSamplers,[Out, Buffer] ID3D10SamplerState** ppSamplers)</unmanaged>
  812. </member>
  813. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.GetConstantBuffers(System.Int32,System.Int32,SharpDX.Direct3D10.Buffer[])">
  814. <summary>
  815. Get the constant buffers used by the shader pipeline stage.
  816. </summary>
  817. <remarks>
  818. Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.
  819. </remarks>
  820. <param name = "startSlot">Index into the device's zero-based array to begin retrieving constant buffers from (ranges from 0 to D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1).</param>
  821. <param name = "numBuffers">Number of buffers to retrieve (ranges from 0 to D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot).</param>
  822. <param name = "constantBuffersRef">Array of constant buffer interface pointers (see <see cref = "T:SharpDX.Direct3D10.Buffer" />) to be returned by the method.</param>
  823. <unmanaged>void PSGetConstantBuffers([In] UINT StartSlot,[In] UINT NumBuffers,[Out, Buffer] ID3D10Buffer** ppConstantBuffers)</unmanaged>
  824. </member>
  825. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])">
  826. <summary>
  827. Bind an array of shader resources to the shader stage.
  828. </summary>
  829. <remarks>
  830. If an overlapping resource view is already bound to an output slot, such as a render target, then this API will fill the destination shader resource slot with NULL.For information about creating shader-resource views, see <see cref = "M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" />. The method will hold a reference to the interfaces passed in. This differs from the device state behavior in Direct3D 10.
  831. </remarks>
  832. <param name = "startSlot">Index into the device's zero-based array to begin setting shader resources to (ranges from 0 to D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1).</param>
  833. <param name = "numViews">Number of shader resources to set. Up to a maximum of 128 slots are available for shader resources (ranges from 0 to D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot).</param>
  834. <param name = "shaderResourceViewsRef">Array of {{shader resource view}} interfaces to set to the device.</param>
  835. <unmanaged>void PSSetShaderResources([In] UINT StartSlot,[In] UINT NumViews,[In, Buffer] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  836. </member>
  837. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.SetShaderResources(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.ShaderResourceView})">
  838. <summary>
  839. Bind an array of shader resources to the shader stage.
  840. </summary>
  841. <remarks>
  842. If an overlapping resource view is already bound to an output slot, such as a render target, then this API will fill the destination shader resource slot with NULL.For information about creating shader-resource views, see <see cref = "M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" />. The method will hold a reference to the interfaces passed in. This differs from the device state behavior in Direct3D 10.
  843. </remarks>
  844. <param name = "startSlot">Index into the device's zero-based array to begin setting shader resources to (ranges from 0 to D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - 1).</param>
  845. <param name = "numViews">Number of shader resources to set. Up to a maximum of 128 slots are available for shader resources (ranges from 0 to D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT - StartSlot).</param>
  846. <param name = "shaderResourceViewsRef">Array of {{shader resource view}} interfaces to set to the device.</param>
  847. <unmanaged>void PSSetShaderResources([In] UINT StartSlot,[In] UINT NumViews,[In, Buffer] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  848. </member>
  849. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.SetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])">
  850. <summary>
  851. Set an array of sampler states to the shader pipeline stage.
  852. </summary>
  853. <remarks>
  854. Any sampler may be set to NULL; this invokes the default state, which is defined to be the following.StateDefault ValueFilterD3D10_FILTER_MIN_MAG_MIP_LINEARAddressUD3D10_TEXTURE_ADDRESS_CLAMPAddressVD3D10_TEXTURE_ADDRESS_CLAMPAddressWD3D10_TEXTURE_ADDRESS_CLAMPMipLODBias0MaxAnisotropy1ComparisonFuncD3D10_COMPARISON_NEVERBorderColor[0]1.0fBorderColor[1]1.0fBorderColor[2]1.0fBorderColor[3]1.0fMinLOD-FLT_MAXMaxLODFLT_MAX The method will hold a reference to the interfaces passed in. This differs from the device state behavior in Direct3D 10.
  855. </remarks>
  856. <param name = "startSlot">Index into the device's zero-based array to begin setting samplers to (ranges from 0 to D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1).</param>
  857. <param name = "numSamplers">Number of samplers in the array. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot).</param>
  858. <param name = "samplersRef">Pointer to an array of sampler-state interfaces (see <see cref = "T:SharpDX.Direct3D10.SamplerState" />). See Remarks.</param>
  859. <unmanaged>void PSSetSamplers([In] UINT StartSlot,[In] UINT NumSamplers,[In, Buffer] const ID3D10SamplerState** ppSamplers)</unmanaged>
  860. </member>
  861. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.SetSamplers(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.SamplerState})">
  862. <summary>
  863. Set an array of sampler states to the shader pipeline stage.
  864. </summary>
  865. <remarks>
  866. Any sampler may be set to NULL; this invokes the default state, which is defined to be the following.StateDefault ValueFilterD3D10_FILTER_MIN_MAG_MIP_LINEARAddressUD3D10_TEXTURE_ADDRESS_CLAMPAddressVD3D10_TEXTURE_ADDRESS_CLAMPAddressWD3D10_TEXTURE_ADDRESS_CLAMPMipLODBias0MaxAnisotropy1ComparisonFuncD3D10_COMPARISON_NEVERBorderColor[0]1.0fBorderColor[1]1.0fBorderColor[2]1.0fBorderColor[3]1.0fMinLOD-FLT_MAXMaxLODFLT_MAX The method will hold a reference to the interfaces passed in. This differs from the device state behavior in Direct3D 10.
  867. </remarks>
  868. <param name = "startSlot">Index into the device's zero-based array to begin setting samplers to (ranges from 0 to D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - 1).</param>
  869. <param name = "numSamplers">Number of samplers in the array. Each pipeline stage has a total of 16 sampler slots available (ranges from 0 to D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT - StartSlot).</param>
  870. <param name = "samplersRef">Pointer to an array of sampler-state interfaces (see <see cref = "T:SharpDX.Direct3D10.SamplerState" />). See Remarks.</param>
  871. <unmanaged>void PSSetSamplers([In] UINT StartSlot,[In] UINT NumSamplers,[In, Buffer] const ID3D10SamplerState** ppSamplers)</unmanaged>
  872. </member>
  873. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.SetConstantBuffers(System.Int32,System.Int32,SharpDX.Direct3D10.Buffer[])">
  874. <summary>
  875. Set the constant buffers used by the shader pipeline stage.
  876. </summary>
  877. <remarks>
  878. The method will hold a reference to the interfaces passed in. This differs from the device state behavior in Direct3D 10.
  879. </remarks>
  880. <param name = "startSlot">Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1).</param>
  881. <param name = "numBuffers">Number of buffers to set (ranges from 0 to D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot).</param>
  882. <param name = "constantBuffersRef">Array of constant buffers (see <see cref = "T:SharpDX.Direct3D10.Buffer" />) being given to the device.</param>
  883. <unmanaged>void PSSetConstantBuffers([In] UINT StartSlot,[In] UINT NumBuffers,[In, Buffer] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  884. </member>
  885. <member name="M:SharpDX.Direct3D10.CommonShaderStage`1.SetConstantBuffers(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.Buffer})">
  886. <summary>
  887. Set the constant buffers used by the shader pipeline stage.
  888. </summary>
  889. <remarks>
  890. The method will hold a reference to the interfaces passed in. This differs from the device state behavior in Direct3D 10.
  891. </remarks>
  892. <param name = "startSlot">Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1).</param>
  893. <param name = "numBuffers">Number of buffers to set (ranges from 0 to D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot).</param>
  894. <param name = "constantBuffersRef">Array of constant buffers (see <see cref = "T:SharpDX.Direct3D10.Buffer" />) being given to the device.</param>
  895. <unmanaged>void PSSetConstantBuffers([In] UINT StartSlot,[In] UINT NumBuffers,[In, Buffer] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  896. </member>
  897. <member name="T:SharpDX.Direct3D10.Device">
  898. <summary>
  899. <p>The device interface represents a virtual adapter for Direct3D 10.0; it is used to perform rendering and create Direct3D resources.</p>
  900. </summary>
  901. <remarks>
  902. <p>A device is created using <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>.</p>
  903. </remarks>
  904. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device']/*" />
  905. <msdn-id>bb173528</msdn-id>
  906. <unmanaged>ID3D10Device</unmanaged>
  907. <unmanaged-short>ID3D10Device</unmanaged-short>
  908. </member>
  909. <member name="M:SharpDX.Direct3D10.Device.#ctor(SharpDX.Direct3D10.DriverType)">
  910. <summary>
  911. Constructor for a D3D10 Device. See <see cref = "M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /> for more information.
  912. </summary>
  913. <param name = "driverType"></param>
  914. </member>
  915. <member name="M:SharpDX.Direct3D10.Device.#ctor(SharpDX.DXGI.Adapter)">
  916. <summary>
  917. Constructor for a D3D10 Device. See <see cref = "M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /> for more information.
  918. </summary>
  919. <param name = "adapter"></param>
  920. </member>
  921. <member name="M:SharpDX.Direct3D10.Device.#ctor(SharpDX.Direct3D10.DriverType,SharpDX.Direct3D10.DeviceCreationFlags)">
  922. <summary>
  923. Constructor for a D3D10 Device. See <see cref = "M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /> for more information.
  924. </summary>
  925. <param name = "driverType"></param>
  926. <param name = "flags"></param>
  927. </member>
  928. <member name="M:SharpDX.Direct3D10.Device.#ctor(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DeviceCreationFlags)">
  929. <summary>
  930. Constructor for a D3D10 Device. See <see cref = "M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /> for more information.
  931. </summary>
  932. <param name = "adapter"></param>
  933. <param name = "flags"></param>
  934. </member>
  935. <member name="M:SharpDX.Direct3D10.Device.CreateWithSwapChain(SharpDX.Direct3D10.DriverType,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.DXGI.SwapChainDescription,SharpDX.Direct3D10.Device@,SharpDX.DXGI.SwapChain@)">
  936. <summary>
  937. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Device" /> class along with a new <see cref = "T:SharpDX.DXGI.SwapChain" /> used for rendering.
  938. </summary>
  939. <param name = "driverType">The type of device to create.</param>
  940. <param name = "flags">A list of runtime layers to enable.</param>
  941. <param name = "swapChainDescription">Details used to create the swap chain.</param>
  942. <param name = "device">When the method completes, contains the created device instance.</param>
  943. <param name = "swapChain">When the method completes, contains the created swap chain instance.</param>
  944. <returns>A <see cref = "T:SharpDX.Result" /> object describing the result of the operation.</returns>
  945. </member>
  946. <member name="M:SharpDX.Direct3D10.Device.CreateWithSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.DXGI.SwapChainDescription,SharpDX.Direct3D10.Device@,SharpDX.DXGI.SwapChain@)">
  947. <summary>
  948. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Device" /> class along with a new <see cref = "T:SharpDX.DXGI.SwapChain" /> used for rendering.
  949. </summary>
  950. <param name = "adapter">The video adapter on which the device should be created.</param>
  951. <param name = "flags">A list of runtime layers to enable.</param>
  952. <param name = "swapChainDescription">Details used to create the swap chain.</param>
  953. <param name = "device">When the method completes, contains the created device instance.</param>
  954. <param name = "swapChain">When the method completes, contains the created swap chain instance.</param>
  955. <returns>A <see cref = "T:SharpDX.Result" /> object describing the result of the operation.</returns>
  956. </member>
  957. <member name="M:SharpDX.Direct3D10.Device.CreateWithSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.DXGI.SwapChainDescription,SharpDX.Direct3D10.Device@,SharpDX.DXGI.SwapChain@)">
  958. <summary>
  959. This overload has been deprecated. Use one of the alternatives that does not take both an adapter and a driver type.
  960. </summary>
  961. </member>
  962. <member name="M:SharpDX.Direct3D10.Device.GetCounterMetadata(SharpDX.Direct3D10.CounterDescription)">
  963. <summary>
  964. Get the type, name, units of measure, and a description of an existing counter.
  965. </summary>
  966. <param name="counterDescription">The counter description.</param>
  967. <returns>Description of the counter</returns>
  968. </member>
  969. <member name="M:SharpDX.Direct3D10.Device.GetPredication(System.Boolean@)">
  970. <summary>
  971. Get the rendering predicate state.
  972. </summary>
  973. <remarks>
  974. Any returned interfaces will have their reference count incremented by one. Applications should call {{IUnknown::Release}} on the returned interfaces when they are no longer needed to avoid memory leaks.
  975. </remarks>
  976. <param name="predicateValue">a boolean to fill with the predicate comparison value. FALSE upon device creation. </param>
  977. <returns>a reference to a predicate (see <see cref="T:SharpDX.Direct3D10.Predicate"/>).</returns>
  978. <unmanaged>void ID3D10Device::GetPredication([Out, Optional] ID3D10Predicate** ppPredicate,[Out, Optional] BOOL* pPredicateValue)</unmanaged>
  979. </member>
  980. <member name="M:SharpDX.Direct3D10.Device.OpenSharedResource``1(System.IntPtr)">
  981. <summary>
  982. Give a device access to a shared resource created on a different Direct3d device.
  983. </summary>
  984. <typeparam name="T">The type of the resource we are gaining access to.</typeparam>
  985. <param name="resourceHandle">A resource handle. See remarks.</param>
  986. <returns>
  987. This method returns a reference to the resource we are gaining access to.
  988. </returns>
  989. <remarks>
  990. To share a resource between two Direct3D 10 devices the resource must have been created with the <see cref="F:SharpDX.Direct3D10.ResourceOptionFlags.Shared"/> flag, if it was created using the ID3D10Device interface. If it was created using the IDXGIDevice interface, then the resource is always shared. The REFIID, or GUID, of the interface to the resource can be obtained by using the __uuidof() macro. For example, __uuidof(ID3D10Buffer) will get the GUID of the interface to a buffer resource. When sharing a resource between two Direct3D 10 devices the unique handle of the resource can be obtained by querying the resource for the <see cref="T:SharpDX.DXGI.Resource"/> interface and then calling {{GetSharedHandle}}.
  991. <code> IDXGIResource* pOtherResource(NULL);
  992. hr = pOtherDeviceResource-&gt;QueryInterface( __uuidof(IDXGIResource), (void**)&amp;pOtherResource );
  993. HANDLE sharedHandle;
  994. pOtherResource-&gt;GetSharedHandle(&amp;sharedHandle); </code>
  995. The only resources that can be shared are 2D non-mipmapped textures. To share a resource between a Direct3D 9 device and a Direct3D 10 device the texture must have been created using the pSharedHandle argument of {{CreateTexture}}. The shared Direct3D 9 handle is then passed to OpenSharedResource in the hResource argument. The following code illustrates the method calls involved.
  996. <code> sharedHandle = NULL; // must be set to NULL to create, can use a valid handle here to open in D3D9
  997. pDevice9-&gt;CreateTexture(..., pTex2D_9, &amp;sharedHandle);
  998. ...
  999. pDevice10-&gt;OpenSharedResource(sharedHandle, __uuidof(ID3D10Resource), (void**)(&amp;tempResource10));
  1000. tempResource10-&gt;QueryInterface(__uuidof(ID3D10Texture2D), (void**)(&amp;pTex2D_10));
  1001. tempResource10-&gt;Release();
  1002. // now use pTex2D_10 with pDevice10 </code>
  1003. Textures being shared from D3D9 to D3D10 have the following restrictions. Textures must be 2D Only 1 mip level is allowed Texture must have default usage Texture must be write only MSAA textures are not allowed Bind flags must have SHADER_RESOURCE and RENDER_TARGET set Only R10G10B10A2_UNORM, R16G16B16A16_FLOAT and R8G8B8A8_UNORM formats are allowed If a shared texture is updated on one device <see cref="M:SharpDX.Direct3D10.Device.Flush"/> must be called on that device.
  1004. </remarks>
  1005. <unmanaged>HRESULT ID3D10Device::OpenSharedResource([In] void* hResource,[In] GUID* ReturnedInterface,[Out, Optional] void** ppResource)</unmanaged>
  1006. </member>
  1007. <member name="M:SharpDX.Direct3D10.Device.CopyResource(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.Resource)">
  1008. <summary>
  1009. Copy the entire contents of the source resource to the destination resource using the GPU.
  1010. </summary>
  1011. <remarks>
  1012. This method is unusual in that it causes the GPU to perform the copy operation (similar to a memcpy by the CPU). As a result, it has a few restrictions designed for improving performance. For instance, the source and destination resources: Must be different resources. Must be the same {{type}}. Must have identical dimensions (including width, height, depth, and size as appropriate). Will only be copied. CopyResource does not support any stretch, color key, blend, or format conversions. Must have compatible {{formats}}, which means the formats must be identical or at least from the same type group. For example, a DXGI_FORMAT_R32G32B32_FLOAT texture can be copied to an DXGI_FORMAT_R32G32B32_UINT texture since both of these formats are in the DXGI_FORMAT_R32G32B32_TYPELESS group. May not be currently {{mapped}}. {{Immutable}}, and {{depth-stencil}} resources cannot be used as a destination. Resources created with {{multisampling capability}} cannot be used as either a source or destination. The method is an asynchronous call which may be added to the command-buffer queue. This attempts to remove pipeline stalls that may occur when copying data. See {{performance considerations}} for more details. An application that only needs to copy a portion of the data in a resource should use <see cref="M:SharpDX.Direct3D10.Device.CopySubresourceRegion_(SharpDX.Direct3D10.Resource,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D10.Resource,System.Int32,System.Nullable{SharpDX.Direct3D10.ResourceRegion})"/> instead. Differences between Direct3D 10 and Direct3D 10.1: Direct3D 10.1 enables depth-stencil resources to be used as either a source or destination. Direct3D 10.1 enables multisampled resources to be used as source and destination only if both source and destination have identical multisampled count and quality. If source and destination differ in multisampled count and quality or if the source is multisampled and the destination is not multisampled (or vice versa), the call to ID3D10Device::CopyResource fails. It is possible to copy between prestructured+typed resources and block-compressed textures. See {{Format Conversion using Direct3D 10.1}}. ?
  1013. </remarks>
  1014. <param name="source">A reference to the source resource (see <see cref="T:SharpDX.Direct3D10.Resource"/>). </param>
  1015. <param name="destination">A reference to the destination resource (see <see cref="T:SharpDX.Direct3D10.Resource"/>). </param>
  1016. <unmanaged>void ID3D10Device::CopyResource([In] ID3D10Resource* pDstResource,[In] ID3D10Resource* pSrcResource)</unmanaged>
  1017. </member>
  1018. <member name="M:SharpDX.Direct3D10.Device.CopySubresourceRegion(SharpDX.Direct3D10.Resource,System.Int32,System.Nullable{SharpDX.Direct3D10.ResourceRegion},SharpDX.Direct3D10.Resource,System.Int32,System.Int32,System.Int32,System.Int32)">
  1019. <summary>
  1020. Copy a region from a source resource to a destination resource.
  1021. </summary>
  1022. <remarks>
  1023. The source box must be within the size of the source resource. The destination location is an absolute value (not a relative value). The destination location can be offset from the source location; however, the size of the region to copy (including the destination location) must fit in the destination resource. If the resources are buffers, all coordinates are in bytes; if the resources are textures, all coordinates are in texels. {{D3D10CalcSubresource}} is a helper function for calculating subresource indexes. CopySubresourceRegion performs the copy on the GPU (similar to a memcpy by the CPU). As a consequence, the source and destination resources must meet the following criteria: Must be different subresources (although they can be from the same resource). Must be the same {{type}}. Must have compatible {{formats}} (the formats must either be identical or be from the same type group). For example, a DXGI_FORMAT_R32G32B32_FLOAT texture can be copied to an DXGI_FORMAT_R32G32B32_UINT texture because both of these formats are in the DXGI_FORMAT_R32G32B32_TYPELESS group. May not be currently {{mapped}}. CopySubresourceRegion supports only copy; it does not support any stretch, color key, blend, or format conversions. An application that needs to copy an entire resource should use <see cref="M:SharpDX.Direct3D10.Device.CopyResource_(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.Resource)"/> instead. CopySubresourceRegion is an asynchronous call that the runtime can add to the command-buffer queue. This asynchronous behavior attempts to remove pipeline stalls that may occur when copying data. See {{performance considerations}} for more details. Differences between Direct3D 10 and Direct3D 10.1: Direct3D 10 has the following limitations: You cannot use a depth-stencil resource as a destination. You cannot use an immutable resource as a destination. You cannot use a multisampled texture as either a source or a destination Direct3D 10.1 has added support for the following features: You can use a depth-stencil buffer as a source or a destination. You can use multisampled resources as source and destination only if both source and destination have identical multisampled count and quality. If source and destination differ in multisampled count and quality or if the source is multisampled and the destination is not multisampled (or vice versa), the call to ID3D10Device::CopySubresourceRegion fails. You can copy between uncompressed and compressed resources. During copy, the format conversions that are specified in {{Format Conversion using Direct3D 10.1}} are supported automatically. The uncompressed resource must be at least prestructured, and typed. You must also account for the difference between the virtual and the physical size of the mipmap levels. ? Note??If you use CopySubresourceRegion with a depth-stencil buffer or a multisampled resource, you must copy the whole subresource. You must also pass 0 to the DstX, DstY, and DstZ parameters and NULL to the pSrcBox parameter. In addition, source and destination resources, which are represented by the pSrcResource and pDstResource parameters respectively, must have identical sample count values. Example The following code snippet copies a box (located at (120,100),(200,220)) from a source texture into a region (130,120),(210,240) in a destination texture.
  1024. <code> D3D10_BOX sourceRegion;
  1025. sourceRegion.left = 120;
  1026. sourceRegion.right = 200;
  1027. sourceRegion.top = 100;
  1028. sourceRegion.bottom = 220;
  1029. sourceRegion.front = 0;
  1030. sourceRegion.back = 1; pd3dDevice-&gt;CopySubresourceRegion( pDestTexture, 0, 130, 120, 0, pSourceTexture, 0, &amp;sourceRegion ); </code>
  1031. Notice that, for a 2D texture, front and back are always set to 0 and 1 respectively.
  1032. </remarks>
  1033. <param name="source">A reference to the source resource (see <see cref="T:SharpDX.Direct3D10.Resource"/>). </param>
  1034. <param name="sourceSubresource">index of the source. </param>
  1035. <param name="sourceRegion">A 3D box (see <see cref="T:SharpDX.Direct3D10.ResourceRegion"/>) that defines the source subresources that can be copied. If NULL, the entire source subresource is copied. The box must fit within the source resource. </param>
  1036. <param name="destination">A reference to the destination resource (see <see cref="T:SharpDX.Direct3D10.Resource"/>). </param>
  1037. <param name="destinationSubResource">index of the destination. </param>
  1038. <param name="dstX">The x coordinate of the upper left corner of the destination region. </param>
  1039. <param name="dstY">The y coordinate of the upper left corner of the destination region. </param>
  1040. <param name="dstZ">The z coordinate of the upper left corner of the destination region. For a 1D or 2D subresource, this must be zero. </param>
  1041. <unmanaged>void ID3D10Device::CopySubresourceRegion([In] ID3D10Resource* pDstResource,[In] int DstSubresource,[In] int DstX,[In] int DstY,[In] int DstZ,[In] ID3D10Resource* pSrcResource,[In] int SrcSubresource,[In, Optional] const D3D10_BOX* pSrcBox)</unmanaged>
  1042. </member>
  1043. <member name="M:SharpDX.Direct3D10.Device.ResolveSubresource(SharpDX.Direct3D10.Resource,System.Int32,SharpDX.Direct3D10.Resource,System.Int32,SharpDX.DXGI.Format)">
  1044. <summary>
  1045. Copy a multisampled resource into a non-multisampled resource. This API is most useful when re-using the resulting render target of one render pass as an input to a second render pass.
  1046. </summary>
  1047. <remarks>
  1048. Both the source and destination resources must be the same {{resource type}} and have the same dimensions. The source and destination must have compatible formats. There are three scenarios for this: ScenarioRequirements Source and destination are prestructured and typedBoth the source and destination must have identical formats and that format must be specified in the Format parameter. One resource is prestructured and typed and the other is prestructured and typelessThe typed resource must have a format that is compatible with the typeless resource (i.e. the typed resource is DXGI_FORMAT_R32_FLOAT and the typeless resource is DXGI_FORMAT_R32_TYPELESS). The format of the typed resource must be specified in the Format parameter. Source and destination are prestructured and typelessBoth the source and destination must have the same typeless format (i.e. both must have DXGI_FORMAT_R32_TYPELESS), and the Format parameter must specify a format that is compatible with the source and destination (i.e. if both are DXGI_FORMAT_R32_TYPELESS then DXGI_FORMAT_R32_FLOAT or DXGI_FORMAT_R32_UINT could be specified in the Format parameter). ?
  1049. </remarks>
  1050. <param name="source">Source resource. Must be multisampled. </param>
  1051. <param name="sourceSubresource">The source subresource of the source resource. </param>
  1052. <param name="destination">Destination resource. Must be a created with the <see cref="F:SharpDX.Direct3D10.ResourceUsage.Default"/> flag and be single-sampled. See <see cref="T:SharpDX.Direct3D10.Resource"/>. </param>
  1053. <param name="destinationSubresource">A zero-based index, that identifies the destination subresource. See {{D3D10CalcSubresource}} for more details. </param>
  1054. <param name="format">that indicates how the multisampled resource will be resolved to a single-sampled resource. See remarks. </param>
  1055. <unmanaged>void ID3D10Device::ResolveSubresource([In] ID3D10Resource* pDstResource,[In] int DstSubresource,[In] ID3D10Resource* pSrcResource,[In] int SrcSubresource,[In] DXGI_FORMAT Format)</unmanaged>
  1056. </member>
  1057. <member name="M:SharpDX.Direct3D10.Device.UpdateSubresource``1(``0@,SharpDX.Direct3D10.Resource,System.Int32,System.Int32,System.Int32)">
  1058. <summary>
  1059. Copies data from the CPU to to a non-mappable subresource region.
  1060. </summary>
  1061. <typeparam name="T">Type of the data to upload</typeparam>
  1062. <param name="data">A reference to the data to upload.</param>
  1063. <param name="resource">The destination resource.</param>
  1064. <param name="subresource">The destination subresource.</param>
  1065. <param name="rowPitch">The row pitch.</param>
  1066. <param name="depthPitch">The depth pitch.</param>
  1067. </member>
  1068. <member name="M:SharpDX.Direct3D10.Device.UpdateSubresource``1(``0[],SharpDX.Direct3D10.Resource,System.Int32,System.Int32,System.Int32)">
  1069. <summary>
  1070. Copies data from the CPU to to a non-mappable subresource region.
  1071. </summary>
  1072. <typeparam name="T">Type of the data to upload</typeparam>
  1073. <param name="data">A reference to the data to upload.</param>
  1074. <param name="resource">The destination resource.</param>
  1075. <param name="subresource">The destination subresource.</param>
  1076. <param name="rowPitch">The row pitch.</param>
  1077. <param name="depthPitch">The depth pitch.</param>
  1078. </member>
  1079. <member name="M:SharpDX.Direct3D10.Device.UpdateSubresource(SharpDX.DataBox,SharpDX.Direct3D10.Resource,System.Int32)">
  1080. <summary>
  1081. Copies data from the CPU to to a non-mappable subresource region.
  1082. </summary>
  1083. <param name="source">The source data.</param>
  1084. <param name="resource">The destination resource.</param>
  1085. <param name="subresource">The destination subresource.</param>
  1086. </member>
  1087. <member name="M:SharpDX.Direct3D10.Device.UpdateSubresource(SharpDX.DataBox,SharpDX.Direct3D10.Resource,System.Int32,SharpDX.Direct3D10.ResourceRegion)">
  1088. <summary>
  1089. Copies data from the CPU to to a non-mappable subresource region.
  1090. </summary>
  1091. <param name="source">The source data.</param>
  1092. <param name="resource">The destination resource.</param>
  1093. <param name="subresource">The destination subresource.</param>
  1094. <param name="region">The destination region within the resource.</param>
  1095. </member>
  1096. <member name="P:SharpDX.Direct3D10.Device.CreationFlags">
  1097. <summary>
  1098. Get the flags used during the call to create the device with <see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)"/>.
  1099. </summary>
  1100. <returns>A bitfield containing the flags used to create the device. See <see cref="T:SharpDX.Direct3D10.DeviceCreationFlags"/>. </returns>
  1101. <unmanaged>int ID3D10Device::GetCreationFlags()</unmanaged>
  1102. </member>
  1103. <member name="P:SharpDX.Direct3D10.Device.DebugName">
  1104. <summary>
  1105. Gets or sets the debug-name for this object.
  1106. </summary>
  1107. <value>
  1108. The debug name.
  1109. </value>
  1110. </member>
  1111. <member name="M:SharpDX.Direct3D10.Device.#ctor(System.IntPtr)">
  1112. <summary>
  1113. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Device"/> class.
  1114. </summary>
  1115. <param name="nativePtr">The native pointer.</param>
  1116. </member>
  1117. <member name="M:SharpDX.Direct3D10.Device.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Device">
  1118. <summary>
  1119. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Device"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  1120. </summary>
  1121. <param name="nativePointer">The native pointer.</param>
  1122. <returns>
  1123. The result of the conversion.
  1124. </returns>
  1125. </member>
  1126. <member name="M:SharpDX.Direct3D10.Device.NativePointerUpdated(System.IntPtr)">
  1127. <summary>Update nested inner interfaces pointer</summary>
  1128. </member>
  1129. <member name="P:SharpDX.Direct3D10.Device.VertexShader">
  1130. <summary>Inner interface giving access to VertexShaderStage methods. </summary>
  1131. </member>
  1132. <member name="P:SharpDX.Direct3D10.Device.PixelShader">
  1133. <summary>Inner interface giving access to PixelShaderStage methods. </summary>
  1134. </member>
  1135. <member name="P:SharpDX.Direct3D10.Device.InputAssembler">
  1136. <summary>Inner interface giving access to InputAssemblerStage methods. </summary>
  1137. </member>
  1138. <member name="P:SharpDX.Direct3D10.Device.GeometryShader">
  1139. <summary>Inner interface giving access to GeometryShaderStage methods. </summary>
  1140. </member>
  1141. <member name="P:SharpDX.Direct3D10.Device.OutputMerger">
  1142. <summary>Inner interface giving access to OutputMergerStage methods. </summary>
  1143. </member>
  1144. <member name="P:SharpDX.Direct3D10.Device.StreamOutput">
  1145. <summary>Inner interface giving access to StreamOutputStage methods. </summary>
  1146. </member>
  1147. <member name="P:SharpDX.Direct3D10.Device.Rasterizer">
  1148. <summary>Inner interface giving access to RasterizerStage methods. </summary>
  1149. </member>
  1150. <member name="P:SharpDX.Direct3D10.Device.DeviceRemovedReason">
  1151. <summary>
  1152. <p>Get the reason why the device was removed.</p>
  1153. </summary>
  1154. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GetDeviceRemovedReason']/*" />
  1155. <msdn-id>bb173571</msdn-id>
  1156. <unmanaged>GetDeviceRemovedReason</unmanaged>
  1157. <unmanaged-short>GetDeviceRemovedReason</unmanaged-short>
  1158. <unmanaged>HRESULT ID3D10Device::GetDeviceRemovedReason()</unmanaged>
  1159. </member>
  1160. <member name="P:SharpDX.Direct3D10.Device.ExceptionMode">
  1161. <summary>
  1162. <p>Get or sets the exception-mode flags.</p>
  1163. </summary>
  1164. <remarks>
  1165. <p>An exception-mode flag is used to elevate an error condition to a non-continuable exception. </p>
  1166. </remarks>
  1167. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GetExceptionMode']/*" />
  1168. <msdn-id>bb173572</msdn-id>
  1169. <unmanaged>GetExceptionMode / SetExceptionMode</unmanaged>
  1170. <unmanaged-short>GetExceptionMode</unmanaged-short>
  1171. <unmanaged>unsigned int ID3D10Device::GetExceptionMode()</unmanaged>
  1172. </member>
  1173. <member name="M:SharpDX.Direct3D10.Device.DrawIndexed(System.Int32,System.Int32,System.Int32)">
  1174. <summary>
  1175. <p>Draw indexed, non-instanced primitives.</p>
  1176. </summary>
  1177. <param name="indexCount"><dd> <p>Number of indices to draw.</p> </dd></param>
  1178. <param name="startIndexLocation"><dd> <p>Index of the first index to use when accesssing the vertex buffer; begin at <em>StartIndexLocation</em> to index vertices from the vertex buffer.</p> </dd></param>
  1179. <param name="baseVertexLocation"><dd> <p>Offset from the start of the vertex buffer to the first vertex.</p> </dd></param>
  1180. <remarks>
  1181. <p>A draw API submits work to the rendering pipeline.</p><p>If the sum of both indices is negative, the result of the function call is undefined.</p>
  1182. </remarks>
  1183. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::DrawIndexed']/*" />
  1184. <msdn-id>bb173565</msdn-id>
  1185. <unmanaged>void ID3D10Device::DrawIndexed([In] unsigned int IndexCount,[In] unsigned int StartIndexLocation,[In] int BaseVertexLocation)</unmanaged>
  1186. <unmanaged-short>ID3D10Device::DrawIndexed</unmanaged-short>
  1187. </member>
  1188. <member name="M:SharpDX.Direct3D10.Device.Draw(System.Int32,System.Int32)">
  1189. <summary>
  1190. <p>Draw non-indexed, non-instanced primitives.</p>
  1191. </summary>
  1192. <param name="vertexCount"><dd> <p>Number of vertices to draw.</p> </dd></param>
  1193. <param name="startVertexLocation"><dd> <p>Index of the first vertex, which is usually an offset in a vertex buffer; it could also be used as the first vertex id generated for a shader parameter marked with the <strong>SV_TargetId</strong>?system-value semantic.</p> </dd></param>
  1194. <remarks>
  1195. <p>A draw API submits work to the rendering pipeline.</p><p>The vertex data for a draw call normally comes from a vertex buffer that is bound to the pipeline. However, you could also provide the vertex data from a shader that has vertex data marked with the <strong>SV_VertexId</strong>?system-value semantic.</p>
  1196. </remarks>
  1197. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::Draw']/*" />
  1198. <msdn-id>bb173563</msdn-id>
  1199. <unmanaged>void ID3D10Device::Draw([In] unsigned int VertexCount,[In] unsigned int StartVertexLocation)</unmanaged>
  1200. <unmanaged-short>ID3D10Device::Draw</unmanaged-short>
  1201. </member>
  1202. <member name="M:SharpDX.Direct3D10.Device.DrawIndexedInstanced(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  1203. <summary>
  1204. <p>Draw indexed, instanced primitives.</p>
  1205. </summary>
  1206. <param name="indexCountPerInstance"><dd> <p>Size of the index buffer used in each instance.</p> </dd></param>
  1207. <param name="instanceCount"><dd> <p>Number of instances to draw.</p> </dd></param>
  1208. <param name="startIndexLocation"><dd> <p>Index of the first index.</p> </dd></param>
  1209. <param name="baseVertexLocation"><dd> <p>Index of the first vertex. The index is signed, which allows a negative index. If the negative index plus the index value from the index buffer are less than 0, the result is undefined.</p> </dd></param>
  1210. <param name="startInstanceLocation"><dd> <p>Index of the first instance.</p> </dd></param>
  1211. <remarks>
  1212. <p>A draw API submits work to the rendering pipeline.</p><p>Instancing may extend performance by reusing the same geometry to draw multiple objects in a scene. One example of instancing could be to draw the same object with different positions and colors. Indexing requires multiple vertex buffers: at least one for per-vertex data and a second buffer for per-instance data. For an example of instancing, see the Instancing10 Sample.</p>
  1213. </remarks>
  1214. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::DrawIndexedInstanced']/*" />
  1215. <msdn-id>bb173566</msdn-id>
  1216. <unmanaged>void ID3D10Device::DrawIndexedInstanced([In] unsigned int IndexCountPerInstance,[In] unsigned int InstanceCount,[In] unsigned int StartIndexLocation,[In] int BaseVertexLocation,[In] unsigned int StartInstanceLocation)</unmanaged>
  1217. <unmanaged-short>ID3D10Device::DrawIndexedInstanced</unmanaged-short>
  1218. </member>
  1219. <member name="M:SharpDX.Direct3D10.Device.DrawInstanced(System.Int32,System.Int32,System.Int32,System.Int32)">
  1220. <summary>
  1221. <p>Draw non-indexed, instanced primitives.</p>
  1222. </summary>
  1223. <param name="vertexCountPerInstance"><dd> <p>Number of vertices to draw.</p> </dd></param>
  1224. <param name="instanceCount"><dd> <p>Number of instances to draw.</p> </dd></param>
  1225. <param name="startVertexLocation"><dd> <p>Index of the first vertex.</p> </dd></param>
  1226. <param name="startInstanceLocation"><dd> <p>Index of the first instance.</p> </dd></param>
  1227. <remarks>
  1228. <p>A draw API submits work to the rendering pipeline.</p><p>Instancing may extend performance by reusing the same geometry to draw multiple objects in a scene. One example of instancing could be to draw the same object with different positions and colors. For an example of instancing, see the Instancing10 Sample.</p><p>The vertex data for an instanced draw call normally comes from a vertex buffer that is bound to the pipeline. However, you could also provide the vertex data from a shader that has instanced data identified with a system-value semantic (SV_InstanceID).</p>
  1229. </remarks>
  1230. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::DrawInstanced']/*" />
  1231. <msdn-id>bb173567</msdn-id>
  1232. <unmanaged>void ID3D10Device::DrawInstanced([In] unsigned int VertexCountPerInstance,[In] unsigned int InstanceCount,[In] unsigned int StartVertexLocation,[In] unsigned int StartInstanceLocation)</unmanaged>
  1233. <unmanaged-short>ID3D10Device::DrawInstanced</unmanaged-short>
  1234. </member>
  1235. <member name="M:SharpDX.Direct3D10.Device.SetPredication(SharpDX.Direct3D10.Predicate,SharpDX.Mathematics.Interop.RawBool)">
  1236. <summary>
  1237. <p>Set a rendering predicate.</p>
  1238. </summary>
  1239. <param name="predicateRef"><dd> <p>Pointer to a predicate (see <strong><see cref="T:SharpDX.Direct3D10.Predicate" /></strong>). A <strong><c>null</c></strong> value indicates "no" predication; in this case, the value of PredicateValue is irrelevent but will be preserved for <strong><see cref="M:SharpDX.Direct3D10.Device.GetPredication(System.Boolean@)" /></strong>.</p> </dd></param>
  1240. <param name="predicateValue"><dd> <p>If <strong>TRUE</strong>, rendering will be affected by when the predicate's conditions are met. If <strong><see cref="F:SharpDX.Result.False" /></strong>, rendering will be affected when the conditions are not met.</p> </dd></param>
  1241. <remarks>
  1242. <p>The predicate must be in the "issued" or "signaled" state to be used for predication. While the predicate is set for predication, calls to <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.Begin" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong> are invalid.</p><p>This method is used to denote that subsequent rendering and resource manipulation commands are not actually performed if the resulting Predicate data of the Predicate is equal to the PredicateValue. However, some Predicates are only hints, so they may not actually prevent operations from being performed. </p><p>The primary usefulness of Predication is to allow an application to issue graphics commands without taking the performance hit of spinning, waiting for <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> to return. So, Predication can occur while <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> returns S_FALSE. Another way to think of it: an application can also use Predication as a fallback, if it is possible that <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> returns S_FALSE. If <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> returns <see cref="F:SharpDX.Result.Ok" />, the application can skip calling the graphics commands manually with it's own application logic.</p>
  1243. </remarks>
  1244. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::SetPredication']/*" />
  1245. <msdn-id>bb173615</msdn-id>
  1246. <unmanaged>void ID3D10Device::SetPredication([In, Optional] ID3D10Predicate* pPredicate,[In] BOOL PredicateValue)</unmanaged>
  1247. <unmanaged-short>ID3D10Device::SetPredication</unmanaged-short>
  1248. </member>
  1249. <member name="M:SharpDX.Direct3D10.Device.DrawAuto">
  1250. <summary>
  1251. <p>Draw geometry of an unknown size that was created by the geometry shader stage. See remarks.</p>
  1252. </summary>
  1253. <remarks>
  1254. <p>A draw API submits work to the rendering pipeline.</p><p>After data has been streamed out to SO stage buffers, those buffers can be again bound to the Input Assembler stage at input slot 0 and DrawAuto will draw them without the application needing to know the amount of data that was written to the buffers. A measurement of the amount of data written to the SO stage buffers is maintained internally when the data is streamed out. This means that the CPU does not need to fetch the measurement before re-binding the data that was streamed as input data. Although this amount is tracked internally, it is still the responsibility of applications to use input layouts to describe the format of the data in the SO stage buffers so that the layouts are available when the buffers are again bound to the input assembler.</p><p>The following diagram shows the DrawAuto process.</p><p /><p>Calling DrawAuto does not change the state of the streaming-output buffers that were bound again as inputs.</p><p>DrawAuto only works when drawing with one input buffer bound as an input to the IA stage at slot 0. Applications must create the SO buffer resource with both binding flags, <strong><see cref="F:SharpDX.Direct3D10.BindFlags.VertexBuffer" /></strong> and <strong><see cref="F:SharpDX.Direct3D10.BindFlags.StreamOutput" /></strong>.</p><p>This API does not support indexing or instancing.</p><p>If an application needs to retrieve the size of the streaming-output buffer, it can query for statistics on streaming output by using <strong><see cref="F:SharpDX.Direct3D10.QueryType.StreamOutputStatistics" /></strong>.</p><p>Example of using DrawAuto can be found in the ParticlesGS Sample and PipesGS Sample.</p>
  1255. </remarks>
  1256. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::DrawAuto']/*" />
  1257. <msdn-id>bb173564</msdn-id>
  1258. <unmanaged>void ID3D10Device::DrawAuto()</unmanaged>
  1259. <unmanaged-short>ID3D10Device::DrawAuto</unmanaged-short>
  1260. </member>
  1261. <member name="M:SharpDX.Direct3D10.Device.CopySubresourceRegion_(SharpDX.Direct3D10.Resource,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D10.Resource,System.Int32,System.Nullable{SharpDX.Direct3D10.ResourceRegion})">
  1262. <summary>
  1263. <p>Copy a region from a source resource to a destination resource.</p>
  1264. </summary>
  1265. <param name="dstResourceRef"><dd> <p>A reference to the destination resource (see <strong><see cref="T:SharpDX.Direct3D10.Resource" /></strong>).</p> </dd></param>
  1266. <param name="dstSubresource"><dd> <p> Subresource index of the destination.</p> </dd></param>
  1267. <param name="dstX"><dd> <p>The x coordinate of the upper left corner of the destination region.</p> </dd></param>
  1268. <param name="dstY"><dd> <p>The y coordinate of the upper left corner of the destination region.</p> </dd></param>
  1269. <param name="dstZ"><dd> <p>The z coordinate of the upper left corner of the destination region. For a 1D or 2D subresource, this must be zero.</p> </dd></param>
  1270. <param name="srcResourceRef"><dd> <p>A reference to the source resource (see <strong><see cref="T:SharpDX.Direct3D10.Resource" /></strong>).</p> </dd></param>
  1271. <param name="srcSubresource"><dd> <p> Subresource index of the source.</p> </dd></param>
  1272. <param name="srcBoxRef"><dd> <p>A 3D box (see <strong><see cref="T:SharpDX.Direct3D10.ResourceRegion" /></strong>) that defines the source subresource that can be copied. If <strong><c>null</c></strong>, the entire source subresource is copied. The box must fit within the source resource.</p> <p>An empty box results in a no-op. A box is empty if the top value is greater than or equal to the bottom value, or the left value is greater than or equal to the right value, or the front value is greater than or equal to the back value. When the box is empty, <strong>CopySubresourceRegion</strong> doesn't perform a copy operation.</p> </dd></param>
  1273. <remarks>
  1274. <p>The source box must be within the size of the source resource. The destination location is an absolute value (not a relative value). The destination location can be offset from the source location; however, the size of the region to copy (including the destination location) must fit in the destination resource.</p><p>If the resources are buffers, all coordinates are in bytes; if the resources are textures, all coordinates are in texels. </p><p> <strong>D3D10CalcSubresource</strong> is a helper function for calculating subresource indexes.</p><p><strong>CopySubresourceRegion</strong> performs the copy on the GPU (similar to a memcpy by the CPU). As a consequence, the source and destination resources must meet the following criteria:</p><ul> <li>Must be different subresources (although they can be from the same resource).</li> <li>Must be the same type.</li> <li>Must have compatible <strong>formats</strong> (the formats must either be identical or be from the same type group). For example, a <see cref="F:SharpDX.DXGI.Format.R32G32B32_Float" /> texture can be copied to an <see cref="F:SharpDX.DXGI.Format.R32G32B32_UInt" /> texture because both of these formats are in the <see cref="F:SharpDX.DXGI.Format.R32G32B32_Typeless" /> group. Beginning with Direct3D 10.1, <strong>CopySubresourceRegion</strong> can copy between a few format types. For more info, see Format Conversion using Direct3D 10.1.</li> <li>May not be currently mapped.</li> </ul><p><strong>CopySubresourceRegion</strong> supports only copy; it does not support any stretch, color key, blend, or format conversions. Beginning with Direct3D 10.1, <strong>CopySubresourceRegion</strong> can reinterpret the resource data between a few format types. For more info, see Format Conversion using Direct3D 10.1.</p><p>If your app needs to copy an entire resource, we recommend to use <strong><see cref="M:SharpDX.Direct3D10.Device.CopyResource_(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.Resource)" /></strong> instead.</p><p><strong>CopySubresourceRegion</strong> is an asynchronous call that the runtime can add to the command-buffer queue. This asynchronous behaviorattempts to remove pipeline stalls that may occur when copying data. See performance considerations for more details.</p><table> <tr><td> <p>Differences between Direct3D 10 and Direct3D 10.1:</p> <p>Direct3D 10 has the following limitations:</p> <ul> <li>You cannot use a depth-stencil resource as a destination.</li> <li>You cannot use an immutable resource as a destination.</li> <li>You cannot use a multisampled texture as either a source or a destination</li> </ul> <p>Direct3D 10.1 has added support for the following features:</p> <ul> <li>You can use a depth-stencil buffer as a source or a destination.</li> <li>You can use multisampled resources as source and destination only if both source and destination have identical multisampled count and quality. If source and destination differ in multisampled count and quality or if the source is multisampled and the destination is not multisampled (or vice versa), the call to <strong><see cref="M:SharpDX.Direct3D10.Device.CopySubresourceRegion_(SharpDX.Direct3D10.Resource,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D10.Resource,System.Int32,System.Nullable{SharpDX.Direct3D10.ResourceRegion})" /></strong> fails.</li> <li>You can copy between uncompressed and compressed resources. During copy, the format conversions that are specified in Format Conversion using Direct3D 10.1 are supported automatically. The uncompressed resource must be at least prestructured, and typed. You must also account for the difference between the virtual and the physical size of the mipmaps levels.</li> </ul> </td></tr> </table><p>?</p><p><strong>Note</strong>??If you use <strong>CopySubresourceRegion</strong> with a depth-stencil buffer or a multisampled resource, you must copy the whole subresource. You must also pass 0 to the <em>DstX</em>, <em>DstY</em>, and <em>DstZ</em> parameters and <strong><c>null</c></strong> to the <em>pSrcBox</em> parameter. In addition, source and destination resources, which are represented by the <em>pSrcResource</em> and <em>pDstResource</em> parameters respectively, must have identical sample count values.</p>
  1275. </remarks>
  1276. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CopySubresourceRegion']/*" />
  1277. <msdn-id>bb173542</msdn-id>
  1278. <unmanaged>void ID3D10Device::CopySubresourceRegion([In] ID3D10Resource* pDstResource,[In] unsigned int DstSubresource,[In] unsigned int DstX,[In] unsigned int DstY,[In] unsigned int DstZ,[In] ID3D10Resource* pSrcResource,[In] unsigned int SrcSubresource,[In, Optional] const D3D10_BOX* pSrcBox)</unmanaged>
  1279. <unmanaged-short>ID3D10Device::CopySubresourceRegion</unmanaged-short>
  1280. </member>
  1281. <member name="M:SharpDX.Direct3D10.Device.CopyResource_(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.Resource)">
  1282. <summary>
  1283. <p>Copy the entire contents of the source resource to the destination resource using the GPU. </p>
  1284. </summary>
  1285. <param name="dstResourceRef"><dd> <p>A reference to the destination resource (see <strong><see cref="T:SharpDX.Direct3D10.Resource" /></strong>).</p> </dd></param>
  1286. <param name="srcResourceRef"><dd> <p>A reference to the source resource (see <strong><see cref="T:SharpDX.Direct3D10.Resource" /></strong>).</p> </dd></param>
  1287. <remarks>
  1288. <p>This method is unusual in that it causes the GPU to perform the copy operation (similar to a memcpy by the CPU). As a result, it has a few restrictions designed for improving performance. For instance, the source and destination resources:</p><ul> <li>Must be different resources.</li> <li>Must be the same type.</li> <li>Must have identical dimensions (including width, height, depth, and size as appropriate).</li> <li>Must have compatible <strong>formats</strong>, which means the formats must be identical or at least from the same type group. For example, a <see cref="F:SharpDX.DXGI.Format.R32G32B32_Float" /> texture can be copied to an <see cref="F:SharpDX.DXGI.Format.R32G32B32_UInt" /> texture since both of these formats are in the <see cref="F:SharpDX.DXGI.Format.R32G32B32_Typeless" /> group. Beginning with Direct3D 10.1, <strong>CopyResource</strong> can copy between a few format types. For more info, see Format Conversion using Direct3D 10.1.</li> <li>May not be currently mapped.</li> </ul><p><strong>CopyResource</strong> supports only copy; it does not support any stretch, color key, blend, or format conversions. Beginning with Direct3D 10.1, <strong>CopyResource</strong> can reinterpret the resource data between a few format types. For more info, see Format Conversion using Direct3D 10.1.</p><p> <strong>Immutable</strong>, and <strong>depth-stencil</strong> resources cannot be used as a destination. Resources created with <strong>multisampling capability</strong> cannot be used as either a source or destination.</p><p>The method is an asynchronous call which may be added to the command-buffer queue. This attempts to remove pipeline stalls that may occur when copying data. See performance considerations for more details.</p><p>An application that only needs to copy a portion of the data in a resource should use <strong><see cref="M:SharpDX.Direct3D10.Device.CopySubresourceRegion_(SharpDX.Direct3D10.Resource,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D10.Resource,System.Int32,System.Nullable{SharpDX.Direct3D10.ResourceRegion})" /></strong> instead.</p><table> <tr><td> <p>Differences between Direct3D 10 and Direct3D 10.1:</p> <p>Direct3D 10.1 enables depth-stencil resources to be used as either a source or destination. Direct3D 10.1 enables multisampled resources to be used as source and destination only if both source and destination have identical multisampled count and quality. If source and destination differ in multisampled count and quality or one of them is multisampled and the other is not multisampled, the call to <strong><see cref="M:SharpDX.Direct3D10.Device.CopyResource_(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.Resource)" /></strong> fails.</p> <p>It is possible to copy between prestructured+typed resources and block-compressed textures. See Format Conversion using Direct3D 10.1.</p> </td></tr> </table><p>?</p>
  1289. </remarks>
  1290. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CopyResource']/*" />
  1291. <msdn-id>bb173541</msdn-id>
  1292. <unmanaged>void ID3D10Device::CopyResource([In] ID3D10Resource* pDstResource,[In] ID3D10Resource* pSrcResource)</unmanaged>
  1293. <unmanaged-short>ID3D10Device::CopyResource</unmanaged-short>
  1294. </member>
  1295. <member name="M:SharpDX.Direct3D10.Device.UpdateSubresource(SharpDX.Direct3D10.Resource,System.Int32,System.Nullable{SharpDX.Direct3D10.ResourceRegion},System.IntPtr,System.Int32,System.Int32)">
  1296. <summary>
  1297. <p>The CPU copies data from memory to a subresource created in non-mappable memory. See remarks.</p>
  1298. </summary>
  1299. <param name="dstResourceRef">No documentation.</param>
  1300. <param name="dstSubresource">No documentation.</param>
  1301. <param name="dstBoxRef">No documentation.</param>
  1302. <param name="srcDataRef">No documentation.</param>
  1303. <param name="srcRowPitch">No documentation.</param>
  1304. <param name="srcDepthPitch">No documentation.</param>
  1305. <remarks>
  1306. <p>For a shader-constant buffer; set pDstBox to <strong><c>null</c></strong>. It is not possible to use this method to partially update a shader-constant buffer.</p><p>A resource cannot be used as a destination if:</p><ul> <li>the resource is created with <strong>immutable</strong> or <strong>dynamic</strong> usage.</li> <li>the resource is created as a depth-stencil resource.</li> <li>the resource is created with multisampling capability (see <strong><see cref="T:SharpDX.DXGI.SampleDescription" /></strong>).</li> </ul><p>When UpdateSubresource returns, the application is free to change or even free the data pointed to by pSrcData because the method has already copied/snapped away the original contents.</p><p>The performance of UpdateSubresource depends on whether or not there is contention for the destination resource. For example, contention for a vertex buffer resource occurs when the application executes a Draw call and later calls UpdateSubresource on the same vertex buffer before the Draw call is actually executed by the GPU.</p><ul> <li>When there is contention for the resource, UpdateSubresource will perform 2 copies of the source data. First, the data is copied by the CPU to a temporary storage space accessible by the command buffer. This copy happens before the method returns. A second copy is then performed by the GPU to copy the source data into non-mappable memory. This second copy happens asynchronously because it is executed by GPU when the command buffer is flushed.</li> <li>When there is no resource contention, the behavior of UpdateSubresource is dependent on which is faster (from the CPU's perspective): copying the data to the command buffer and then having a second copy execute when the command buffer is flushed, or having the CPU copy the data to the final resource location. This is dependent on the architecture of the underlying system.</li> </ul><p>To better understand the source row pitch and source depth pitch parameters, consider the following illustration of a 3D volume texture.</p><p /><p>Each block in this visual represents an element of data, and the size of each element is dependent on the resource's format. For example, if the resource format is <see cref="F:SharpDX.DXGI.Format.R32G32B32A32_Float" />, then the size of each element would be 128 bits, or 16 bytes. This 3D volume texture has a width of two, a height of three, and a depth of four.</p><p>To calculate the source row pitch and source depth pitch for a given resource, use the following formulas:</p><ul> <li>Source Row Pitch = [size of one element in bytes] * [number of elements in one row]</li> <li>Source Depth Pitch = [Source Row Pitch] * [number of rows (height)]</li> </ul><p>In the case of this example 3D volume texture where the size of each element is 16 bytes, the formulas are as follows:</p><ul> <li>Source Row Pitch = 16 * 2 = 32</li> <li>Source Depth Pitch = 16 * 2 * 3 = 96</li> </ul><p>The following illustration shows the resource as it is laid out in memory.</p><p /><p>For example, the following code snippet shows how to specify a destination region in a 2D texture. Assume the destination texture is 512x512 and the operation will copy the data pointed to by pData to [(120,100)..(200,220)] in the destination texture. Also assume that rowPitch has been initialized with the proper value (as explained above). Front and back are set to 0 and 1 respectively, because by having front equal to back, the box is technically empty.</p><pre> <see cref="T:SharpDX.Direct3D10.ResourceRegion" /> destRegion;
  1307. destRegion.left = 120;
  1308. destRegion.right = 200;
  1309. destRegion.top = 100;
  1310. destRegion.bottom = 220;
  1311. destRegion.front = 0;
  1312. destRegion.back = 1; pd3dDevice-&gt;UpdateSubresource( pDestTexture, 0, &amp;destRegion, pData, rowPitch, 0 );
  1313. </pre><p>The 1D case is similar. The following snippet shows how to specify a destination region in a 1D texture. Use the same assumptions as above, except that the texture is 512 in length.</p><pre> <see cref="T:SharpDX.Direct3D10.ResourceRegion" /> destRegion;
  1314. destRegion.left = 120;
  1315. destRegion.right = 200;
  1316. destRegion.top = 0;
  1317. destRegion.bottom = 1;
  1318. destRegion.front = 0;
  1319. destRegion.back = 1; pd3dDevice-&gt;UpdateSubresource( pDestTexture, 0, &amp;destRegion, pData, rowPitch, 0 );
  1320. </pre><table> <tr><td> <p>Differences between Direct3D 10 and Direct3D 10.1:</p> <p>Direct3D 10.1 enables depth-stencil resources to be used as either a source or destination.</p> </td></tr> </table><p>?</p>
  1321. </remarks>
  1322. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::UpdateSubresource']/*" />
  1323. <msdn-id>bb173621</msdn-id>
  1324. <unmanaged>void ID3D10Device::UpdateSubresource([In] ID3D10Resource* pDstResource,[In] unsigned int DstSubresource,[In, Optional] const D3D10_BOX* pDstBox,[In] const void* pSrcData,[In] unsigned int SrcRowPitch,[In] unsigned int SrcDepthPitch)</unmanaged>
  1325. <unmanaged-short>ID3D10Device::UpdateSubresource</unmanaged-short>
  1326. </member>
  1327. <member name="M:SharpDX.Direct3D10.Device.ClearRenderTargetView(SharpDX.Direct3D10.RenderTargetView,SharpDX.Mathematics.Interop.RawColor4)">
  1328. <summary>
  1329. <p>Set all the elements in a render target to one value.</p>
  1330. </summary>
  1331. <param name="renderTargetViewRef"><dd> <p>Pointer to the render target.</p> </dd></param>
  1332. <param name="colorRGBA"><dd> <p>A 4-component array that represents the color to fill the render target with.</p> </dd></param>
  1333. <remarks>
  1334. <p>Applications that wish to clear a render target to a specific integer value bit pattern should render a screen-aligned quad instead of using this method. The reason for this is because this method accepts as input a floating point value, which may not have the same bit pattern as the original integer.</p><table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>Unlike Direct3D 9, the full extent of the resource view is always cleared. Viewport and scissor settings are not applied.</p> </td></tr> </table><p>?</p><p>When using 10Level9, <strong>ClearRenderTargetView</strong> only clears the first array slice in the render target view. This can impact (for example) cube map rendering scenarios. Applications should create a render target view for each face or array slice, then clear each view individually.</p>
  1335. </remarks>
  1336. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::ClearRenderTargetView']/*" />
  1337. <msdn-id>bb173539</msdn-id>
  1338. <unmanaged>void ID3D10Device::ClearRenderTargetView([In] ID3D10RenderTargetView* pRenderTargetView,[In] const SHARPDX_COLOR4* ColorRGBA)</unmanaged>
  1339. <unmanaged-short>ID3D10Device::ClearRenderTargetView</unmanaged-short>
  1340. </member>
  1341. <member name="M:SharpDX.Direct3D10.Device.ClearDepthStencilView(SharpDX.Direct3D10.DepthStencilView,SharpDX.Direct3D10.DepthStencilClearFlags,System.Single,System.Byte)">
  1342. <summary>
  1343. <p>Clears the depth-stencil resource.</p>
  1344. </summary>
  1345. <param name="depthStencilViewRef"><dd> <p>Pointer to the depth stencil to be cleared.</p> </dd></param>
  1346. <param name="clearFlags"><dd> <p>Which parts of the buffer to clear. See <strong><see cref="T:SharpDX.Direct3D10.DepthStencilClearFlags" /></strong>.</p> </dd></param>
  1347. <param name="depth"><dd> <p>Clear the depth buffer with this value. This value will be clamped between 0 and 1.</p> </dd></param>
  1348. <param name="stencil"><dd> <p>Clear the stencil buffer with this value.</p> </dd></param>
  1349. <remarks>
  1350. <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>Unlike Direct3D 9, the full extent of the resource view is always cleared. Viewport and scissor settings are not applied.</p> </td></tr> </table><p>?</p>
  1351. </remarks>
  1352. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::ClearDepthStencilView']/*" />
  1353. <msdn-id>bb173538</msdn-id>
  1354. <unmanaged>void ID3D10Device::ClearDepthStencilView([In] ID3D10DepthStencilView* pDepthStencilView,[In] D3D10_CLEAR_FLAG ClearFlags,[In] float Depth,[In] unsigned char Stencil)</unmanaged>
  1355. <unmanaged-short>ID3D10Device::ClearDepthStencilView</unmanaged-short>
  1356. </member>
  1357. <member name="M:SharpDX.Direct3D10.Device.GenerateMips(SharpDX.Direct3D10.ShaderResourceView)">
  1358. <summary>
  1359. <p>Generates mipmaps for the given shader resource.</p>
  1360. </summary>
  1361. <param name="shaderResourceViewRef"><dd> <p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /></strong>. The mipmaps will be generated for this shader resource.</p> </dd></param>
  1362. <remarks>
  1363. <p>GenerateMips may be called on any <see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> in order to generate the lower mipmap levels. GenerateMips uses the largest mipmap level of the view to recursively generate the lower levels of the mip, stopping with the smallest level specified by the view. If the base resource was not created with <strong><see cref="F:SharpDX.Direct3D10.BindFlags.RenderTarget" /></strong> and <strong><see cref="F:SharpDX.Direct3D10.ResourceOptionFlags.GenerateMipMaps" /></strong>, this call has no effect.</p><p>Video adapters that support feature level 9.1 and higher support generating mipmaps if you use any of these formats:</p><pre> <see cref="F:SharpDX.DXGI.Format.R8G8B8A8_UNorm" />
  1364. <see cref="F:SharpDX.DXGI.Format.R8G8B8A8_UNorm_SRgb" />
  1365. <see cref="F:SharpDX.DXGI.Format.B5G6R5_UNorm" />
  1366. <see cref="F:SharpDX.DXGI.Format.B8G8R8A8_UNorm" />
  1367. <see cref="F:SharpDX.DXGI.Format.B8G8R8A8_UNorm_SRgb" />
  1368. <see cref="F:SharpDX.DXGI.Format.B8G8R8X8_UNorm" />
  1369. <see cref="F:SharpDX.DXGI.Format.B8G8R8X8_UNorm_SRgb" />
  1370. </pre><p>Video adapters that support feature level 9.2 and higher support generating mipmaps if you use any of these formats in addition to any of the formats for feature level 9.1:</p><pre> <see cref="F:SharpDX.DXGI.Format.R16G16B16A16_Float" />
  1371. <see cref="F:SharpDX.DXGI.Format.R16G16B16A16_UNorm" />
  1372. <see cref="F:SharpDX.DXGI.Format.R16G16_Float" />
  1373. <see cref="F:SharpDX.DXGI.Format.R16G16_UNorm" />
  1374. <see cref="F:SharpDX.DXGI.Format.R32_Float" />
  1375. </pre><p>Video adapters that support feature level 9.3 and higher support generating mipmaps if you use any of these formats in addition to any of the formats for feature levels 9.1 and 9.2:</p><pre> <see cref="F:SharpDX.DXGI.Format.R32G32B32A32_Float" />
  1376. DXGI_FORMAT_B4G4R4A4 (optional)
  1377. </pre><p>Video adapters that support feature level 10 and higher support generating mipmaps if you use any of these formats in addition to any of the formats for feature levels 9.1, 9.2, and 9.3:</p><pre> <see cref="F:SharpDX.DXGI.Format.R32G32B32_Float" /> (optional)
  1378. <see cref="F:SharpDX.DXGI.Format.R16G16B16A16_SNorm" />
  1379. <see cref="F:SharpDX.DXGI.Format.R32G32_Float" />
  1380. <see cref="F:SharpDX.DXGI.Format.R10G10B10A2_UNorm" />
  1381. <see cref="F:SharpDX.DXGI.Format.R11G11B10_Float" />
  1382. <see cref="F:SharpDX.DXGI.Format.R8G8B8A8_SNorm" />
  1383. <see cref="F:SharpDX.DXGI.Format.R16G16_SNorm" />
  1384. <see cref="F:SharpDX.DXGI.Format.R8G8_UNorm" />
  1385. <see cref="F:SharpDX.DXGI.Format.R8G8_SNorm" />
  1386. <see cref="F:SharpDX.DXGI.Format.R16_Float" />
  1387. <see cref="F:SharpDX.DXGI.Format.R16_UNorm" />
  1388. <see cref="F:SharpDX.DXGI.Format.R16_SNorm" />
  1389. <see cref="F:SharpDX.DXGI.Format.R8_UNorm" />
  1390. <see cref="F:SharpDX.DXGI.Format.R8_SNorm" />
  1391. <see cref="F:SharpDX.DXGI.Format.A8_UNorm" />
  1392. <see cref="F:SharpDX.DXGI.Format.B5G5R5A1_UNorm" /> (optional)
  1393. </pre><p>For all other unsupported formats, this method will silently fail.</p>
  1394. </remarks>
  1395. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GenerateMips']/*" />
  1396. <msdn-id>bb173569</msdn-id>
  1397. <unmanaged>void ID3D10Device::GenerateMips([In] ID3D10ShaderResourceView* pShaderResourceView)</unmanaged>
  1398. <unmanaged-short>ID3D10Device::GenerateMips</unmanaged-short>
  1399. </member>
  1400. <member name="M:SharpDX.Direct3D10.Device.ResolveSubresource_(SharpDX.Direct3D10.Resource,System.Int32,SharpDX.Direct3D10.Resource,System.Int32,SharpDX.DXGI.Format)">
  1401. <summary>
  1402. <p>Copy a multisampled resource into a non-multisampled resource. This API is most useful when re-using the resulting rendertarget of one render pass as an input to a second render pass.</p>
  1403. </summary>
  1404. <param name="dstResourceRef"><dd> <p>Destination resource. Must be a created with the <strong><see cref="F:SharpDX.Direct3D10.ResourceUsage.Default" /></strong> flag and be single-sampled. See <strong><see cref="T:SharpDX.Direct3D10.Resource" /></strong>.</p> </dd></param>
  1405. <param name="dstSubresource"><dd> <p>A zero-based index, that identifies the destination subresource. See <strong>D3D10CalcSubresource</strong> for more details.</p> </dd></param>
  1406. <param name="srcResourceRef"><dd> <p>Source resource. Must be multisampled.</p> </dd></param>
  1407. <param name="srcSubresource"><dd> <p>The source subresource of the source resource.</p> </dd></param>
  1408. <param name="format"><dd> <p> <strong><see cref="T:SharpDX.DXGI.Format" /></strong> that indicates how the multisampled resource will be resolved to a single-sampled resource. See remarks.</p> </dd></param>
  1409. <remarks>
  1410. <p>Both the source and destination resources must be the same resource type and have the same dimensions.</p><p>The source and destination must have compatible formats. There are three scenarios for this:</p><table> <tr><th>Scenario</th><th>Requirements</th></tr> <tr><td>Source and destination are prestructured and typed</td><td>Both the source and destination must have identical formats and that format must be specified in the Format parameter.</td></tr> <tr><td>One resource is prestructured and typed and the other is prestructured and typeless</td><td>The typed resource must have a format that is compatible with the typeless resource (i.e. the typed resource is <see cref="F:SharpDX.DXGI.Format.R32_Float" /> and the typeless resource is <see cref="F:SharpDX.DXGI.Format.R32_Typeless" />). The format of the typed resource must be specified in the Format parameter.</td></tr> <tr><td>Source and destination are prestructured and typeless</td><td>Both the source and desintation must have the same typeless format (i.e. both must have <see cref="F:SharpDX.DXGI.Format.R32_Typeless" />), and the Format parameter must specify a format that is compatible with the source and destination (i.e. if both are <see cref="F:SharpDX.DXGI.Format.R32_Typeless" /> then <see cref="F:SharpDX.DXGI.Format.R32_Float" /> or <see cref="F:SharpDX.DXGI.Format.R32_UInt" /> could be specified in the Format parameter).</td></tr> </table><p>?</p>
  1411. </remarks>
  1412. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::ResolveSubresource']/*" />
  1413. <msdn-id>bb173607</msdn-id>
  1414. <unmanaged>void ID3D10Device::ResolveSubresource([In] ID3D10Resource* pDstResource,[In] unsigned int DstSubresource,[In] ID3D10Resource* pSrcResource,[In] unsigned int SrcSubresource,[In] DXGI_FORMAT Format)</unmanaged>
  1415. <unmanaged-short>ID3D10Device::ResolveSubresource</unmanaged-short>
  1416. </member>
  1417. <member name="M:SharpDX.Direct3D10.Device.GetPredication(SharpDX.Direct3D10.Predicate@,SharpDX.Mathematics.Interop.RawBool@)">
  1418. <summary>
  1419. <p>Get the rendering predicate state.</p>
  1420. </summary>
  1421. <param name="predicateOut"><dd> <p>Address of a reference to a predicate (see <strong><see cref="T:SharpDX.Direct3D10.Predicate" /></strong>). Value stored here will be <strong><c>null</c></strong> upon device creation.</p> </dd></param>
  1422. <param name="predicateValueRef"><dd> <p>Address of a boolean to fill with the predicate comparison value. <strong><see cref="F:SharpDX.Result.False" /></strong> upon device creation.</p> </dd></param>
  1423. <remarks>
  1424. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  1425. </remarks>
  1426. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GetPredication']/*" />
  1427. <msdn-id>bb173573</msdn-id>
  1428. <unmanaged>void ID3D10Device::GetPredication([Out, Optional] ID3D10Predicate** ppPredicate,[Out, Optional] BOOL* pPredicateValue)</unmanaged>
  1429. <unmanaged-short>ID3D10Device::GetPredication</unmanaged-short>
  1430. </member>
  1431. <member name="M:SharpDX.Direct3D10.Device.GetDeviceRemovedReason">
  1432. <summary>
  1433. <p>Get the reason why the device was removed.</p>
  1434. </summary>
  1435. <returns><p>Possible return values include: </p><ul> <li><see cref="F:SharpDX.DXGI.ResultCode.DeviceHung" /></li> <li><see cref="F:SharpDX.DXGI.ResultCode.DeviceRemoved" /></li> <li><see cref="F:SharpDX.DXGI.ResultCode.DeviceReset" /></li> <li><see cref="F:SharpDX.DXGI.ResultCode.DriverInternalError" /></li> <li><see cref="F:SharpDX.DXGI.ResultCode.InvalidCall" /></li> <li><see cref="F:SharpDX.Result.Ok" /></li> </ul><p>For more detail on these return codes, see DXGI_ERROR.</p></returns>
  1436. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GetDeviceRemovedReason']/*" />
  1437. <msdn-id>bb173571</msdn-id>
  1438. <unmanaged>HRESULT ID3D10Device::GetDeviceRemovedReason()</unmanaged>
  1439. <unmanaged-short>ID3D10Device::GetDeviceRemovedReason</unmanaged-short>
  1440. </member>
  1441. <member name="M:SharpDX.Direct3D10.Device.SetExceptionMode(System.Int32)">
  1442. <summary>
  1443. <p>Get the exception-mode flags.</p>
  1444. </summary>
  1445. <param name="raiseFlags"><dd> <p>A value that contains one or more exception flags; each flag specifies a condition which will cause an exception to be raised. The flags are listed in <strong>D3D10_RAISE_FLAG</strong>. A default value of 0 means there are no flags.</p> </dd></param>
  1446. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1447. <remarks>
  1448. <p>Set an exception-mode flag to elevate an error condition to a non-continuable exception. </p><p>Whenever an error occurs, a Direct3D device enters the DEVICEREMOVED state and if the appropriate exception flag has been set, an exception is raised. A raised exception is designed to terminate an application. Before termination, the last chance an application has to persist data is by using an UnhandledExceptionFilter (see Structured Exception Handling). In general, UnhandledExceptionFilters are leveraged to try to persist data when an application is crashing (to disk, for example). Any code that executes during an UnhandledExceptionFilter is not guaranteed to reliably execute (due to possible process corruption). Any data that the UnhandledExceptionFilter manages to persist, before the UnhandledExceptionFilter crashes again, should be treated as suspect, and therefore inspected by a new, non-corrupted process to see if it is usable.</p>
  1449. </remarks>
  1450. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::SetExceptionMode']/*" />
  1451. <msdn-id>bb173614</msdn-id>
  1452. <unmanaged>HRESULT ID3D10Device::SetExceptionMode([In] unsigned int RaiseFlags)</unmanaged>
  1453. <unmanaged-short>ID3D10Device::SetExceptionMode</unmanaged-short>
  1454. </member>
  1455. <member name="M:SharpDX.Direct3D10.Device.GetExceptionMode">
  1456. <summary>
  1457. <p>Get the exception-mode flags.</p>
  1458. </summary>
  1459. <returns><p>A value that contains one or more exception flags; each flag specifies a condition which will cause an exception to be raised. The flags are listed in <strong>D3D10_RAISE_FLAG</strong>. A default value of 0 means there are no flags.</p></returns>
  1460. <remarks>
  1461. <p>An exception-mode flag is used to elevate an error condition to a non-continuable exception. </p>
  1462. </remarks>
  1463. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GetExceptionMode']/*" />
  1464. <msdn-id>bb173572</msdn-id>
  1465. <unmanaged>unsigned int ID3D10Device::GetExceptionMode()</unmanaged>
  1466. <unmanaged-short>ID3D10Device::GetExceptionMode</unmanaged-short>
  1467. </member>
  1468. <member name="M:SharpDX.Direct3D10.Device.GetPrivateData(System.Guid,System.Int32@,System.IntPtr)">
  1469. <summary>
  1470. <p>Get data from a device that is associated with a guid.</p>
  1471. </summary>
  1472. <param name="guid"><dd> <p>Guid associated with the data.</p> </dd></param>
  1473. <param name="dataSizeRef"><dd> <p>Size of the data.</p> </dd></param>
  1474. <param name="dataRef"><dd> <p>Pointer to the data stored with the device. If pData is <strong><c>null</c></strong>, DataSize must also be 0, and any data previously associated with the guid will be destroyed.</p> </dd></param>
  1475. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1476. <remarks>
  1477. <p>The data stored in the device is set with <strong><see cref="M:SharpDX.Direct3D10.Device.SetPrivateData(System.Guid,System.Int32,System.IntPtr)" /></strong>. </p><p>The data retrieved and the guid will typically be application-defined.</p>
  1478. </remarks>
  1479. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GetPrivateData']/*" />
  1480. <msdn-id>bb173574</msdn-id>
  1481. <unmanaged>HRESULT ID3D10Device::GetPrivateData([In] const GUID&amp; guid,[InOut] unsigned int* pDataSize,[Out, Buffer, Optional] void* pData)</unmanaged>
  1482. <unmanaged-short>ID3D10Device::GetPrivateData</unmanaged-short>
  1483. </member>
  1484. <member name="M:SharpDX.Direct3D10.Device.SetPrivateData(System.Guid,System.Int32,System.IntPtr)">
  1485. <summary>
  1486. <p>Set data to a device and associate that data with a guid.</p>
  1487. </summary>
  1488. <param name="guid"><dd> <p>Guid associated with the data.</p> </dd></param>
  1489. <param name="dataSize"><dd> <p>Size of the data.</p> </dd></param>
  1490. <param name="dataRef"><dd> <p>Pointer to the data to be stored with this device. If pData is <strong><c>null</c></strong>, DataSize must also be 0, and any data previously associated with the guid will be destroyed.</p> </dd></param>
  1491. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1492. <remarks>
  1493. <p>The data stored in the device with this method can be retrieved with <strong><see cref="M:SharpDX.Direct3D10.DeviceChild.GetPrivateData(System.Guid,System.Int32@,System.IntPtr)" /></strong>.</p><p>The data and guid set with this method will typically be application-defined.</p>
  1494. </remarks>
  1495. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::SetPrivateData']/*" />
  1496. <msdn-id>bb173616</msdn-id>
  1497. <unmanaged>HRESULT ID3D10Device::SetPrivateData([In] const GUID&amp; guid,[In] unsigned int DataSize,[In, Buffer, Optional] const void* pData)</unmanaged>
  1498. <unmanaged-short>ID3D10Device::SetPrivateData</unmanaged-short>
  1499. </member>
  1500. <member name="M:SharpDX.Direct3D10.Device.SetPrivateDataInterface(System.Guid,SharpDX.ComObject)">
  1501. <summary>
  1502. No documentation.
  1503. </summary>
  1504. <param name="guid">No documentation.</param>
  1505. <param name="dataRef">No documentation.</param>
  1506. <returns>No documentation.</returns>
  1507. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::SetPrivateDataInterface']/*" />
  1508. <unmanaged>HRESULT ID3D10Device::SetPrivateDataInterface([In] const GUID&amp; guid,[In, Optional] const IUnknown* pData)</unmanaged>
  1509. <unmanaged-short>ID3D10Device::SetPrivateDataInterface</unmanaged-short>
  1510. </member>
  1511. <member name="M:SharpDX.Direct3D10.Device.ClearState">
  1512. <summary>
  1513. <p>Restore all default device settings; return the device to the state it was in when it was created. This will set all set all input/output resource slots, shaders, input layouts, predications, scissor rectangles, depth-stencil state, rasterizer state, blend state, sampler state, and viewports to <strong><c>null</c></strong>. The primitive topology will be set to UNDEFINED.</p>
  1514. </summary>
  1515. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::ClearState']/*" />
  1516. <msdn-id>bb173540</msdn-id>
  1517. <unmanaged>void ID3D10Device::ClearState()</unmanaged>
  1518. <unmanaged-short>ID3D10Device::ClearState</unmanaged-short>
  1519. </member>
  1520. <member name="M:SharpDX.Direct3D10.Device.Flush">
  1521. <summary>
  1522. <p>Send queued-up commands in the command buffer to the GPU.</p>
  1523. </summary>
  1524. <remarks>
  1525. <p>Most applications will not need to call this method. Calling this method when not necessary will incur a performance penalty. Each call to <strong>Flush</strong> incurs a significant amount of overhead.</p><p>When Direct3D state-setting, present, or draw commands are called by an application, those commands are queued into an internal command buffer. <strong>Flush</strong> sends those commands to the GPU for processing. Normally, these commands are sent to the GPU automatically whenever Direct3D determines that they need to be, such as when the command buffer is full or when mapping a resource. <strong>Flush</strong> will send the commands manually.</p><p><strong>Flush</strong> should be used when the CPU waits for an arbitrary amount of time (such as when calling Sleep, <strong>ID3DX10ThreadPump::WaitForAllItems</strong>, or <strong>WaitForVBlank</strong>.</p><p>For more information about how flushing works, see Accurately Profiling Direct3D API Calls (Direct3D 9).</p>
  1526. </remarks>
  1527. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::Flush']/*" />
  1528. <msdn-id>bb173568</msdn-id>
  1529. <unmanaged>void ID3D10Device::Flush()</unmanaged>
  1530. <unmanaged-short>ID3D10Device::Flush</unmanaged-short>
  1531. </member>
  1532. <member name="M:SharpDX.Direct3D10.Device.CreateBuffer(SharpDX.Direct3D10.BufferDescription@,System.Nullable{SharpDX.DataBox},SharpDX.Direct3D10.Buffer)">
  1533. <summary>
  1534. <p>Create a buffer (vertex buffer, index buffer, or shader-constant buffer).</p>
  1535. </summary>
  1536. <param name="descRef">No documentation.</param>
  1537. <param name="initialDataRef">No documentation.</param>
  1538. <param name="bufferOut">No documentation.</param>
  1539. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1540. <remarks>
  1541. <p>For example code, see:</p><ul> <li> Create a Vertex Buffer </li> <li> Create an Index Buffer </li> </ul>
  1542. </remarks>
  1543. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateBuffer']/*" />
  1544. <msdn-id>bb173544</msdn-id>
  1545. <unmanaged>HRESULT ID3D10Device::CreateBuffer([In] const D3D10_BUFFER_DESC* pDesc,[In, Optional] const D3D10_SUBRESOURCE_DATA* pInitialData,[Out, Fast] ID3D10Buffer** ppBuffer)</unmanaged>
  1546. <unmanaged-short>ID3D10Device::CreateBuffer</unmanaged-short>
  1547. </member>
  1548. <member name="M:SharpDX.Direct3D10.Device.CreateTexture1D(SharpDX.Direct3D10.Texture1DDescription@,SharpDX.DataBox[],SharpDX.Direct3D10.Texture1D)">
  1549. <summary>
  1550. <p>Create an array of 1D textures (see Texture1D).</p>
  1551. </summary>
  1552. <param name="descRef">No documentation.</param>
  1553. <param name="initialDataRef">No documentation.</param>
  1554. <param name="texture1DOut">No documentation.</param>
  1555. <returns><p>If the method succeeds, the return code is <see cref="F:SharpDX.Result.Ok" />. See Direct3D 10 Return Codes for failing error codes.</p></returns>
  1556. <remarks>
  1557. <p>CreateTexture1D creates a 1D texture resource, which contains an array of 1D textures. The number of textures is specified in the texture description. All textures in a resource must have the same format, size, and number of mipmap levels.</p><p>All resources are made up of one or more subresources. To load data into the texture, applications may supply the data initially as part of <strong><see cref="T:SharpDX.DataBox" /></strong> structure pointed to by pInitialData, or it may use one of the Texturing Functions supplied by the SDK.</p>
  1558. </remarks>
  1559. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateTexture1D']/*" />
  1560. <msdn-id>bb173559</msdn-id>
  1561. <unmanaged>HRESULT ID3D10Device::CreateTexture1D([In] const D3D10_TEXTURE1D_DESC* pDesc,[In, Buffer, Optional] const D3D10_SUBRESOURCE_DATA* pInitialData,[Out, Fast] ID3D10Texture1D** ppTexture1D)</unmanaged>
  1562. <unmanaged-short>ID3D10Device::CreateTexture1D</unmanaged-short>
  1563. </member>
  1564. <member name="M:SharpDX.Direct3D10.Device.CreateTexture2D(SharpDX.Direct3D10.Texture2DDescription@,SharpDX.DataBox[],SharpDX.Direct3D10.Texture2D)">
  1565. <summary>
  1566. <p>Create an array of 2D textures (see Texture2D).</p>
  1567. </summary>
  1568. <param name="descRef">No documentation.</param>
  1569. <param name="initialDataRef">No documentation.</param>
  1570. <param name="texture2DOut">No documentation.</param>
  1571. <returns><p>If the method succeeds, the return code is <see cref="F:SharpDX.Result.Ok" />. See Direct3D 10 Return Codes for failing error codes.</p></returns>
  1572. <remarks>
  1573. <p>CreateTexture2D creates a 2D texture resource, which contains an array of 1D textures. The number of textures is specified in the texture description. All textures in a resource must have the same format, size, and number of mipmap levels.</p><p>All resources are made up of one or more subresources. To load data into the texture, applications may supply the data initially as part of <strong><see cref="T:SharpDX.DataBox" /></strong> structure pointed to by pInitialData, or it may use one of the Texturing Functions supplied by the SDK.</p>
  1574. </remarks>
  1575. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateTexture2D']/*" />
  1576. <msdn-id>bb173560</msdn-id>
  1577. <unmanaged>HRESULT ID3D10Device::CreateTexture2D([In] const D3D10_TEXTURE2D_DESC* pDesc,[In, Buffer, Optional] const D3D10_SUBRESOURCE_DATA* pInitialData,[Out, Fast] ID3D10Texture2D** ppTexture2D)</unmanaged>
  1578. <unmanaged-short>ID3D10Device::CreateTexture2D</unmanaged-short>
  1579. </member>
  1580. <member name="M:SharpDX.Direct3D10.Device.CreateTexture3D(SharpDX.Direct3D10.Texture3DDescription@,SharpDX.DataBox[],SharpDX.Direct3D10.Texture3D)">
  1581. <summary>
  1582. <p>Create a single 3D texture (see Texture3D).</p>
  1583. </summary>
  1584. <param name="descRef">No documentation.</param>
  1585. <param name="initialDataRef">No documentation.</param>
  1586. <param name="texture3DOut">No documentation.</param>
  1587. <returns><p>If the method succeeds, the return code is <see cref="F:SharpDX.Result.Ok" />. See Direct3D 10 Return Codes for failing error codes.</p></returns>
  1588. <remarks>
  1589. <p>CreateTexture3D creates a 3D texture resource, which contains an array of 1D textures. The number of textures is specified in the texture description. All textures in a resource must have the same format, size, and number of mipmap levels.</p><p>All resources are made up of one or more subresources. To load data into the texture, applications may supply the data initially as part of <strong><see cref="T:SharpDX.DataBox" /></strong> structure pointed to by pInitialData, or it may use one of the Texturing Functions supplied by the SDK.</p>
  1590. </remarks>
  1591. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateTexture3D']/*" />
  1592. <msdn-id>bb173561</msdn-id>
  1593. <unmanaged>HRESULT ID3D10Device::CreateTexture3D([In] const D3D10_TEXTURE3D_DESC* pDesc,[In, Buffer, Optional] const D3D10_SUBRESOURCE_DATA* pInitialData,[Out, Fast] ID3D10Texture3D** ppTexture3D)</unmanaged>
  1594. <unmanaged-short>ID3D10Device::CreateTexture3D</unmanaged-short>
  1595. </member>
  1596. <member name="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)">
  1597. <summary>
  1598. <p>Create a shader-resource view for accessing data in a resource.</p>
  1599. </summary>
  1600. <param name="resourceRef">No documentation.</param>
  1601. <param name="descRef">No documentation.</param>
  1602. <param name="sRViewOut">No documentation.</param>
  1603. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1604. <remarks>
  1605. <p>A resource is made up of one or more subresources, a view identifies which subresources to allow the pipeline to access. In addition, each resource is bound to the pipeline using a view. A shader-resource view is designed to bind any buffer or texture resource to the shader stages using the following API methods: <strong>VSSetShaderResources</strong>, <strong>GSSetShaderResources</strong> and <strong>PSSetShaderResources</strong>.</p><p>Since a view is fully typed, this means that typeless resources become fully typed when bound to the pipeline.</p>
  1606. </remarks>
  1607. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateShaderResourceView']/*" />
  1608. <msdn-id>bb173558</msdn-id>
  1609. <unmanaged>HRESULT ID3D10Device::CreateShaderResourceView([In] ID3D10Resource* pResource,[In, Optional] const D3D10_SHADER_RESOURCE_VIEW_DESC* pDesc,[Out, Fast] ID3D10ShaderResourceView** ppSRView)</unmanaged>
  1610. <unmanaged-short>ID3D10Device::CreateShaderResourceView</unmanaged-short>
  1611. </member>
  1612. <member name="M:SharpDX.Direct3D10.Device.CreateRenderTargetView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.RenderTargetViewDescription},SharpDX.Direct3D10.RenderTargetView)">
  1613. <summary>
  1614. <p>Create a render-target view for accessing resource data.</p>
  1615. </summary>
  1616. <param name="resourceRef">No documentation.</param>
  1617. <param name="descRef">No documentation.</param>
  1618. <param name="rTViewOut">No documentation.</param>
  1619. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1620. <remarks>
  1621. <p>A rendertarget view can be bound to the output merger stage by calling <strong><see cref="M:SharpDX.Direct3D10.OutputMergerStage.SetRenderTargets(System.Int32,SharpDX.Direct3D10.RenderTargetView[],SharpDX.Direct3D10.DepthStencilView)" /></strong>.</p>
  1622. </remarks>
  1623. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateRenderTargetView']/*" />
  1624. <msdn-id>bb173556</msdn-id>
  1625. <unmanaged>HRESULT ID3D10Device::CreateRenderTargetView([In] ID3D10Resource* pResource,[In, Optional] const D3D10_RENDER_TARGET_VIEW_DESC* pDesc,[Out, Fast] ID3D10RenderTargetView** ppRTView)</unmanaged>
  1626. <unmanaged-short>ID3D10Device::CreateRenderTargetView</unmanaged-short>
  1627. </member>
  1628. <member name="M:SharpDX.Direct3D10.Device.CreateDepthStencilView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.DepthStencilViewDescription},SharpDX.Direct3D10.DepthStencilView)">
  1629. <summary>
  1630. <p>Create a depth-stencil view for accessing resource data.</p>
  1631. </summary>
  1632. <param name="resourceRef">No documentation.</param>
  1633. <param name="descRef">No documentation.</param>
  1634. <param name="depthStencilViewOut">No documentation.</param>
  1635. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1636. <remarks>
  1637. <p>A depth-stencil view can be bound to the output-merger stage by calling <strong><see cref="M:SharpDX.Direct3D10.OutputMergerStage.SetRenderTargets(System.Int32,SharpDX.Direct3D10.RenderTargetView[],SharpDX.Direct3D10.DepthStencilView)" /></strong>.</p><p>For more background information, see the programming guide page about depth stencils.</p>
  1638. </remarks>
  1639. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateDepthStencilView']/*" />
  1640. <msdn-id>bb173547</msdn-id>
  1641. <unmanaged>HRESULT ID3D10Device::CreateDepthStencilView([In] ID3D10Resource* pResource,[In, Optional] const D3D10_DEPTH_STENCIL_VIEW_DESC* pDesc,[Out, Fast] ID3D10DepthStencilView** ppDepthStencilView)</unmanaged>
  1642. <unmanaged-short>ID3D10Device::CreateDepthStencilView</unmanaged-short>
  1643. </member>
  1644. <member name="M:SharpDX.Direct3D10.Device.CreateInputLayout(SharpDX.Direct3D10.InputElement[],System.Int32,System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.InputLayout)">
  1645. <summary>
  1646. <p>Create an input-layout object to describe the input-buffer data for the input-assembler stage.</p>
  1647. </summary>
  1648. <param name="inputElementDescsRef">No documentation.</param>
  1649. <param name="numElements">No documentation.</param>
  1650. <param name="shaderBytecodeWithInputSignatureRef">No documentation.</param>
  1651. <param name="bytecodeLength">No documentation.</param>
  1652. <param name="inputLayoutOut">No documentation.</param>
  1653. <returns><p>If the method succeeds, the return code is <see cref="F:SharpDX.Result.Ok" />. See Direct3D 10 Return Codes for failing error codes.</p></returns>
  1654. <remarks>
  1655. <p>After creating an input layout object, it must be bound to the input-assembler stage before calling a draw API. See Getting Started with the Input-Assembler Stage (Direct3D 10) for example code.</p><p>Once an input-layout object is created from a shader signature, the input-layout object can be reused with any other shader that has an identical input signature (semantics included). This can simplify the creation of input-layout objects when you are working with many shaders with identical inputs.</p><p>If a data type in the input-layout declaration does not match the data type in a shader-input signature, CreateInputLayout will generate a warning during compilation. The warning is simply to call attention to the fact that the data may be reinterpreted when read from a register. You may either disregard this warning (if reinterpretation is intentional) or make the data types match in both declarations to eliminate the warning. The Data Conversion Rules overview describes the rules applied for data type conversion.</p><table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>Mapping the vertex data to the shader inputs with an input layout is a new way of doing things in Direct3D 10 that improves performance.</p> <p>In Direct3D 10 the vertex data is mapped to the shader inputs when the input layout object is created, whereas in Direct3D 9 this mapping was done at Draw time based on the currently bound vertex declarations, vertex buffers, and vertex shaders. Doing this mapping when the input layout object is created reduces or eliminates extra linkage work for drivers at Draw time because this re-mapping is no longer necessary.</p> </td></tr> </table><p>?</p>
  1656. </remarks>
  1657. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateInputLayout']/*" />
  1658. <msdn-id>bb173550</msdn-id>
  1659. <unmanaged>HRESULT ID3D10Device::CreateInputLayout([In, Buffer] const D3D10_INPUT_ELEMENT_DESC* pInputElementDescs,[In] unsigned int NumElements,[In, Buffer] const void* pShaderBytecodeWithInputSignature,[In] SIZE_T BytecodeLength,[Out, Fast] ID3D10InputLayout** ppInputLayout)</unmanaged>
  1660. <unmanaged-short>ID3D10Device::CreateInputLayout</unmanaged-short>
  1661. </member>
  1662. <member name="M:SharpDX.Direct3D10.Device.CreateVertexShader(System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.VertexShader)">
  1663. <summary>
  1664. <p>Create a vertex-shader object from a compiled shader.</p>
  1665. </summary>
  1666. <param name="shaderBytecodeRef"><dd> <p>A reference to the compiled shader. To get this reference see Getting a Pointer to a Compiled Shader.</p> </dd></param>
  1667. <param name="bytecodeLength"><dd> <p>Size of the compiled vertex shader.</p> </dd></param>
  1668. <param name="vertexShaderOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D10.VertexShader" /> Interface</strong>. If this is <strong><c>null</c></strong>, all other parameters will be validated, and if all parameters pass validation this API will return S_FALSE instead of <see cref="F:SharpDX.Result.Ok" />.</p> </dd></param>
  1669. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1670. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateVertexShader']/*" />
  1671. <msdn-id>bb173562</msdn-id>
  1672. <unmanaged>HRESULT ID3D10Device::CreateVertexShader([In, Buffer] const void* pShaderBytecode,[In] SIZE_T BytecodeLength,[Out, Fast] ID3D10VertexShader** ppVertexShader)</unmanaged>
  1673. <unmanaged-short>ID3D10Device::CreateVertexShader</unmanaged-short>
  1674. </member>
  1675. <member name="M:SharpDX.Direct3D10.Device.CreateGeometryShader(System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.GeometryShader)">
  1676. <summary>
  1677. <p>Create a geometry shader.</p>
  1678. </summary>
  1679. <param name="shaderBytecodeRef"><dd> <p>A reference to the compiled shader. To get this reference see Getting a Pointer to a Compiled Shader.</p> </dd></param>
  1680. <param name="bytecodeLength"><dd> <p>Size of the compiled geometry shader.</p> </dd></param>
  1681. <param name="geometryShaderOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D10.GeometryShader" /> Interface</strong>. If this is <strong><c>null</c></strong>, all other parameters will be validated, and if all parameters pass validation this API will return S_FALSE instead of <see cref="F:SharpDX.Result.Ok" />.</p> </dd></param>
  1682. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1683. <remarks>
  1684. <p>Once created, the shader can be set to the device by calling <strong><see cref="M:SharpDX.Direct3D10.GeometryShaderStage.Set(SharpDX.Direct3D10.GeometryShader)" /></strong>.</p>
  1685. </remarks>
  1686. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateGeometryShader']/*" />
  1687. <msdn-id>bb173548</msdn-id>
  1688. <unmanaged>HRESULT ID3D10Device::CreateGeometryShader([In, Buffer] const void* pShaderBytecode,[In] SIZE_T BytecodeLength,[Out, Fast] ID3D10GeometryShader** ppGeometryShader)</unmanaged>
  1689. <unmanaged-short>ID3D10Device::CreateGeometryShader</unmanaged-short>
  1690. </member>
  1691. <member name="M:SharpDX.Direct3D10.Device.CreateGeometryShaderWithStreamOutput(System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.StreamOutputElement[],System.Int32,System.Int32,SharpDX.Direct3D10.GeometryShader)">
  1692. <summary>
  1693. <p>Creates a geometry shader that can write to streaming output buffers.</p>
  1694. </summary>
  1695. <param name="shaderBytecodeRef"><dd> <p>A reference to the compiled geometry shader for a standard geometry shader plus stream output. For info on how to get this reference, see Getting a Pointer to a Compiled Shader.</p> <p>To create the stream output without using a geometry shader, pass a reference to the output signature for the prior stage. To obtain this output signature, call the <strong><see cref="M:SharpDX.D3DCompiler.D3D.GetOutputSignatureBlob(System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D.Blob@)" /></strong> compiler function. You can also pass a reference to the compiled vertex shader that is used in the prior stage. This compiled shader provides the output signature for the data.</p> </dd></param>
  1696. <param name="bytecodeLength"><dd> <p>Size of the compiled geometry shader.</p> </dd></param>
  1697. <param name="sODeclarationRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D10.StreamOutputElement" /></strong> array. Cannot be <strong><c>null</c></strong> if <em>NumEntries</em>&gt; 0.</p> </dd></param>
  1698. <param name="numEntries"><dd> <p>The number of entries in the array pointed to by <em>pSODeclaration</em>. Minimum 0, maximum 64.</p> </dd></param>
  1699. <param name="outputStreamStride"><dd> <p>The size, in bytes, of each element in the array pointed to by <em>pSODeclaration</em>. This parameter is only used when the output slot is 0 for all entries in <em>pSODeclaration</em>.</p> </dd></param>
  1700. <param name="geometryShaderOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D10.GeometryShader" /> Interface</strong>. If this is <strong><c>null</c></strong>, all other parameters will be validated, and if all parameters pass validation this API will return S_FALSE instead of <see cref="F:SharpDX.Result.Ok" />.</p> </dd></param>
  1701. <returns><p>This method returns one of the Direct3D 10 Return Codes.</p></returns>
  1702. <remarks>
  1703. <p>For more info about using <strong>CreateGeometryShaderWithStreamOutput</strong>, see Create a Geometry-Shader Object with Stream Output.</p>
  1704. </remarks>
  1705. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateGeometryShaderWithStreamOutput']/*" />
  1706. <msdn-id>bb173549</msdn-id>
  1707. <unmanaged>HRESULT ID3D10Device::CreateGeometryShaderWithStreamOutput([In, Buffer] const void* pShaderBytecode,[In] SIZE_T BytecodeLength,[In, Buffer, Optional] const D3D10_SO_DECLARATION_ENTRY* pSODeclaration,[In] unsigned int NumEntries,[In] unsigned int OutputStreamStride,[Out, Fast] ID3D10GeometryShader** ppGeometryShader)</unmanaged>
  1708. <unmanaged-short>ID3D10Device::CreateGeometryShaderWithStreamOutput</unmanaged-short>
  1709. </member>
  1710. <member name="M:SharpDX.Direct3D10.Device.CreatePixelShader(System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.PixelShader)">
  1711. <summary>
  1712. <p>Create a pixel shader.</p>
  1713. </summary>
  1714. <param name="shaderBytecodeRef"><dd> <p>A reference to the compiled shader. To get this reference see Getting a Pointer to a Compiled Shader.</p> </dd></param>
  1715. <param name="bytecodeLength"><dd> <p>Size of the compiled pixel shader.</p> </dd></param>
  1716. <param name="pixelShaderOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D10.PixelShader" /> Interface</strong>. If this is <strong><c>null</c></strong>, all other parameters will be validated, and if all parameters pass validation this API will return S_FALSE instead of <see cref="F:SharpDX.Result.Ok" />.</p> </dd></param>
  1717. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1718. <remarks>
  1719. <p>After creating the pixel shader, you can set it to the device using <strong><see cref="M:SharpDX.Direct3D10.PixelShaderStage.Set(SharpDX.Direct3D10.PixelShader)" /></strong>.</p>
  1720. </remarks>
  1721. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreatePixelShader']/*" />
  1722. <msdn-id>bb173551</msdn-id>
  1723. <unmanaged>HRESULT ID3D10Device::CreatePixelShader([In, Buffer] const void* pShaderBytecode,[In] SIZE_T BytecodeLength,[Out, Fast] ID3D10PixelShader** ppPixelShader)</unmanaged>
  1724. <unmanaged-short>ID3D10Device::CreatePixelShader</unmanaged-short>
  1725. </member>
  1726. <member name="M:SharpDX.Direct3D10.Device.CreateBlendState(SharpDX.Direct3D10.BlendStateDescription@,SharpDX.Direct3D10.BlendState)">
  1727. <summary>
  1728. <p>Create a blend-state object that encapsules blend state for the output-merger stage.</p>
  1729. </summary>
  1730. <param name="blendStateDescRef"><dd> <p>Pointer to a blend-state description (see <strong><see cref="T:SharpDX.Direct3D10.BlendStateDescription" /></strong>).</p> </dd></param>
  1731. <param name="blendStateOut"><dd> <p>Address of a reference to the blend-state object created (see <strong><see cref="T:SharpDX.Direct3D10.BlendState" /> Interface</strong>).</p> </dd></param>
  1732. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1733. <remarks>
  1734. <p>An application can create up to 4096 unique blend-state objects. For each object created, the runtime checks to see if a previous object has the same state. If such a previous object exists, the runtime will return a reference to previous instance instead of creating a duplicate object.</p>
  1735. </remarks>
  1736. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateBlendState']/*" />
  1737. <msdn-id>bb173543</msdn-id>
  1738. <unmanaged>HRESULT ID3D10Device::CreateBlendState([In] const D3D10_BLEND_DESC* pBlendStateDesc,[Out, Fast] ID3D10BlendState** ppBlendState)</unmanaged>
  1739. <unmanaged-short>ID3D10Device::CreateBlendState</unmanaged-short>
  1740. </member>
  1741. <member name="M:SharpDX.Direct3D10.Device.CreateDepthStencilState(SharpDX.Direct3D10.DepthStencilStateDescription@,SharpDX.Direct3D10.DepthStencilState)">
  1742. <summary>
  1743. <p>Create a depth-stencil state object that encapsulates depth-stencil test information for the output-merger stage.</p>
  1744. </summary>
  1745. <param name="depthStencilDescRef">No documentation.</param>
  1746. <param name="depthStencilStateOut">No documentation.</param>
  1747. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1748. <remarks>
  1749. <p>4096 unique depth-stencil state objects can be created on a device at a time.</p><p>If an application attempts to create a depth-stencil state with the same description as an already existing depth-stencil state, then the same interface with an incremented reference count will be returned and the total number of unique depth-stencil state objects will stay the same.</p>
  1750. </remarks>
  1751. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateDepthStencilState']/*" />
  1752. <msdn-id>bb173546</msdn-id>
  1753. <unmanaged>HRESULT ID3D10Device::CreateDepthStencilState([In] const D3D10_DEPTH_STENCIL_DESC* pDepthStencilDesc,[Out, Fast] ID3D10DepthStencilState** ppDepthStencilState)</unmanaged>
  1754. <unmanaged-short>ID3D10Device::CreateDepthStencilState</unmanaged-short>
  1755. </member>
  1756. <member name="M:SharpDX.Direct3D10.Device.CreateRasterizerState(SharpDX.Direct3D10.RasterizerStateDescription@,SharpDX.Direct3D10.RasterizerState)">
  1757. <summary>
  1758. <p>Create a rasterizer state object that tells the rasterizer stage how to behave.</p>
  1759. </summary>
  1760. <param name="rasterizerDescRef">No documentation.</param>
  1761. <param name="rasterizerStateOut">No documentation.</param>
  1762. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1763. <remarks>
  1764. <p>4096 unique rasterizer state objects can be created on a device at a time.</p><p>If an application attempts to create a rasterizer state with the same description as an already existing rasterizer state, then the same interface with an incremented reference count will be returned and the total number of unique rasterizer state objects will stay the same.</p>
  1765. </remarks>
  1766. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateRasterizerState']/*" />
  1767. <msdn-id>bb173554</msdn-id>
  1768. <unmanaged>HRESULT ID3D10Device::CreateRasterizerState([In] const D3D10_RASTERIZER_DESC* pRasterizerDesc,[Out, Fast] ID3D10RasterizerState** ppRasterizerState)</unmanaged>
  1769. <unmanaged-short>ID3D10Device::CreateRasterizerState</unmanaged-short>
  1770. </member>
  1771. <member name="M:SharpDX.Direct3D10.Device.CreateSamplerState(SharpDX.Direct3D10.SamplerStateDescription@,SharpDX.Direct3D10.SamplerState)">
  1772. <summary>
  1773. <p>Create a sampler-state object that encapsulates sampling information for a texture.</p>
  1774. </summary>
  1775. <param name="samplerDescRef">No documentation.</param>
  1776. <param name="samplerStateOut">No documentation.</param>
  1777. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1778. <remarks>
  1779. <p>4096 unique sampler state objects can be created on a device at a time.</p><p>If an application attempts to create a sampler state with the same description as an already existing sampler state, then the same interface with an incremented reference count will be returned and the total number of unique sampler state objects will stay the same.</p>
  1780. </remarks>
  1781. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateSamplerState']/*" />
  1782. <msdn-id>bb173557</msdn-id>
  1783. <unmanaged>HRESULT ID3D10Device::CreateSamplerState([In] const D3D10_SAMPLER_DESC* pSamplerDesc,[Out, Fast] ID3D10SamplerState** ppSamplerState)</unmanaged>
  1784. <unmanaged-short>ID3D10Device::CreateSamplerState</unmanaged-short>
  1785. </member>
  1786. <member name="M:SharpDX.Direct3D10.Device.CreateQuery(SharpDX.Direct3D10.QueryDescription,SharpDX.Direct3D10.Query)">
  1787. <summary>
  1788. <p>This interface encapsulates methods for querying information from the GPU.</p>
  1789. </summary>
  1790. <param name="queryDescRef"><dd> <p>Pointer to a query description (see <strong><see cref="!:SharpDX.Direct3D11.QueryDescription" /></strong>).</p> </dd></param>
  1791. <param name="queryOut"><dd> <p>Address of a reference to the query object created (see <strong><see cref="!:SharpDX.Direct3D11.Query" /></strong>).</p> </dd></param>
  1792. <returns><p>This method returns E_OUTOFMEMORY if there is insufficient memory to create the query object. See Direct3D 11 Return Codes for other possible return values.</p></returns>
  1793. <remarks>
  1794. <p><strong>Windows?Phone?8:</strong> This API is supported.</p>
  1795. </remarks>
  1796. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateQuery']/*" />
  1797. <msdn-id>ff476515</msdn-id>
  1798. <unmanaged>HRESULT ID3D10Device::CreateQuery([In] const D3D10_QUERY_DESC* pQueryDesc,[Out, Fast] ID3D10Query** ppQuery)</unmanaged>
  1799. <unmanaged-short>ID3D10Device::CreateQuery</unmanaged-short>
  1800. </member>
  1801. <member name="M:SharpDX.Direct3D10.Device.CreatePredicate(SharpDX.Direct3D10.QueryDescription,SharpDX.Direct3D10.Predicate)">
  1802. <summary>
  1803. <p>Creates a predicate.</p>
  1804. </summary>
  1805. <param name="predicateDescRef"><dd> <p>Pointer to a query description where the type of query must be a <see cref="F:SharpDX.Direct3D10.QueryType.StreamOutputOverflowPredicate" /> or <see cref="F:SharpDX.Direct3D10.QueryType.OcclusionPredicate" /> (see <strong><see cref="T:SharpDX.Direct3D10.QueryDescription" /></strong>).</p> </dd></param>
  1806. <param name="predicateOut"><dd> <p>Address of a reference to a predicate (see <strong><see cref="T:SharpDX.Direct3D10.Predicate" /> Interface</strong>).</p> </dd></param>
  1807. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1808. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreatePredicate']/*" />
  1809. <msdn-id>bb173552</msdn-id>
  1810. <unmanaged>HRESULT ID3D10Device::CreatePredicate([In] const D3D10_QUERY_DESC* pPredicateDesc,[Out, Fast] ID3D10Predicate** ppPredicate)</unmanaged>
  1811. <unmanaged-short>ID3D10Device::CreatePredicate</unmanaged-short>
  1812. </member>
  1813. <member name="M:SharpDX.Direct3D10.Device.CreateCounter(SharpDX.Direct3D10.CounterDescription,SharpDX.Direct3D10.Counter)">
  1814. <summary>
  1815. <p>Create a counter object for measuring GPU performance.</p>
  1816. </summary>
  1817. <param name="counterDescRef"><dd> <p>Pointer to a counter description (see <strong><see cref="T:SharpDX.Direct3D10.CounterDescription" /></strong>).</p> </dd></param>
  1818. <param name="counterOut"><dd> <p>Address of a reference to a counter (see <strong><see cref="T:SharpDX.Direct3D10.Counter" /> Interface</strong>).</p> </dd></param>
  1819. <returns><p>If this function succeeds, it will return <see cref="F:SharpDX.Result.Ok" />. If it fails, possible return values are: S_FALSE, E_OUTOFMEMORY, <see cref="F:SharpDX.DXGI.ResultCode.Unsupported" />, <see cref="F:SharpDX.DXGI.ResultCode.Nonexclusive" />, or E_INVALIDARG.</p><p><see cref="F:SharpDX.DXGI.ResultCode.Unsupported" /> is returned whenever the application requests to create a well-known counter, but the current device does not support it.</p><p><see cref="F:SharpDX.DXGI.ResultCode.Nonexclusive" /> indicates that another device object is currently using the counters, so they cannot be used by this device at the moment.</p><p>E_INVALIDARG is returned whenever an out-of-range well-known or device-dependent counter is requested, or when the simulataneously active counters have been exhausted.</p></returns>
  1820. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CreateCounter']/*" />
  1821. <msdn-id>bb173545</msdn-id>
  1822. <unmanaged>HRESULT ID3D10Device::CreateCounter([In] const D3D10_COUNTER_DESC* pCounterDesc,[Out, Fast] ID3D10Counter** ppCounter)</unmanaged>
  1823. <unmanaged-short>ID3D10Device::CreateCounter</unmanaged-short>
  1824. </member>
  1825. <member name="M:SharpDX.Direct3D10.Device.CheckFormatSupport(SharpDX.DXGI.Format)">
  1826. <summary>
  1827. <p>Get the support of a given format on the installed video device.</p>
  1828. </summary>
  1829. <param name="format"><dd> <p>A <strong><see cref="T:SharpDX.DXGI.Format" /></strong> enumeration that describes a format for which to check for support.</p> </dd></param>
  1830. <returns><dd> <p>A bitfield of <strong><see cref="T:SharpDX.Direct3D10.FormatSupport" /></strong> enumeration values describing how the specified format is supported on the installed device. The values are ORed together.</p> </dd></returns>
  1831. <remarks>
  1832. <p>Most format support is based on the Direct3D feature level. Only a few specific use cases require checking for support. See Hardware Support for Direct3D 10 Formats and Hardware Support for Direct3D 10.1 Formats for additional information.</p>
  1833. </remarks>
  1834. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CheckFormatSupport']/*" />
  1835. <msdn-id>bb173536</msdn-id>
  1836. <unmanaged>HRESULT ID3D10Device::CheckFormatSupport([In] DXGI_FORMAT Format,[Out] D3D10_FORMAT_SUPPORT* pFormatSupport)</unmanaged>
  1837. <unmanaged-short>ID3D10Device::CheckFormatSupport</unmanaged-short>
  1838. </member>
  1839. <member name="M:SharpDX.Direct3D10.Device.CheckMultisampleQualityLevels(SharpDX.DXGI.Format,System.Int32)">
  1840. <summary>
  1841. <p>Get the number of quality levels available during multisampling.</p>
  1842. </summary>
  1843. <param name="format"><dd> <p>The texture format. See <strong><see cref="T:SharpDX.DXGI.Format" /></strong>.</p> </dd></param>
  1844. <param name="sampleCount"><dd> <p>The number of samples during multisampling.</p> </dd></param>
  1845. <returns><dd> <p>Number of quality levels supported by the adapter. See remarks.</p> </dd></returns>
  1846. <remarks>
  1847. <p>When multisampling a texture, the number of quality levels available for an adapter is dependent on the texture format used and the number of samples requested. The maximum sample count defined by D3D10_MAX_MULTISAMPLE_SAMPLE_COUNT in d3d10.h is 32. If the returned value of <em>pNumQualityLevels</em> is 0, the format and sample count combination is not supported for the installed adapter.</p><p>Furthermore, the definition of a quality level is up to each hardware vendor to define, however no facility is provided by Direct3D to help discover this information.</p><p>Direct3D 10.1 devices are required to support 4x MSAA for all formats except R32G32B32A32 and R32G32B32 formats.</p>
  1848. </remarks>
  1849. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CheckMultisampleQualityLevels']/*" />
  1850. <msdn-id>bb173537</msdn-id>
  1851. <unmanaged>HRESULT ID3D10Device::CheckMultisampleQualityLevels([In] DXGI_FORMAT Format,[In] unsigned int SampleCount,[Out] unsigned int* pNumQualityLevels)</unmanaged>
  1852. <unmanaged-short>ID3D10Device::CheckMultisampleQualityLevels</unmanaged-short>
  1853. </member>
  1854. <member name="M:SharpDX.Direct3D10.Device.GetCounterCapabilities">
  1855. <summary>
  1856. <p>Get a counter's information.</p>
  1857. </summary>
  1858. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CheckCounterInfo']/*" />
  1859. <msdn-id>bb173535</msdn-id>
  1860. <unmanaged>void ID3D10Device::CheckCounterInfo([Out] D3D10_COUNTER_INFO* pCounterInfo)</unmanaged>
  1861. <unmanaged-short>ID3D10Device::CheckCounterInfo</unmanaged-short>
  1862. </member>
  1863. <member name="M:SharpDX.Direct3D10.Device.CheckCounter(SharpDX.Direct3D10.CounterDescription,SharpDX.Direct3D10.CounterType@,System.Int32@,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)">
  1864. <summary>
  1865. <p>Get the type, name, units of measure, and a description of an existing counter.</p>
  1866. </summary>
  1867. <param name="descRef"><dd> <p>Pointer to a counter description (see <strong><see cref="T:SharpDX.Direct3D10.CounterDescription" /></strong>). Specifies which counter information is to be retrieved about.</p> </dd></param>
  1868. <param name="typeRef"><dd> <p>Pointer to the data type of a counter (see <strong><see cref="T:SharpDX.Direct3D10.CounterType" /></strong>). Specifies the data type of the counter being retrieved.</p> </dd></param>
  1869. <param name="activeCountersRef"><dd> <p>Pointer to the number of hardware counters that are needed for this counter type to be created. All instances of the same counter type use the same hardware counters.</p> </dd></param>
  1870. <param name="szName"><dd> <p>String to be filled with a brief name for the counter. May be <strong><c>null</c></strong> if the application is not interested in the name of the counter.</p> </dd></param>
  1871. <param name="nameLengthRef"><dd> <p>Length of the string returned to szName. Can be <strong><c>null</c></strong>.</p> </dd></param>
  1872. <param name="szUnits"><dd> <p>Name of the units a counter measures, provided the memory the reference points to has enough room to hold the string. Can be <strong><c>null</c></strong>. The returned string will always be in English.</p> </dd></param>
  1873. <param name="unitsLengthRef"><dd> <p>Length of the string returned to szUnits. Can be <strong><c>null</c></strong>.</p> </dd></param>
  1874. <param name="szDescription"><dd> <p>A description of the counter, provided the memory the reference points to has enough room to hold the string. Can be <strong><c>null</c></strong>. The returned string will always be in English.</p> </dd></param>
  1875. <param name="descriptionLengthRef"><dd> <p>Length of the string returned to szDescription. Can be <strong><c>null</c></strong>.</p> </dd></param>
  1876. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1877. <remarks>
  1878. <p>Length parameters can be <strong><c>null</c></strong>, which indicates the application is not interested in the length nor the corresponding string value. When a length parameter is non-<strong><c>null</c></strong> and the corresponding string is <strong><c>null</c></strong>, the input value of the length parameter is ignored, and the length of the corresponding string (including terminating <strong><c>null</c></strong>) will be returned through the length parameter. When length and the corresponding parameter are both non-<strong><c>null</c></strong>, the input value of length is checked to ensure there is enough room, and then the length of the string (including terminating <strong><c>null</c></strong> character) is passed out through the length parameter.</p>
  1879. </remarks>
  1880. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::CheckCounter']/*" />
  1881. <msdn-id>bb173534</msdn-id>
  1882. <unmanaged>HRESULT ID3D10Device::CheckCounter([In] const D3D10_COUNTER_DESC* pDesc,[Out] D3D10_COUNTER_TYPE* pType,[Out] unsigned int* pActiveCounters,[Out, Buffer, Optional] char* szName,[InOut, Optional] unsigned int* pNameLength,[Out, Buffer, Optional] char* szUnits,[InOut, Optional] unsigned int* pUnitsLength,[Out, Buffer, Optional] char* szDescription,[InOut, Optional] unsigned int* pDescriptionLength)</unmanaged>
  1883. <unmanaged-short>ID3D10Device::CheckCounter</unmanaged-short>
  1884. </member>
  1885. <member name="M:SharpDX.Direct3D10.Device.GetCreationFlags">
  1886. <summary>
  1887. <p>Get the flags used during the call to create the device with <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>.</p>
  1888. </summary>
  1889. <returns><p>A bitfield containing the flags used to create the device. See <strong><see cref="T:SharpDX.Direct3D10.DeviceCreationFlags" /></strong>.</p></returns>
  1890. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GetCreationFlags']/*" />
  1891. <msdn-id>bb173570</msdn-id>
  1892. <unmanaged>unsigned int ID3D10Device::GetCreationFlags()</unmanaged>
  1893. <unmanaged-short>ID3D10Device::GetCreationFlags</unmanaged-short>
  1894. </member>
  1895. <member name="M:SharpDX.Direct3D10.Device.OpenSharedResource(System.IntPtr,System.Guid,System.IntPtr@)">
  1896. <summary>
  1897. <p>Give a device access to a shared resource created on a different Direct3d device. </p>
  1898. </summary>
  1899. <param name="hResource"><dd> <p>A resource handle. See remarks.</p> </dd></param>
  1900. <param name="returnedInterface"><dd> <p>The globally unique identifier (<see cref="T:System.Guid" />) for the resource interface. See remarks.</p> </dd></param>
  1901. <param name="resourceOut"><dd> <p>Address of a reference to the resource we are gaining access to.</p> </dd></param>
  1902. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  1903. <remarks>
  1904. <p>To share a resource between two Direct3D 10 devices the resource must have been created with the <strong><see cref="F:SharpDX.Direct3D10.ResourceOptionFlags.Shared" /></strong> flag, if it was created using the <see cref="T:SharpDX.Direct3D10.Device" /> interface. If it was created using the <see cref="T:SharpDX.DXGI.Device" /> interface, then the resource is always shared.</p><p>The REFIID, or <see cref="T:System.Guid" />, of the interface to the resource can be obtained by using the __uuidof() macro. For example, __uuidof(<see cref="T:SharpDX.Direct3D10.Buffer" />) will get the <see cref="T:System.Guid" /> of the interface to a buffer resource.</p><p>When sharing a resource between two Direct3D 10 devices the unique handle of the resource can be obtained by querying the resource for the <strong><see cref="T:SharpDX.DXGI.Resource" /></strong> interface and then calling <strong>GetSharedHandle</strong>.</p><pre> <see cref="T:SharpDX.DXGI.Resource" />* pOtherResource(<c>null</c>);
  1905. hr = pOtherDeviceResource-&gt;QueryInterface( __uuidof(<see cref="T:SharpDX.DXGI.Resource" />), (void**)&amp;pOtherResource );
  1906. HANDLE sharedHandle;
  1907. pOtherResource-&gt;GetSharedHandle(&amp;sharedHandle); </pre><p>The only resources that can be shared are 2D non-mipmapped textures.</p><p>To share a resource between a Direct3D 9 device and a Direct3D 10 device the texture must have been created using the <em>pSharedHandle</em> argument of <strong>CreateTexture</strong>. The shared Direct3D 9 handle is then passed to OpenSharedResource in the <em>hResource</em> argument.</p><p>The following code illustrates the method calls involved.</p><pre> sharedHandle = <c>null</c>; // must be set to <c>null</c> to create, can use a valid handle here to open in D3D9
  1908. pDevice9-&gt;CreateTexture(..., pTex2D_9, &amp;sharedHandle);
  1909. ...
  1910. pDevice10-&gt;OpenSharedResource(sharedHandle, __uuidof(<see cref="T:SharpDX.Direct3D10.Resource" />), (void**)(&amp;tempResource10));
  1911. tempResource10-&gt;QueryInterface(__uuidof(<see cref="T:SharpDX.Direct3D10.Texture2D" />), (void**)(&amp;pTex2D_10));
  1912. tempResource10-&gt;Release();
  1913. // now use pTex2D_10 with pDevice10 </pre><p>Textures being shared from D3D9 to D3D10 have the following restrictions.</p><ul> <li>Textures must be 2D</li> <li>Only 1 mip level is allowed</li> <li>Texture must have default usage</li> <li>Texture must be write only</li> <li>MSAA textures are not allowed</li> <li>Bind flags must have SHADER_RESOURCE and RENDER_TARGET set</li> <li>Only R10G10B10A2_UNORM, R16G16B16A16_FLOAT and R8G8B8A8_UNORM formats are allowed</li> </ul><p>If a shared texture is updated on one device <strong><see cref="M:SharpDX.Direct3D10.Device.Flush" /></strong> must be called on that device.</p>
  1914. </remarks>
  1915. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::OpenSharedResource']/*" />
  1916. <msdn-id>bb173598</msdn-id>
  1917. <unmanaged>HRESULT ID3D10Device::OpenSharedResource([In] void* hResource,[In] const GUID&amp; ReturnedInterface,[Out, Optional] void** ppResource)</unmanaged>
  1918. <unmanaged-short>ID3D10Device::OpenSharedResource</unmanaged-short>
  1919. </member>
  1920. <member name="T:SharpDX.Direct3D10.InputAssemblerStage">
  1921. <summary>
  1922. <p>The device interface represents a virtual adapter for Direct3D 10.0; it is used to perform rendering and create Direct3D resources.</p>
  1923. </summary>
  1924. <remarks>
  1925. <p>A device is created using <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>.</p>
  1926. </remarks>
  1927. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device']/*" />
  1928. <msdn-id>bb173528</msdn-id>
  1929. <unmanaged>ID3D10Device</unmanaged>
  1930. <unmanaged-short>ID3D10Device</unmanaged-short>
  1931. </member>
  1932. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.SetVertexBuffers(System.Int32,SharpDX.Direct3D10.VertexBufferBinding)">
  1933. <summary>
  1934. Binds a single vertex buffer to the input assembler.
  1935. </summary>
  1936. <param name = "slot">Index of the slot to which to bind the vertex buffer.</param>
  1937. <param name = "vertexBufferBinding">A binding for the input vertex buffer.</param>
  1938. </member>
  1939. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.SetVertexBuffers(System.Int32,SharpDX.Direct3D10.VertexBufferBinding[])">
  1940. <summary>
  1941. Binds an array of vertex buffers to the input assembler.
  1942. </summary>
  1943. <param name = "firstSlot">Index of the first input slot to use for binding. The first vertex buffer is explicitly bound to the start slot; this causes each additional vertex buffer in the array to be implicitly bound to each subsequent input slot. There are 16 input slots.</param>
  1944. <param name = "vertexBufferBindings">An array of bindings for input vertex buffers.</param>
  1945. </member>
  1946. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.#ctor(System.IntPtr)">
  1947. <summary>
  1948. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.InputAssemblerStage"/> class.
  1949. </summary>
  1950. <param name="nativePtr">The native pointer.</param>
  1951. </member>
  1952. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.InputAssemblerStage">
  1953. <summary>
  1954. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.InputAssemblerStage"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  1955. </summary>
  1956. <param name="nativePointer">The native pointer.</param>
  1957. <returns>
  1958. The result of the conversion.
  1959. </returns>
  1960. </member>
  1961. <member name="P:SharpDX.Direct3D10.InputAssemblerStage.InputLayout">
  1962. <summary>
  1963. <p>Get or sets a reference to the input-layout object that is bound to the input-assembler stage.</p>
  1964. </summary>
  1965. <remarks>
  1966. <p>For information about creating an input-layout object, see Creating the Input-Layout Object.</p><p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  1967. </remarks>
  1968. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IAGetInputLayout']/*" />
  1969. <msdn-id>bb173585</msdn-id>
  1970. <unmanaged>IAGetInputLayout / IASetInputLayout</unmanaged>
  1971. <unmanaged-short>IAGetInputLayout</unmanaged-short>
  1972. <unmanaged>void ID3D10Device::IAGetInputLayout([Out] ID3D10InputLayout** ppInputLayout)</unmanaged>
  1973. </member>
  1974. <member name="P:SharpDX.Direct3D10.InputAssemblerStage.PrimitiveTopology">
  1975. <summary>
  1976. <p>Get or sets information about the primitive type, and data order that describes input data for the input assembler stage.</p>
  1977. </summary>
  1978. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IAGetPrimitiveTopology']/*" />
  1979. <msdn-id>bb173586</msdn-id>
  1980. <unmanaged>IAGetPrimitiveTopology / IASetPrimitiveTopology</unmanaged>
  1981. <unmanaged-short>IAGetPrimitiveTopology</unmanaged-short>
  1982. <unmanaged>void ID3D10Device::IAGetPrimitiveTopology([Out] D3D_PRIMITIVE_TOPOLOGY* pTopology)</unmanaged>
  1983. </member>
  1984. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.SetInputLayout(SharpDX.Direct3D10.InputLayout)">
  1985. <summary>
  1986. <p>Bind an input-layout object to the input-assembler stage.</p>
  1987. </summary>
  1988. <param name="inputLayoutRef">No documentation.</param>
  1989. <remarks>
  1990. <p>Input-layout objects describe how vertex buffer data is streamed into the IA pipeline stage. To create an input-layout object, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateInputLayout(SharpDX.Direct3D10.InputElement[],System.Int32,System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.InputLayout)" /></strong>.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  1991. </remarks>
  1992. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IASetInputLayout']/*" />
  1993. <msdn-id>bb173589</msdn-id>
  1994. <unmanaged>void ID3D10Device::IASetInputLayout([In, Optional] ID3D10InputLayout* pInputLayout)</unmanaged>
  1995. <unmanaged-short>ID3D10Device::IASetInputLayout</unmanaged-short>
  1996. </member>
  1997. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.SetVertexBuffers(System.Int32,System.Int32,SharpDX.Direct3D10.Buffer[],System.Int32[],System.Int32[])">
  1998. <summary>
  1999. <p>Bind an array of vertex buffers to the input-assembler stage.</p>
  2000. </summary>
  2001. <param name="startSlot">No documentation.</param>
  2002. <param name="numBuffers">No documentation.</param>
  2003. <param name="vertexBuffersOut">No documentation.</param>
  2004. <param name="stridesRef">No documentation.</param>
  2005. <param name="offsetsRef">No documentation.</param>
  2006. <remarks>
  2007. <p>For information about creating vertex buffers, see Create a Vertex Buffer.</p><p>Calling this method using a buffer that is currently bound for writing (i.e. bound to the stream output pipeline stage) will effectively bind <strong><c>null</c></strong> instead because a buffer cannot be bound as both an input and an output at the same time.</p><p>The Debug Layer will generate a warning whenever a resource is prevented from being bound simultaneously as an input and an output, but this will not prevent invalid data from being used by the runtime.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  2008. </remarks>
  2009. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IASetVertexBuffers']/*" />
  2010. <msdn-id>bb173591</msdn-id>
  2011. <unmanaged>void ID3D10Device::IASetVertexBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppVertexBuffers,[In, Buffer, Optional] const unsigned int* pStrides,[In, Buffer, Optional] const unsigned int* pOffsets)</unmanaged>
  2012. <unmanaged-short>ID3D10Device::IASetVertexBuffers</unmanaged-short>
  2013. </member>
  2014. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.SetVertexBuffers(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.Buffer},System.Int32[],System.Int32[])">
  2015. <summary>
  2016. <p>Bind an array of vertex buffers to the input-assembler stage.</p>
  2017. </summary>
  2018. <param name="startSlot">No documentation.</param>
  2019. <param name="numBuffers">No documentation.</param>
  2020. <param name="vertexBuffersOut">No documentation.</param>
  2021. <param name="stridesRef">No documentation.</param>
  2022. <param name="offsetsRef">No documentation.</param>
  2023. <remarks>
  2024. <p>For information about creating vertex buffers, see Create a Vertex Buffer.</p><p>Calling this method using a buffer that is currently bound for writing (i.e. bound to the stream output pipeline stage) will effectively bind <strong><c>null</c></strong> instead because a buffer cannot be bound as both an input and an output at the same time.</p><p>The Debug Layer will generate a warning whenever a resource is prevented from being bound simultaneously as an input and an output, but this will not prevent invalid data from being used by the runtime.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  2025. </remarks>
  2026. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IASetVertexBuffers']/*" />
  2027. <msdn-id>bb173591</msdn-id>
  2028. <unmanaged>void ID3D10Device::IASetVertexBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppVertexBuffers,[In, Buffer, Optional] const unsigned int* pStrides,[In, Buffer, Optional] const unsigned int* pOffsets)</unmanaged>
  2029. <unmanaged-short>ID3D10Device::IASetVertexBuffers</unmanaged-short>
  2030. </member>
  2031. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.SetVertexBuffers(System.Int32,System.Int32,System.IntPtr,System.IntPtr,System.IntPtr)">
  2032. <summary>
  2033. <p>Bind an array of vertex buffers to the input-assembler stage.</p>
  2034. </summary>
  2035. <param name="startSlot">No documentation.</param>
  2036. <param name="numBuffers">No documentation.</param>
  2037. <param name="vertexBuffersOut">No documentation.</param>
  2038. <param name="stridesRef">No documentation.</param>
  2039. <param name="offsetsRef">No documentation.</param>
  2040. <remarks>
  2041. <p>For information about creating vertex buffers, see Create a Vertex Buffer.</p><p>Calling this method using a buffer that is currently bound for writing (i.e. bound to the stream output pipeline stage) will effectively bind <strong><c>null</c></strong> instead because a buffer cannot be bound as both an input and an output at the same time.</p><p>The Debug Layer will generate a warning whenever a resource is prevented from being bound simultaneously as an input and an output, but this will not prevent invalid data from being used by the runtime.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  2042. </remarks>
  2043. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IASetVertexBuffers']/*" />
  2044. <msdn-id>bb173591</msdn-id>
  2045. <unmanaged>void ID3D10Device::IASetVertexBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppVertexBuffers,[In, Buffer, Optional] const unsigned int* pStrides,[In, Buffer, Optional] const unsigned int* pOffsets)</unmanaged>
  2046. <unmanaged-short>ID3D10Device::IASetVertexBuffers</unmanaged-short>
  2047. </member>
  2048. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.SetIndexBuffer(SharpDX.Direct3D10.Buffer,SharpDX.DXGI.Format,System.Int32)">
  2049. <summary>
  2050. <p>Bind an index buffer to the input-assembler stage.</p>
  2051. </summary>
  2052. <param name="indexBufferRef">No documentation.</param>
  2053. <param name="format">No documentation.</param>
  2054. <param name="offset">No documentation.</param>
  2055. <remarks>
  2056. <p>For information about creating index buffers, see Create an Index Buffer.</p><p>Calling this method using a buffer that is currently bound for writing (i.e. bound to the stream output pipeline stage) will effectively bind <strong><c>null</c></strong> instead because a buffer cannot be bound as both an input and an output at the same time.</p><p>The Debug Layer will generate a warning whenever a resource is prevented from being bound simultaneously as an input and an output, but this will not prevent invalid data from being used by the runtime.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  2057. </remarks>
  2058. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IASetIndexBuffer']/*" />
  2059. <msdn-id>bb173588</msdn-id>
  2060. <unmanaged>void ID3D10Device::IASetIndexBuffer([In, Optional] ID3D10Buffer* pIndexBuffer,[In] DXGI_FORMAT Format,[In] unsigned int Offset)</unmanaged>
  2061. <unmanaged-short>ID3D10Device::IASetIndexBuffer</unmanaged-short>
  2062. </member>
  2063. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.SetPrimitiveTopology(SharpDX.Direct3D.PrimitiveTopology)">
  2064. <summary>
  2065. <p>Bind information about the primitive type, and data order that describes input data for the input assembler stage.</p>
  2066. </summary>
  2067. <param name="topology">No documentation.</param>
  2068. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IASetPrimitiveTopology']/*" />
  2069. <msdn-id>bb173590</msdn-id>
  2070. <unmanaged>void ID3D10Device::IASetPrimitiveTopology([In] D3D_PRIMITIVE_TOPOLOGY Topology)</unmanaged>
  2071. <unmanaged-short>ID3D10Device::IASetPrimitiveTopology</unmanaged-short>
  2072. </member>
  2073. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.GetInputLayout(SharpDX.Direct3D10.InputLayout@)">
  2074. <summary>
  2075. <p>Get a reference to the input-layout object that is bound to the input-assembler stage.</p>
  2076. </summary>
  2077. <param name="inputLayoutOut">No documentation.</param>
  2078. <remarks>
  2079. <p>For information about creating an input-layout object, see Creating the Input-Layout Object.</p><p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  2080. </remarks>
  2081. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IAGetInputLayout']/*" />
  2082. <msdn-id>bb173585</msdn-id>
  2083. <unmanaged>void ID3D10Device::IAGetInputLayout([Out] ID3D10InputLayout** ppInputLayout)</unmanaged>
  2084. <unmanaged-short>ID3D10Device::IAGetInputLayout</unmanaged-short>
  2085. </member>
  2086. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.GetVertexBuffers(System.Int32,System.Int32,SharpDX.Direct3D10.Buffer[],System.Int32[],System.Int32[])">
  2087. <summary>
  2088. <p>Get the vertex buffers bound to the input-assembler stage.</p>
  2089. </summary>
  2090. <param name="startSlot">No documentation.</param>
  2091. <param name="numBuffers">No documentation.</param>
  2092. <param name="vertexBuffersOut">No documentation.</param>
  2093. <param name="stridesRef">No documentation.</param>
  2094. <param name="offsetsRef">No documentation.</param>
  2095. <remarks>
  2096. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  2097. </remarks>
  2098. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IAGetVertexBuffers']/*" />
  2099. <msdn-id>bb173587</msdn-id>
  2100. <unmanaged>void ID3D10Device::IAGetVertexBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[Out, Buffer, Optional] ID3D10Buffer** ppVertexBuffers,[Out, Buffer, Optional] unsigned int* pStrides,[Out, Buffer, Optional] unsigned int* pOffsets)</unmanaged>
  2101. <unmanaged-short>ID3D10Device::IAGetVertexBuffers</unmanaged-short>
  2102. </member>
  2103. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.GetIndexBuffer(SharpDX.Direct3D10.Buffer@,SharpDX.DXGI.Format@,System.Int32@)">
  2104. <summary>
  2105. <p>Get a reference to the index buffer that is bound to the input-assembler stage.</p>
  2106. </summary>
  2107. <param name="indexBufferRef">No documentation.</param>
  2108. <param name="format">No documentation.</param>
  2109. <param name="offset">No documentation.</param>
  2110. <remarks>
  2111. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  2112. </remarks>
  2113. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IAGetIndexBuffer']/*" />
  2114. <msdn-id>bb173584</msdn-id>
  2115. <unmanaged>void ID3D10Device::IAGetIndexBuffer([Out, Optional] ID3D10Buffer** pIndexBuffer,[Out, Optional] DXGI_FORMAT* Format,[Out, Optional] unsigned int* Offset)</unmanaged>
  2116. <unmanaged-short>ID3D10Device::IAGetIndexBuffer</unmanaged-short>
  2117. </member>
  2118. <member name="M:SharpDX.Direct3D10.InputAssemblerStage.GetPrimitiveTopology(SharpDX.Direct3D.PrimitiveTopology@)">
  2119. <summary>
  2120. <p>Get information about the primitive type, and data order that describes input data for the input assembler stage.</p>
  2121. </summary>
  2122. <param name="topologyRef">No documentation.</param>
  2123. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::IAGetPrimitiveTopology']/*" />
  2124. <msdn-id>bb173586</msdn-id>
  2125. <unmanaged>void ID3D10Device::IAGetPrimitiveTopology([Out] D3D_PRIMITIVE_TOPOLOGY* pTopology)</unmanaged>
  2126. <unmanaged-short>ID3D10Device::IAGetPrimitiveTopology</unmanaged-short>
  2127. </member>
  2128. <member name="T:SharpDX.Direct3D10.OutputMergerStage">
  2129. <summary>
  2130. <p>The device interface represents a virtual adapter for Direct3D 10.0; it is used to perform rendering and create Direct3D resources.</p>
  2131. </summary>
  2132. <remarks>
  2133. <p>A device is created using <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>.</p>
  2134. </remarks>
  2135. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device']/*" />
  2136. <msdn-id>bb173528</msdn-id>
  2137. <unmanaged>ID3D10Device</unmanaged>
  2138. <unmanaged-short>ID3D10Device</unmanaged-short>
  2139. </member>
  2140. <member name="M:SharpDX.Direct3D10.OutputMergerStage.GetRenderTargets(SharpDX.Direct3D10.DepthStencilView@)">
  2141. <summary>
  2142. Get references to the render targets that are available to the {{output-merger stage}}.
  2143. </summary>
  2144. <remarks>
  2145. Any returned interfaces will have their reference count incremented by one. Applications should call {{IUnknown::Release}} on the returned interfaces when they are no longer needed to avoid memory leaks.
  2146. </remarks>
  2147. <returns>a depth-stencil view (see <see cref="T:SharpDX.Direct3D10.DepthStencilView"/>) to be filled with the depth-stencil information from the device.</returns>
  2148. <unmanaged>void OMGetRenderTargets([In] int NumViews,[Out, Buffer, Optional] ID3D10RenderTargetView** ppRenderTargetViews,[Out, Optional] ID3D10DepthStencilView** ppDepthStencilView)</unmanaged>
  2149. </member>
  2150. <member name="M:SharpDX.Direct3D10.OutputMergerStage.GetRenderTargets(System.Int32)">
  2151. <summary>
  2152. Get references to the render targets that are available to the {{output-merger stage}}.
  2153. </summary>
  2154. <remarks>
  2155. Any returned interfaces will have their reference count incremented by one. Applications should call {{IUnknown::Release}} on the returned interfaces when they are no longer needed to avoid memory leaks.
  2156. </remarks>
  2157. <param name="numViews">Number of render targets to retrieve. </param>
  2158. <returns>an array of render targets views (see <see cref="T:SharpDX.Direct3D10.RenderTargetView"/>) to be filled with the render targets from the device.</returns>
  2159. <unmanaged>void OMGetRenderTargets([In] int NumViews,[Out, Buffer, Optional] ID3D10RenderTargetView** ppRenderTargetViews,[Out, Optional] ID3D10DepthStencilView** ppDepthStencilView)</unmanaged>
  2160. </member>
  2161. <member name="M:SharpDX.Direct3D10.OutputMergerStage.GetRenderTargets(System.Int32,SharpDX.Direct3D10.DepthStencilView@)">
  2162. <summary>
  2163. Get references to the render targets and the depth-stencil buffer that are available to the {{output-merger stage}}.
  2164. </summary>
  2165. <remarks>
  2166. Any returned interfaces will have their reference count incremented by one. Applications should call {{IUnknown::Release}} on the returned interfaces when they are no longer needed to avoid memory leaks.
  2167. </remarks>
  2168. <param name="numViews">Number of render targets to retrieve. </param>
  2169. <param name="depthStencilViewRef">Pointer to a depth-stencil view (see <see cref="T:SharpDX.Direct3D10.DepthStencilView"/>) to be filled with the depth-stencil information from the device.</param>
  2170. <returns>an array of render targets views (see <see cref="T:SharpDX.Direct3D10.RenderTargetView"/>) to be filled with the render targets from the device.</returns>
  2171. <unmanaged>void OMGetRenderTargets([In] int NumViews,[Out, Buffer, Optional] ID3D10RenderTargetView** ppRenderTargetViews,[Out, Optional] ID3D10DepthStencilView** ppDepthStencilView)</unmanaged>
  2172. </member>
  2173. <member name="M:SharpDX.Direct3D10.OutputMergerStage.GetBlendState(SharpDX.Mathematics.Interop.RawColor4@,System.Int32@)">
  2174. <summary>
  2175. Get the {{blend state}} of the output-merger stage.
  2176. </summary>
  2177. <remarks>
  2178. The reference count of the returned interface will be incremented by one when the blend state is retrieved. Applications must release returned reference(s) when they are no longer needed, or else there will be a memory leak.
  2179. </remarks>
  2180. <param name="blendFactor">Array of blend factors, one for each RGBA component. </param>
  2181. <param name="sampleMaskRef">Pointer to a {{sample mask}}. </param>
  2182. <returns>a reference to a blend-state interface (see <see cref="T:SharpDX.Direct3D10.BlendState"/>).</returns>
  2183. <unmanaged>void OMGetBlendState([Out, Optional] ID3D10BlendState** ppBlendState,[Out, Optional] float BlendFactor[4],[Out, Optional] int* pSampleMask)</unmanaged>
  2184. </member>
  2185. <member name="M:SharpDX.Direct3D10.OutputMergerStage.GetDepthStencilState(System.Int32@)">
  2186. <summary>
  2187. Gets the {{depth-stencil}} state of the output-merger stage.
  2188. </summary>
  2189. <remarks>
  2190. Any returned interfaces will have their reference count incremented by one. Applications should call {{IUnknown::Release}} on the returned interfaces when they are no longer needed to avoid memory leaks.
  2191. </remarks>
  2192. <param name="stencilRefRef">Pointer to the stencil reference value used in the {{depth-stencil}} test. </param>
  2193. <returns>a reference to a depth-stencil state interface (see <see cref="T:SharpDX.Direct3D10.DepthStencilState"/>) to be filled with information from the device.</returns>
  2194. <unmanaged>void OMGetDepthStencilState([Out, Optional] ID3D10DepthStencilState** ppDepthStencilState,[Out, Optional] int* pStencilRef)</unmanaged>
  2195. </member>
  2196. <member name="M:SharpDX.Direct3D10.OutputMergerStage.SetTargets(SharpDX.Direct3D10.RenderTargetView[])">
  2197. <summary>
  2198. Binds a set of render targets to the output-merger stage.
  2199. </summary>
  2200. <param name = "renderTargetViews">A set of render target views to bind.</param>
  2201. </member>
  2202. <member name="M:SharpDX.Direct3D10.OutputMergerStage.SetTargets(SharpDX.Direct3D10.RenderTargetView)">
  2203. <summary>
  2204. Binds a single render target to the output-merger stage.
  2205. </summary>
  2206. <param name = "renderTargetView">A view of the render target to bind.</param>
  2207. </member>
  2208. <member name="M:SharpDX.Direct3D10.OutputMergerStage.SetTargets(SharpDX.Direct3D10.DepthStencilView,SharpDX.Direct3D10.RenderTargetView[])">
  2209. <summary>
  2210. Binds a depth-stencil buffer and a set of render targets to the output-merger stage.
  2211. </summary>
  2212. <param name = "depthStencilView">A view of the depth-stencil buffer to bind.</param>
  2213. <param name = "renderTargetViews">A set of render target views to bind.</param>
  2214. </member>
  2215. <member name="M:SharpDX.Direct3D10.OutputMergerStage.SetTargets(SharpDX.Direct3D10.DepthStencilView,SharpDX.Direct3D10.RenderTargetView)">
  2216. <summary>
  2217. Binds a depth-stencil buffer and a single render target to the output-merger stage.
  2218. </summary>
  2219. <param name = "depthStencilView">A view of the depth-stencil buffer to bind.</param>
  2220. <param name = "renderTargetView">A view of the render target to bind.</param>
  2221. </member>
  2222. <member name="P:SharpDX.Direct3D10.OutputMergerStage.BlendFactor">
  2223. <summary>
  2224. Gets or sets the blend factor.
  2225. </summary>
  2226. <value>The blend factor.</value>
  2227. </member>
  2228. <member name="P:SharpDX.Direct3D10.OutputMergerStage.BlendSampleMask">
  2229. <summary>
  2230. Gets or sets the blend sample mask.
  2231. </summary>
  2232. <value>The blend sample mask.</value>
  2233. </member>
  2234. <member name="P:SharpDX.Direct3D10.OutputMergerStage.BlendState">
  2235. <summary>
  2236. Gets or sets the state of the blend.
  2237. </summary>
  2238. <value>The state of the blend.</value>
  2239. </member>
  2240. <member name="P:SharpDX.Direct3D10.OutputMergerStage.DepthStencilReference">
  2241. <summary>
  2242. Gets or sets the depth stencil reference.
  2243. </summary>
  2244. <value>The depth stencil reference.</value>
  2245. </member>
  2246. <member name="P:SharpDX.Direct3D10.OutputMergerStage.DepthStencilState">
  2247. <summary>
  2248. Gets or sets the state of the depth stencil.
  2249. </summary>
  2250. <value>The state of the depth stencil.</value>
  2251. </member>
  2252. <member name="M:SharpDX.Direct3D10.OutputMergerStage.#ctor(System.IntPtr)">
  2253. <summary>
  2254. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.OutputMergerStage"/> class.
  2255. </summary>
  2256. <param name="nativePtr">The native pointer.</param>
  2257. </member>
  2258. <member name="M:SharpDX.Direct3D10.OutputMergerStage.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.OutputMergerStage">
  2259. <summary>
  2260. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.OutputMergerStage"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  2261. </summary>
  2262. <param name="nativePointer">The native pointer.</param>
  2263. <returns>
  2264. The result of the conversion.
  2265. </returns>
  2266. </member>
  2267. <member name="M:SharpDX.Direct3D10.OutputMergerStage.SetRenderTargets(System.Int32,SharpDX.Direct3D10.RenderTargetView[],SharpDX.Direct3D10.DepthStencilView)">
  2268. <summary>
  2269. <p>Bind one or more render targets and the depth-stencil buffer to the output-merger stage.</p>
  2270. </summary>
  2271. <param name="numViews">No documentation.</param>
  2272. <param name="renderTargetViewsOut">No documentation.</param>
  2273. <param name="depthStencilViewRef">No documentation.</param>
  2274. <remarks>
  2275. <p>A call to <strong>OMSetRenderTargets</strong> overrides all bounded render targets and the depth stencil target regardless of the number of render targets in <em>ppRenderTargetViews</em>.</p><p>The maximum number of render targets a device can have active at any given time is set by a #define in D3D10.h called D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT. It is invalid to try to set the same subresource to multiple render target slots.</p><p>If any subresources are also currently bound for reading or writing (perhaps in a different part of the pipeline), those bind points will be <strong><c>null</c></strong>'ed out to prevent the same subresource from being read and written simultaneously in a single rendering operation.</p><p>The method will not hold references to the interfaces passed in. For that reason, applications should be careful not to release interfaces currently in use by the device.</p><p>See Binding Resources and Pipeline stages for more information on binding resources.</p><p>The pixel shader must be able to simultaneously render to at least eight separate render targets. All of these render targets must access the same type of resource: Buffer, Texture1D, Texture1DArray, Texture2D, Texture2DArray, Texture3D, or TextureCube. All render targets must have the same size in all dimensions (width and height, and depth for 3D or array size for *Array types). If render targets use multisample anti-aliasing, all bound render targets and depth buffer must be the same form of multisample resource (that is, the sample counts must be the same). Each render target can have a different data format. These render target formats are not required to have identical bit-per-element counts.</p><p>Any combination of the eight slots for render targets can have a render target set or not set.</p><p>The same resource view cannot be bound to multiple render target slots simultaneously. However, you can set multiple non-overlapping resource views of a single resource as simultaneous multiple render targets.</p>
  2276. </remarks>
  2277. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::OMSetRenderTargets']/*" />
  2278. <msdn-id>bb173597</msdn-id>
  2279. <unmanaged>void ID3D10Device::OMSetRenderTargets([In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10RenderTargetView** ppRenderTargetViews,[In, Optional] ID3D10DepthStencilView* pDepthStencilView)</unmanaged>
  2280. <unmanaged-short>ID3D10Device::OMSetRenderTargets</unmanaged-short>
  2281. </member>
  2282. <member name="M:SharpDX.Direct3D10.OutputMergerStage.SetRenderTargets(System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.RenderTargetView},SharpDX.Direct3D10.DepthStencilView)">
  2283. <summary>
  2284. <p>Bind one or more render targets and the depth-stencil buffer to the output-merger stage.</p>
  2285. </summary>
  2286. <param name="numViews">No documentation.</param>
  2287. <param name="renderTargetViewsOut">No documentation.</param>
  2288. <param name="depthStencilViewRef">No documentation.</param>
  2289. <remarks>
  2290. <p>A call to <strong>OMSetRenderTargets</strong> overrides all bounded render targets and the depth stencil target regardless of the number of render targets in <em>ppRenderTargetViews</em>.</p><p>The maximum number of render targets a device can have active at any given time is set by a #define in D3D10.h called D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT. It is invalid to try to set the same subresource to multiple render target slots.</p><p>If any subresources are also currently bound for reading or writing (perhaps in a different part of the pipeline), those bind points will be <strong><c>null</c></strong>'ed out to prevent the same subresource from being read and written simultaneously in a single rendering operation.</p><p>The method will not hold references to the interfaces passed in. For that reason, applications should be careful not to release interfaces currently in use by the device.</p><p>See Binding Resources and Pipeline stages for more information on binding resources.</p><p>The pixel shader must be able to simultaneously render to at least eight separate render targets. All of these render targets must access the same type of resource: Buffer, Texture1D, Texture1DArray, Texture2D, Texture2DArray, Texture3D, or TextureCube. All render targets must have the same size in all dimensions (width and height, and depth for 3D or array size for *Array types). If render targets use multisample anti-aliasing, all bound render targets and depth buffer must be the same form of multisample resource (that is, the sample counts must be the same). Each render target can have a different data format. These render target formats are not required to have identical bit-per-element counts.</p><p>Any combination of the eight slots for render targets can have a render target set or not set.</p><p>The same resource view cannot be bound to multiple render target slots simultaneously. However, you can set multiple non-overlapping resource views of a single resource as simultaneous multiple render targets.</p>
  2291. </remarks>
  2292. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::OMSetRenderTargets']/*" />
  2293. <msdn-id>bb173597</msdn-id>
  2294. <unmanaged>void ID3D10Device::OMSetRenderTargets([In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10RenderTargetView** ppRenderTargetViews,[In, Optional] ID3D10DepthStencilView* pDepthStencilView)</unmanaged>
  2295. <unmanaged-short>ID3D10Device::OMSetRenderTargets</unmanaged-short>
  2296. </member>
  2297. <member name="M:SharpDX.Direct3D10.OutputMergerStage.SetRenderTargets(System.Int32,System.IntPtr,System.IntPtr)">
  2298. <summary>
  2299. <p>Bind one or more render targets and the depth-stencil buffer to the output-merger stage.</p>
  2300. </summary>
  2301. <param name="numViews">No documentation.</param>
  2302. <param name="renderTargetViewsOut">No documentation.</param>
  2303. <param name="depthStencilViewRef">No documentation.</param>
  2304. <remarks>
  2305. <p>A call to <strong>OMSetRenderTargets</strong> overrides all bounded render targets and the depth stencil target regardless of the number of render targets in <em>ppRenderTargetViews</em>.</p><p>The maximum number of render targets a device can have active at any given time is set by a #define in D3D10.h called D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT. It is invalid to try to set the same subresource to multiple render target slots.</p><p>If any subresources are also currently bound for reading or writing (perhaps in a different part of the pipeline), those bind points will be <strong><c>null</c></strong>'ed out to prevent the same subresource from being read and written simultaneously in a single rendering operation.</p><p>The method will not hold references to the interfaces passed in. For that reason, applications should be careful not to release interfaces currently in use by the device.</p><p>See Binding Resources and Pipeline stages for more information on binding resources.</p><p>The pixel shader must be able to simultaneously render to at least eight separate render targets. All of these render targets must access the same type of resource: Buffer, Texture1D, Texture1DArray, Texture2D, Texture2DArray, Texture3D, or TextureCube. All render targets must have the same size in all dimensions (width and height, and depth for 3D or array size for *Array types). If render targets use multisample anti-aliasing, all bound render targets and depth buffer must be the same form of multisample resource (that is, the sample counts must be the same). Each render target can have a different data format. These render target formats are not required to have identical bit-per-element counts.</p><p>Any combination of the eight slots for render targets can have a render target set or not set.</p><p>The same resource view cannot be bound to multiple render target slots simultaneously. However, you can set multiple non-overlapping resource views of a single resource as simultaneous multiple render targets.</p>
  2306. </remarks>
  2307. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::OMSetRenderTargets']/*" />
  2308. <msdn-id>bb173597</msdn-id>
  2309. <unmanaged>void ID3D10Device::OMSetRenderTargets([In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10RenderTargetView** ppRenderTargetViews,[In, Optional] ID3D10DepthStencilView* pDepthStencilView)</unmanaged>
  2310. <unmanaged-short>ID3D10Device::OMSetRenderTargets</unmanaged-short>
  2311. </member>
  2312. <member name="M:SharpDX.Direct3D10.OutputMergerStage.SetBlendState(SharpDX.Direct3D10.BlendState,SharpDX.Mathematics.Interop.RawColor4,System.Int32)">
  2313. <summary>
  2314. <p>Set the blend state of the output-merger stage.</p>
  2315. </summary>
  2316. <param name="blendStateRef">No documentation.</param>
  2317. <param name="blendFactor">No documentation.</param>
  2318. <param name="sampleMask">No documentation.</param>
  2319. <remarks>
  2320. <p>Blend state is used by the output-merger stage to determine how to blend together two RGB pixel values and two alpha values. The two RGB pixel values and two alpha values are the RGB pixel value and alpha value that the pixel shader outputs and the RGB pixel value and alpha value already in the output render target. The <strong>blend option</strong> controls the data source that the blending stage uses to modulate values for the pixel shader, render target, or both. The <strong>blend operation</strong> controls how the blending stage mathematically combines these modulated values.</p><p>To create a blend-state interface, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateBlendState(SharpDX.Direct3D10.BlendStateDescription@,SharpDX.Direct3D10.BlendState)" /></strong>.</p><p>Passing in <strong><c>null</c></strong> for the blend-state interface indicates to the runtime to set a default blending state. The following table indicates the default blending parameters.</p><table> <tr><th>State</th><th>Default Value</th></tr> <tr><td>AlphaToCoverageEnable</td><td><strong><see cref="F:SharpDX.Result.False" /></strong></td></tr> <tr><td>BlendEnable</td><td><strong><see cref="F:SharpDX.Result.False" /></strong>[8]</td></tr> <tr><td>SrcBlend</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.One" /></td></tr> <tr><td>DstBlend</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.Zero" /></td></tr> <tr><td>BlendOp</td><td><see cref="F:SharpDX.Direct3D10.BlendOperation.Add" /></td></tr> <tr><td>SrcBlendAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.One" /></td></tr> <tr><td>DstBlendAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.Zero" /></td></tr> <tr><td>BlendOpAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOperation.Add" /></td></tr> <tr><td>RenderTargetWriteMask[8]</td><td><see cref="F:SharpDX.Direct3D10.ColorWriteMaskFlags.All" />[8]</td></tr> </table><p>?</p><p>A sample mask determines which samples get updated in all the active render targets. The mapping of bits in a sample mask to samples in a multisample render target is the responsibility of an individual application. A sample mask is always applied; it is independent of whether multisampling is enabled, and does not depend on whether an application uses multisample render targets.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  2321. </remarks>
  2322. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::OMSetBlendState']/*" />
  2323. <msdn-id>bb173595</msdn-id>
  2324. <unmanaged>void ID3D10Device::OMSetBlendState([In, Optional] ID3D10BlendState* pBlendState,[In] const SHARPDX_COLOR4* BlendFactor,[In] unsigned int SampleMask)</unmanaged>
  2325. <unmanaged-short>ID3D10Device::OMSetBlendState</unmanaged-short>
  2326. </member>
  2327. <member name="M:SharpDX.Direct3D10.OutputMergerStage.SetDepthStencilState(SharpDX.Direct3D10.DepthStencilState,System.Int32)">
  2328. <summary>
  2329. <p>Sets the depth-stencil state of the output-merger stage.</p>
  2330. </summary>
  2331. <param name="depthStencilStateRef">No documentation.</param>
  2332. <param name="stencilRef">No documentation.</param>
  2333. <remarks>
  2334. <p>To create a depth-stencil state interface, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateDepthStencilState(SharpDX.Direct3D10.DepthStencilStateDescription@,SharpDX.Direct3D10.DepthStencilState)" /></strong>.</p><p>Depth-stencil state is used by the output-merger stage to setup depth-stencil testing. The stencil reference value is the control value used in the depth-stencil test.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  2335. </remarks>
  2336. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::OMSetDepthStencilState']/*" />
  2337. <msdn-id>bb173596</msdn-id>
  2338. <unmanaged>void ID3D10Device::OMSetDepthStencilState([In, Optional] ID3D10DepthStencilState* pDepthStencilState,[In] unsigned int StencilRef)</unmanaged>
  2339. <unmanaged-short>ID3D10Device::OMSetDepthStencilState</unmanaged-short>
  2340. </member>
  2341. <member name="M:SharpDX.Direct3D10.OutputMergerStage.GetRenderTargets(System.Int32,SharpDX.Direct3D10.RenderTargetView[],SharpDX.Direct3D10.DepthStencilView@)">
  2342. <summary>
  2343. <p>Get references to the render targets and the depth-stencil buffer that are available to the output-merger stage.</p>
  2344. </summary>
  2345. <param name="numViews">No documentation.</param>
  2346. <param name="renderTargetViewsOut">No documentation.</param>
  2347. <param name="depthStencilViewOut">No documentation.</param>
  2348. <remarks>
  2349. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  2350. </remarks>
  2351. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::OMGetRenderTargets']/*" />
  2352. <msdn-id>bb173594</msdn-id>
  2353. <unmanaged>void ID3D10Device::OMGetRenderTargets([In] unsigned int NumViews,[Out, Buffer, Optional] ID3D10RenderTargetView** ppRenderTargetViews,[Out, Optional] ID3D10DepthStencilView** ppDepthStencilView)</unmanaged>
  2354. <unmanaged-short>ID3D10Device::OMGetRenderTargets</unmanaged-short>
  2355. </member>
  2356. <member name="M:SharpDX.Direct3D10.OutputMergerStage.GetBlendState(SharpDX.Direct3D10.BlendState@,SharpDX.Mathematics.Interop.RawColor4@,System.Int32@)">
  2357. <summary>
  2358. <p>Get the blend state of the output-merger stage.</p>
  2359. </summary>
  2360. <param name="blendStateOut">No documentation.</param>
  2361. <param name="blendFactor">No documentation.</param>
  2362. <param name="sampleMaskRef">No documentation.</param>
  2363. <remarks>
  2364. <p>The reference count of the returned interface will be incremented by one when the blend state is retrieved. Applications must release returned reference(s) when they are no longer needed, or else there will be a memory leak.</p>
  2365. </remarks>
  2366. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::OMGetBlendState']/*" />
  2367. <msdn-id>bb173592</msdn-id>
  2368. <unmanaged>void ID3D10Device::OMGetBlendState([Out, Optional] ID3D10BlendState** ppBlendState,[Out, Optional] SHARPDX_COLOR4* BlendFactor,[Out, Optional] unsigned int* pSampleMask)</unmanaged>
  2369. <unmanaged-short>ID3D10Device::OMGetBlendState</unmanaged-short>
  2370. </member>
  2371. <member name="M:SharpDX.Direct3D10.OutputMergerStage.GetDepthStencilState(SharpDX.Direct3D10.DepthStencilState@,System.Int32@)">
  2372. <summary>
  2373. <p>Gets the depth-stencil state of the output-merger stage.</p>
  2374. </summary>
  2375. <param name="depthStencilStateOut">No documentation.</param>
  2376. <param name="stencilRefRef">No documentation.</param>
  2377. <remarks>
  2378. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  2379. </remarks>
  2380. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::OMGetDepthStencilState']/*" />
  2381. <msdn-id>bb173593</msdn-id>
  2382. <unmanaged>void ID3D10Device::OMGetDepthStencilState([Out, Optional] ID3D10DepthStencilState** ppDepthStencilState,[Out, Optional] unsigned int* pStencilRef)</unmanaged>
  2383. <unmanaged-short>ID3D10Device::OMGetDepthStencilState</unmanaged-short>
  2384. </member>
  2385. <member name="T:SharpDX.Direct3D10.RasterizerStage">
  2386. <summary>
  2387. <p>The device interface represents a virtual adapter for Direct3D 10.0; it is used to perform rendering and create Direct3D resources.</p>
  2388. </summary>
  2389. <remarks>
  2390. <p>A device is created using <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>.</p>
  2391. </remarks>
  2392. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device']/*" />
  2393. <msdn-id>bb173528</msdn-id>
  2394. <unmanaged>ID3D10Device</unmanaged>
  2395. <unmanaged-short>ID3D10Device</unmanaged-short>
  2396. </member>
  2397. <member name="M:SharpDX.Direct3D10.RasterizerStage.GetViewports">
  2398. <summary>
  2399. Get the array of {{viewports}} bound to the {{rasterizer stage}}
  2400. </summary>
  2401. <returns>An array of viewports (see <see cref="T:SharpDX.Mathematics.Interop.RawViewport"/>).</returns>
  2402. <unmanaged>void RSGetViewports([InOut] int* NumViewports,[Out, Buffer, Optional] D3D10_VIEWPORT* pViewports)</unmanaged>
  2403. </member>
  2404. <member name="M:SharpDX.Direct3D10.RasterizerStage.GetViewports(SharpDX.Mathematics.Interop.RawViewport[])">
  2405. <summary>
  2406. Get the array of {{viewports}} bound to the {{rasterizer stage}}
  2407. </summary>
  2408. <returns>An array of viewports (see <see cref="T:SharpDX.Mathematics.Interop.RawViewport"/>).</returns>
  2409. <unmanaged>void RSGetViewports([InOut] int* NumViewports,[Out, Buffer, Optional] D3D10_VIEWPORT* pViewports)</unmanaged>
  2410. </member>
  2411. <member name="M:SharpDX.Direct3D10.RasterizerStage.GetScissorRectangles">
  2412. <summary>
  2413. Get the array of {{scissor rectangles}} bound to the {{rasterizer stage}}.
  2414. </summary>
  2415. <returns>An array of scissor rectangles (see <see cref="T:SharpDX.Mathematics.Interop.RawRectangle"/>).</returns>
  2416. <unmanaged>void RSGetScissorRects([InOut] int* NumRects,[Out, Buffer, Optional] D3D10_RECT* pRects)</unmanaged>
  2417. </member>
  2418. <member name="M:SharpDX.Direct3D10.RasterizerStage.GetScissorRectangles(SharpDX.Mathematics.Interop.RawRectangle[])">
  2419. <summary>
  2420. Get the array of {{scissor rectangles}} bound to the {{rasterizer stage}}.
  2421. </summary>
  2422. <returns>An array of scissor rectangles (see <see cref="T:SharpDX.Mathematics.Interop.RawRectangle"/>).</returns>
  2423. <unmanaged>void RSGetScissorRects([InOut] int* NumRects,[Out, Buffer, Optional] D3D10_RECT* pRects)</unmanaged>
  2424. </member>
  2425. <member name="M:SharpDX.Direct3D10.RasterizerStage.SetScissorRectangles(SharpDX.Mathematics.Interop.RawRectangle)">
  2426. <summary>
  2427. Binds a single scissor rectangle to the rasterizer stage.
  2428. </summary>
  2429. <param name = "scissorRectangle">The scissor rectangle to bind.</param>
  2430. </member>
  2431. <member name="M:SharpDX.Direct3D10.RasterizerStage.SetScissorRectangles(SharpDX.Mathematics.Interop.RawRectangle[])">
  2432. <summary>
  2433. Binds a set of scissor rectangles to the rasterizer stage.
  2434. </summary>
  2435. <param name = "scissorRectangles">The set of scissor rectangles to bind.</param>
  2436. </member>
  2437. <member name="M:SharpDX.Direct3D10.RasterizerStage.SetViewports(SharpDX.Mathematics.Interop.RawViewport[])">
  2438. <summary>
  2439. Binds a set of viewports to the rasterizer stage.
  2440. </summary>
  2441. <param name = "viewports">The set of viewports to bind.</param>
  2442. </member>
  2443. <member name="M:SharpDX.Direct3D10.RasterizerStage.SetViewports(SharpDX.Mathematics.Interop.RawViewport)">
  2444. <summary>
  2445. Binds a single viewport to the rasterizer stage.
  2446. </summary>
  2447. <param name = "viewport">The viewport to bind.</param>
  2448. </member>
  2449. <member name="M:SharpDX.Direct3D10.RasterizerStage.#ctor(System.IntPtr)">
  2450. <summary>
  2451. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.RasterizerStage"/> class.
  2452. </summary>
  2453. <param name="nativePtr">The native pointer.</param>
  2454. </member>
  2455. <member name="M:SharpDX.Direct3D10.RasterizerStage.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.RasterizerStage">
  2456. <summary>
  2457. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.RasterizerStage"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  2458. </summary>
  2459. <param name="nativePointer">The native pointer.</param>
  2460. <returns>
  2461. The result of the conversion.
  2462. </returns>
  2463. </member>
  2464. <member name="P:SharpDX.Direct3D10.RasterizerStage.State">
  2465. <summary>
  2466. <p>Get or sets the <strong>rasterizer state</strong> from the rasterizer stage of the pipeline.</p>
  2467. </summary>
  2468. <remarks>
  2469. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  2470. </remarks>
  2471. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::RSGetState']/*" />
  2472. <msdn-id>bb173609</msdn-id>
  2473. <unmanaged>RSGetState / RSSetState</unmanaged>
  2474. <unmanaged-short>RSGetState</unmanaged-short>
  2475. <unmanaged>void ID3D10Device::RSGetState([Out] ID3D10RasterizerState** ppRasterizerState)</unmanaged>
  2476. </member>
  2477. <member name="M:SharpDX.Direct3D10.RasterizerStage.SetState(SharpDX.Direct3D10.RasterizerState)">
  2478. <summary>
  2479. <p>Set the <strong>rasterizer state</strong> for the rasterizer stage of the pipeline.</p>
  2480. </summary>
  2481. <param name="rasterizerStateRef">No documentation.</param>
  2482. <remarks>
  2483. <p>To create a rasterizer state interface, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateRasterizerState(SharpDX.Direct3D10.RasterizerStateDescription@,SharpDX.Direct3D10.RasterizerState)" /></strong>. For more details on setting up the rasterizer state, see Set Rasterizer State.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  2484. </remarks>
  2485. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::RSSetState']/*" />
  2486. <msdn-id>bb173612</msdn-id>
  2487. <unmanaged>void ID3D10Device::RSSetState([In, Optional] ID3D10RasterizerState* pRasterizerState)</unmanaged>
  2488. <unmanaged-short>ID3D10Device::RSSetState</unmanaged-short>
  2489. </member>
  2490. <member name="M:SharpDX.Direct3D10.RasterizerStage.SetViewports(System.Int32,SharpDX.Mathematics.Interop.RawViewport[])">
  2491. <summary>
  2492. <p>Bind an array of viewports to the rasterizer stage of the pipeline.</p>
  2493. </summary>
  2494. <param name="numViewports">No documentation.</param>
  2495. <param name="viewportsRef">No documentation.</param>
  2496. <remarks>
  2497. <p>All viewports must be set atomically as one operation. Any viewports not defined by the call are disabled.</p><p>Which viewport to use is determined by the SV_ViewportArrayIndex semantic output by a geometry shader (see shader semantic syntax). If a geometry shader does not make use of the SV_ViewportArrayIndex semantic then Direct3D will use the first viewport in the array.</p>
  2498. </remarks>
  2499. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::RSSetViewports']/*" />
  2500. <msdn-id>bb173613</msdn-id>
  2501. <unmanaged>void ID3D10Device::RSSetViewports([In] unsigned int NumViewports,[In, Buffer, Optional] const D3D10_VIEWPORT* pViewports)</unmanaged>
  2502. <unmanaged-short>ID3D10Device::RSSetViewports</unmanaged-short>
  2503. </member>
  2504. <member name="M:SharpDX.Direct3D10.RasterizerStage.SetScissorRects(System.Int32,SharpDX.Mathematics.Interop.RawRectangle[])">
  2505. <summary>
  2506. <p>Bind an array of scissor rectangles to the rasterizer stage.</p>
  2507. </summary>
  2508. <param name="numRects">No documentation.</param>
  2509. <param name="rectsRef">No documentation.</param>
  2510. <remarks>
  2511. <p>The scissor rectangles will only be used if ScissorEnable is set to true in the rasterizer state (see <strong><see cref="T:SharpDX.Direct3D10.RasterizerStateDescription" /></strong>).</p><p>Which scissor rectangle to use is determined by the SV_ViewportArrayIndex semantic output by a geometry shader (see shader semantic syntax). If a geometry shader does not make use of the SV_ViewportArrayIndex semantic then Direct3D will use the first scissor rectangle in the array.</p><p>Each scissor rectangle in the array corresponds to a viewport in an array of viewports (see <strong><see cref="M:SharpDX.Direct3D10.RasterizerStage.SetViewports(SharpDX.Mathematics.Interop.RawViewport[])" /></strong>).</p>
  2512. </remarks>
  2513. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::RSSetScissorRects']/*" />
  2514. <msdn-id>bb173611</msdn-id>
  2515. <unmanaged>void ID3D10Device::RSSetScissorRects([In] unsigned int NumRects,[In, Buffer, Optional] const RECT* pRects)</unmanaged>
  2516. <unmanaged-short>ID3D10Device::RSSetScissorRects</unmanaged-short>
  2517. </member>
  2518. <member name="M:SharpDX.Direct3D10.RasterizerStage.GetState(SharpDX.Direct3D10.RasterizerState@)">
  2519. <summary>
  2520. <p>Get the <strong>rasterizer state</strong> from the rasterizer stage of the pipeline.</p>
  2521. </summary>
  2522. <param name="rasterizerStateOut">No documentation.</param>
  2523. <remarks>
  2524. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  2525. </remarks>
  2526. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::RSGetState']/*" />
  2527. <msdn-id>bb173609</msdn-id>
  2528. <unmanaged>void ID3D10Device::RSGetState([Out] ID3D10RasterizerState** ppRasterizerState)</unmanaged>
  2529. <unmanaged-short>ID3D10Device::RSGetState</unmanaged-short>
  2530. </member>
  2531. <member name="M:SharpDX.Direct3D10.RasterizerStage.GetViewports(System.Int32@,SharpDX.Mathematics.Interop.RawViewport[])">
  2532. <summary>
  2533. <p>Get the array of viewports bound to the rasterizer stage </p>
  2534. </summary>
  2535. <param name="numViewports">No documentation.</param>
  2536. <param name="viewportsRef">No documentation.</param>
  2537. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::RSGetViewports']/*" />
  2538. <msdn-id>bb173610</msdn-id>
  2539. <unmanaged>void ID3D10Device::RSGetViewports([InOut] unsigned int* NumViewports,[Out, Buffer, Optional] D3D10_VIEWPORT* pViewports)</unmanaged>
  2540. <unmanaged-short>ID3D10Device::RSGetViewports</unmanaged-short>
  2541. </member>
  2542. <member name="M:SharpDX.Direct3D10.RasterizerStage.GetScissorRects(System.Int32@,SharpDX.Mathematics.Interop.RawRectangle[])">
  2543. <summary>
  2544. <p>Get the array of scissor rectangles bound to the rasterizer stage.</p>
  2545. </summary>
  2546. <param name="numRects">No documentation.</param>
  2547. <param name="rectsRef">No documentation.</param>
  2548. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::RSGetScissorRects']/*" />
  2549. <msdn-id>bb173608</msdn-id>
  2550. <unmanaged>void ID3D10Device::RSGetScissorRects([InOut] unsigned int* NumRects,[Out, Buffer, Optional] RECT* pRects)</unmanaged>
  2551. <unmanaged-short>ID3D10Device::RSGetScissorRects</unmanaged-short>
  2552. </member>
  2553. <member name="T:SharpDX.Direct3D10.StreamOutputStage">
  2554. <summary>
  2555. <p>The device interface represents a virtual adapter for Direct3D 10.0; it is used to perform rendering and create Direct3D resources.</p>
  2556. </summary>
  2557. <remarks>
  2558. <p>A device is created using <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>.</p>
  2559. </remarks>
  2560. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device']/*" />
  2561. <msdn-id>bb173528</msdn-id>
  2562. <unmanaged>ID3D10Device</unmanaged>
  2563. <unmanaged-short>ID3D10Device</unmanaged-short>
  2564. </member>
  2565. <member name="M:SharpDX.Direct3D10.StreamOutputStage.SetTargets(SharpDX.Direct3D10.StreamOutputBufferBinding[])">
  2566. <summary>
  2567. Set the target output {{buffers}} for the {{StreamOutput}} stage, which enables/disables the pipeline to stream-out data.
  2568. </summary>
  2569. <remarks>
  2570. Call ID3D10Device::SOSetTargets (before any draw calls) to stream data out; call SOSetTargets with NULL to stop streaming data out. For an example, see Exercise 01 from the GDC 2007 workshop, which sets the stream output render targets before calling draw methods in the RenderInstanceToStream function. An offset of -1 will cause the stream output buffer to be appended, continuing after the last location written to the buffer in a previous stream output pass. Calling this method using a buffer that is currently bound for writing will effectively bind NULL instead because a buffer cannot be bound as both an input and an output at the same time. The {{DeviceDebug Layer}} will generate a warning whenever a resource is prevented from being bound simultaneously as an input and an output, but this will not prevent invalid data from being used by the runtime. The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.
  2571. </remarks>
  2572. <param name="bufferBindings">an array of output buffers (see <see cref="T:SharpDX.Direct3D10.StreamOutputBufferBinding"/>) to bind to the device. The buffers must have been created with the <see cref="F:SharpDX.Direct3D10.BindFlags.StreamOutput"/> flag. </param>
  2573. <unmanaged>void SOSetTargets([In] int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppSOTargets,[In, Buffer, Optional] const int* pOffsets)</unmanaged>
  2574. </member>
  2575. <member name="M:SharpDX.Direct3D10.StreamOutputStage.GetTargets(System.Int32)">
  2576. <summary>
  2577. Get the target output {{buffers}} for the {{StreamOutput}} stage of the pipeline.
  2578. </summary>
  2579. <remarks>
  2580. Any returned interfaces will have their reference count incremented by one. Applications should call {{IUnknown::Release}} on the returned interfaces when they are no longer needed to avoid memory leaks.
  2581. </remarks>
  2582. <param name="numBuffers">Number of buffers to get. A maximum of four output buffers can be retrieved. </param>
  2583. <returns>an array of output buffers (see <see cref="T:SharpDX.Direct3D10.StreamOutputBufferBinding"/>) to bind to the device.</returns>
  2584. <unmanaged>void SOGetTargets([In] int NumBuffers,[Out, Buffer, Optional] ID3D10Buffer** ppSOTargets,[Out, Buffer, Optional] int* pOffsets)</unmanaged>
  2585. </member>
  2586. <member name="M:SharpDX.Direct3D10.StreamOutputStage.#ctor(System.IntPtr)">
  2587. <summary>
  2588. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.StreamOutputStage"/> class.
  2589. </summary>
  2590. <param name="nativePtr">The native pointer.</param>
  2591. </member>
  2592. <member name="M:SharpDX.Direct3D10.StreamOutputStage.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.StreamOutputStage">
  2593. <summary>
  2594. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.StreamOutputStage"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  2595. </summary>
  2596. <param name="nativePointer">The native pointer.</param>
  2597. <returns>
  2598. The result of the conversion.
  2599. </returns>
  2600. </member>
  2601. <member name="M:SharpDX.Direct3D10.StreamOutputStage.SetTargets(System.Int32,SharpDX.Direct3D10.Buffer[],System.Int32[])">
  2602. <summary>
  2603. <p>Set the target output buffers for the StreamOutput stage, which enables/disables the pipeline to stream-out data.</p>
  2604. </summary>
  2605. <param name="numBuffers">No documentation.</param>
  2606. <param name="sOTargetsOut">No documentation.</param>
  2607. <param name="offsetsRef">No documentation.</param>
  2608. <remarks>
  2609. <p>Call <strong><see cref="M:SharpDX.Direct3D10.StreamOutputStage.SetTargets(SharpDX.Direct3D10.StreamOutputBufferBinding[])" /></strong> (before any draw calls) to stream data out; call SOSetTargets with <strong><c>null</c></strong> to stop streaming data out. For an example, see Exercise 01 from the GDC 2007 workshop, which sets the stream output rendertargets before calling draw methods in the RenderInstanceToStream function.</p><p>An offset of -1 will cause the stream output buffer to be appended, continuing after the last location written to the buffer in a previous stream output pass.</p><p>Calling this method using a buffer that is currently bound for writing will effectively bind <strong><c>null</c></strong> instead because a buffer cannot be bound as both an input and an output at the same time.</p><p>The Debug Layer will generate a warning whenever a resource is prevented from being bound simultaneously as an input and an output, but this will not prevent invalid data from being used by the runtime.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  2610. </remarks>
  2611. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::SOSetTargets']/*" />
  2612. <msdn-id>bb173620</msdn-id>
  2613. <unmanaged>void ID3D10Device::SOSetTargets([In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppSOTargets,[In, Buffer, Optional] const unsigned int* pOffsets)</unmanaged>
  2614. <unmanaged-short>ID3D10Device::SOSetTargets</unmanaged-short>
  2615. </member>
  2616. <member name="M:SharpDX.Direct3D10.StreamOutputStage.SetTargets(System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.Buffer},System.Int32[])">
  2617. <summary>
  2618. <p>Set the target output buffers for the StreamOutput stage, which enables/disables the pipeline to stream-out data.</p>
  2619. </summary>
  2620. <param name="numBuffers">No documentation.</param>
  2621. <param name="sOTargetsOut">No documentation.</param>
  2622. <param name="offsetsRef">No documentation.</param>
  2623. <remarks>
  2624. <p>Call <strong><see cref="M:SharpDX.Direct3D10.StreamOutputStage.SetTargets(SharpDX.Direct3D10.StreamOutputBufferBinding[])" /></strong> (before any draw calls) to stream data out; call SOSetTargets with <strong><c>null</c></strong> to stop streaming data out. For an example, see Exercise 01 from the GDC 2007 workshop, which sets the stream output rendertargets before calling draw methods in the RenderInstanceToStream function.</p><p>An offset of -1 will cause the stream output buffer to be appended, continuing after the last location written to the buffer in a previous stream output pass.</p><p>Calling this method using a buffer that is currently bound for writing will effectively bind <strong><c>null</c></strong> instead because a buffer cannot be bound as both an input and an output at the same time.</p><p>The Debug Layer will generate a warning whenever a resource is prevented from being bound simultaneously as an input and an output, but this will not prevent invalid data from being used by the runtime.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  2625. </remarks>
  2626. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::SOSetTargets']/*" />
  2627. <msdn-id>bb173620</msdn-id>
  2628. <unmanaged>void ID3D10Device::SOSetTargets([In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppSOTargets,[In, Buffer, Optional] const unsigned int* pOffsets)</unmanaged>
  2629. <unmanaged-short>ID3D10Device::SOSetTargets</unmanaged-short>
  2630. </member>
  2631. <member name="M:SharpDX.Direct3D10.StreamOutputStage.SetTargets(System.Int32,System.IntPtr,System.IntPtr)">
  2632. <summary>
  2633. <p>Set the target output buffers for the StreamOutput stage, which enables/disables the pipeline to stream-out data.</p>
  2634. </summary>
  2635. <param name="numBuffers">No documentation.</param>
  2636. <param name="sOTargetsOut">No documentation.</param>
  2637. <param name="offsetsRef">No documentation.</param>
  2638. <remarks>
  2639. <p>Call <strong><see cref="M:SharpDX.Direct3D10.StreamOutputStage.SetTargets(SharpDX.Direct3D10.StreamOutputBufferBinding[])" /></strong> (before any draw calls) to stream data out; call SOSetTargets with <strong><c>null</c></strong> to stop streaming data out. For an example, see Exercise 01 from the GDC 2007 workshop, which sets the stream output rendertargets before calling draw methods in the RenderInstanceToStream function.</p><p>An offset of -1 will cause the stream output buffer to be appended, continuing after the last location written to the buffer in a previous stream output pass.</p><p>Calling this method using a buffer that is currently bound for writing will effectively bind <strong><c>null</c></strong> instead because a buffer cannot be bound as both an input and an output at the same time.</p><p>The Debug Layer will generate a warning whenever a resource is prevented from being bound simultaneously as an input and an output, but this will not prevent invalid data from being used by the runtime.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  2640. </remarks>
  2641. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::SOSetTargets']/*" />
  2642. <msdn-id>bb173620</msdn-id>
  2643. <unmanaged>void ID3D10Device::SOSetTargets([In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppSOTargets,[In, Buffer, Optional] const unsigned int* pOffsets)</unmanaged>
  2644. <unmanaged-short>ID3D10Device::SOSetTargets</unmanaged-short>
  2645. </member>
  2646. <member name="M:SharpDX.Direct3D10.StreamOutputStage.GetTargets(System.Int32,SharpDX.Direct3D10.Buffer[],System.Int32[])">
  2647. <summary>
  2648. <p>Get the target output buffers for the StreamOutput stage of the pipeline.</p>
  2649. </summary>
  2650. <param name="numBuffers">No documentation.</param>
  2651. <param name="sOTargetsOut">No documentation.</param>
  2652. <param name="offsetsRef">No documentation.</param>
  2653. <remarks>
  2654. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  2655. </remarks>
  2656. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::SOGetTargets']/*" />
  2657. <msdn-id>bb173619</msdn-id>
  2658. <unmanaged>void ID3D10Device::SOGetTargets([In] unsigned int NumBuffers,[Out, Buffer, Optional] ID3D10Buffer** ppSOTargets,[Out, Buffer, Optional] unsigned int* pOffsets)</unmanaged>
  2659. <unmanaged-short>ID3D10Device::SOGetTargets</unmanaged-short>
  2660. </member>
  2661. <member name="T:SharpDX.Direct3D10.Device1">
  2662. <summary>
  2663. <p>The device interface represents a virtual adapter for Direct3D 10.1; it is used to perform rendering and create Direct3D resources.</p>
  2664. </summary>
  2665. <remarks>
  2666. <p>A device is created using <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /></strong>.</p><p>This method requires Windows Vista Service Pack 1.</p>
  2667. </remarks>
  2668. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device1']/*" />
  2669. <msdn-id>bb694546</msdn-id>
  2670. <unmanaged>ID3D10Device1</unmanaged>
  2671. <unmanaged-short>ID3D10Device1</unmanaged-short>
  2672. </member>
  2673. <member name="M:SharpDX.Direct3D10.Device1.#ctor(SharpDX.Direct3D10.DriverType)">
  2674. <summary>
  2675. Constructor for a D3D10.1 Device. See <see cref = "M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /> for more information.
  2676. </summary>
  2677. <param name = "driverType"></param>
  2678. </member>
  2679. <member name="M:SharpDX.Direct3D10.Device1.#ctor(SharpDX.DXGI.Adapter)">
  2680. <summary>
  2681. Constructor for a D3D10.1 Device. See <see cref = "M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /> for more information.
  2682. </summary>
  2683. <param name = "adapter"></param>
  2684. </member>
  2685. <member name="M:SharpDX.Direct3D10.Device1.#ctor(SharpDX.Direct3D10.DriverType,SharpDX.Direct3D10.DeviceCreationFlags)">
  2686. <summary>
  2687. Constructor for a D3D10.1 Device. See <see cref = "M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /> for more information.
  2688. </summary>
  2689. <param name = "driverType"></param>
  2690. <param name = "flags"></param>
  2691. </member>
  2692. <member name="M:SharpDX.Direct3D10.Device1.#ctor(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DeviceCreationFlags)">
  2693. <summary>
  2694. Constructor for a D3D10.1 Device. See <see cref = "M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /> for more information.
  2695. </summary>
  2696. <param name = "adapter"></param>
  2697. <param name = "flags"></param>
  2698. </member>
  2699. <member name="M:SharpDX.Direct3D10.Device1.#ctor(SharpDX.Direct3D10.DriverType,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel)">
  2700. <summary>
  2701. Constructor for a D3D10.1 Device. See <see cref = "M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /> for more information.
  2702. </summary>
  2703. <param name = "driverType"></param>
  2704. <param name = "flags"></param>
  2705. <param name="featureLevel"></param>
  2706. </member>
  2707. <member name="M:SharpDX.Direct3D10.Device1.#ctor(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel)">
  2708. <summary>
  2709. Constructor for a D3D10.1 Device. See <see cref = "M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /> for more information.
  2710. </summary>
  2711. <param name = "adapter"></param>
  2712. <param name = "flags"></param>
  2713. <param name="featureLevel"></param>
  2714. </member>
  2715. <member name="M:SharpDX.Direct3D10.Device1.CreateWithSwapChain(SharpDX.Direct3D10.DriverType,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.DXGI.SwapChainDescription,SharpDX.Direct3D10.Device1@,SharpDX.DXGI.SwapChain@)">
  2716. <summary>
  2717. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Device1" /> class along with a new <see cref = "T:SharpDX.DXGI.SwapChain" /> used for rendering.
  2718. </summary>
  2719. <param name = "driverType">The type of device to create.</param>
  2720. <param name = "flags">A list of runtime layers to enable.</param>
  2721. <param name = "swapChainDescription">Details used to create the swap chain.</param>
  2722. <param name = "device">When the method completes, contains the created device instance.</param>
  2723. <param name = "swapChain">When the method completes, contains the created swap chain instance.</param>
  2724. <returns>A <see cref = "T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2725. </member>
  2726. <member name="M:SharpDX.Direct3D10.Device1.CreateWithSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.DXGI.SwapChainDescription,SharpDX.Direct3D10.Device1@,SharpDX.DXGI.SwapChain@)">
  2727. <summary>
  2728. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Device1" /> class along with a new <see cref = "T:SharpDX.DXGI.SwapChain" /> used for rendering.
  2729. </summary>
  2730. <param name = "adapter">The video adapter on which the device should be created.</param>
  2731. <param name = "flags">A list of runtime layers to enable.</param>
  2732. <param name = "swapChainDescription">Details used to create the swap chain.</param>
  2733. <param name = "device">When the method completes, contains the created device instance.</param>
  2734. <param name = "swapChain">When the method completes, contains the created swap chain instance.</param>
  2735. <returns>A <see cref = "T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2736. </member>
  2737. <member name="M:SharpDX.Direct3D10.Device1.CreateWithSwapChain(SharpDX.Direct3D10.DriverType,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.DXGI.SwapChainDescription,SharpDX.Direct3D10.FeatureLevel,SharpDX.Direct3D10.Device1@,SharpDX.DXGI.SwapChain@)">
  2738. <summary>
  2739. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Device1" /> class along with a new <see cref = "T:SharpDX.DXGI.SwapChain" /> used for rendering.
  2740. </summary>
  2741. <param name = "driverType">The type of device to create.</param>
  2742. <param name = "flags">A list of runtime layers to enable.</param>
  2743. <param name = "swapChainDescription">Details used to create the swap chain.</param>
  2744. <param name="featureLevel">Desired feature level</param>
  2745. <param name = "device">When the method completes, contains the created device instance.</param>
  2746. <param name = "swapChain">When the method completes, contains the created swap chain instance.</param>
  2747. <returns>A <see cref = "T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2748. </member>
  2749. <member name="M:SharpDX.Direct3D10.Device1.CreateWithSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.DXGI.SwapChainDescription,SharpDX.Direct3D10.FeatureLevel,SharpDX.Direct3D10.Device1@,SharpDX.DXGI.SwapChain@)">
  2750. <summary>
  2751. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Device1" /> class along with a new <see cref = "T:SharpDX.DXGI.SwapChain" /> used for rendering.
  2752. </summary>
  2753. <param name = "adapter">The video adapter on which the device should be created.</param>
  2754. <param name = "flags">A list of runtime layers to enable.</param>
  2755. <param name = "swapChainDescription">Details used to create the swap chain.</param>
  2756. <param name="featureLevel">Desired feature level</param>
  2757. <param name = "device">When the method completes, contains the created device instance.</param>
  2758. <param name = "swapChain">When the method completes, contains the created swap chain instance.</param>
  2759. <returns>A <see cref = "T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2760. </member>
  2761. <member name="M:SharpDX.Direct3D10.Device1.CreateWithSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.DXGI.SwapChainDescription,SharpDX.Direct3D10.FeatureLevel,SharpDX.Direct3D10.Device1@,SharpDX.DXGI.SwapChain@)">
  2762. <summary>
  2763. This overload has been deprecated. Use one of the alternatives that does not take both an adapter and a driver type.
  2764. </summary>
  2765. </member>
  2766. <member name="M:SharpDX.Direct3D10.Device1.#ctor(System.IntPtr)">
  2767. <summary>
  2768. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Device1"/> class.
  2769. </summary>
  2770. <param name="nativePtr">The native pointer.</param>
  2771. </member>
  2772. <member name="M:SharpDX.Direct3D10.Device1.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Device1">
  2773. <summary>
  2774. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Device1"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  2775. </summary>
  2776. <param name="nativePointer">The native pointer.</param>
  2777. <returns>
  2778. The result of the conversion.
  2779. </returns>
  2780. </member>
  2781. <member name="P:SharpDX.Direct3D10.Device1.FeatureLevel">
  2782. <summary>
  2783. <p>Gets the feature level of the hardware device.</p>
  2784. </summary>
  2785. <remarks>
  2786. <p>This method requires Windows Vista Service Pack 1.</p>
  2787. </remarks>
  2788. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device1::GetFeatureLevel']/*" />
  2789. <msdn-id>bb694549</msdn-id>
  2790. <unmanaged>GetFeatureLevel</unmanaged>
  2791. <unmanaged-short>GetFeatureLevel</unmanaged-short>
  2792. <unmanaged>D3D10_FEATURE_LEVEL1 ID3D10Device1::GetFeatureLevel()</unmanaged>
  2793. </member>
  2794. <member name="M:SharpDX.Direct3D10.Device1.CreateShaderResourceView1(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription1},SharpDX.Direct3D10.ShaderResourceView1)">
  2795. <summary>
  2796. <p>Create a shader-resource view for accessing data in a resource.</p>
  2797. </summary>
  2798. <param name="resourceRef">No documentation.</param>
  2799. <param name="descRef">No documentation.</param>
  2800. <param name="sRViewOut">No documentation.</param>
  2801. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  2802. <remarks>
  2803. <p>A resource is made up of one or more subresources, a view identifies which subresources to allow the pipeline to access. In addition, each resource is bound to the pipeline using a view. A shader-resource view is designed to bind any buffer or texture resource to the shader stages using the following API methods: <strong>VSSetShaderResources</strong>, <strong>GSSetShaderResources</strong> and <strong>PSSetShaderResources</strong>.</p><p>Since a view is fully typed, this means that typeless resources become fully typed when bound to the pipeline.</p><p>This method requires Windows Vista Service Pack 1.</p>
  2804. </remarks>
  2805. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device1::CreateShaderResourceView1']/*" />
  2806. <msdn-id>bb694548</msdn-id>
  2807. <unmanaged>HRESULT ID3D10Device1::CreateShaderResourceView1([In] ID3D10Resource* pResource,[In, Optional] const D3D10_SHADER_RESOURCE_VIEW_DESC1* pDesc,[Out, Fast] ID3D10ShaderResourceView1** ppSRView)</unmanaged>
  2808. <unmanaged-short>ID3D10Device1::CreateShaderResourceView1</unmanaged-short>
  2809. </member>
  2810. <member name="M:SharpDX.Direct3D10.Device1.CreateBlendState1(SharpDX.Direct3D10.BlendStateDescription1@,SharpDX.Direct3D10.BlendState1)">
  2811. <summary>
  2812. <p>Create a blend-state object that encapsules blend state for the output-merger stage.</p>
  2813. </summary>
  2814. <param name="blendStateDescRef"><dd> <p>Pointer to a blend-state description (see <strong><see cref="T:SharpDX.Direct3D10.BlendStateDescription1" /></strong>).</p> </dd></param>
  2815. <param name="blendStateOut"><dd> <p>Address of a reference to the blend-state object created (see <strong><see cref="T:SharpDX.Direct3D10.BlendState1" /> Interface</strong>).</p> </dd></param>
  2816. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  2817. <remarks>
  2818. <p>An application can create up to 4096 unique blend-state objects. For each object created, the runtime checks to see if a previous object has the same state. If such a previous object exists, the runtime will return a reference to previous instance instead of creating a duplicate object.</p><p>This method requires Windows Vista Service Pack 1.</p>
  2819. </remarks>
  2820. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device1::CreateBlendState1']/*" />
  2821. <msdn-id>bb694547</msdn-id>
  2822. <unmanaged>HRESULT ID3D10Device1::CreateBlendState1([In] const D3D10_BLEND_DESC1* pBlendStateDesc,[Out, Fast] ID3D10BlendState1** ppBlendState)</unmanaged>
  2823. <unmanaged-short>ID3D10Device1::CreateBlendState1</unmanaged-short>
  2824. </member>
  2825. <member name="M:SharpDX.Direct3D10.Device1.GetFeatureLevel">
  2826. <summary>
  2827. <p>Gets the feature level of the hardware device.</p>
  2828. </summary>
  2829. <returns><p>The feature level (see <strong><see cref="T:SharpDX.Direct3D10.FeatureLevel" /></strong>).</p></returns>
  2830. <remarks>
  2831. <p>This method requires Windows Vista Service Pack 1.</p>
  2832. </remarks>
  2833. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device1::GetFeatureLevel']/*" />
  2834. <msdn-id>bb694549</msdn-id>
  2835. <unmanaged>D3D10_FEATURE_LEVEL1 ID3D10Device1::GetFeatureLevel()</unmanaged>
  2836. <unmanaged-short>ID3D10Device1::GetFeatureLevel</unmanaged-short>
  2837. </member>
  2838. <member name="T:SharpDX.Direct3D10.DeviceChild">
  2839. <summary>
  2840. <p>A device-child interface accesses data used by a device.</p>
  2841. </summary>
  2842. <remarks>
  2843. <p>There are several types of device child interfaces, all of which inherit this interface. They include shaders, state objects, and input layouts.</p>
  2844. </remarks>
  2845. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DeviceChild']/*" />
  2846. <msdn-id>bb173529</msdn-id>
  2847. <unmanaged>ID3D10DeviceChild</unmanaged>
  2848. <unmanaged-short>ID3D10DeviceChild</unmanaged-short>
  2849. </member>
  2850. <member name="P:SharpDX.Direct3D10.DeviceChild.DebugName">
  2851. <summary>
  2852. Gets or sets the debug-name for this object.
  2853. </summary>
  2854. <value>
  2855. The debug name.
  2856. </value>
  2857. </member>
  2858. <member name="M:SharpDX.Direct3D10.DeviceChild.#ctor(System.IntPtr)">
  2859. <summary>
  2860. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.DeviceChild"/> class.
  2861. </summary>
  2862. <param name="nativePtr">The native pointer.</param>
  2863. </member>
  2864. <member name="M:SharpDX.Direct3D10.DeviceChild.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.DeviceChild">
  2865. <summary>
  2866. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.DeviceChild"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  2867. </summary>
  2868. <param name="nativePointer">The native pointer.</param>
  2869. <returns>
  2870. The result of the conversion.
  2871. </returns>
  2872. </member>
  2873. <member name="P:SharpDX.Direct3D10.DeviceChild.Device">
  2874. <summary>
  2875. <p>Get a reference to the device that created this interface.</p>
  2876. </summary>
  2877. <remarks>
  2878. <p>Any returned interfaces will have their reference count incremented by one, so be sure to call ::release() on the returned reference(s) before they are freed or else you will have a memory leak.</p>
  2879. </remarks>
  2880. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DeviceChild::GetDevice']/*" />
  2881. <msdn-id>bb173530</msdn-id>
  2882. <unmanaged>GetDevice</unmanaged>
  2883. <unmanaged-short>GetDevice</unmanaged-short>
  2884. <unmanaged>void ID3D10DeviceChild::GetDevice([Out] ID3D10Device** ppDevice)</unmanaged>
  2885. </member>
  2886. <member name="M:SharpDX.Direct3D10.DeviceChild.GetDevice(SharpDX.Direct3D10.Device@)">
  2887. <summary>
  2888. <p>Get a reference to the device that created this interface.</p>
  2889. </summary>
  2890. <param name="deviceOut"><dd> <p>Address of a reference to a device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>).</p> </dd></param>
  2891. <remarks>
  2892. <p>Any returned interfaces will have their reference count incremented by one, so be sure to call ::release() on the returned reference(s) before they are freed or else you will have a memory leak.</p>
  2893. </remarks>
  2894. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DeviceChild::GetDevice']/*" />
  2895. <msdn-id>bb173530</msdn-id>
  2896. <unmanaged>void ID3D10DeviceChild::GetDevice([Out] ID3D10Device** ppDevice)</unmanaged>
  2897. <unmanaged-short>ID3D10DeviceChild::GetDevice</unmanaged-short>
  2898. </member>
  2899. <member name="M:SharpDX.Direct3D10.DeviceChild.GetPrivateData(System.Guid,System.Int32@,System.IntPtr)">
  2900. <summary>
  2901. <p>Get application-defined data from a device child.</p>
  2902. </summary>
  2903. <param name="guid"><dd> <p>Guid associated with the data.</p> </dd></param>
  2904. <param name="dataSizeRef"><dd> <p>Size of the data.</p> </dd></param>
  2905. <param name="dataRef"><dd> <p>Pointer to the data stored with the device child. If pData is <strong><c>null</c></strong>, DataSize must also be 0, and any data previously associated with the guid will be destroyed.</p> </dd></param>
  2906. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  2907. <remarks>
  2908. <p>The data stored in the device child is set with <strong><see cref="M:SharpDX.Direct3D10.DeviceChild.SetPrivateData(System.Guid,System.Int32,System.IntPtr)" /></strong>.</p>
  2909. </remarks>
  2910. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DeviceChild::GetPrivateData']/*" />
  2911. <msdn-id>bb173531</msdn-id>
  2912. <unmanaged>HRESULT ID3D10DeviceChild::GetPrivateData([In] const GUID&amp; guid,[InOut] unsigned int* pDataSize,[Out, Buffer, Optional] void* pData)</unmanaged>
  2913. <unmanaged-short>ID3D10DeviceChild::GetPrivateData</unmanaged-short>
  2914. </member>
  2915. <member name="M:SharpDX.Direct3D10.DeviceChild.SetPrivateData(System.Guid,System.Int32,System.IntPtr)">
  2916. <summary>
  2917. <p>Set application-defined data to a device child and associate that data with an application-defined guid.</p>
  2918. </summary>
  2919. <param name="guid"><dd> <p>Guid associated with the data.</p> </dd></param>
  2920. <param name="dataSize"><dd> <p>Size of the data.</p> </dd></param>
  2921. <param name="dataRef"><dd> <p>Pointer to the data to be stored with this device child. If pData is <strong><c>null</c></strong>, DataSize must also be 0, and any data previously associated with the specified guid will be destroyed.</p> </dd></param>
  2922. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  2923. <remarks>
  2924. <p>The data stored in the device child with this method can be retrieved with <strong><see cref="M:SharpDX.Direct3D10.DeviceChild.GetPrivateData(System.Guid,System.Int32@,System.IntPtr)" /></strong>.</p>
  2925. </remarks>
  2926. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DeviceChild::SetPrivateData']/*" />
  2927. <msdn-id>bb173532</msdn-id>
  2928. <unmanaged>HRESULT ID3D10DeviceChild::SetPrivateData([In] const GUID&amp; guid,[In] unsigned int DataSize,[In, Buffer, Optional] const void* pData)</unmanaged>
  2929. <unmanaged-short>ID3D10DeviceChild::SetPrivateData</unmanaged-short>
  2930. </member>
  2931. <member name="M:SharpDX.Direct3D10.DeviceChild.SetPrivateDataInterface(System.Guid,SharpDX.ComObject)">
  2932. <summary>
  2933. <p>Associate an <see cref="T:SharpDX.ComObject" />-derived interface with this device child and associate that interface with an application-defined guid.</p>
  2934. </summary>
  2935. <param name="guid">No documentation.</param>
  2936. <param name="dataRef">No documentation.</param>
  2937. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  2938. <remarks>
  2939. <p>When this method is called ::addref() will be called on the <see cref="T:SharpDX.ComObject" />-derived interface, and when the device child is detroyed ::release() will be called on the <see cref="T:SharpDX.ComObject" />-derived interface.</p>
  2940. </remarks>
  2941. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10DeviceChild::SetPrivateDataInterface']/*" />
  2942. <msdn-id>bb173533</msdn-id>
  2943. <unmanaged>HRESULT ID3D10DeviceChild::SetPrivateDataInterface([In] const GUID&amp; guid,[In, Optional] const IUnknown* pData)</unmanaged>
  2944. <unmanaged-short>ID3D10DeviceChild::SetPrivateDataInterface</unmanaged-short>
  2945. </member>
  2946. <member name="T:SharpDX.Direct3D10.DeviceDebug">
  2947. <summary>
  2948. <p>A debug interface controls debug settings, validates pipeline state and can only be used if the debug layer is turned on.</p>
  2949. </summary>
  2950. <remarks>
  2951. <p>This interface is obtained by querying it from the <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong> using IUnknown::QueryInterface.</p>
  2952. </remarks>
  2953. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Debug']/*" />
  2954. <msdn-id>bb173516</msdn-id>
  2955. <unmanaged>ID3D10Debug</unmanaged>
  2956. <unmanaged-short>ID3D10Debug</unmanaged-short>
  2957. </member>
  2958. <member name="M:SharpDX.Direct3D10.DeviceDebug.#ctor(SharpDX.Direct3D10.Device)">
  2959. <summary>
  2960. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.DeviceDebug"/> class.
  2961. </summary>
  2962. <param name="device">The device.</param>
  2963. </member>
  2964. <member name="P:SharpDX.Direct3D10.DeviceDebug.FeatureFlags">
  2965. <summary>
  2966. Gets or sets the feature flags that indicates which debug features are on or off.
  2967. </summary>
  2968. <value>The feature flags.</value>
  2969. </member>
  2970. <member name="M:SharpDX.Direct3D10.DeviceDebug.#ctor(System.IntPtr)">
  2971. <summary>
  2972. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.DeviceDebug"/> class.
  2973. </summary>
  2974. <param name="nativePtr">The native pointer.</param>
  2975. </member>
  2976. <member name="M:SharpDX.Direct3D10.DeviceDebug.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.DeviceDebug">
  2977. <summary>
  2978. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.DeviceDebug"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  2979. </summary>
  2980. <param name="nativePointer">The native pointer.</param>
  2981. <returns>
  2982. The result of the conversion.
  2983. </returns>
  2984. </member>
  2985. <member name="P:SharpDX.Direct3D10.DeviceDebug.PresentPerRenderOpDelay">
  2986. <summary>
  2987. <p>Get or sets the number of milliseconds to sleep after <strong>Present</strong> is called.</p>
  2988. </summary>
  2989. <remarks>
  2990. <p>Value is set with <strong><see cref="M:SharpDX.Direct3D10.DeviceDebug.SetPresentPerRenderOpDelay(System.Int32)" /></strong>.</p>
  2991. </remarks>
  2992. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Debug::GetPresentPerRenderOpDelay']/*" />
  2993. <msdn-id>bb173518</msdn-id>
  2994. <unmanaged>GetPresentPerRenderOpDelay / SetPresentPerRenderOpDelay</unmanaged>
  2995. <unmanaged-short>GetPresentPerRenderOpDelay</unmanaged-short>
  2996. <unmanaged>unsigned int ID3D10Debug::GetPresentPerRenderOpDelay()</unmanaged>
  2997. </member>
  2998. <member name="P:SharpDX.Direct3D10.DeviceDebug.SwapChain">
  2999. <summary>
  3000. <p>Get or sets the swap chain that the runtime will use for automatically calling <strong>Present</strong>.</p>
  3001. </summary>
  3002. <remarks>
  3003. <p>The swap chain retrieved by this method will only be used if <see cref="F:SharpDX.Direct3D10.DebugFeatureFlags.PresentPerRender" /> is set in the <strong>feature mask</strong>.</p>
  3004. </remarks>
  3005. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Debug::GetSwapChain']/*" />
  3006. <msdn-id>bb173519</msdn-id>
  3007. <unmanaged>GetSwapChain / SetSwapChain</unmanaged>
  3008. <unmanaged-short>GetSwapChain</unmanaged-short>
  3009. <unmanaged>HRESULT ID3D10Debug::GetSwapChain([Out] IDXGISwapChain** ppSwapChain)</unmanaged>
  3010. </member>
  3011. <member name="M:SharpDX.Direct3D10.DeviceDebug.SetFeatureFlags(System.Int32)">
  3012. <summary>
  3013. <p>Set a bitfield of flags that will turn debug features on and off.</p>
  3014. </summary>
  3015. <param name="mask"><dd> <p>Feature-mask flags bitwise ORed together. If a flag is present, then that feature will be set to on, otherwise the feature will be set to off. See remarks for a list of flags.</p> </dd></param>
  3016. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  3017. <remarks>
  3018. <p><strong>Note</strong>??If you call this API in a Session 0 process, it returns <strong><see cref="F:SharpDX.DXGI.ResultCode.NotCurrentlyAvailable" /></strong>.</p><p>Setting a feature-mask flag will cause a rendering-operation method (listed below) to do some extra task when called. The possible feature flags are:</p><table> <tr><td><see cref="F:SharpDX.Direct3D10.DebugFeatureFlags.FinishPerRender" /></td><td>Application will wait for the GPU to finish processing the rendering operation before continuing.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.DebugFeatureFlags.FlushPerRender" /></td><td>Runtime will additionally call <strong><see cref="M:SharpDX.Direct3D10.Device.Flush" /></strong>.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D10.DebugFeatureFlags.PresentPerRender" /></td><td>Runtime will call <strong>Present</strong>. Presentation of render buffers will occur according to the settings established by prior calls to <strong><see cref="M:SharpDX.Direct3D10.DeviceDebug.SetSwapChain(SharpDX.DXGI.SwapChain)" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.DeviceDebug.SetPresentPerRenderOpDelay(System.Int32)" /></strong>.</td></tr> </table><p>?</p><p>These feature-mask flags apply to the following rendering-operation methods:</p><ul> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.Draw(System.Int32,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.DrawIndexed(System.Int32,System.Int32,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.DrawInstanced(System.Int32,System.Int32,System.Int32,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.DrawIndexedInstanced(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.DrawAuto" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.ClearRenderTargetView(SharpDX.Direct3D10.RenderTargetView,SharpDX.Mathematics.Interop.RawColor4)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.ClearDepthStencilView(SharpDX.Direct3D10.DepthStencilView,SharpDX.Direct3D10.DepthStencilClearFlags,System.Single,System.Byte)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.CopySubresourceRegion_(SharpDX.Direct3D10.Resource,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D10.Resource,System.Int32,System.Nullable{SharpDX.Direct3D10.ResourceRegion})" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.CopyResource_(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.Resource)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.UpdateSubresource(SharpDX.DataBox,SharpDX.Direct3D10.Resource,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.GenerateMips(SharpDX.Direct3D10.ShaderResourceView)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Device.ResolveSubresource_(SharpDX.Direct3D10.Resource,System.Int32,SharpDX.Direct3D10.Resource,System.Int32,SharpDX.DXGI.Format)" /></strong> </li> </ul>
  3019. </remarks>
  3020. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Debug::SetFeatureMask']/*" />
  3021. <msdn-id>bb173520</msdn-id>
  3022. <unmanaged>HRESULT ID3D10Debug::SetFeatureMask([In] unsigned int Mask)</unmanaged>
  3023. <unmanaged-short>ID3D10Debug::SetFeatureMask</unmanaged-short>
  3024. </member>
  3025. <member name="M:SharpDX.Direct3D10.DeviceDebug.GetFeatureFlags">
  3026. <summary>
  3027. <p>Get a bitfield of flags that indicates which debug features are on or off.</p>
  3028. </summary>
  3029. <returns><p>Mask of feature-mask flags bitwise ORed together. If a flag is present, then that feature will be set to on, otherwise the feature will be set to off. See <strong><see cref="M:SharpDX.Direct3D10.DeviceDebug.SetFeatureFlags(System.Int32)" /></strong> for a list of possible feature-mask flags.</p></returns>
  3030. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Debug::GetFeatureMask']/*" />
  3031. <msdn-id>bb173517</msdn-id>
  3032. <unmanaged>unsigned int ID3D10Debug::GetFeatureMask()</unmanaged>
  3033. <unmanaged-short>ID3D10Debug::GetFeatureMask</unmanaged-short>
  3034. </member>
  3035. <member name="M:SharpDX.Direct3D10.DeviceDebug.SetPresentPerRenderOpDelay(System.Int32)">
  3036. <summary>
  3037. <p>Set the number of milliseconds to sleep after <strong>Present</strong> is called.</p>
  3038. </summary>
  3039. <param name="milliseconds">No documentation.</param>
  3040. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  3041. <remarks>
  3042. <p><strong>Note</strong>??If you call this API in a Session 0 process, it returns <strong><see cref="F:SharpDX.DXGI.ResultCode.NotCurrentlyAvailable" /></strong>.</p><p>The application will only sleep if <see cref="F:SharpDX.Direct3D10.DebugFeatureFlags.PresentPerRender" /> is a set in the <strong>feature mask</strong>. If that flag is not set the number of milliseconds is set but ignored and the application does not sleep. 10ms is used as a default value if this method is never called.</p>
  3043. </remarks>
  3044. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Debug::SetPresentPerRenderOpDelay']/*" />
  3045. <msdn-id>bb173521</msdn-id>
  3046. <unmanaged>HRESULT ID3D10Debug::SetPresentPerRenderOpDelay([In] unsigned int Milliseconds)</unmanaged>
  3047. <unmanaged-short>ID3D10Debug::SetPresentPerRenderOpDelay</unmanaged-short>
  3048. </member>
  3049. <member name="M:SharpDX.Direct3D10.DeviceDebug.GetPresentPerRenderOpDelay">
  3050. <summary>
  3051. <p>Get the number of milliseconds to sleep after <strong>Present</strong> is called.</p>
  3052. </summary>
  3053. <returns><p>Number of milliseconds to sleep after Present is called.</p></returns>
  3054. <remarks>
  3055. <p>Value is set with <strong><see cref="M:SharpDX.Direct3D10.DeviceDebug.SetPresentPerRenderOpDelay(System.Int32)" /></strong>.</p>
  3056. </remarks>
  3057. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Debug::GetPresentPerRenderOpDelay']/*" />
  3058. <msdn-id>bb173518</msdn-id>
  3059. <unmanaged>unsigned int ID3D10Debug::GetPresentPerRenderOpDelay()</unmanaged>
  3060. <unmanaged-short>ID3D10Debug::GetPresentPerRenderOpDelay</unmanaged-short>
  3061. </member>
  3062. <member name="M:SharpDX.Direct3D10.DeviceDebug.SetSwapChain(SharpDX.DXGI.SwapChain)">
  3063. <summary>
  3064. <p>Set a swap chain that the runtime will use for automatically calling <strong>Present</strong>.</p>
  3065. </summary>
  3066. <param name="swapChainRef">No documentation.</param>
  3067. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  3068. <remarks>
  3069. <p><strong>Note</strong>??If you call this API in a Session 0 process, it returns <strong><see cref="F:SharpDX.DXGI.ResultCode.NotCurrentlyAvailable" /></strong>.</p><p>The swap chain set by this method will only be used if <see cref="F:SharpDX.Direct3D10.DebugFeatureFlags.PresentPerRender" /> is set in the <strong>feature mask</strong>.</p>
  3070. </remarks>
  3071. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Debug::SetSwapChain']/*" />
  3072. <msdn-id>bb173522</msdn-id>
  3073. <unmanaged>HRESULT ID3D10Debug::SetSwapChain([In, Optional] IDXGISwapChain* pSwapChain)</unmanaged>
  3074. <unmanaged-short>ID3D10Debug::SetSwapChain</unmanaged-short>
  3075. </member>
  3076. <member name="M:SharpDX.Direct3D10.DeviceDebug.GetSwapChain(SharpDX.DXGI.SwapChain@)">
  3077. <summary>
  3078. <p>Get the swap chain that the runtime will use for automatically calling <strong>Present</strong>.</p>
  3079. </summary>
  3080. <param name="swapChainOut">No documentation.</param>
  3081. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  3082. <remarks>
  3083. <p>The swap chain retrieved by this method will only be used if <see cref="F:SharpDX.Direct3D10.DebugFeatureFlags.PresentPerRender" /> is set in the <strong>feature mask</strong>.</p>
  3084. </remarks>
  3085. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Debug::GetSwapChain']/*" />
  3086. <msdn-id>bb173519</msdn-id>
  3087. <unmanaged>HRESULT ID3D10Debug::GetSwapChain([Out] IDXGISwapChain** ppSwapChain)</unmanaged>
  3088. <unmanaged-short>ID3D10Debug::GetSwapChain</unmanaged-short>
  3089. </member>
  3090. <member name="M:SharpDX.Direct3D10.DeviceDebug.Validate">
  3091. <summary>
  3092. <p>Check the validity of pipeline state.</p>
  3093. </summary>
  3094. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  3095. <remarks>
  3096. <p>When the debug layer is turned on all draw functions will do this operation.</p>
  3097. </remarks>
  3098. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Debug::Validate']/*" />
  3099. <msdn-id>bb173523</msdn-id>
  3100. <unmanaged>HRESULT ID3D10Debug::Validate()</unmanaged>
  3101. <unmanaged-short>ID3D10Debug::Validate</unmanaged-short>
  3102. </member>
  3103. <member name="T:SharpDX.Direct3D10.Effect">
  3104. <summary>
  3105. <p>An <strong><see cref="T:SharpDX.Direct3D10.Effect" /></strong> interface manages a set of state objects, resources, and shaders for implementing a rendering effect.</p>
  3106. </summary>
  3107. <remarks>
  3108. <p>An effect is created by calling <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateEffectFromMemory(System.IntPtr,SharpDX.PointerSize,System.Int32,SharpDX.Direct3D10.Device,SharpDX.Direct3D10.EffectPool,SharpDX.Direct3D10.Effect)" /></strong>.</p><p>The effect system groups the information required for rendering into an effect which contains: state objects for assigning state changes in groups, resources for supplying input data and storing output data, and programs that control how the rendering is done called shaders. For more information, see Effects (Direct3D 10).</p><p><strong>Note</strong>??</p><p>If you call <strong>QueryInterface</strong> on an <strong><see cref="T:SharpDX.Direct3D10.Effect" /></strong> object to retrieve the <strong><see cref="T:SharpDX.ComObject" /></strong> interface, <strong>QueryInterface</strong> returns E_NOINTERFACE. To work around this issue, use the following code:</p><pre> <see cref="T:SharpDX.ComObject" />* pIUnknown = (<see cref="T:SharpDX.ComObject" />*)pEffect; pIUnknown-&gt;AddRef();
  3109. </pre>
  3110. </remarks>
  3111. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect']/*" />
  3112. <msdn-id>bb173630</msdn-id>
  3113. <unmanaged>ID3D10Effect</unmanaged>
  3114. <unmanaged-short>ID3D10Effect</unmanaged-short>
  3115. </member>
  3116. <member name="M:SharpDX.Direct3D10.Effect.#ctor(SharpDX.Direct3D10.Device,System.Byte[],SharpDX.D3DCompiler.EffectFlags,SharpDX.Direct3D10.EffectPool)">
  3117. <summary>
  3118. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Effect"/> class.
  3119. </summary>
  3120. <param name="device">The device.</param>
  3121. <param name="effectByteCode">The effect byte code.</param>
  3122. <param name="fxFlags">Effect compile options</param>
  3123. <param name="effectPool">Optional. A reference to an memory space for effect variables that are shared across effects (see <see cref="T:SharpDX.Direct3D10.EffectPool"/>).</param>
  3124. </member>
  3125. <member name="M:SharpDX.Direct3D10.Effect.#ctor(System.IntPtr)">
  3126. <summary>
  3127. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Effect"/> class.
  3128. </summary>
  3129. <param name="nativePtr">The native pointer.</param>
  3130. </member>
  3131. <member name="M:SharpDX.Direct3D10.Effect.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Effect">
  3132. <summary>
  3133. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Effect"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  3134. </summary>
  3135. <param name="nativePointer">The native pointer.</param>
  3136. <returns>
  3137. The result of the conversion.
  3138. </returns>
  3139. </member>
  3140. <member name="P:SharpDX.Direct3D10.Effect.IsValid">
  3141. <summary>
  3142. <p>Test an effect to see if it contains valid syntax.</p>
  3143. </summary>
  3144. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::IsValid']/*" />
  3145. <msdn-id>bb173772</msdn-id>
  3146. <unmanaged>IsValid</unmanaged>
  3147. <unmanaged-short>IsValid</unmanaged-short>
  3148. <unmanaged>BOOL ID3D10Effect::IsValid()</unmanaged>
  3149. </member>
  3150. <member name="P:SharpDX.Direct3D10.Effect.IsPool">
  3151. <summary>
  3152. <p>Test an effect to see if it is part of a memory pool.</p>
  3153. </summary>
  3154. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::IsPool']/*" />
  3155. <msdn-id>bb173771</msdn-id>
  3156. <unmanaged>IsPool</unmanaged>
  3157. <unmanaged-short>IsPool</unmanaged-short>
  3158. <unmanaged>BOOL ID3D10Effect::IsPool()</unmanaged>
  3159. </member>
  3160. <member name="P:SharpDX.Direct3D10.Effect.Device">
  3161. <summary>
  3162. <p>Get the device that created the effect.</p>
  3163. </summary>
  3164. <remarks>
  3165. <p>An effect is created for a specific device, by calling a function such as <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateEffectFromFile(System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,SharpDX.Direct3D10.EffectPool,System.IntPtr,SharpDX.Direct3D10.Effect@,SharpDX.Direct3D.Blob@,SharpDX.Result@)" /></strong>.</p>
  3166. </remarks>
  3167. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetDevice']/*" />
  3168. <msdn-id>bb173764</msdn-id>
  3169. <unmanaged>GetDevice</unmanaged>
  3170. <unmanaged-short>GetDevice</unmanaged-short>
  3171. <unmanaged>HRESULT ID3D10Effect::GetDevice([Out] ID3D10Device** ppDevice)</unmanaged>
  3172. </member>
  3173. <member name="P:SharpDX.Direct3D10.Effect.Description">
  3174. <summary>
  3175. <p>Get an effect description.</p>
  3176. </summary>
  3177. <remarks>
  3178. <p>An effect description contains basic information about an effect such as the techniques it contains and the constant buffer resources it requires.</p>
  3179. </remarks>
  3180. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetDesc']/*" />
  3181. <msdn-id>bb173763</msdn-id>
  3182. <unmanaged>GetDesc</unmanaged>
  3183. <unmanaged-short>GetDesc</unmanaged-short>
  3184. <unmanaged>HRESULT ID3D10Effect::GetDesc([Out] D3D10_EFFECT_DESC* pDesc)</unmanaged>
  3185. </member>
  3186. <member name="P:SharpDX.Direct3D10.Effect.IsOptimized">
  3187. <summary>
  3188. <p>Test an effect to see if the reflection metadata has been removed from memory.</p>
  3189. </summary>
  3190. <remarks>
  3191. <p>An effect uses memory space two different ways: to store the information required by the runtime to execute an effect, and to store the metadata required to reflect information back to an application using the API. You can minimize the amount of memory required by an effect by calling <strong><see cref="M:SharpDX.Direct3D10.Effect.Optimize" /></strong> which removes the reflection metadata from memory. Of course, API methods to read variables will no longer work once reflection data has been removed.</p>
  3192. </remarks>
  3193. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::IsOptimized']/*" />
  3194. <msdn-id>bb173770</msdn-id>
  3195. <unmanaged>IsOptimized</unmanaged>
  3196. <unmanaged-short>IsOptimized</unmanaged-short>
  3197. <unmanaged>BOOL ID3D10Effect::IsOptimized()</unmanaged>
  3198. </member>
  3199. <member name="M:SharpDX.Direct3D10.Effect.IsValid_">
  3200. <summary>
  3201. <p>Test an effect to see if it contains valid syntax.</p>
  3202. </summary>
  3203. <returns><p><strong>TRUE</strong> if the code syntax is valid; otherwise <strong><see cref="F:SharpDX.Result.False" /></strong>.</p></returns>
  3204. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::IsValid']/*" />
  3205. <msdn-id>bb173772</msdn-id>
  3206. <unmanaged>BOOL ID3D10Effect::IsValid()</unmanaged>
  3207. <unmanaged-short>ID3D10Effect::IsValid</unmanaged-short>
  3208. </member>
  3209. <member name="M:SharpDX.Direct3D10.Effect.IsPool_">
  3210. <summary>
  3211. <p>Test an effect to see if it is part of a memory pool.</p>
  3212. </summary>
  3213. <returns><p><strong>TRUE</strong> if the effect is pooled; otherwise <strong><see cref="F:SharpDX.Result.False" /></strong>. See <strong><see cref="T:SharpDX.Direct3D10.EffectPool" /> Interface</strong>.</p></returns>
  3214. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::IsPool']/*" />
  3215. <msdn-id>bb173771</msdn-id>
  3216. <unmanaged>BOOL ID3D10Effect::IsPool()</unmanaged>
  3217. <unmanaged-short>ID3D10Effect::IsPool</unmanaged-short>
  3218. </member>
  3219. <member name="M:SharpDX.Direct3D10.Effect.GetDevice(SharpDX.Direct3D10.Device@)">
  3220. <summary>
  3221. <p>Get the device that created the effect.</p>
  3222. </summary>
  3223. <param name="deviceOut"><dd> <p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>.</p> </dd></param>
  3224. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3225. <remarks>
  3226. <p>An effect is created for a specific device, by calling a function such as <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateEffectFromFile(System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,SharpDX.Direct3D10.EffectPool,System.IntPtr,SharpDX.Direct3D10.Effect@,SharpDX.Direct3D.Blob@,SharpDX.Result@)" /></strong>.</p>
  3227. </remarks>
  3228. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetDevice']/*" />
  3229. <msdn-id>bb173764</msdn-id>
  3230. <unmanaged>HRESULT ID3D10Effect::GetDevice([Out] ID3D10Device** ppDevice)</unmanaged>
  3231. <unmanaged-short>ID3D10Effect::GetDevice</unmanaged-short>
  3232. </member>
  3233. <member name="M:SharpDX.Direct3D10.Effect.GetDescription(SharpDX.Direct3D10.EffectDescription@)">
  3234. <summary>
  3235. <p>Get an effect description.</p>
  3236. </summary>
  3237. <param name="descRef"><dd> <p>A reference to an effect description (see <strong><see cref="T:SharpDX.Direct3D10.EffectDescription" /></strong>).</p> </dd></param>
  3238. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3239. <remarks>
  3240. <p>An effect description contains basic information about an effect such as the techniques it contains and the constant buffer resources it requires.</p>
  3241. </remarks>
  3242. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetDesc']/*" />
  3243. <msdn-id>bb173763</msdn-id>
  3244. <unmanaged>HRESULT ID3D10Effect::GetDesc([Out] D3D10_EFFECT_DESC* pDesc)</unmanaged>
  3245. <unmanaged-short>ID3D10Effect::GetDesc</unmanaged-short>
  3246. </member>
  3247. <member name="M:SharpDX.Direct3D10.Effect.GetConstantBufferByIndex(System.Int32)">
  3248. <summary>
  3249. <p>Get a constant buffer by index.</p>
  3250. </summary>
  3251. <param name="index"><dd> <p>A zero-based index.</p> </dd></param>
  3252. <returns><p>A reference to a <strong><see cref="T:SharpDX.Direct3D10.EffectConstantBuffer" /> Interface</strong>.</p></returns>
  3253. <remarks>
  3254. <p>An effect that contains a variable that will be read/written by an application requires at least one constant buffer. For best performance, an effect should organize variables into one or more constant buffers based on their frequency of update.</p>
  3255. </remarks>
  3256. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetConstantBufferByIndex']/*" />
  3257. <msdn-id>bb173761</msdn-id>
  3258. <unmanaged>ID3D10EffectConstantBuffer* ID3D10Effect::GetConstantBufferByIndex([In] unsigned int Index)</unmanaged>
  3259. <unmanaged-short>ID3D10Effect::GetConstantBufferByIndex</unmanaged-short>
  3260. </member>
  3261. <member name="M:SharpDX.Direct3D10.Effect.GetConstantBufferByName(System.String)">
  3262. <summary>
  3263. <p>Get a constant buffer by name.</p>
  3264. </summary>
  3265. <param name="name"><dd> <p>The constant-buffer name.</p> </dd></param>
  3266. <returns><p>A reference to the constant buffer indicated by the Name. See <strong><see cref="T:SharpDX.Direct3D10.EffectConstantBuffer" /></strong>.</p></returns>
  3267. <remarks>
  3268. <p>An effect that contains a variable that will be read/written by an application requires at least one constant buffer. For best performance, an effect should organize variables into one or more constant buffers based on their frequency of update.</p>
  3269. </remarks>
  3270. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetConstantBufferByName']/*" />
  3271. <msdn-id>bb173762</msdn-id>
  3272. <unmanaged>ID3D10EffectConstantBuffer* ID3D10Effect::GetConstantBufferByName([In] const char* Name)</unmanaged>
  3273. <unmanaged-short>ID3D10Effect::GetConstantBufferByName</unmanaged-short>
  3274. </member>
  3275. <member name="M:SharpDX.Direct3D10.Effect.GetVariableByIndex(System.Int32)">
  3276. <summary>
  3277. <p>Get a variable by index.</p>
  3278. </summary>
  3279. <param name="index"><dd> <p>A zero-based index.</p> </dd></param>
  3280. <returns><p>A reference to a <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  3281. <remarks>
  3282. <p>An effect may contain one or more variables. Variables outside of a technique are considered global to all effects, those located inside of a technique are local to that technique. You can access any local non-static effect variable using its name or with an index.</p><p>The method returns a reference to an <strong>effect-variable interface</strong> if a variable is not found; you can call <strong><see cref="M:SharpDX.Direct3D10.Effect.IsValid_" /></strong> to verify whether or not the index exists.</p>
  3283. </remarks>
  3284. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetVariableByIndex']/*" />
  3285. <msdn-id>bb173767</msdn-id>
  3286. <unmanaged>ID3D10EffectVariable* ID3D10Effect::GetVariableByIndex([In] unsigned int Index)</unmanaged>
  3287. <unmanaged-short>ID3D10Effect::GetVariableByIndex</unmanaged-short>
  3288. </member>
  3289. <member name="M:SharpDX.Direct3D10.Effect.GetVariableByName(System.String)">
  3290. <summary>
  3291. <p>Get a variable by name.</p>
  3292. </summary>
  3293. <param name="name"><dd> <p>The variable name.</p> </dd></param>
  3294. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  3295. <remarks>
  3296. <p>An effect may contain one or more variables. Variables outside of a technique are considered global to all effects, those located inside of a technique are local to that technique. You can access an effect variable using its name or with an index.</p><p>The method returns a reference to an <strong>effect-variable interface</strong> if a variable is not found; you can call <strong><see cref="M:SharpDX.Direct3D10.Effect.IsValid_" /></strong> to verify whether or not the name exists.</p>
  3297. </remarks>
  3298. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetVariableByName']/*" />
  3299. <msdn-id>bb173768</msdn-id>
  3300. <unmanaged>ID3D10EffectVariable* ID3D10Effect::GetVariableByName([In] const char* Name)</unmanaged>
  3301. <unmanaged-short>ID3D10Effect::GetVariableByName</unmanaged-short>
  3302. </member>
  3303. <member name="M:SharpDX.Direct3D10.Effect.GetVariableBySemantic(System.String)">
  3304. <summary>
  3305. <p>Get a variable by semantic.</p>
  3306. </summary>
  3307. <param name="semantic"><dd> <p>The semantic name.</p> </dd></param>
  3308. <returns><p>A reference to the effect variable indicated by the Semantic. See <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  3309. <remarks>
  3310. <p>Each effect variable can have a semantic attached, which is a user defined metadata string. Some system-value semantics are reserved words that trigger built in functionality by pipeline stages.</p><p>The method returns a reference to an <strong>effect-variable interface</strong> if a variable is not found; you can call <strong><see cref="M:SharpDX.Direct3D10.Effect.IsValid_" /></strong> to verify whether or not the semantic exists.</p>
  3311. </remarks>
  3312. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetVariableBySemantic']/*" />
  3313. <msdn-id>bb173769</msdn-id>
  3314. <unmanaged>ID3D10EffectVariable* ID3D10Effect::GetVariableBySemantic([In] const char* Semantic)</unmanaged>
  3315. <unmanaged-short>ID3D10Effect::GetVariableBySemantic</unmanaged-short>
  3316. </member>
  3317. <member name="M:SharpDX.Direct3D10.Effect.GetTechniqueByIndex(System.Int32)">
  3318. <summary>
  3319. <p>Get a technique by index.</p>
  3320. </summary>
  3321. <param name="index"><dd> <p>A zero-based index.</p> </dd></param>
  3322. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectTechnique" /> Interface</strong>.</p></returns>
  3323. <remarks>
  3324. <p>An effect contains one or more techniques; each technique contains one or more passes. You can access a technique using its name or with an index. For more about techniques, see techniques and passes.</p>
  3325. </remarks>
  3326. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetTechniqueByIndex']/*" />
  3327. <msdn-id>bb173765</msdn-id>
  3328. <unmanaged>ID3D10EffectTechnique* ID3D10Effect::GetTechniqueByIndex([In] unsigned int Index)</unmanaged>
  3329. <unmanaged-short>ID3D10Effect::GetTechniqueByIndex</unmanaged-short>
  3330. </member>
  3331. <member name="M:SharpDX.Direct3D10.Effect.GetTechniqueByName(System.String)">
  3332. <summary>
  3333. <p>Get a technique by name.</p>
  3334. </summary>
  3335. <param name="name"><dd> <p>The name of the technique.</p> </dd></param>
  3336. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectTechnique" /> Interface</strong>, or <strong><c>null</c></strong> if the technique is not found.</p></returns>
  3337. <remarks>
  3338. <p>An effect contains one or more techniques; each technique contains one or more passes. You can access a technique using its name or with an index. For more about techniques, see techniques and passes.</p>
  3339. </remarks>
  3340. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::GetTechniqueByName']/*" />
  3341. <msdn-id>bb173766</msdn-id>
  3342. <unmanaged>ID3D10EffectTechnique* ID3D10Effect::GetTechniqueByName([In] const char* Name)</unmanaged>
  3343. <unmanaged-short>ID3D10Effect::GetTechniqueByName</unmanaged-short>
  3344. </member>
  3345. <member name="M:SharpDX.Direct3D10.Effect.Optimize">
  3346. <summary>
  3347. <p>Minimize the amount of memory required for an effect.</p>
  3348. </summary>
  3349. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3350. <remarks>
  3351. <p>An effect uses memory space two different ways: to store the information required by the runtime to execute an effect, and to store the metadata required to reflect information back to an application using the API. You can minimize the amount of memory required by an effect by calling <strong><see cref="M:SharpDX.Direct3D10.Effect.Optimize" /></strong> which removes the reflection metadata from memory. API methods to read variables will no longer work once reflection data has been removed.</p><p>The following methods will fail after Optimize has been called on an effect.</p><ul> <li> <strong><see cref="M:SharpDX.Direct3D10.Effect.GetConstantBufferByIndex(System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Effect.GetConstantBufferByName(System.String)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Effect.GetDescription(SharpDX.Direct3D10.EffectDescription@)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Effect.GetDevice(SharpDX.Direct3D10.Device@)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Effect.GetTechniqueByIndex(System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Effect.GetTechniqueByName(System.String)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Effect.GetVariableByIndex(System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Effect.GetVariableByName(System.String)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D10.Effect.GetVariableBySemantic(System.String)" /></strong> </li> </ul><p>Note that references retrieved with these methods before calling <strong><see cref="M:SharpDX.Direct3D10.Effect.Optimize" /></strong> are still valid after <strong><see cref="M:SharpDX.Direct3D10.Effect.Optimize" /></strong> is called. This allows the application to get all the variables, techniques, and passes it will use, call Optimize, and then use the effect.</p>
  3352. </remarks>
  3353. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::Optimize']/*" />
  3354. <msdn-id>bb173773</msdn-id>
  3355. <unmanaged>HRESULT ID3D10Effect::Optimize()</unmanaged>
  3356. <unmanaged-short>ID3D10Effect::Optimize</unmanaged-short>
  3357. </member>
  3358. <member name="M:SharpDX.Direct3D10.Effect.IsOptimized_">
  3359. <summary>
  3360. <p>Test an effect to see if the reflection metadata has been removed from memory.</p>
  3361. </summary>
  3362. <returns><p><strong>TRUE</strong> if the effect is optimized; otherwise <strong><see cref="F:SharpDX.Result.False" /></strong>.</p></returns>
  3363. <remarks>
  3364. <p>An effect uses memory space two different ways: to store the information required by the runtime to execute an effect, and to store the metadata required to reflect information back to an application using the API. You can minimize the amount of memory required by an effect by calling <strong><see cref="M:SharpDX.Direct3D10.Effect.Optimize" /></strong> which removes the reflection metadata from memory. Of course, API methods to read variables will no longer work once reflection data has been removed.</p>
  3365. </remarks>
  3366. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Effect::IsOptimized']/*" />
  3367. <msdn-id>bb173770</msdn-id>
  3368. <unmanaged>BOOL ID3D10Effect::IsOptimized()</unmanaged>
  3369. <unmanaged-short>ID3D10Effect::IsOptimized</unmanaged-short>
  3370. </member>
  3371. <member name="T:SharpDX.Direct3D10.EffectBlendVariable">
  3372. <summary>
  3373. <p>The blend-variable interface accesses blend state.</p>
  3374. </summary>
  3375. <remarks>
  3376. <p>An <strong><see cref="T:SharpDX.Direct3D10.EffectBlendVariable" /> Interface</strong> is created when an effect is read into memory.</p><p>Effect variables are saved in memory in the backing store; when a technique is applied, the values in the backing store are copied to the device. You can use either of these methods to return state. For examples, see Two Ways to Get the State in an Effect Variable.</p>
  3377. </remarks>
  3378. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectBlendVariable']/*" />
  3379. <msdn-id>bb173631</msdn-id>
  3380. <unmanaged>ID3D10EffectBlendVariable</unmanaged>
  3381. <unmanaged-short>ID3D10EffectBlendVariable</unmanaged-short>
  3382. </member>
  3383. <member name="M:SharpDX.Direct3D10.EffectBlendVariable.GetBlendState">
  3384. <summary>
  3385. Get a pointer to a blend-state interface.
  3386. </summary>
  3387. <returns>Returns <see cref="T:SharpDX.Direct3D10.BlendState"/>.</returns>
  3388. <unmanaged>HRESULT ID3D10EffectBlendVariable::GetBlendState([None] int Index,[Out] ID3D10BlendState** ppBlendState)</unmanaged>
  3389. </member>
  3390. <member name="M:SharpDX.Direct3D10.EffectBlendVariable.#ctor(System.IntPtr)">
  3391. <summary>
  3392. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectBlendVariable"/> class.
  3393. </summary>
  3394. <param name="nativePtr">The native pointer.</param>
  3395. </member>
  3396. <member name="M:SharpDX.Direct3D10.EffectBlendVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectBlendVariable">
  3397. <summary>
  3398. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectBlendVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  3399. </summary>
  3400. <param name="nativePointer">The native pointer.</param>
  3401. <returns>
  3402. The result of the conversion.
  3403. </returns>
  3404. </member>
  3405. <member name="M:SharpDX.Direct3D10.EffectBlendVariable.GetBlendState(System.Int32)">
  3406. <summary>
  3407. <p>Get a reference to a blend-state interface.</p>
  3408. </summary>
  3409. <param name="index"><dd> <p>Index into an array of blend-state interfaces. If there is only one blend-state interface, use 0.</p> </dd></param>
  3410. <returns><dd> <p>The address of a reference to a blend-state interface (see <strong><see cref="T:SharpDX.Direct3D10.BlendState" /> Interface</strong>).</p> </dd></returns>
  3411. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectBlendVariable::GetBlendState']/*" />
  3412. <msdn-id>bb173633</msdn-id>
  3413. <unmanaged>HRESULT ID3D10EffectBlendVariable::GetBlendState([In] unsigned int Index,[Out] ID3D10BlendState** ppBlendState)</unmanaged>
  3414. <unmanaged-short>ID3D10EffectBlendVariable::GetBlendState</unmanaged-short>
  3415. </member>
  3416. <member name="M:SharpDX.Direct3D10.EffectBlendVariable.GetBackingStore(System.Int32,SharpDX.Direct3D10.BlendStateDescription@)">
  3417. <summary>
  3418. <p>Get a reference to a blend-state variable.</p>
  3419. </summary>
  3420. <param name="index"><dd> <p>Index into an array of blend-state descriptions. If there is only one blend-state variable in the effect, use 0.</p> </dd></param>
  3421. <param name="blendDescRef"><dd> <p>A reference to a blend-state description (see <strong><see cref="T:SharpDX.Direct3D10.BlendStateDescription" /></strong>).</p> </dd></param>
  3422. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3423. <remarks>
  3424. <p>Effect variables are saved in memory in the backing store; when a technique is applied, the values in the backing store are copied to the device. Backing store data can used to recreate the variable when necessary.</p>
  3425. </remarks>
  3426. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectBlendVariable::GetBackingStore']/*" />
  3427. <msdn-id>bb173632</msdn-id>
  3428. <unmanaged>HRESULT ID3D10EffectBlendVariable::GetBackingStore([In] unsigned int Index,[Out] D3D10_BLEND_DESC* pBlendDesc)</unmanaged>
  3429. <unmanaged-short>ID3D10EffectBlendVariable::GetBackingStore</unmanaged-short>
  3430. </member>
  3431. <member name="T:SharpDX.Direct3D10.EffectDepthStencilVariable">
  3432. <summary>
  3433. <p>A depth-stencil-variable interface accesses depth-stencil state.</p>
  3434. </summary>
  3435. <remarks>
  3436. <p>An <strong><see cref="T:SharpDX.Direct3D10.EffectDepthStencilVariable" /> Interface</strong> is created when an effect is read into memory.</p><p>Effect variables are saved in memory in the backing store; when a technique is applied, the values in the backing store are copied to the device. You can use either of these methods to return state. For examples, see Two Ways to Get the State in an Effect Variable.</p>
  3437. </remarks>
  3438. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectDepthStencilVariable']/*" />
  3439. <msdn-id>bb173639</msdn-id>
  3440. <unmanaged>ID3D10EffectDepthStencilVariable</unmanaged>
  3441. <unmanaged-short>ID3D10EffectDepthStencilVariable</unmanaged-short>
  3442. </member>
  3443. <member name="M:SharpDX.Direct3D10.EffectDepthStencilVariable.GetDepthStencilState">
  3444. <summary>
  3445. Get a pointer to a depth-stencil interface.
  3446. </summary>
  3447. <returns>Returns a pointer to a blend-state interface (see <see cref="T:SharpDX.Direct3D10.DepthStencilState"/>). </returns>
  3448. <unmanaged>HRESULT ID3D10EffectDepthStencilVariable::GetDepthStencilState([None] int Index,[Out] ID3D10DepthStencilState** ppDepthStencilState)</unmanaged>
  3449. </member>
  3450. <member name="M:SharpDX.Direct3D10.EffectDepthStencilVariable.#ctor(System.IntPtr)">
  3451. <summary>
  3452. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectDepthStencilVariable"/> class.
  3453. </summary>
  3454. <param name="nativePtr">The native pointer.</param>
  3455. </member>
  3456. <member name="M:SharpDX.Direct3D10.EffectDepthStencilVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectDepthStencilVariable">
  3457. <summary>
  3458. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectDepthStencilVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  3459. </summary>
  3460. <param name="nativePointer">The native pointer.</param>
  3461. <returns>
  3462. The result of the conversion.
  3463. </returns>
  3464. </member>
  3465. <member name="M:SharpDX.Direct3D10.EffectDepthStencilVariable.GetDepthStencilState(System.Int32)">
  3466. <summary>
  3467. <p>Get a reference to a depth-stencil interface.</p>
  3468. </summary>
  3469. <param name="index"><dd> <p>Index into an array of depth-stencil interfaces. If there is only one depth-stencil interface, use 0.</p> </dd></param>
  3470. <returns><dd> <p>The address of a reference to a blend-state interface (see <strong><see cref="T:SharpDX.Direct3D10.DepthStencilState" /> Interface</strong>).</p> </dd></returns>
  3471. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectDepthStencilVariable::GetDepthStencilState']/*" />
  3472. <msdn-id>bb173641</msdn-id>
  3473. <unmanaged>HRESULT ID3D10EffectDepthStencilVariable::GetDepthStencilState([In] unsigned int Index,[Out] ID3D10DepthStencilState** ppDepthStencilState)</unmanaged>
  3474. <unmanaged-short>ID3D10EffectDepthStencilVariable::GetDepthStencilState</unmanaged-short>
  3475. </member>
  3476. <member name="M:SharpDX.Direct3D10.EffectDepthStencilVariable.GetBackingStore(System.Int32)">
  3477. <summary>
  3478. <p>Get a reference to a variable that contains depth-stencil state.</p>
  3479. </summary>
  3480. <param name="index"><dd> <p>Index into an array of depth-stencil-state descriptions. If there is only one depth-stencil variable in the effect, use 0.</p> </dd></param>
  3481. <returns><dd> <p>A reference to a depth-stencil-state description (see <strong><see cref="T:SharpDX.Direct3D10.DepthStencilStateDescription" /></strong>).</p> </dd></returns>
  3482. <remarks>
  3483. <p>Effect variables are saved in memory in the backing store; when a technique is applied, the values in the backing store are copied to the device. Backing store data can used to recreate the variable when necessary.</p>
  3484. </remarks>
  3485. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectDepthStencilVariable::GetBackingStore']/*" />
  3486. <msdn-id>bb173640</msdn-id>
  3487. <unmanaged>HRESULT ID3D10EffectDepthStencilVariable::GetBackingStore([In] unsigned int Index,[Out] D3D10_DEPTH_STENCIL_DESC* pDepthStencilDesc)</unmanaged>
  3488. <unmanaged-short>ID3D10EffectDepthStencilVariable::GetBackingStore</unmanaged-short>
  3489. </member>
  3490. <member name="T:SharpDX.Direct3D10.EffectDepthStencilViewVariable">
  3491. <summary>
  3492. <p>A depth-stencil-view-variable interface accesses a depth-stencil view.</p>
  3493. </summary>
  3494. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectDepthStencilViewVariable']/*" />
  3495. <msdn-id>bb173642</msdn-id>
  3496. <unmanaged>ID3D10EffectDepthStencilViewVariable</unmanaged>
  3497. <unmanaged-short>ID3D10EffectDepthStencilViewVariable</unmanaged-short>
  3498. </member>
  3499. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.SetDepthStencilArray(SharpDX.Direct3D10.DepthStencilView[])">
  3500. <summary>
  3501. Set an array of depth-stencil-view resources.
  3502. </summary>
  3503. <param name="resourcesRef"> A pointer to an array of depth-stencil-view interfaces. See <see cref="T:SharpDX.Direct3D10.DepthStencilView"/>. </param>
  3504. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  3505. <unmanaged>HRESULT ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray([In, Buffer] ID3D10DepthStencilView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  3506. </member>
  3507. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.SetDepthStencilArray(SharpDX.Direct3D10.DepthStencilView[],System.Int32)">
  3508. <summary>
  3509. Set an array of depth-stencil-view resources.
  3510. </summary>
  3511. <param name="resourcesRef"> A pointer to an array of depth-stencil-view interfaces. See <see cref="T:SharpDX.Direct3D10.DepthStencilView"/>. </param>
  3512. <param name="offset"> The zero-based array index to set the first interface. </param>
  3513. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  3514. <unmanaged>HRESULT ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray([In, Buffer] ID3D10DepthStencilView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  3515. </member>
  3516. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.GetDepthStencilArray(System.Int32)">
  3517. <summary>
  3518. Get an array of depth-stencil-view resources.
  3519. </summary>
  3520. <param name="count"> The number of elements in the array. </param>
  3521. <returns>Returns an array of depth-stencil-view interfaces. See <see cref="T:SharpDX.Direct3D10.DepthStencilView"/>. </returns>
  3522. <unmanaged>HRESULT ID3D10EffectDepthStencilViewVariable::GetDepthStencilArray([Out, Buffer] ID3D10DepthStencilView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  3523. </member>
  3524. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.GetDepthStencilArray(System.Int32,System.Int32)">
  3525. <summary>
  3526. Get an array of depth-stencil-view resources.
  3527. </summary>
  3528. <param name="offset"> The zero-based array index to get the first interface. </param>
  3529. <param name="count"> The number of elements in the array. </param>
  3530. <returns>Returns an array of depth-stencil-view interfaces. See <see cref="T:SharpDX.Direct3D10.DepthStencilView"/>. </returns>
  3531. <unmanaged>HRESULT ID3D10EffectDepthStencilViewVariable::GetDepthStencilArray([Out, Buffer] ID3D10DepthStencilView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  3532. </member>
  3533. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.#ctor(System.IntPtr)">
  3534. <summary>
  3535. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectDepthStencilViewVariable"/> class.
  3536. </summary>
  3537. <param name="nativePtr">The native pointer.</param>
  3538. </member>
  3539. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectDepthStencilViewVariable">
  3540. <summary>
  3541. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectDepthStencilViewVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  3542. </summary>
  3543. <param name="nativePointer">The native pointer.</param>
  3544. <returns>
  3545. The result of the conversion.
  3546. </returns>
  3547. </member>
  3548. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.SetDepthStencil(SharpDX.Direct3D10.DepthStencilView)">
  3549. <summary>
  3550. <p>Set a depth-stencil-view resource.</p>
  3551. </summary>
  3552. <param name="resourceRef"><dd> <p>A reference to a depth-stencil-view interface. See <strong><see cref="T:SharpDX.Direct3D10.DepthStencilView" /> Interface</strong>.</p> </dd></param>
  3553. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3554. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectDepthStencilViewVariable::SetDepthStencil']/*" />
  3555. <msdn-id>bb173645</msdn-id>
  3556. <unmanaged>HRESULT ID3D10EffectDepthStencilViewVariable::SetDepthStencil([In, Optional] ID3D10DepthStencilView* pResource)</unmanaged>
  3557. <unmanaged-short>ID3D10EffectDepthStencilViewVariable::SetDepthStencil</unmanaged-short>
  3558. </member>
  3559. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.GetDepthStencil">
  3560. <summary>
  3561. <p>Get a depth-stencil-view resource.</p>
  3562. </summary>
  3563. <returns><dd> <p>The address of a reference to a depth-stencil-view interface. See <strong><see cref="T:SharpDX.Direct3D10.DepthStencilView" /> Interface</strong>.</p> </dd></returns>
  3564. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectDepthStencilViewVariable::GetDepthStencil']/*" />
  3565. <msdn-id>bb173643</msdn-id>
  3566. <unmanaged>HRESULT ID3D10EffectDepthStencilViewVariable::GetDepthStencil([Out] ID3D10DepthStencilView** ppResource)</unmanaged>
  3567. <unmanaged-short>ID3D10EffectDepthStencilViewVariable::GetDepthStencil</unmanaged-short>
  3568. </member>
  3569. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.SetDepthStencilArray(SharpDX.Direct3D10.DepthStencilView[],System.Int32,System.Int32)">
  3570. <summary>
  3571. <p>Set an array of depth-stencil-view resources.</p>
  3572. </summary>
  3573. <param name="resourcesOut"><dd> <p>A reference to an array of depth-stencil-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.DepthStencilView" /> Interface</strong>.</p> </dd></param>
  3574. <param name="offset"><dd> <p>The zero-based array index to set the first interface.</p> </dd></param>
  3575. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  3576. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3577. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray']/*" />
  3578. <msdn-id>bb173646</msdn-id>
  3579. <unmanaged>HRESULT ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray([In, Buffer] ID3D10DepthStencilView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  3580. <unmanaged-short>ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray</unmanaged-short>
  3581. </member>
  3582. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.SetDepthStencilArray(SharpDX.ComArray{SharpDX.Direct3D10.DepthStencilView},System.Int32,System.Int32)">
  3583. <summary>
  3584. <p>Set an array of depth-stencil-view resources.</p>
  3585. </summary>
  3586. <param name="resourcesOut"><dd> <p>A reference to an array of depth-stencil-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.DepthStencilView" /> Interface</strong>.</p> </dd></param>
  3587. <param name="offset"><dd> <p>The zero-based array index to set the first interface.</p> </dd></param>
  3588. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  3589. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3590. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray']/*" />
  3591. <msdn-id>bb173646</msdn-id>
  3592. <unmanaged>HRESULT ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray([In, Buffer] ID3D10DepthStencilView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  3593. <unmanaged-short>ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray</unmanaged-short>
  3594. </member>
  3595. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.SetDepthStencilArray(System.IntPtr,System.Int32,System.Int32)">
  3596. <summary>
  3597. <p>Set an array of depth-stencil-view resources.</p>
  3598. </summary>
  3599. <param name="resourcesOut"><dd> <p>A reference to an array of depth-stencil-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.DepthStencilView" /> Interface</strong>.</p> </dd></param>
  3600. <param name="offset"><dd> <p>The zero-based array index to set the first interface.</p> </dd></param>
  3601. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  3602. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3603. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray']/*" />
  3604. <msdn-id>bb173646</msdn-id>
  3605. <unmanaged>HRESULT ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray([In, Buffer] ID3D10DepthStencilView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  3606. <unmanaged-short>ID3D10EffectDepthStencilViewVariable::SetDepthStencilArray</unmanaged-short>
  3607. </member>
  3608. <member name="M:SharpDX.Direct3D10.EffectDepthStencilViewVariable.GetDepthStencilArray(SharpDX.Direct3D10.DepthStencilView[],System.Int32,System.Int32)">
  3609. <summary>
  3610. <p>Get an array of depth-stencil-view resources.</p>
  3611. </summary>
  3612. <param name="resourcesOut"><dd> <p>A reference to an array of depth-stencil-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.DepthStencilView" /> Interface</strong>.</p> </dd></param>
  3613. <param name="offset"><dd> <p>The zero-based array index to get the first interface.</p> </dd></param>
  3614. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  3615. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3616. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectDepthStencilViewVariable::GetDepthStencilArray']/*" />
  3617. <msdn-id>bb173644</msdn-id>
  3618. <unmanaged>HRESULT ID3D10EffectDepthStencilViewVariable::GetDepthStencilArray([Out, Buffer] ID3D10DepthStencilView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  3619. <unmanaged-short>ID3D10EffectDepthStencilViewVariable::GetDepthStencilArray</unmanaged-short>
  3620. </member>
  3621. <member name="T:SharpDX.Direct3D10.EffectMatrixVariable">
  3622. <summary>
  3623. <p>A matrix-variable interface accesses a matrix.</p>
  3624. </summary>
  3625. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectMatrixVariable']/*" />
  3626. <msdn-id>bb173647</msdn-id>
  3627. <unmanaged>ID3D10EffectMatrixVariable</unmanaged>
  3628. <unmanaged-short>ID3D10EffectMatrixVariable</unmanaged-short>
  3629. </member>
  3630. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrix``1(``0)">
  3631. <summary>
  3632. Set a floating-point matrix.
  3633. </summary>
  3634. <param name="matrix"> A pointer to the first element in the matrix. </param>
  3635. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  3636. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrix([In] float* pData)</unmanaged>
  3637. </member>
  3638. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrix``1">
  3639. <summary>
  3640. Get a matrix.
  3641. </summary>
  3642. <returns><para>A reference to the first element in a matrix.</para></returns>
  3643. <remarks>
  3644. Note??The DirectX SDK does not supply any compiled binaries for effects. You must use Effects 11 source to build your effects-type application. For more information about using Effects 11 source, see Differences Between Effects 10 and Effects 11.
  3645. </remarks>
  3646. <unmanaged>HRESULT ID3DX11EffectMatrixVariable::GetMatrix([Out] SHARPDX_MATRIX* pData)</unmanaged>
  3647. </member>
  3648. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrix">
  3649. <summary>
  3650. Get a matrix.
  3651. </summary>
  3652. <returns><para>A reference to the first element in a matrix.</para></returns>
  3653. <remarks>
  3654. Note??The DirectX SDK does not supply any compiled binaries for effects. You must use Effects 11 source to build your effects-type application. For more information about using Effects 11 source, see Differences Between Effects 10 and Effects 11.
  3655. </remarks>
  3656. <unmanaged>HRESULT ID3DX11EffectMatrixVariable::GetMatrix([Out] SHARPDX_MATRIX* pData)</unmanaged>
  3657. </member>
  3658. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrix``1(``0@)">
  3659. <summary>
  3660. Set a floating-point matrix.
  3661. </summary>
  3662. <param name="matrix"> A pointer to the first element in the matrix. </param>
  3663. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  3664. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrix([In] float* pData)</unmanaged>
  3665. </member>
  3666. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrix``1(``0[])">
  3667. <summary>
  3668. Set an array of floating-point matrices.
  3669. </summary>
  3670. <param name="matrixArray"> A pointer to the first matrix. </param>
  3671. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  3672. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrixArray([In, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  3673. </member>
  3674. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrix``1(``0[],System.Int32)">
  3675. <summary>
  3676. Set an array of floating-point matrices.
  3677. </summary>
  3678. <param name="matrixArray"> A pointer to the first matrix. </param>
  3679. <param name="offset"> The number of matrix elements to skip from the start of the array. </param>
  3680. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  3681. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrixArray([In, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  3682. </member>
  3683. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrixArray``1(System.Int32)">
  3684. <summary>
  3685. Get an array of matrices.
  3686. </summary>
  3687. <param name="count"> The number of matrices in the returned array. </param>
  3688. <returns>Returns an array of matrix. </returns>
  3689. <unmanaged>HRESULT ID3D10EffectMatrixVariable::GetMatrixArray([Out, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  3690. </member>
  3691. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrixArray``1(System.Int32,System.Int32)">
  3692. <summary>
  3693. Get an array of matrices.
  3694. </summary>
  3695. <param name="offset"> The offset (in number of matrices) between the start of the array and the first matrix returned. </param>
  3696. <param name="count"> The number of matrices in the returned array. </param>
  3697. <returns>Returns an array of matrix. </returns>
  3698. <unmanaged>HRESULT ID3D10EffectMatrixVariable::GetMatrixArray([Out, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  3699. </member>
  3700. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrixTranspose``1(``0)">
  3701. <summary>
  3702. Transpose and set a floating-point matrix.
  3703. </summary>
  3704. <remarks>
  3705. Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).
  3706. </remarks>
  3707. <param name="matrix"> A pointer to the first element of a matrix. </param>
  3708. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  3709. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrixTranspose([In] float* pData)</unmanaged>
  3710. </member>
  3711. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrixTranspose``1(``0@)">
  3712. <summary>
  3713. Transpose and set a floating-point matrix.
  3714. </summary>
  3715. <remarks>
  3716. Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).
  3717. </remarks>
  3718. <param name="matrix"> A pointer to the first element of a matrix. </param>
  3719. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  3720. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrixTranspose([In] float* pData)</unmanaged>
  3721. </member>
  3722. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrixTranspose``1(``0[])">
  3723. <summary>
  3724. Transpose and set an array of floating-point matrices.
  3725. </summary>
  3726. <remarks>
  3727. Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).
  3728. </remarks>
  3729. <param name="matrixArray"> A pointer to an array of matrices. </param>
  3730. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  3731. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrixTransposeArray([In] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  3732. </member>
  3733. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrixTranspose``1(``0[],System.Int32)">
  3734. <summary>
  3735. Transpose and set an array of floating-point matrices.
  3736. </summary>
  3737. <remarks>
  3738. Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).
  3739. </remarks>
  3740. <param name="matrixArray"> A pointer to an array of matrices. </param>
  3741. <param name="offset"> The offset (in number of matrices) between the start of the array and the first matrix to set. </param>
  3742. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  3743. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrixTransposeArray([In] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  3744. </member>
  3745. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrixTranspose``1">
  3746. <summary>
  3747. Transpose and get a floating-point matrix.
  3748. </summary>
  3749. <returns>The transposed matrix.</returns>
  3750. <remarks>
  3751. Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).Note??The DirectX SDK does not supply any compiled binaries for effects. You must use Effects 11 source to build your effects-type application. For more information about using Effects 11 source, see Differences Between Effects 10 and Effects 11.
  3752. </remarks>
  3753. <unmanaged>HRESULT ID3DX11EffectMatrixVariable::GetMatrixTranspose([Out] SHARPDX_MATRIX* pData)</unmanaged>
  3754. </member>
  3755. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrixTranspose">
  3756. <summary>
  3757. Transpose and get a floating-point matrix.
  3758. </summary>
  3759. <returns>The transposed matrix.</returns>
  3760. <remarks>
  3761. Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).Note??The DirectX SDK does not supply any compiled binaries for effects. You must use Effects 11 source to build your effects-type application. For more information about using Effects 11 source, see Differences Between Effects 10 and Effects 11.
  3762. </remarks>
  3763. <unmanaged>HRESULT ID3DX11EffectMatrixVariable::GetMatrixTranspose([Out] SHARPDX_MATRIX* pData)</unmanaged>
  3764. </member>
  3765. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrixTransposeArray``1(System.Int32)">
  3766. <summary>
  3767. Transpose and get an array of floating-point matrices.
  3768. </summary>
  3769. <remarks>
  3770. Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).
  3771. </remarks>
  3772. <param name="count"> The number of matrices in the array to get. </param>
  3773. <returns>Returns an array of transposed <see cref="T:SharpDX.Mathematics.Interop.RawMatrix"/>. </returns>
  3774. <unmanaged>HRESULT ID3D10EffectMatrixVariable::GetMatrixTransposeArray([Out, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  3775. </member>
  3776. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrixTransposeArray``1(System.Int32,System.Int32)">
  3777. <summary>
  3778. Transpose and get an array of floating-point matrices.
  3779. </summary>
  3780. <remarks>
  3781. Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).
  3782. </remarks>
  3783. <param name="offset"> The offset (in number of matrices) between the start of the array and the first matrix to get. </param>
  3784. <param name="count"> The number of matrices in the array to get. </param>
  3785. <returns>Returns an array of transposed <see cref="T:SharpDX.Mathematics.Interop.RawMatrix"/>. </returns>
  3786. <unmanaged>HRESULT ID3D10EffectMatrixVariable::GetMatrixTransposeArray([Out, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  3787. </member>
  3788. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.#ctor(System.IntPtr)">
  3789. <summary>
  3790. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectMatrixVariable"/> class.
  3791. </summary>
  3792. <param name="nativePtr">The native pointer.</param>
  3793. </member>
  3794. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectMatrixVariable">
  3795. <summary>
  3796. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectMatrixVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  3797. </summary>
  3798. <param name="nativePointer">The native pointer.</param>
  3799. <returns>
  3800. The result of the conversion.
  3801. </returns>
  3802. </member>
  3803. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrix(SharpDX.Mathematics.Interop.RawMatrix@)">
  3804. <summary>
  3805. <p>Set a floating-point matrix.</p>
  3806. </summary>
  3807. <param name="dataRef"><dd> <p>A reference to the first element in the matrix.</p> </dd></param>
  3808. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3809. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectMatrixVariable::SetMatrix']/*" />
  3810. <msdn-id>bb173652</msdn-id>
  3811. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrix([In] SHARPDX_MATRIX* pData)</unmanaged>
  3812. <unmanaged-short>ID3D10EffectMatrixVariable::SetMatrix</unmanaged-short>
  3813. </member>
  3814. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrix(SharpDX.Mathematics.Interop.RawMatrix@)">
  3815. <summary>
  3816. <p>Get a matrix.</p>
  3817. </summary>
  3818. <param name="dataRef"><dd> <p>A reference to the first element in a matrix.</p> </dd></param>
  3819. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3820. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectMatrixVariable::GetMatrix']/*" />
  3821. <msdn-id>bb173648</msdn-id>
  3822. <unmanaged>HRESULT ID3D10EffectMatrixVariable::GetMatrix([Out] SHARPDX_MATRIX* pData)</unmanaged>
  3823. <unmanaged-short>ID3D10EffectMatrixVariable::GetMatrix</unmanaged-short>
  3824. </member>
  3825. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrixArray(SharpDX.Mathematics.Interop.RawMatrix[],System.Int32,System.Int32)">
  3826. <summary>
  3827. <p>Set an array of floating-point matrices.</p>
  3828. </summary>
  3829. <param name="dataRef"><dd> <p>A reference to the first matrix.</p> </dd></param>
  3830. <param name="offset"><dd> <p>The number of matrix elements to skip from the start of the array.</p> </dd></param>
  3831. <param name="count"><dd> <p>The number of elements to set.</p> </dd></param>
  3832. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3833. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectMatrixVariable::SetMatrixArray']/*" />
  3834. <msdn-id>bb173653</msdn-id>
  3835. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrixArray([In, Buffer] SHARPDX_MATRIX* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  3836. <unmanaged-short>ID3D10EffectMatrixVariable::SetMatrixArray</unmanaged-short>
  3837. </member>
  3838. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrixArray(SharpDX.Mathematics.Interop.RawMatrix[],System.Int32,System.Int32)">
  3839. <summary>
  3840. <p>Get an array of matrices.</p>
  3841. </summary>
  3842. <param name="dataRef"><dd> <p>A reference to the first element of the first matrix in an array of matrices.</p> </dd></param>
  3843. <param name="offset"><dd> <p>The offset (in number of matrices) between the start of the array and the first matrix returned.</p> </dd></param>
  3844. <param name="count"><dd> <p>The number of matrices in the returned array.</p> </dd></param>
  3845. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3846. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectMatrixVariable::GetMatrixArray']/*" />
  3847. <msdn-id>bb173649</msdn-id>
  3848. <unmanaged>HRESULT ID3D10EffectMatrixVariable::GetMatrixArray([Out, Buffer] SHARPDX_MATRIX* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  3849. <unmanaged-short>ID3D10EffectMatrixVariable::GetMatrixArray</unmanaged-short>
  3850. </member>
  3851. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrixTranspose(SharpDX.Mathematics.Interop.RawMatrix@)">
  3852. <summary>
  3853. <p>Transpose and set a floating-point matrix.</p>
  3854. </summary>
  3855. <param name="dataRef"><dd> <p>A reference to the first element of a matrix.</p> </dd></param>
  3856. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3857. <remarks>
  3858. <p>Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).</p>
  3859. </remarks>
  3860. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectMatrixVariable::SetMatrixTranspose']/*" />
  3861. <msdn-id>bb173654</msdn-id>
  3862. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrixTranspose([In] SHARPDX_MATRIX* pData)</unmanaged>
  3863. <unmanaged-short>ID3D10EffectMatrixVariable::SetMatrixTranspose</unmanaged-short>
  3864. </member>
  3865. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrixTranspose(SharpDX.Mathematics.Interop.RawMatrix@)">
  3866. <summary>
  3867. <p>Transpose and get a floating-point matrix.</p>
  3868. </summary>
  3869. <param name="dataRef"><dd> <p>A reference to the first element of a transposed matrix.</p> </dd></param>
  3870. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3871. <remarks>
  3872. <p>Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).</p>
  3873. </remarks>
  3874. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectMatrixVariable::GetMatrixTranspose']/*" />
  3875. <msdn-id>bb173650</msdn-id>
  3876. <unmanaged>HRESULT ID3D10EffectMatrixVariable::GetMatrixTranspose([Out] SHARPDX_MATRIX* pData)</unmanaged>
  3877. <unmanaged-short>ID3D10EffectMatrixVariable::GetMatrixTranspose</unmanaged-short>
  3878. </member>
  3879. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.SetMatrixTransposeArray(SharpDX.Mathematics.Interop.RawMatrix[],System.Int32,System.Int32)">
  3880. <summary>
  3881. <p>Transpose and set an array of floating-point matrices.</p>
  3882. </summary>
  3883. <param name="dataRef"><dd> <p>A reference to an array of matrices.</p> </dd></param>
  3884. <param name="offset"><dd> <p>The offset (in number of matrices) between the start of the array and the first matrix to set.</p> </dd></param>
  3885. <param name="count"><dd> <p>The number of matrices in the array to set.</p> </dd></param>
  3886. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3887. <remarks>
  3888. <p>Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).</p>
  3889. </remarks>
  3890. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectMatrixVariable::SetMatrixTransposeArray']/*" />
  3891. <msdn-id>bb173655</msdn-id>
  3892. <unmanaged>HRESULT ID3D10EffectMatrixVariable::SetMatrixTransposeArray([In, Buffer] SHARPDX_MATRIX* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  3893. <unmanaged-short>ID3D10EffectMatrixVariable::SetMatrixTransposeArray</unmanaged-short>
  3894. </member>
  3895. <member name="M:SharpDX.Direct3D10.EffectMatrixVariable.GetMatrixTransposeArray(SharpDX.Mathematics.Interop.RawMatrix[],System.Int32,System.Int32)">
  3896. <summary>
  3897. <p>Transpose and get an array of floating-point matrices.</p>
  3898. </summary>
  3899. <param name="dataRef"><dd> <p>A reference to the first element of an array of tranposed matrices.</p> </dd></param>
  3900. <param name="offset"><dd> <p>The offset (in number of matrices) between the start of the array and the first matrix to get.</p> </dd></param>
  3901. <param name="count"><dd> <p>The number of matrices in the array to get.</p> </dd></param>
  3902. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  3903. <remarks>
  3904. <p>Transposing a matrix will rearrange the data order from row-column order to column-row order (or vice versa).</p>
  3905. </remarks>
  3906. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectMatrixVariable::GetMatrixTransposeArray']/*" />
  3907. <msdn-id>bb173651</msdn-id>
  3908. <unmanaged>HRESULT ID3D10EffectMatrixVariable::GetMatrixTransposeArray([Out, Buffer] SHARPDX_MATRIX* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  3909. <unmanaged-short>ID3D10EffectMatrixVariable::GetMatrixTransposeArray</unmanaged-short>
  3910. </member>
  3911. <member name="T:SharpDX.Direct3D10.EffectPass">
  3912. <summary>
  3913. <p>A pass interface encapsulates state assignments within a technique.</p><p>The lifetime of an <strong><see cref="T:SharpDX.Direct3D10.EffectPass" /></strong> object is equal to the lifetime of its parent <strong><see cref="T:SharpDX.Direct3D10.Effect" /></strong> object.</p><ul> <li>Methods</li> </ul>
  3914. </summary>
  3915. <remarks>
  3916. <p>A pass is a block of code that sets render-state objects and shaders. A pass is declared within a technique; the syntax for a technique is shown in Effect Technique Syntax (Direct3D 10).</p><p>To get an effect-pass interface, call a method like <strong><see cref="M:SharpDX.Direct3D10.EffectTechnique.GetPassByName(System.String)" /></strong>.</p>
  3917. </remarks>
  3918. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass']/*" />
  3919. <msdn-id>bb173656</msdn-id>
  3920. <unmanaged>ID3D10EffectPass</unmanaged>
  3921. <unmanaged-short>ID3D10EffectPass</unmanaged-short>
  3922. </member>
  3923. <member name="M:SharpDX.Direct3D10.EffectPass.Apply">
  3924. <summary>
  3925. Set the state contained in a pass to the device.
  3926. </summary>
  3927. <returns>Returns one of the following {{Direct3D 10 Return Codes}}.</returns>
  3928. <unmanaged>HRESULT Apply([None] UINT Flags)</unmanaged>
  3929. </member>
  3930. <member name="M:SharpDX.Direct3D10.EffectPass.#ctor(System.IntPtr)">
  3931. <summary>
  3932. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectPass"/> class.
  3933. </summary>
  3934. <param name="nativePtr">The native pointer.</param>
  3935. </member>
  3936. <member name="M:SharpDX.Direct3D10.EffectPass.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectPass">
  3937. <summary>
  3938. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectPass"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  3939. </summary>
  3940. <param name="nativePointer">The native pointer.</param>
  3941. <returns>
  3942. The result of the conversion.
  3943. </returns>
  3944. </member>
  3945. <member name="P:SharpDX.Direct3D10.EffectPass.IsValid">
  3946. <summary>
  3947. <p>Test a pass to see if it contains valid syntax.</p>
  3948. </summary>
  3949. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::IsValid']/*" />
  3950. <msdn-id>bb173665</msdn-id>
  3951. <unmanaged>IsValid</unmanaged>
  3952. <unmanaged-short>IsValid</unmanaged-short>
  3953. <unmanaged>BOOL ID3D10EffectPass::IsValid()</unmanaged>
  3954. </member>
  3955. <member name="P:SharpDX.Direct3D10.EffectPass.Description">
  3956. <summary>
  3957. <p>Get a pass description.</p>
  3958. </summary>
  3959. <remarks>
  3960. <p>A pass is a block of code that sets render state and shaders (which in turn sets constant buffers, samplers and textures). An effect technique contains one or more passes. See techniques and passes.</p>
  3961. </remarks>
  3962. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::GetDesc']/*" />
  3963. <msdn-id>bb173661</msdn-id>
  3964. <unmanaged>GetDesc</unmanaged>
  3965. <unmanaged-short>GetDesc</unmanaged-short>
  3966. <unmanaged>HRESULT ID3D10EffectPass::GetDesc([Out] D3D10_PASS_DESC* pDesc)</unmanaged>
  3967. </member>
  3968. <member name="P:SharpDX.Direct3D10.EffectPass.VertexShaderDescription">
  3969. <summary>
  3970. <p>Get a vertex-shader description.</p>
  3971. </summary>
  3972. <remarks>
  3973. <p>An effect pass can contain render state assignments and shader object assignments.</p>
  3974. </remarks>
  3975. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::GetVertexShaderDesc']/*" />
  3976. <msdn-id>bb173664</msdn-id>
  3977. <unmanaged>GetVertexShaderDesc</unmanaged>
  3978. <unmanaged-short>GetVertexShaderDesc</unmanaged-short>
  3979. <unmanaged>HRESULT ID3D10EffectPass::GetVertexShaderDesc([Out] D3D10_PASS_SHADER_DESC* pDesc)</unmanaged>
  3980. </member>
  3981. <member name="P:SharpDX.Direct3D10.EffectPass.GeometryShaderDescription">
  3982. <summary>
  3983. <p>Get a geometry-shader description.</p>
  3984. </summary>
  3985. <remarks>
  3986. <p>An effect pass can contain render state assignments and shader object assignments.</p>
  3987. </remarks>
  3988. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::GetGeometryShaderDesc']/*" />
  3989. <msdn-id>bb173662</msdn-id>
  3990. <unmanaged>GetGeometryShaderDesc</unmanaged>
  3991. <unmanaged-short>GetGeometryShaderDesc</unmanaged-short>
  3992. <unmanaged>HRESULT ID3D10EffectPass::GetGeometryShaderDesc([Out] D3D10_PASS_SHADER_DESC* pDesc)</unmanaged>
  3993. </member>
  3994. <member name="P:SharpDX.Direct3D10.EffectPass.PixelShaderDescription">
  3995. <summary>
  3996. <p>Get a pixel-shader description.</p>
  3997. </summary>
  3998. <remarks>
  3999. <p>An effect pass can contain render state assignments and shader object assignments.</p>
  4000. </remarks>
  4001. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::GetPixelShaderDesc']/*" />
  4002. <msdn-id>bb173663</msdn-id>
  4003. <unmanaged>GetPixelShaderDesc</unmanaged>
  4004. <unmanaged-short>GetPixelShaderDesc</unmanaged-short>
  4005. <unmanaged>HRESULT ID3D10EffectPass::GetPixelShaderDesc([Out] D3D10_PASS_SHADER_DESC* pDesc)</unmanaged>
  4006. </member>
  4007. <member name="M:SharpDX.Direct3D10.EffectPass.IsValid_">
  4008. <summary>
  4009. <p>Test a pass to see if it contains valid syntax.</p>
  4010. </summary>
  4011. <returns><p><strong>TRUE</strong> if the code syntax is valid; otherwise <strong><see cref="F:SharpDX.Result.False" /></strong>.</p></returns>
  4012. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::IsValid']/*" />
  4013. <msdn-id>bb173665</msdn-id>
  4014. <unmanaged>BOOL ID3D10EffectPass::IsValid()</unmanaged>
  4015. <unmanaged-short>ID3D10EffectPass::IsValid</unmanaged-short>
  4016. </member>
  4017. <member name="M:SharpDX.Direct3D10.EffectPass.GetDescription(SharpDX.Direct3D10.EffectPassDescription@)">
  4018. <summary>
  4019. <p>Get a pass description.</p>
  4020. </summary>
  4021. <param name="descRef"><dd> <p>A reference to a pass description (see <strong><see cref="T:SharpDX.Direct3D10.EffectPassDescription" /></strong>).</p> </dd></param>
  4022. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4023. <remarks>
  4024. <p>A pass is a block of code that sets render state and shaders (which in turn sets constant buffers, samplers and textures). An effect technique contains one or more passes. See techniques and passes.</p>
  4025. </remarks>
  4026. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::GetDesc']/*" />
  4027. <msdn-id>bb173661</msdn-id>
  4028. <unmanaged>HRESULT ID3D10EffectPass::GetDesc([Out] D3D10_PASS_DESC* pDesc)</unmanaged>
  4029. <unmanaged-short>ID3D10EffectPass::GetDesc</unmanaged-short>
  4030. </member>
  4031. <member name="M:SharpDX.Direct3D10.EffectPass.GetVertexShaderDescription(SharpDX.Direct3D10.EffectPassShaderDescription@)">
  4032. <summary>
  4033. <p>Get a vertex-shader description.</p>
  4034. </summary>
  4035. <param name="descRef"><dd> <p>A reference to a vertex-shader description (see <strong><see cref="T:SharpDX.Direct3D10.EffectPassShaderDescription" /></strong>).</p> </dd></param>
  4036. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4037. <remarks>
  4038. <p>An effect pass can contain render state assignments and shader object assignments.</p>
  4039. </remarks>
  4040. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::GetVertexShaderDesc']/*" />
  4041. <msdn-id>bb173664</msdn-id>
  4042. <unmanaged>HRESULT ID3D10EffectPass::GetVertexShaderDesc([Out] D3D10_PASS_SHADER_DESC* pDesc)</unmanaged>
  4043. <unmanaged-short>ID3D10EffectPass::GetVertexShaderDesc</unmanaged-short>
  4044. </member>
  4045. <member name="M:SharpDX.Direct3D10.EffectPass.GetGeometryShaderDescription(SharpDX.Direct3D10.EffectPassShaderDescription@)">
  4046. <summary>
  4047. <p>Get a geometry-shader description.</p>
  4048. </summary>
  4049. <param name="descRef"><dd> <p>A reference to a geometry-shader description (see <strong><see cref="T:SharpDX.Direct3D10.EffectPassShaderDescription" /></strong>).</p> </dd></param>
  4050. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4051. <remarks>
  4052. <p>An effect pass can contain render state assignments and shader object assignments.</p>
  4053. </remarks>
  4054. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::GetGeometryShaderDesc']/*" />
  4055. <msdn-id>bb173662</msdn-id>
  4056. <unmanaged>HRESULT ID3D10EffectPass::GetGeometryShaderDesc([Out] D3D10_PASS_SHADER_DESC* pDesc)</unmanaged>
  4057. <unmanaged-short>ID3D10EffectPass::GetGeometryShaderDesc</unmanaged-short>
  4058. </member>
  4059. <member name="M:SharpDX.Direct3D10.EffectPass.GetPixelShaderDescription(SharpDX.Direct3D10.EffectPassShaderDescription@)">
  4060. <summary>
  4061. <p>Get a pixel-shader description.</p>
  4062. </summary>
  4063. <param name="descRef"><dd> <p>A reference to a pixel-shader description (see <strong><see cref="T:SharpDX.Direct3D10.EffectPassShaderDescription" /></strong>).</p> </dd></param>
  4064. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4065. <remarks>
  4066. <p>An effect pass can contain render state assignments and shader object assignments.</p>
  4067. </remarks>
  4068. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::GetPixelShaderDesc']/*" />
  4069. <msdn-id>bb173663</msdn-id>
  4070. <unmanaged>HRESULT ID3D10EffectPass::GetPixelShaderDesc([Out] D3D10_PASS_SHADER_DESC* pDesc)</unmanaged>
  4071. <unmanaged-short>ID3D10EffectPass::GetPixelShaderDesc</unmanaged-short>
  4072. </member>
  4073. <member name="M:SharpDX.Direct3D10.EffectPass.GetAnnotationByIndex(System.Int32)">
  4074. <summary>
  4075. <p>Get an annotation by index.</p>
  4076. </summary>
  4077. <param name="index"><dd> <p>A zero-based index.</p> </dd></param>
  4078. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  4079. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::GetAnnotationByIndex']/*" />
  4080. <msdn-id>bb173659</msdn-id>
  4081. <unmanaged>ID3D10EffectVariable* ID3D10EffectPass::GetAnnotationByIndex([In] unsigned int Index)</unmanaged>
  4082. <unmanaged-short>ID3D10EffectPass::GetAnnotationByIndex</unmanaged-short>
  4083. </member>
  4084. <member name="M:SharpDX.Direct3D10.EffectPass.GetAnnotationByName(System.String)">
  4085. <summary>
  4086. <p>Get an annotation by name.</p>
  4087. </summary>
  4088. <param name="name"><dd> <p>The name of the annotation.</p> </dd></param>
  4089. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  4090. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::GetAnnotationByName']/*" />
  4091. <msdn-id>bb173660</msdn-id>
  4092. <unmanaged>ID3D10EffectVariable* ID3D10EffectPass::GetAnnotationByName([In] const char* Name)</unmanaged>
  4093. <unmanaged-short>ID3D10EffectPass::GetAnnotationByName</unmanaged-short>
  4094. </member>
  4095. <member name="M:SharpDX.Direct3D10.EffectPass.Apply(System.Int32)">
  4096. <summary>
  4097. <p>Set the state contained in a pass to the device.</p>
  4098. </summary>
  4099. <param name="flags"><dd> <p>Unused.</p> </dd></param>
  4100. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4101. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::Apply']/*" />
  4102. <msdn-id>bb173657</msdn-id>
  4103. <unmanaged>HRESULT ID3D10EffectPass::Apply([In] unsigned int Flags)</unmanaged>
  4104. <unmanaged-short>ID3D10EffectPass::Apply</unmanaged-short>
  4105. </member>
  4106. <member name="M:SharpDX.Direct3D10.EffectPass.ComputeStateBlockMask(SharpDX.Direct3D10.StateBlockMask@)">
  4107. <summary>
  4108. <p>Generate a mask for allowing/preventing state changes.</p>
  4109. </summary>
  4110. <param name="stateBlockMaskRef"><dd> <p>A reference to a state-block mask (see <strong><see cref="T:SharpDX.Direct3D10.StateBlockMask" /></strong>).</p> </dd></param>
  4111. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4112. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPass::ComputeStateBlockMask']/*" />
  4113. <msdn-id>bb173658</msdn-id>
  4114. <unmanaged>HRESULT ID3D10EffectPass::ComputeStateBlockMask([Out] D3D10_STATE_BLOCK_MASK* pStateBlockMask)</unmanaged>
  4115. <unmanaged-short>ID3D10EffectPass::ComputeStateBlockMask</unmanaged-short>
  4116. </member>
  4117. <member name="T:SharpDX.Direct3D10.EffectPassDescription">
  4118. <summary>
  4119. <p>Describes an effect pass, which contains pipeline state.</p>
  4120. </summary>
  4121. <remarks>
  4122. <p>Get a pass description by calling <strong><see cref="M:SharpDX.Direct3D10.EffectPass.GetDescription(SharpDX.Direct3D10.EffectPassDescription@)" /></strong>; an effect technique contains one or more passes.</p>
  4123. </remarks>
  4124. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_DESC']/*" />
  4125. <msdn-id>bb205330</msdn-id>
  4126. <unmanaged>D3D10_PASS_DESC</unmanaged>
  4127. <unmanaged-short>D3D10_PASS_DESC</unmanaged-short>
  4128. </member>
  4129. <member name="P:SharpDX.Direct3D10.EffectPassDescription.Signature">
  4130. <summary>
  4131. Returns the signature of this Effect pass.
  4132. </summary>
  4133. </member>
  4134. <member name="F:SharpDX.Direct3D10.EffectPassDescription.Name">
  4135. <summary>
  4136. <dd> <p>A string that contains the name of the pass; otherwise <strong><c>null</c></strong>.</p> </dd>
  4137. </summary>
  4138. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_DESC::Name']/*" />
  4139. <msdn-id>bb205330</msdn-id>
  4140. <unmanaged>const char* Name</unmanaged>
  4141. <unmanaged-short>char Name</unmanaged-short>
  4142. </member>
  4143. <member name="F:SharpDX.Direct3D10.EffectPassDescription.AnnotationCount">
  4144. <summary>
  4145. <dd> <p>The number of annotations.</p> </dd>
  4146. </summary>
  4147. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_DESC::Annotations']/*" />
  4148. <msdn-id>bb205330</msdn-id>
  4149. <unmanaged>unsigned int Annotations</unmanaged>
  4150. <unmanaged-short>unsigned int Annotations</unmanaged-short>
  4151. </member>
  4152. <member name="F:SharpDX.Direct3D10.EffectPassDescription.PIAInputSignature">
  4153. <summary>
  4154. <dd> <p>A reference to the input signature or the vertex shader; otherwise <strong><c>null</c></strong>.</p> </dd>
  4155. </summary>
  4156. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_DESC::pIAInputSignature']/*" />
  4157. <msdn-id>bb205330</msdn-id>
  4158. <unmanaged>unsigned char* pIAInputSignature</unmanaged>
  4159. <unmanaged-short>unsigned char pIAInputSignature</unmanaged-short>
  4160. </member>
  4161. <member name="F:SharpDX.Direct3D10.EffectPassDescription.IAInputSignatureSize">
  4162. <summary>
  4163. <dd> <p>The size of the input signature (in bytes).</p> </dd>
  4164. </summary>
  4165. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_DESC::IAInputSignatureSize']/*" />
  4166. <msdn-id>bb205330</msdn-id>
  4167. <unmanaged>SIZE_T IAInputSignatureSize</unmanaged>
  4168. <unmanaged-short>SIZE_T IAInputSignatureSize</unmanaged-short>
  4169. </member>
  4170. <member name="F:SharpDX.Direct3D10.EffectPassDescription.StencilReference">
  4171. <summary>
  4172. <dd> <p>The stencil-reference value used in the depth-stencil state (see Configuring Depth-Stencil Functionality (Direct3D 10)).</p> </dd>
  4173. </summary>
  4174. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_DESC::StencilRef']/*" />
  4175. <msdn-id>bb205330</msdn-id>
  4176. <unmanaged>unsigned int StencilRef</unmanaged>
  4177. <unmanaged-short>unsigned int StencilRef</unmanaged-short>
  4178. </member>
  4179. <member name="F:SharpDX.Direct3D10.EffectPassDescription.SampleMask">
  4180. <summary>
  4181. <dd> <p>The sample mask for the blend state (see Configuring Blending Functionality (Direct3D 10)).</p> </dd>
  4182. </summary>
  4183. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_DESC::SampleMask']/*" />
  4184. <msdn-id>bb205330</msdn-id>
  4185. <unmanaged>unsigned int SampleMask</unmanaged>
  4186. <unmanaged-short>unsigned int SampleMask</unmanaged-short>
  4187. </member>
  4188. <member name="F:SharpDX.Direct3D10.EffectPassDescription.BlendFactor">
  4189. <summary>
  4190. <dd> <p>The per-component blend factors (RGBA) for the blend state (see Configuring Blending Functionality (Direct3D 10)).</p> </dd>
  4191. </summary>
  4192. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_DESC::BlendFactor']/*" />
  4193. <msdn-id>bb205330</msdn-id>
  4194. <unmanaged>SHARPDX_COLOR4 BlendFactor</unmanaged>
  4195. <unmanaged-short>SHARPDX_COLOR4 BlendFactor</unmanaged-short>
  4196. </member>
  4197. <member name="T:SharpDX.Direct3D10.EffectPassShaderDescription">
  4198. <summary>
  4199. <p>Describes an effect variable that contains a shader.</p>
  4200. </summary>
  4201. <remarks>
  4202. <p>To get a shader description, call a method like <strong><see cref="M:SharpDX.Direct3D10.EffectPass.GetVertexShaderDescription(SharpDX.Direct3D10.EffectPassShaderDescription@)" /></strong>.</p>
  4203. </remarks>
  4204. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_SHADER_DESC']/*" />
  4205. <msdn-id>bb205331</msdn-id>
  4206. <unmanaged>D3D10_PASS_SHADER_DESC</unmanaged>
  4207. <unmanaged-short>D3D10_PASS_SHADER_DESC</unmanaged-short>
  4208. </member>
  4209. <member name="P:SharpDX.Direct3D10.EffectPassShaderDescription.Variable">
  4210. <summary>
  4211. A reference to the variable that the shader came from. If it is an inline shader assignment, the returned interface will be an anonymous shader variable, which is not retrievable any other way. Its name in the variable description will be "$Anonymous". If there is no assignment of this type in the pass block, this will point to a shader variable that returns false when IsValid is called.
  4212. </summary>
  4213. <unmanaged>ID3D10EffectShaderVariable* pShaderVariable</unmanaged>
  4214. </member>
  4215. <member name="F:SharpDX.Direct3D10.EffectPassShaderDescription.VariablePointer">
  4216. <summary>
  4217. <dd> <p>A reference to the variable that the shader came from. If it is an inline shader assignment, the returned interface will be an anonymous shader variable, which is not retrievable any other way. Its name in the variable description will be "$Anonymous". If there is no assignment of this type in the pass block, this will point to a shader variable that returns false when IsValid is called.</p> </dd>
  4218. </summary>
  4219. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_SHADER_DESC::pShaderVariable']/*" />
  4220. <msdn-id>bb205331</msdn-id>
  4221. <unmanaged>ID3D10EffectShaderVariable* pShaderVariable</unmanaged>
  4222. <unmanaged-short>ID3D10EffectShaderVariable pShaderVariable</unmanaged-short>
  4223. </member>
  4224. <member name="F:SharpDX.Direct3D10.EffectPassShaderDescription.Index">
  4225. <summary>
  4226. <dd> <p>A zero-based array index; otherwise 0.</p> </dd>
  4227. </summary>
  4228. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_PASS_SHADER_DESC::ShaderIndex']/*" />
  4229. <msdn-id>bb205331</msdn-id>
  4230. <unmanaged>unsigned int ShaderIndex</unmanaged>
  4231. <unmanaged-short>unsigned int ShaderIndex</unmanaged-short>
  4232. </member>
  4233. <member name="T:SharpDX.Direct3D10.EffectPool">
  4234. <summary>
  4235. <p>A pool interface represents a common memory space (or pool) for sharing variables between effects.</p>
  4236. </summary>
  4237. <remarks>
  4238. <p>To create an effect pool, call a function like <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateEffectPoolFromFile(System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,System.IntPtr,SharpDX.Direct3D10.EffectPool@,SharpDX.Direct3D.Blob@,SharpDX.Result@)" /></strong>. Effect pools can improve performance by reducing the number of API calls required to make state changes (see Using Effect Pools).</p>
  4239. </remarks>
  4240. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPool']/*" />
  4241. <msdn-id>bb173667</msdn-id>
  4242. <unmanaged>ID3D10EffectPool</unmanaged>
  4243. <unmanaged-short>ID3D10EffectPool</unmanaged-short>
  4244. </member>
  4245. <member name="M:SharpDX.Direct3D10.EffectPool.#ctor(SharpDX.Direct3D10.Device,System.Byte[],SharpDX.D3DCompiler.EffectFlags)">
  4246. <summary>
  4247. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectPool"/> class.
  4248. </summary>
  4249. <param name="device">The device.</param>
  4250. <param name="effectByteCode">The effect byte code.</param>
  4251. <param name="fxFlags">Effect compile options</param>
  4252. </member>
  4253. <member name="M:SharpDX.Direct3D10.EffectPool.#ctor(System.IntPtr)">
  4254. <summary>
  4255. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectPool"/> class.
  4256. </summary>
  4257. <param name="nativePtr">The native pointer.</param>
  4258. </member>
  4259. <member name="M:SharpDX.Direct3D10.EffectPool.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectPool">
  4260. <summary>
  4261. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectPool"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  4262. </summary>
  4263. <param name="nativePointer">The native pointer.</param>
  4264. <returns>
  4265. The result of the conversion.
  4266. </returns>
  4267. </member>
  4268. <member name="M:SharpDX.Direct3D10.EffectPool.AsEffect">
  4269. <summary>
  4270. <p>Get the effect that created the effect pool.</p>
  4271. </summary>
  4272. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.Effect" /> Interface</strong> interface.</p></returns>
  4273. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectPool::AsEffect']/*" />
  4274. <msdn-id>bb173668</msdn-id>
  4275. <unmanaged>ID3D10Effect* ID3D10EffectPool::AsEffect()</unmanaged>
  4276. <unmanaged-short>ID3D10EffectPool::AsEffect</unmanaged-short>
  4277. </member>
  4278. <member name="T:SharpDX.Direct3D10.EffectRasterizerVariable">
  4279. <summary>
  4280. <p>A rasterizer-variable interface accesses rasterizer state.</p>
  4281. </summary>
  4282. <remarks>
  4283. <p>An <strong><see cref="T:SharpDX.Direct3D10.EffectRasterizerVariable" /> Interface</strong> is created when an effect is read into memory.</p><p>Effect variables are saved in memory in the backing store; when a technique is applied, the values in the backing store are copied to the device. You can use either of these methods to return state. For examples, see Two Ways to Get the State in an Effect Variable.</p>
  4284. </remarks>
  4285. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectRasterizerVariable']/*" />
  4286. <msdn-id>bb173669</msdn-id>
  4287. <unmanaged>ID3D10EffectRasterizerVariable</unmanaged>
  4288. <unmanaged-short>ID3D10EffectRasterizerVariable</unmanaged-short>
  4289. </member>
  4290. <member name="M:SharpDX.Direct3D10.EffectRasterizerVariable.GetRasterizerState">
  4291. <summary>
  4292. Get a pointer to a rasterizer interface.
  4293. </summary>
  4294. <returns>Returns a pointer to a rasterizer interface (see <see cref="T:SharpDX.Direct3D10.RasterizerState"/>). </returns>
  4295. <unmanaged>HRESULT ID3D10EffectRasterizerVariable::GetRasterizerState([None] int Index,[Out] ID3D10RasterizerState** ppRasterizerState)</unmanaged>
  4296. </member>
  4297. <member name="M:SharpDX.Direct3D10.EffectRasterizerVariable.#ctor(System.IntPtr)">
  4298. <summary>
  4299. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectRasterizerVariable"/> class.
  4300. </summary>
  4301. <param name="nativePtr">The native pointer.</param>
  4302. </member>
  4303. <member name="M:SharpDX.Direct3D10.EffectRasterizerVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectRasterizerVariable">
  4304. <summary>
  4305. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectRasterizerVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  4306. </summary>
  4307. <param name="nativePointer">The native pointer.</param>
  4308. <returns>
  4309. The result of the conversion.
  4310. </returns>
  4311. </member>
  4312. <member name="M:SharpDX.Direct3D10.EffectRasterizerVariable.GetRasterizerState(System.Int32)">
  4313. <summary>
  4314. <p>Get a reference to a rasterizer interface.</p>
  4315. </summary>
  4316. <param name="index"><dd> <p>Index into an array of rasterizer interfaces. If there is only one rasterizer interface, use 0.</p> </dd></param>
  4317. <returns><dd> <p>The address of a reference to a rasterizer interface (see <strong><see cref="T:SharpDX.Direct3D10.RasterizerState" /> Interface</strong>).</p> </dd></returns>
  4318. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectRasterizerVariable::GetRasterizerState']/*" />
  4319. <msdn-id>bb173671</msdn-id>
  4320. <unmanaged>HRESULT ID3D10EffectRasterizerVariable::GetRasterizerState([In] unsigned int Index,[Out] ID3D10RasterizerState** ppRasterizerState)</unmanaged>
  4321. <unmanaged-short>ID3D10EffectRasterizerVariable::GetRasterizerState</unmanaged-short>
  4322. </member>
  4323. <member name="M:SharpDX.Direct3D10.EffectRasterizerVariable.GetBackingStore(System.Int32,SharpDX.Direct3D10.RasterizerStateDescription@)">
  4324. <summary>
  4325. <p>Get a reference to a variable that contains rasteriser state.</p>
  4326. </summary>
  4327. <param name="index"><dd> <p>Index into an array of rasteriser-state descriptions. If there is only one rasteriser variable in the effect, use 0.</p> </dd></param>
  4328. <param name="rasterizerDescRef"><dd> <p>A reference to a rasteriser-state description (see <strong><see cref="T:SharpDX.Direct3D10.RasterizerStateDescription" /></strong>).</p> </dd></param>
  4329. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4330. <remarks>
  4331. <p>Effect variables are saved in memory in the backing store; when a technique is applied, the values in the backing store are copied to the device. Backing store data can used to recreate the variable when necessary.</p>
  4332. </remarks>
  4333. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectRasterizerVariable::GetBackingStore']/*" />
  4334. <msdn-id>bb173670</msdn-id>
  4335. <unmanaged>HRESULT ID3D10EffectRasterizerVariable::GetBackingStore([In] unsigned int Index,[Out] D3D10_RASTERIZER_DESC* pRasterizerDesc)</unmanaged>
  4336. <unmanaged-short>ID3D10EffectRasterizerVariable::GetBackingStore</unmanaged-short>
  4337. </member>
  4338. <member name="T:SharpDX.Direct3D10.EffectRenderTargetViewVariable">
  4339. <summary>
  4340. <p>A render-target-view interface accesses a render target.</p>
  4341. </summary>
  4342. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectRenderTargetViewVariable']/*" />
  4343. <msdn-id>bb173672</msdn-id>
  4344. <unmanaged>ID3D10EffectRenderTargetViewVariable</unmanaged>
  4345. <unmanaged-short>ID3D10EffectRenderTargetViewVariable</unmanaged-short>
  4346. </member>
  4347. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.SetRenderTargetArray(SharpDX.Direct3D10.RenderTargetView[])">
  4348. <summary>
  4349. Set an array of render-targets.
  4350. </summary>
  4351. <param name="resourcesRef">Set an array of render-target-view interfaces. See <see cref="T:SharpDX.Direct3D10.RenderTargetView"/>. </param>
  4352. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4353. <unmanaged>HRESULT ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray([In, Buffer] ID3D10RenderTargetView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  4354. </member>
  4355. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.SetRenderTargetArray(SharpDX.Direct3D10.RenderTargetView[],System.Int32)">
  4356. <summary>
  4357. Set an array of render-targets.
  4358. </summary>
  4359. <param name="resourcesRef">Set an array of render-target-view interfaces. See <see cref="T:SharpDX.Direct3D10.RenderTargetView"/>. </param>
  4360. <param name="offset">The zero-based array index to store the first interface. </param>
  4361. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4362. <unmanaged>HRESULT ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray([In, Buffer] ID3D10RenderTargetView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  4363. </member>
  4364. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.GetRenderTargetArray(System.Int32)">
  4365. <summary>
  4366. Get an array of render-targets.
  4367. </summary>
  4368. <param name="count">The number of elements in the array. </param>
  4369. <returns>Returns an array of <see cref="T:SharpDX.Direct3D10.RenderTargetView"/>. </returns>
  4370. <unmanaged>HRESULT ID3D10EffectRenderTargetViewVariable::GetRenderTargetArray([Out, Buffer] ID3D10RenderTargetView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  4371. </member>
  4372. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.GetRenderTargetArray(System.Int32,System.Int32)">
  4373. <summary>
  4374. Get an array of render-targets.
  4375. </summary>
  4376. <param name="offset">The zero-based array index to get the first interface. </param>
  4377. <param name="count">The number of elements in the array. </param>
  4378. <returns>Returns an array of <see cref="T:SharpDX.Direct3D10.RenderTargetView"/>. </returns>
  4379. <unmanaged>HRESULT ID3D10EffectRenderTargetViewVariable::GetRenderTargetArray([Out, Buffer] ID3D10RenderTargetView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  4380. </member>
  4381. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.#ctor(System.IntPtr)">
  4382. <summary>
  4383. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectRenderTargetViewVariable"/> class.
  4384. </summary>
  4385. <param name="nativePtr">The native pointer.</param>
  4386. </member>
  4387. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectRenderTargetViewVariable">
  4388. <summary>
  4389. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectRenderTargetViewVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  4390. </summary>
  4391. <param name="nativePointer">The native pointer.</param>
  4392. <returns>
  4393. The result of the conversion.
  4394. </returns>
  4395. </member>
  4396. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.SetRenderTarget(SharpDX.Direct3D10.RenderTargetView)">
  4397. <summary>
  4398. <p>Set a render-target.</p>
  4399. </summary>
  4400. <param name="resourceRef"><dd> <p>A reference to a render-target-view interface. See <strong><see cref="T:SharpDX.Direct3D10.RenderTargetView" /> Interface</strong>.</p> </dd></param>
  4401. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4402. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectRenderTargetViewVariable::SetRenderTarget']/*" />
  4403. <msdn-id>bb173675</msdn-id>
  4404. <unmanaged>HRESULT ID3D10EffectRenderTargetViewVariable::SetRenderTarget([In, Optional] ID3D10RenderTargetView* pResource)</unmanaged>
  4405. <unmanaged-short>ID3D10EffectRenderTargetViewVariable::SetRenderTarget</unmanaged-short>
  4406. </member>
  4407. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.GetRenderTarget">
  4408. <summary>
  4409. <p>Get a render-target.</p>
  4410. </summary>
  4411. <returns><dd> <p>The address of a reference to a render-target-view interface. See <strong><see cref="T:SharpDX.Direct3D10.RenderTargetView" /> Interface</strong>.</p> </dd></returns>
  4412. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectRenderTargetViewVariable::GetRenderTarget']/*" />
  4413. <msdn-id>bb173673</msdn-id>
  4414. <unmanaged>HRESULT ID3D10EffectRenderTargetViewVariable::GetRenderTarget([Out] ID3D10RenderTargetView** ppResource)</unmanaged>
  4415. <unmanaged-short>ID3D10EffectRenderTargetViewVariable::GetRenderTarget</unmanaged-short>
  4416. </member>
  4417. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.SetRenderTargetArray(SharpDX.Direct3D10.RenderTargetView[],System.Int32,System.Int32)">
  4418. <summary>
  4419. <p>Set an array of render-targets.</p>
  4420. </summary>
  4421. <param name="resourcesOut"><dd> <p>Set an array of render-target-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.RenderTargetView" /> Interface</strong>.</p> </dd></param>
  4422. <param name="offset"><dd> <p>The zero-based array index to store the first interface.</p> </dd></param>
  4423. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  4424. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4425. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray']/*" />
  4426. <msdn-id>bb173676</msdn-id>
  4427. <unmanaged>HRESULT ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray([In, Buffer] ID3D10RenderTargetView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4428. <unmanaged-short>ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray</unmanaged-short>
  4429. </member>
  4430. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.SetRenderTargetArray(SharpDX.ComArray{SharpDX.Direct3D10.RenderTargetView},System.Int32,System.Int32)">
  4431. <summary>
  4432. <p>Set an array of render-targets.</p>
  4433. </summary>
  4434. <param name="resourcesOut"><dd> <p>Set an array of render-target-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.RenderTargetView" /> Interface</strong>.</p> </dd></param>
  4435. <param name="offset"><dd> <p>The zero-based array index to store the first interface.</p> </dd></param>
  4436. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  4437. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4438. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray']/*" />
  4439. <msdn-id>bb173676</msdn-id>
  4440. <unmanaged>HRESULT ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray([In, Buffer] ID3D10RenderTargetView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4441. <unmanaged-short>ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray</unmanaged-short>
  4442. </member>
  4443. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.SetRenderTargetArray(System.IntPtr,System.Int32,System.Int32)">
  4444. <summary>
  4445. <p>Set an array of render-targets.</p>
  4446. </summary>
  4447. <param name="resourcesOut"><dd> <p>Set an array of render-target-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.RenderTargetView" /> Interface</strong>.</p> </dd></param>
  4448. <param name="offset"><dd> <p>The zero-based array index to store the first interface.</p> </dd></param>
  4449. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  4450. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4451. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray']/*" />
  4452. <msdn-id>bb173676</msdn-id>
  4453. <unmanaged>HRESULT ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray([In, Buffer] ID3D10RenderTargetView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4454. <unmanaged-short>ID3D10EffectRenderTargetViewVariable::SetRenderTargetArray</unmanaged-short>
  4455. </member>
  4456. <member name="M:SharpDX.Direct3D10.EffectRenderTargetViewVariable.GetRenderTargetArray(SharpDX.Direct3D10.RenderTargetView[],System.Int32,System.Int32)">
  4457. <summary>
  4458. <p>Get an array of render-targets.</p>
  4459. </summary>
  4460. <param name="resourcesOut"><dd> <p>A reference to an array of render-target-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.RenderTargetView" /> Interface</strong>.</p> </dd></param>
  4461. <param name="offset"><dd> <p>The zero-based array index to get the first interface.</p> </dd></param>
  4462. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  4463. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4464. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectRenderTargetViewVariable::GetRenderTargetArray']/*" />
  4465. <msdn-id>bb173674</msdn-id>
  4466. <unmanaged>HRESULT ID3D10EffectRenderTargetViewVariable::GetRenderTargetArray([Out, Buffer] ID3D10RenderTargetView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4467. <unmanaged-short>ID3D10EffectRenderTargetViewVariable::GetRenderTargetArray</unmanaged-short>
  4468. </member>
  4469. <member name="T:SharpDX.Direct3D10.EffectSamplerVariable">
  4470. <summary>
  4471. <p>A sampler interface accesses sampler state.</p>
  4472. </summary>
  4473. <remarks>
  4474. <p>An <strong><see cref="T:SharpDX.Direct3D10.EffectSamplerVariable" /> Interface</strong> is created when an effect is read into memory.</p><p>Effect variables are saved in memory in the backing store; when a technique is applied, the values in the backing store are copied to the device. You can use either of these methods to return state. For examples, see Two Ways to Get the State in an Effect Variable.</p>
  4475. </remarks>
  4476. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectSamplerVariable']/*" />
  4477. <msdn-id>bb173677</msdn-id>
  4478. <unmanaged>ID3D10EffectSamplerVariable</unmanaged>
  4479. <unmanaged-short>ID3D10EffectSamplerVariable</unmanaged-short>
  4480. </member>
  4481. <member name="M:SharpDX.Direct3D10.EffectSamplerVariable.GetSampler">
  4482. <summary>
  4483. Get a reference to a sampler interface.
  4484. </summary>
  4485. <returns>Returns a reference to a sampler interface (see <see cref="T:SharpDX.Direct3D10.SamplerState"/>). </returns>
  4486. <unmanaged>HRESULT ID3D10EffectSamplerVariable::GetSampler([None] int Index,[Out] ID3D10SamplerState** ppSampler)</unmanaged>
  4487. </member>
  4488. <member name="M:SharpDX.Direct3D10.EffectSamplerVariable.#ctor(System.IntPtr)">
  4489. <summary>
  4490. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectSamplerVariable"/> class.
  4491. </summary>
  4492. <param name="nativePtr">The native pointer.</param>
  4493. </member>
  4494. <member name="M:SharpDX.Direct3D10.EffectSamplerVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectSamplerVariable">
  4495. <summary>
  4496. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectSamplerVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  4497. </summary>
  4498. <param name="nativePointer">The native pointer.</param>
  4499. <returns>
  4500. The result of the conversion.
  4501. </returns>
  4502. </member>
  4503. <member name="M:SharpDX.Direct3D10.EffectSamplerVariable.GetSampler(System.Int32)">
  4504. <summary>
  4505. <p>Get a reference to a sampler interface.</p>
  4506. </summary>
  4507. <param name="index"><dd> <p>Index into an array of sampler interfaces. If there is only one sampler interface, use 0.</p> </dd></param>
  4508. <returns><dd> <p>The address of a reference to a sampler interface (see <strong><see cref="T:SharpDX.Direct3D10.SamplerState" /> Interface</strong>).</p> </dd></returns>
  4509. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectSamplerVariable::GetSampler']/*" />
  4510. <msdn-id>bb173679</msdn-id>
  4511. <unmanaged>HRESULT ID3D10EffectSamplerVariable::GetSampler([In] unsigned int Index,[Out] ID3D10SamplerState** ppSampler)</unmanaged>
  4512. <unmanaged-short>ID3D10EffectSamplerVariable::GetSampler</unmanaged-short>
  4513. </member>
  4514. <member name="M:SharpDX.Direct3D10.EffectSamplerVariable.GetBackingStore(System.Int32,SharpDX.Direct3D10.SamplerStateDescription@)">
  4515. <summary>
  4516. <p>Get a reference to a variable that contains sampler state.</p>
  4517. </summary>
  4518. <param name="index"><dd> <p>Index into an array of sampler descriptions. If there is only one sampler variable in the effect, use 0.</p> </dd></param>
  4519. <param name="samplerDescRef"><dd> <p>A reference to a sampler description (see <strong><see cref="T:SharpDX.Direct3D10.SamplerStateDescription" /></strong>).</p> </dd></param>
  4520. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4521. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectSamplerVariable::GetBackingStore']/*" />
  4522. <msdn-id>bb173678</msdn-id>
  4523. <unmanaged>HRESULT ID3D10EffectSamplerVariable::GetBackingStore([In] unsigned int Index,[Out] D3D10_SAMPLER_DESC* pSamplerDesc)</unmanaged>
  4524. <unmanaged-short>ID3D10EffectSamplerVariable::GetBackingStore</unmanaged-short>
  4525. </member>
  4526. <member name="T:SharpDX.Direct3D10.EffectScalarVariable">
  4527. <summary>
  4528. <p>An effect-scalar-variable interface accesses scalar values.</p>
  4529. </summary>
  4530. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable']/*" />
  4531. <msdn-id>bb173680</msdn-id>
  4532. <unmanaged>ID3D10EffectScalarVariable</unmanaged>
  4533. <unmanaged-short>ID3D10EffectScalarVariable</unmanaged-short>
  4534. </member>
  4535. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.Set(System.Single)">
  4536. <summary>
  4537. Set a floating-point variable.
  4538. </summary>
  4539. <param name="value">A reference to the variable. </param>
  4540. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4541. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetFloat([None] float Value)</unmanaged>
  4542. </member>
  4543. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.Set(System.Single[])">
  4544. <summary>
  4545. Set an array of floating-point variables.
  4546. </summary>
  4547. <param name="dataRef">A reference to the start of the data to set. </param>
  4548. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4549. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetFloatArray([In, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  4550. </member>
  4551. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.Set(System.Single[],System.Int32)">
  4552. <summary>
  4553. Set an array of floating-point variables.
  4554. </summary>
  4555. <param name="dataRef">A reference to the start of the data to set. </param>
  4556. <param name="offset">Must be set to 0; this is reserved for future use. </param>
  4557. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4558. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetFloatArray([In, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  4559. </member>
  4560. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetFloatArray(System.Int32)">
  4561. <summary>
  4562. Get an array of floating-point variables.
  4563. </summary>
  4564. <param name="count">The number of array elements to set. </param>
  4565. <returns>Returns an array of floats. </returns>
  4566. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetFloatArray([Out, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  4567. </member>
  4568. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetFloatArray(System.Int32,System.Int32)">
  4569. <summary>
  4570. Get an array of floating-point variables.
  4571. </summary>
  4572. <param name="offset">Must be set to 0; this is reserved for future use. </param>
  4573. <param name="count">The number of array elements to set. </param>
  4574. <returns>Returns an array of floats. </returns>
  4575. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetFloatArray([Out, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  4576. </member>
  4577. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.Set(System.Int32)">
  4578. <summary>
  4579. Set an integer variable.
  4580. </summary>
  4581. <param name="value">A reference to the variable. </param>
  4582. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4583. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetInt([None] int Value)</unmanaged>
  4584. </member>
  4585. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.Set(System.Int32[])">
  4586. <summary>
  4587. Set an array of integer variables.
  4588. </summary>
  4589. <param name="dataRef">A reference to the start of the data to set. </param>
  4590. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4591. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetIntArray([In, Buffer] int* pData,[None] int Offset,[None] int Count)</unmanaged>
  4592. </member>
  4593. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.Set(System.Int32[],System.Int32)">
  4594. <summary>
  4595. Set an array of integer variables.
  4596. </summary>
  4597. <param name="dataRef">A reference to the start of the data to set. </param>
  4598. <param name="offset">Must be set to 0; this is reserved for future use. </param>
  4599. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4600. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetIntArray([In, Buffer] int* pData,[None] int Offset,[None] int Count)</unmanaged>
  4601. </member>
  4602. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetIntArray(System.Int32)">
  4603. <summary>
  4604. Get an array of integer variables.
  4605. </summary>
  4606. <param name="count">The number of array elements to set. </param>
  4607. <returns>Returns an array of integer variables. </returns>
  4608. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetIntArray([Out, Buffer] int* pData,[None] int Offset,[None] int Count)</unmanaged>
  4609. </member>
  4610. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetIntArray(System.Int32,System.Int32)">
  4611. <summary>
  4612. Get an array of integer variables.
  4613. </summary>
  4614. <param name="offset">Must be set to 0; this is reserved for future use. </param>
  4615. <param name="count">The number of array elements to set. </param>
  4616. <returns>Returns an array of integer variables. </returns>
  4617. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetIntArray([Out, Buffer] int* pData,[None] int Offset,[None] int Count)</unmanaged>
  4618. </member>
  4619. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.Set(System.Boolean)">
  4620. <summary>
  4621. Set a boolean variable.
  4622. </summary>
  4623. <param name="value">A reference to the variable. </param>
  4624. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4625. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetBool([None] BOOL Value)</unmanaged>
  4626. </member>
  4627. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetBool">
  4628. <summary>
  4629. Get a boolean variable.
  4630. </summary>
  4631. <returns>Returns a boolean. </returns>
  4632. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetBool([Out] BOOL* pValue)</unmanaged>
  4633. </member>
  4634. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.Set(System.Boolean[])">
  4635. <summary>
  4636. Set an array of boolean variables.
  4637. </summary>
  4638. <param name="dataRef">A reference to the start of the data to set. </param>
  4639. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4640. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetBoolArray([In, Buffer] BOOL* pData,[None] int Offset,[None] int Count)</unmanaged>
  4641. </member>
  4642. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.Set(System.Boolean[],System.Int32)">
  4643. <summary>
  4644. Set an array of boolean variables.
  4645. </summary>
  4646. <param name="dataRef">A reference to the start of the data to set. </param>
  4647. <param name="offset">Must be set to 0; this is reserved for future use. </param>
  4648. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4649. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetBoolArray([In, Buffer] BOOL* pData,[None] int Offset,[None] int Count)</unmanaged>
  4650. </member>
  4651. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetBoolArray(System.Int32,System.Int32)">
  4652. <summary>
  4653. Get an array of boolean variables.
  4654. </summary>
  4655. <param name="offset">Must be set to 0; this is reserved for future use. </param>
  4656. <param name="count">The number of array elements to set. </param>
  4657. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4658. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetBoolArray([Out, Buffer] BOOL* pData,[None] int Offset,[None] int Count)</unmanaged>
  4659. </member>
  4660. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.#ctor(System.IntPtr)">
  4661. <summary>
  4662. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectScalarVariable"/> class.
  4663. </summary>
  4664. <param name="nativePtr">The native pointer.</param>
  4665. </member>
  4666. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectScalarVariable">
  4667. <summary>
  4668. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectScalarVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  4669. </summary>
  4670. <param name="nativePointer">The native pointer.</param>
  4671. <returns>
  4672. The result of the conversion.
  4673. </returns>
  4674. </member>
  4675. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.SetFloat(System.Single)">
  4676. <summary>
  4677. <p>Set a floating-point variable.</p>
  4678. </summary>
  4679. <param name="value"><dd> <p>A reference to the variable.</p> </dd></param>
  4680. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4681. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::SetFloat']/*" />
  4682. <msdn-id>bb173689</msdn-id>
  4683. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetFloat([In] float Value)</unmanaged>
  4684. <unmanaged-short>ID3D10EffectScalarVariable::SetFloat</unmanaged-short>
  4685. </member>
  4686. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetFloat">
  4687. <summary>
  4688. <p>Get a floating-point variable.</p>
  4689. </summary>
  4690. <returns><dd> <p>A reference to the variable.</p> </dd></returns>
  4691. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::GetFloat']/*" />
  4692. <msdn-id>bb173683</msdn-id>
  4693. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetFloat([Out] float* pValue)</unmanaged>
  4694. <unmanaged-short>ID3D10EffectScalarVariable::GetFloat</unmanaged-short>
  4695. </member>
  4696. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.SetFloatArray(System.Single[],System.Int32,System.Int32)">
  4697. <summary>
  4698. <p>Set an array of floating-point variables.</p>
  4699. </summary>
  4700. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  4701. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  4702. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  4703. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4704. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::SetFloatArray']/*" />
  4705. <msdn-id>bb173690</msdn-id>
  4706. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetFloatArray([In, Buffer] float* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4707. <unmanaged-short>ID3D10EffectScalarVariable::SetFloatArray</unmanaged-short>
  4708. </member>
  4709. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetFloatArray(System.Single[],System.Int32,System.Int32)">
  4710. <summary>
  4711. <p>Get an array of floating-point variables.</p>
  4712. </summary>
  4713. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  4714. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  4715. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  4716. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4717. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::GetFloatArray']/*" />
  4718. <msdn-id>bb173684</msdn-id>
  4719. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetFloatArray([Out, Buffer] float* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4720. <unmanaged-short>ID3D10EffectScalarVariable::GetFloatArray</unmanaged-short>
  4721. </member>
  4722. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.SetInt(System.Int32)">
  4723. <summary>
  4724. <p>Set an integer variable.</p>
  4725. </summary>
  4726. <param name="value"><dd> <p>A reference to the variable.</p> </dd></param>
  4727. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4728. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::SetInt']/*" />
  4729. <msdn-id>bb173691</msdn-id>
  4730. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetInt([In] int Value)</unmanaged>
  4731. <unmanaged-short>ID3D10EffectScalarVariable::SetInt</unmanaged-short>
  4732. </member>
  4733. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetInt">
  4734. <summary>
  4735. <p>Get an integer variable.</p>
  4736. </summary>
  4737. <returns><dd> <p>A reference to the variable.</p> </dd></returns>
  4738. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::GetInt']/*" />
  4739. <msdn-id>bb173685</msdn-id>
  4740. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetInt([Out] int* pValue)</unmanaged>
  4741. <unmanaged-short>ID3D10EffectScalarVariable::GetInt</unmanaged-short>
  4742. </member>
  4743. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.SetIntArray(System.Int32[],System.Int32,System.Int32)">
  4744. <summary>
  4745. <p>Set an array of integer variables.</p>
  4746. </summary>
  4747. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  4748. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  4749. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  4750. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4751. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::SetIntArray']/*" />
  4752. <msdn-id>bb173692</msdn-id>
  4753. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetIntArray([In, Buffer] int* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4754. <unmanaged-short>ID3D10EffectScalarVariable::SetIntArray</unmanaged-short>
  4755. </member>
  4756. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetIntArray(System.Int32[],System.Int32,System.Int32)">
  4757. <summary>
  4758. <p>Get an array of integer variables.</p>
  4759. </summary>
  4760. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  4761. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  4762. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  4763. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4764. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::GetIntArray']/*" />
  4765. <msdn-id>bb173686</msdn-id>
  4766. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetIntArray([Out, Buffer] int* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4767. <unmanaged-short>ID3D10EffectScalarVariable::GetIntArray</unmanaged-short>
  4768. </member>
  4769. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.SetBool(SharpDX.Mathematics.Interop.RawBool)">
  4770. <summary>
  4771. <p>Set a boolean variable.</p>
  4772. </summary>
  4773. <param name="value"><dd> <p>A reference to the variable.</p> </dd></param>
  4774. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4775. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::SetBool']/*" />
  4776. <msdn-id>bb173687</msdn-id>
  4777. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetBool([In] BOOL Value)</unmanaged>
  4778. <unmanaged-short>ID3D10EffectScalarVariable::SetBool</unmanaged-short>
  4779. </member>
  4780. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetBool(SharpDX.Mathematics.Interop.RawBool@)">
  4781. <summary>
  4782. <p>Get a boolean variable.</p>
  4783. </summary>
  4784. <param name="valueRef"><dd> <p>A reference to the variable.</p> </dd></param>
  4785. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4786. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::GetBool']/*" />
  4787. <msdn-id>bb173681</msdn-id>
  4788. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetBool([Out] BOOL* pValue)</unmanaged>
  4789. <unmanaged-short>ID3D10EffectScalarVariable::GetBool</unmanaged-short>
  4790. </member>
  4791. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.SetBoolArray(SharpDX.Mathematics.Interop.RawBool[],System.Int32,System.Int32)">
  4792. <summary>
  4793. <p>Set an array of boolean variables.</p>
  4794. </summary>
  4795. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  4796. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  4797. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  4798. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4799. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::SetBoolArray']/*" />
  4800. <msdn-id>bb173688</msdn-id>
  4801. <unmanaged>HRESULT ID3D10EffectScalarVariable::SetBoolArray([In, Buffer] BOOL* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4802. <unmanaged-short>ID3D10EffectScalarVariable::SetBoolArray</unmanaged-short>
  4803. </member>
  4804. <member name="M:SharpDX.Direct3D10.EffectScalarVariable.GetBoolArray(SharpDX.Mathematics.Interop.RawBool[],System.Int32,System.Int32)">
  4805. <summary>
  4806. <p>Get an array of boolean variables.</p>
  4807. </summary>
  4808. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  4809. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  4810. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  4811. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4812. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectScalarVariable::GetBoolArray']/*" />
  4813. <msdn-id>bb173682</msdn-id>
  4814. <unmanaged>HRESULT ID3D10EffectScalarVariable::GetBoolArray([Out, Buffer] BOOL* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4815. <unmanaged-short>ID3D10EffectScalarVariable::GetBoolArray</unmanaged-short>
  4816. </member>
  4817. <member name="T:SharpDX.Direct3D10.EffectShaderDescription">
  4818. <summary>
  4819. <p>Describes an effect shader.</p>
  4820. </summary>
  4821. <remarks>
  4822. <p>To get an effect-shader description, call <strong><see cref="M:SharpDX.Direct3D10.EffectShaderVariable.GetShaderDescription(System.Int32)" /></strong>.</p>
  4823. </remarks>
  4824. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_SHADER_DESC']/*" />
  4825. <msdn-id>bb205051</msdn-id>
  4826. <unmanaged>D3D10_EFFECT_SHADER_DESC</unmanaged>
  4827. <unmanaged-short>D3D10_EFFECT_SHADER_DESC</unmanaged-short>
  4828. </member>
  4829. <member name="P:SharpDX.Direct3D10.EffectShaderDescription.Signature">
  4830. <summary>
  4831. Gets the signature passed into InputLayout. Only valid on a vertex shader or geometry shader.
  4832. </summary>
  4833. <value>The signature.</value>
  4834. </member>
  4835. <member name="P:SharpDX.Direct3D10.EffectShaderDescription.Bytecode">
  4836. <summary>
  4837. Gets the bytecode from the compiled shader.
  4838. </summary>
  4839. <value>The bytecode.</value>
  4840. </member>
  4841. <member name="F:SharpDX.Direct3D10.EffectShaderDescription.InputSignaturePointer">
  4842. <summary>
  4843. <dd> <p>Passed into CreateInputLayout. Only valid on a vertex shader or geometry shader. See <strong>ID3D10Device_CreateInputLayout</strong>.</p> </dd>
  4844. </summary>
  4845. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_SHADER_DESC::pInputSignature']/*" />
  4846. <msdn-id>bb205051</msdn-id>
  4847. <unmanaged>const unsigned char* pInputSignature</unmanaged>
  4848. <unmanaged-short>unsigned char pInputSignature</unmanaged-short>
  4849. </member>
  4850. <member name="F:SharpDX.Direct3D10.EffectShaderDescription.IsInline">
  4851. <summary>
  4852. <dd> <p><strong>TRUE</strong> is the shader is defined inline; otherwise <strong><see cref="F:SharpDX.Result.False" /></strong>.</p> </dd>
  4853. </summary>
  4854. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_SHADER_DESC::IsInline']/*" />
  4855. <msdn-id>bb205051</msdn-id>
  4856. <unmanaged>BOOL IsInline</unmanaged>
  4857. <unmanaged-short>BOOL IsInline</unmanaged-short>
  4858. </member>
  4859. <member name="F:SharpDX.Direct3D10.EffectShaderDescription.BytecodePointer">
  4860. <summary>
  4861. <dd> <p>A reference to the compiled shader.</p> </dd>
  4862. </summary>
  4863. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_SHADER_DESC::pBytecode']/*" />
  4864. <msdn-id>bb205051</msdn-id>
  4865. <unmanaged>const unsigned char* pBytecode</unmanaged>
  4866. <unmanaged-short>unsigned char pBytecode</unmanaged-short>
  4867. </member>
  4868. <member name="F:SharpDX.Direct3D10.EffectShaderDescription.BytecodeLength">
  4869. <summary>
  4870. <dd> <p>The length of pBytecode.</p> </dd>
  4871. </summary>
  4872. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_SHADER_DESC::BytecodeLength']/*" />
  4873. <msdn-id>bb205051</msdn-id>
  4874. <unmanaged>unsigned int BytecodeLength</unmanaged>
  4875. <unmanaged-short>unsigned int BytecodeLength</unmanaged-short>
  4876. </member>
  4877. <member name="F:SharpDX.Direct3D10.EffectShaderDescription.StreamOutputDeclaration">
  4878. <summary>
  4879. <dd> <p>A string that constains a declaration of the stream output from a geometry shader.</p> </dd>
  4880. </summary>
  4881. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_SHADER_DESC::SODecl']/*" />
  4882. <msdn-id>bb205051</msdn-id>
  4883. <unmanaged>const char* SODecl</unmanaged>
  4884. <unmanaged-short>char SODecl</unmanaged-short>
  4885. </member>
  4886. <member name="F:SharpDX.Direct3D10.EffectShaderDescription.InputParameterCount">
  4887. <summary>
  4888. <dd> <p>The number of entries in the input signature.</p> </dd>
  4889. </summary>
  4890. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_SHADER_DESC::NumInputSignatureEntries']/*" />
  4891. <msdn-id>bb205051</msdn-id>
  4892. <unmanaged>unsigned int NumInputSignatureEntries</unmanaged>
  4893. <unmanaged-short>unsigned int NumInputSignatureEntries</unmanaged-short>
  4894. </member>
  4895. <member name="F:SharpDX.Direct3D10.EffectShaderDescription.OutputParameterCount">
  4896. <summary>
  4897. <dd> <p>The number of entries in the output signature.</p> </dd>
  4898. </summary>
  4899. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_SHADER_DESC::NumOutputSignatureEntries']/*" />
  4900. <msdn-id>bb205051</msdn-id>
  4901. <unmanaged>unsigned int NumOutputSignatureEntries</unmanaged>
  4902. <unmanaged-short>unsigned int NumOutputSignatureEntries</unmanaged-short>
  4903. </member>
  4904. <member name="T:SharpDX.Direct3D10.EffectShaderResourceVariable">
  4905. <summary>
  4906. <p>A shader-resource interface accesses a shader resource.</p>
  4907. </summary>
  4908. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderResourceVariable']/*" />
  4909. <msdn-id>bb173693</msdn-id>
  4910. <unmanaged>ID3D10EffectShaderResourceVariable</unmanaged>
  4911. <unmanaged-short>ID3D10EffectShaderResourceVariable</unmanaged-short>
  4912. </member>
  4913. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.SetResourceArray(SharpDX.Direct3D10.ShaderResourceView[])">
  4914. <summary>
  4915. Set an array of shader resources.
  4916. </summary>
  4917. <param name="resourcesRef">The address of an array of shader-resource-view interfaces. See <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>. </param>
  4918. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4919. <unmanaged>HRESULT ID3D10EffectShaderResourceVariable::SetResourceArray([None] ID3D10ShaderResourceView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  4920. </member>
  4921. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.SetResourceArray(SharpDX.Direct3D10.ShaderResourceView[],System.Int32)">
  4922. <summary>
  4923. Set an array of shader resources.
  4924. </summary>
  4925. <param name="resourcesRef">The address of an array of shader-resource-view interfaces. See <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>. </param>
  4926. <param name="offset">The zero-based array index to get the first interface. </param>
  4927. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  4928. <unmanaged>HRESULT ID3D10EffectShaderResourceVariable::SetResourceArray([None] ID3D10ShaderResourceView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  4929. </member>
  4930. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.GetResourceArray(System.Int32)">
  4931. <summary>
  4932. Get an array of shader resources.
  4933. </summary>
  4934. <param name="count">The number of elements in the array. </param>
  4935. <returns>Returns an array of shader-resource-view interfaces. See <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>. </returns>
  4936. <unmanaged>HRESULT ID3D10EffectShaderResourceVariable::GetResourceArray([Out] ID3D10ShaderResourceView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  4937. </member>
  4938. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.GetResourceArray(System.Int32,System.Int32)">
  4939. <summary>
  4940. Get an array of shader resources.
  4941. </summary>
  4942. <param name="offset">The zero-based array index to get the first interface. </param>
  4943. <param name="count">The number of elements in the array. </param>
  4944. <returns>Returns an array of shader-resource-view interfaces. See <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>. </returns>
  4945. <unmanaged>HRESULT ID3D10EffectShaderResourceVariable::GetResourceArray([Out] ID3D10ShaderResourceView** ppResources,[None] int Offset,[None] int Count)</unmanaged>
  4946. </member>
  4947. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.#ctor(System.IntPtr)">
  4948. <summary>
  4949. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectShaderResourceVariable"/> class.
  4950. </summary>
  4951. <param name="nativePtr">The native pointer.</param>
  4952. </member>
  4953. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectShaderResourceVariable">
  4954. <summary>
  4955. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectShaderResourceVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  4956. </summary>
  4957. <param name="nativePointer">The native pointer.</param>
  4958. <returns>
  4959. The result of the conversion.
  4960. </returns>
  4961. </member>
  4962. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.SetResource(SharpDX.Direct3D10.ShaderResourceView)">
  4963. <summary>
  4964. <p>Set a shader resource.</p>
  4965. </summary>
  4966. <param name="resourceRef"><dd> <p>The address of a reference to a shader-resource-view interface. See <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>.</p> </dd></param>
  4967. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4968. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderResourceVariable::SetResource']/*" />
  4969. <msdn-id>bb173696</msdn-id>
  4970. <unmanaged>HRESULT ID3D10EffectShaderResourceVariable::SetResource([In, Optional] ID3D10ShaderResourceView* pResource)</unmanaged>
  4971. <unmanaged-short>ID3D10EffectShaderResourceVariable::SetResource</unmanaged-short>
  4972. </member>
  4973. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.GetResource">
  4974. <summary>
  4975. <p>Get a shader resource.</p>
  4976. </summary>
  4977. <returns><dd> <p>The address of a reference to a shader-resource-view interface. See <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>.</p> </dd></returns>
  4978. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderResourceVariable::GetResource']/*" />
  4979. <msdn-id>bb173694</msdn-id>
  4980. <unmanaged>HRESULT ID3D10EffectShaderResourceVariable::GetResource([Out] ID3D10ShaderResourceView** ppResource)</unmanaged>
  4981. <unmanaged-short>ID3D10EffectShaderResourceVariable::GetResource</unmanaged-short>
  4982. </member>
  4983. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.SetResourceArray(SharpDX.Direct3D10.ShaderResourceView[],System.Int32,System.Int32)">
  4984. <summary>
  4985. <p>Set an array of shader resources.</p>
  4986. </summary>
  4987. <param name="resourcesOut"><dd> <p>The address of an array of shader-resource-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>.</p> </dd></param>
  4988. <param name="offset"><dd> <p>The zero-based array index to get the first interface.</p> </dd></param>
  4989. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  4990. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  4991. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderResourceVariable::SetResourceArray']/*" />
  4992. <msdn-id>bb173697</msdn-id>
  4993. <unmanaged>HRESULT ID3D10EffectShaderResourceVariable::SetResourceArray([In, Buffer] ID3D10ShaderResourceView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  4994. <unmanaged-short>ID3D10EffectShaderResourceVariable::SetResourceArray</unmanaged-short>
  4995. </member>
  4996. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.SetResourceArray(SharpDX.ComArray{SharpDX.Direct3D10.ShaderResourceView},System.Int32,System.Int32)">
  4997. <summary>
  4998. <p>Set an array of shader resources.</p>
  4999. </summary>
  5000. <param name="resourcesOut"><dd> <p>The address of an array of shader-resource-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>.</p> </dd></param>
  5001. <param name="offset"><dd> <p>The zero-based array index to get the first interface.</p> </dd></param>
  5002. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  5003. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5004. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderResourceVariable::SetResourceArray']/*" />
  5005. <msdn-id>bb173697</msdn-id>
  5006. <unmanaged>HRESULT ID3D10EffectShaderResourceVariable::SetResourceArray([In, Buffer] ID3D10ShaderResourceView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  5007. <unmanaged-short>ID3D10EffectShaderResourceVariable::SetResourceArray</unmanaged-short>
  5008. </member>
  5009. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.SetResourceArray(System.IntPtr,System.Int32,System.Int32)">
  5010. <summary>
  5011. <p>Set an array of shader resources.</p>
  5012. </summary>
  5013. <param name="resourcesOut"><dd> <p>The address of an array of shader-resource-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>.</p> </dd></param>
  5014. <param name="offset"><dd> <p>The zero-based array index to get the first interface.</p> </dd></param>
  5015. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  5016. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5017. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderResourceVariable::SetResourceArray']/*" />
  5018. <msdn-id>bb173697</msdn-id>
  5019. <unmanaged>HRESULT ID3D10EffectShaderResourceVariable::SetResourceArray([In, Buffer] ID3D10ShaderResourceView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  5020. <unmanaged-short>ID3D10EffectShaderResourceVariable::SetResourceArray</unmanaged-short>
  5021. </member>
  5022. <member name="M:SharpDX.Direct3D10.EffectShaderResourceVariable.GetResourceArray(SharpDX.Direct3D10.ShaderResourceView[],System.Int32,System.Int32)">
  5023. <summary>
  5024. <p>Get an array of shader resources.</p>
  5025. </summary>
  5026. <param name="resourcesOut"><dd> <p>The address of an array of shader-resource-view interfaces. See <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>.</p> </dd></param>
  5027. <param name="offset"><dd> <p>The zero-based array index to get the first interface.</p> </dd></param>
  5028. <param name="count"><dd> <p>The number of elements in the array.</p> </dd></param>
  5029. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5030. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderResourceVariable::GetResourceArray']/*" />
  5031. <msdn-id>bb173695</msdn-id>
  5032. <unmanaged>HRESULT ID3D10EffectShaderResourceVariable::GetResourceArray([Out, Buffer] ID3D10ShaderResourceView** ppResources,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  5033. <unmanaged-short>ID3D10EffectShaderResourceVariable::GetResourceArray</unmanaged-short>
  5034. </member>
  5035. <member name="T:SharpDX.Direct3D10.EffectStringVariable">
  5036. <summary>
  5037. <p>A string-variable interface accesses a string variable.</p>
  5038. </summary>
  5039. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectStringVariable']/*" />
  5040. <msdn-id>bb173705</msdn-id>
  5041. <unmanaged>ID3D10EffectStringVariable</unmanaged>
  5042. <unmanaged-short>ID3D10EffectStringVariable</unmanaged-short>
  5043. </member>
  5044. <member name="M:SharpDX.Direct3D10.EffectStringVariable.GetString">
  5045. <summary>
  5046. Get the string.
  5047. </summary>
  5048. <returns>Returns a reference to the string.</returns>
  5049. <unmanaged>HRESULT ID3D10EffectStringVariable::GetString([Out] const char** ppString)</unmanaged>
  5050. </member>
  5051. <member name="M:SharpDX.Direct3D10.EffectStringVariable.GetStringArray(System.Int32)">
  5052. <summary>
  5053. Get an array of strings.
  5054. </summary>
  5055. <param name="count">The number of strings in the returned array. </param>
  5056. <returns>Returns a reference to the first string in the array.</returns>
  5057. <unmanaged>HRESULT ID3D10EffectStringVariable::GetStringArray([Out, Buffer] const char** ppStrings,[None] int Offset,[None] int Count)</unmanaged>
  5058. </member>
  5059. <member name="M:SharpDX.Direct3D10.EffectStringVariable.GetStringArray(System.Int32,System.Int32)">
  5060. <summary>
  5061. Get an array of strings.
  5062. </summary>
  5063. <param name="offset">The offset (in number of strings) between the start of the array and the first string to get. </param>
  5064. <param name="count">The number of strings in the returned array. </param>
  5065. <returns>Returns a reference to the first string in the array.</returns>
  5066. <unmanaged>HRESULT ID3D10EffectStringVariable::GetStringArray([Out, Buffer] const char** ppStrings,[None] int Offset,[None] int Count)</unmanaged>
  5067. </member>
  5068. <member name="M:SharpDX.Direct3D10.EffectStringVariable.#ctor(System.IntPtr)">
  5069. <summary>
  5070. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectStringVariable"/> class.
  5071. </summary>
  5072. <param name="nativePtr">The native pointer.</param>
  5073. </member>
  5074. <member name="M:SharpDX.Direct3D10.EffectStringVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectStringVariable">
  5075. <summary>
  5076. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectStringVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  5077. </summary>
  5078. <param name="nativePointer">The native pointer.</param>
  5079. <returns>
  5080. The result of the conversion.
  5081. </returns>
  5082. </member>
  5083. <member name="M:SharpDX.Direct3D10.EffectStringVariable.GetString(System.IntPtr@)">
  5084. <summary>
  5085. <p>Get the string.</p>
  5086. </summary>
  5087. <param name="stringOut"><dd> <p>A reference to the string.</p> </dd></param>
  5088. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5089. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectStringVariable::GetString']/*" />
  5090. <msdn-id>bb173706</msdn-id>
  5091. <unmanaged>HRESULT ID3D10EffectStringVariable::GetString([Out] const void** ppString)</unmanaged>
  5092. <unmanaged-short>ID3D10EffectStringVariable::GetString</unmanaged-short>
  5093. </member>
  5094. <member name="M:SharpDX.Direct3D10.EffectStringVariable.GetStringArray(System.IntPtr,System.Int32,System.Int32)">
  5095. <summary>
  5096. <p>Get an array of strings.</p>
  5097. </summary>
  5098. <param name="stringsOut"><dd> <p>A reference to the first string in the array.</p> </dd></param>
  5099. <param name="offset"><dd> <p>The offset (in number of strings) between the start of the array and the first string to get.</p> </dd></param>
  5100. <param name="count"><dd> <p>The number of strings in the returned array.</p> </dd></param>
  5101. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5102. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectStringVariable::GetStringArray']/*" />
  5103. <msdn-id>bb173707</msdn-id>
  5104. <unmanaged>HRESULT ID3D10EffectStringVariable::GetStringArray([Out, Buffer] const void** ppStrings,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  5105. <unmanaged-short>ID3D10EffectStringVariable::GetStringArray</unmanaged-short>
  5106. </member>
  5107. <member name="T:SharpDX.Direct3D10.EffectVariable">
  5108. <summary>
  5109. <p>The <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /></strong> interface is the base class for all effect variables.</p><p>The lifetime of an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /></strong> object is equal to the lifetime of its parent <strong><see cref="T:SharpDX.Direct3D10.Effect" /></strong> object.</p><ul> <li>Methods</li> </ul>
  5110. </summary>
  5111. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable']/*" />
  5112. <msdn-id>bb173724</msdn-id>
  5113. <unmanaged>ID3D10EffectVariable</unmanaged>
  5114. <unmanaged-short>ID3D10EffectVariable</unmanaged-short>
  5115. </member>
  5116. <member name="M:SharpDX.Direct3D10.EffectVariable.SetRawValue(SharpDX.DataStream,System.Int32)">
  5117. <summary>
  5118. Set data.
  5119. </summary>
  5120. <param name="data">A reference to the variable.</param>
  5121. <param name="count">size in bytes of data to write.</param>
  5122. <returns>
  5123. Returns one of the following {{Direct3D 10 Return Codes}}.
  5124. </returns>
  5125. <remarks>
  5126. This method does no conversion or type checking; it is therefore a very quick way to access array items.
  5127. </remarks>
  5128. <unmanaged>HRESULT ID3D10EffectVariable::SetRawValue([None] void* pData,[None] int Offset,[None] int Count)</unmanaged>
  5129. </member>
  5130. <member name="M:SharpDX.Direct3D10.EffectVariable.GetRawValue(System.Int32)">
  5131. <summary>
  5132. Get data.
  5133. </summary>
  5134. <remarks>
  5135. This method does no conversion or type checking; it is therefore a very quick way to access array items.
  5136. </remarks>
  5137. <param name="count">The number of bytes to get. </param>
  5138. <returns>Returns a <see cref="T:SharpDX.DataStream"/> filled with the value. </returns>
  5139. <unmanaged>HRESULT ID3D10EffectVariable::GetRawValue([None] void* pData,[None] int Offset,[None] int Count)</unmanaged>
  5140. </member>
  5141. <member name="M:SharpDX.Direct3D10.EffectVariable.AsScalar">
  5142. <summary>
  5143. Get a scalar variable.
  5144. </summary>
  5145. <remarks>
  5146. AsScalar returns a version of the effect variable that has been specialized to a scalar variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain scalar data. Applications can test the returned object for validity by calling {{IsValid}}.
  5147. </remarks>
  5148. <returns>A reference to a scalar variable. See <see cref="T:SharpDX.Direct3D10.EffectScalarVariable"/>. </returns>
  5149. <unmanaged>ID3D10EffectScalarVariable* ID3D10EffectVariable::AsScalar()</unmanaged>
  5150. </member>
  5151. <member name="M:SharpDX.Direct3D10.EffectVariable.AsVector">
  5152. <summary>
  5153. Get a vector variable.
  5154. </summary>
  5155. <remarks>
  5156. AsVector returns a version of the effect variable that has been specialized to a vector variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain vector data. Applications can test the returned object for validity by calling {{IsValid}}.
  5157. </remarks>
  5158. <returns>A reference to a vector variable. See <see cref="T:SharpDX.Direct3D10.EffectVectorVariable"/>. </returns>
  5159. <unmanaged>ID3D10EffectVectorVariable* ID3D10EffectVariable::AsVector()</unmanaged>
  5160. </member>
  5161. <member name="M:SharpDX.Direct3D10.EffectVariable.AsMatrix">
  5162. <summary>
  5163. Get a matrix variable.
  5164. </summary>
  5165. <remarks>
  5166. AsMatrix returns a version of the effect variable that has been specialized to a matrix variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain matrix data. Applications can test the returned object for validity by calling {{IsValid}}.
  5167. </remarks>
  5168. <returns>A reference to a matrix variable. See <see cref="T:SharpDX.Direct3D10.EffectMatrixVariable"/>. </returns>
  5169. <unmanaged>ID3D10EffectMatrixVariable* ID3D10EffectVariable::AsMatrix()</unmanaged>
  5170. </member>
  5171. <member name="M:SharpDX.Direct3D10.EffectVariable.AsString">
  5172. <summary>
  5173. Get a string variable.
  5174. </summary>
  5175. <remarks>
  5176. AsString returns a version of the effect variable that has been specialized to a string variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain string data. Applications can test the returned object for validity by calling {{IsValid}}.
  5177. </remarks>
  5178. <returns>A reference to a string variable. See <see cref="T:SharpDX.Direct3D10.EffectStringVariable"/>. </returns>
  5179. <unmanaged>ID3D10EffectStringVariable* ID3D10EffectVariable::AsString()</unmanaged>
  5180. </member>
  5181. <member name="M:SharpDX.Direct3D10.EffectVariable.AsShaderResource">
  5182. <summary>
  5183. Get a shader-resource variable.
  5184. </summary>
  5185. <remarks>
  5186. AsShaderResource returns a version of the effect variable that has been specialized to a shader-resource variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain shader-resource data. Applications can test the returned object for validity by calling {{IsValid}}.
  5187. </remarks>
  5188. <returns>A reference to a shader-resource variable. See <see cref="T:SharpDX.Direct3D10.EffectShaderResourceVariable"/>. </returns>
  5189. <unmanaged>ID3D10EffectShaderResourceVariable* ID3D10EffectVariable::AsShaderResource()</unmanaged>
  5190. </member>
  5191. <member name="M:SharpDX.Direct3D10.EffectVariable.AsRenderTargetView">
  5192. <summary>
  5193. Get a render-target-view variable.
  5194. </summary>
  5195. <remarks>
  5196. This method returns a version of the effect variable that has been specialized to a render-target-view variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain render-target-view data. Applications can test the returned object for validity by calling {{IsValid}}.
  5197. </remarks>
  5198. <returns>A reference to a render-target-view variable. See <see cref="T:SharpDX.Direct3D10.EffectRenderTargetViewVariable"/>. </returns>
  5199. <unmanaged>ID3D10EffectRenderTargetViewVariable* ID3D10EffectVariable::AsRenderTargetView()</unmanaged>
  5200. </member>
  5201. <member name="M:SharpDX.Direct3D10.EffectVariable.AsDepthStencilView">
  5202. <summary>
  5203. Get a depth-stencil-view variable.
  5204. </summary>
  5205. <remarks>
  5206. This method returns a version of the effect variable that has been specialized to a depth-stencil-view variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain depth-stencil-view data. Applications can test the returned object for validity by calling {{IsValid}}.
  5207. </remarks>
  5208. <returns>A reference to a depth-stencil-view variable. See <see cref="T:SharpDX.Direct3D10.EffectDepthStencilViewVariable"/>. </returns>
  5209. <unmanaged>ID3D10EffectDepthStencilViewVariable* ID3D10EffectVariable::AsDepthStencilView()</unmanaged>
  5210. </member>
  5211. <member name="M:SharpDX.Direct3D10.EffectVariable.AsConstantBuffer">
  5212. <summary>
  5213. Get a constant buffer.
  5214. </summary>
  5215. <remarks>
  5216. AsConstantBuffer returns a version of the effect variable that has been specialized to a constant buffer. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain constant buffer data. Applications can test the returned object for validity by calling {{IsValid}}.
  5217. </remarks>
  5218. <returns>A reference to a constant buffer. See <see cref="T:SharpDX.Direct3D10.EffectConstantBuffer"/>. </returns>
  5219. <unmanaged>ID3D10EffectConstantBuffer* ID3D10EffectVariable::AsConstantBuffer()</unmanaged>
  5220. </member>
  5221. <member name="M:SharpDX.Direct3D10.EffectVariable.AsShader">
  5222. <summary>
  5223. Get a shader variable.
  5224. </summary>
  5225. <remarks>
  5226. AsShader returns a version of the effect variable that has been specialized to a shader variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain shader data. Applications can test the returned object for validity by calling {{IsValid}}.
  5227. </remarks>
  5228. <returns>A reference to a shader variable. See <see cref="T:SharpDX.Direct3D10.EffectShaderVariable"/>. </returns>
  5229. <unmanaged>ID3D10EffectShaderVariable* ID3D10EffectVariable::AsShader()</unmanaged>
  5230. </member>
  5231. <member name="M:SharpDX.Direct3D10.EffectVariable.AsBlend">
  5232. <summary>
  5233. Get a effect-blend variable.
  5234. </summary>
  5235. <remarks>
  5236. AsBlend returns a version of the effect variable that has been specialized to an effect-blend variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain effect-blend data. Applications can test the returned object for validity by calling {{IsValid}}.
  5237. </remarks>
  5238. <returns>A reference to an effect blend variable. See <see cref="T:SharpDX.Direct3D10.EffectBlendVariable"/>. </returns>
  5239. <unmanaged>ID3D10EffectBlendVariable* ID3D10EffectVariable::AsBlend()</unmanaged>
  5240. </member>
  5241. <member name="M:SharpDX.Direct3D10.EffectVariable.AsDepthStencil">
  5242. <summary>
  5243. Get a depth-stencil variable.
  5244. </summary>
  5245. <remarks>
  5246. AsDepthStencil returns a version of the effect variable that has been specialized to a depth-stencil variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain depth-stencil data. Applications can test the returned object for validity by calling {{IsValid}}.
  5247. </remarks>
  5248. <returns>A reference to a depth-stencil variable. See <see cref="T:SharpDX.Direct3D10.EffectDepthStencilVariable"/>. </returns>
  5249. <unmanaged>ID3D10EffectDepthStencilVariable* ID3D10EffectVariable::AsDepthStencil()</unmanaged>
  5250. </member>
  5251. <member name="M:SharpDX.Direct3D10.EffectVariable.AsRasterizer">
  5252. <summary>
  5253. Get a rasterizer variable.
  5254. </summary>
  5255. <remarks>
  5256. AsRasterizer returns a version of the effect variable that has been specialized to a rasterizer variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain rasterizer data. Applications can test the returned object for validity by calling {{IsValid}}.
  5257. </remarks>
  5258. <returns>A reference to a rasterizer variable. See <see cref="T:SharpDX.Direct3D10.EffectRasterizerVariable"/>. </returns>
  5259. <unmanaged>ID3D10EffectRasterizerVariable* ID3D10EffectVariable::AsRasterizer()</unmanaged>
  5260. </member>
  5261. <member name="M:SharpDX.Direct3D10.EffectVariable.AsSampler">
  5262. <summary>
  5263. Get a sampler variable.
  5264. </summary>
  5265. <remarks>
  5266. AsSampler returns a version of the effect variable that has been specialized to a sampler variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain sampler data. Applications can test the returned object for validity by calling {{IsValid}}.
  5267. </remarks>
  5268. <returns>A reference to a sampler variable. See <see cref="T:SharpDX.Direct3D10.EffectSamplerVariable"/>. </returns>
  5269. <unmanaged>ID3D10EffectSamplerVariable* ID3D10EffectVariable::AsSampler()</unmanaged>
  5270. </member>
  5271. <member name="M:SharpDX.Direct3D10.EffectVariable.#ctor(System.IntPtr)">
  5272. <summary>
  5273. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectVariable"/> class.
  5274. </summary>
  5275. <param name="nativePtr">The native pointer.</param>
  5276. </member>
  5277. <member name="M:SharpDX.Direct3D10.EffectVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectVariable">
  5278. <summary>
  5279. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  5280. </summary>
  5281. <param name="nativePointer">The native pointer.</param>
  5282. <returns>
  5283. The result of the conversion.
  5284. </returns>
  5285. </member>
  5286. <member name="P:SharpDX.Direct3D10.EffectVariable.IsValid">
  5287. <summary>
  5288. <p>Compare the data type with the data stored.</p>
  5289. </summary>
  5290. <remarks>
  5291. <p>This method checks that the data type matches the data stored after casting one interface to another (using any of the As methods).</p>
  5292. </remarks>
  5293. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::IsValid']/*" />
  5294. <msdn-id>bb173746</msdn-id>
  5295. <unmanaged>IsValid</unmanaged>
  5296. <unmanaged-short>IsValid</unmanaged-short>
  5297. <unmanaged>BOOL ID3D10EffectVariable::IsValid()</unmanaged>
  5298. </member>
  5299. <member name="P:SharpDX.Direct3D10.EffectVariable.TypeInfo">
  5300. <summary>
  5301. <p>Get type information.</p>
  5302. </summary>
  5303. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetType']/*" />
  5304. <msdn-id>bb173745</msdn-id>
  5305. <unmanaged>GetType</unmanaged>
  5306. <unmanaged-short>GetType</unmanaged-short>
  5307. <unmanaged>ID3D10EffectType* ID3D10EffectVariable::GetType()</unmanaged>
  5308. </member>
  5309. <member name="P:SharpDX.Direct3D10.EffectVariable.Description">
  5310. <summary>
  5311. <p>Get a description.</p>
  5312. </summary>
  5313. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetDesc']/*" />
  5314. <msdn-id>bb173738</msdn-id>
  5315. <unmanaged>GetDesc</unmanaged>
  5316. <unmanaged-short>GetDesc</unmanaged-short>
  5317. <unmanaged>HRESULT ID3D10EffectVariable::GetDesc([Out] D3D10_EFFECT_VARIABLE_DESC* pDesc)</unmanaged>
  5318. </member>
  5319. <member name="P:SharpDX.Direct3D10.EffectVariable.ParentConstantBuffer">
  5320. <summary>
  5321. <p>Get a constant buffer.</p>
  5322. </summary>
  5323. <remarks>
  5324. <p>Effect variables are read-from or written-to a constant buffer.</p>
  5325. </remarks>
  5326. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetParentConstantBuffer']/*" />
  5327. <msdn-id>bb173743</msdn-id>
  5328. <unmanaged>GetParentConstantBuffer</unmanaged>
  5329. <unmanaged-short>GetParentConstantBuffer</unmanaged-short>
  5330. <unmanaged>ID3D10EffectConstantBuffer* ID3D10EffectVariable::GetParentConstantBuffer()</unmanaged>
  5331. </member>
  5332. <member name="M:SharpDX.Direct3D10.EffectVariable.IsValid_">
  5333. <summary>
  5334. <p>Compare the data type with the data stored.</p>
  5335. </summary>
  5336. <returns><p><strong>TRUE</strong> if the syntax is valid; otherwise <strong><see cref="F:SharpDX.Result.False" /></strong>.</p></returns>
  5337. <remarks>
  5338. <p>This method checks that the data type matches the data stored after casting one interface to another (using any of the As methods).</p>
  5339. </remarks>
  5340. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::IsValid']/*" />
  5341. <msdn-id>bb173746</msdn-id>
  5342. <unmanaged>BOOL ID3D10EffectVariable::IsValid()</unmanaged>
  5343. <unmanaged-short>ID3D10EffectVariable::IsValid</unmanaged-short>
  5344. </member>
  5345. <member name="M:SharpDX.Direct3D10.EffectVariable.GetTypeInfo">
  5346. <summary>
  5347. <p>Get type information.</p>
  5348. </summary>
  5349. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectType" /> Interface</strong>.</p></returns>
  5350. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetType']/*" />
  5351. <msdn-id>bb173745</msdn-id>
  5352. <unmanaged>ID3D10EffectType* ID3D10EffectVariable::GetType()</unmanaged>
  5353. <unmanaged-short>ID3D10EffectVariable::GetType</unmanaged-short>
  5354. </member>
  5355. <member name="M:SharpDX.Direct3D10.EffectVariable.GetDescription(SharpDX.Direct3D10.EffectVariableDescription@)">
  5356. <summary>
  5357. <p>Get a description.</p>
  5358. </summary>
  5359. <param name="descRef"><dd> <p>A reference to an effect-variable description (see <strong><see cref="T:SharpDX.Direct3D10.EffectVariableDescription" /></strong>).</p> </dd></param>
  5360. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5361. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetDesc']/*" />
  5362. <msdn-id>bb173738</msdn-id>
  5363. <unmanaged>HRESULT ID3D10EffectVariable::GetDesc([Out] D3D10_EFFECT_VARIABLE_DESC* pDesc)</unmanaged>
  5364. <unmanaged-short>ID3D10EffectVariable::GetDesc</unmanaged-short>
  5365. </member>
  5366. <member name="M:SharpDX.Direct3D10.EffectVariable.GetAnnotationByIndex(System.Int32)">
  5367. <summary>
  5368. <p>Get an annotation by index.</p>
  5369. </summary>
  5370. <param name="index"><dd> <p>A zero-based index.</p> </dd></param>
  5371. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  5372. <remarks>
  5373. <p>Annonations can be attached to a technique, a pass or a gloval variable. For the syntax, see Annotation Syntax (Direct3D 10).</p>
  5374. </remarks>
  5375. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetAnnotationByIndex']/*" />
  5376. <msdn-id>bb173736</msdn-id>
  5377. <unmanaged>ID3D10EffectVariable* ID3D10EffectVariable::GetAnnotationByIndex([In] unsigned int Index)</unmanaged>
  5378. <unmanaged-short>ID3D10EffectVariable::GetAnnotationByIndex</unmanaged-short>
  5379. </member>
  5380. <member name="M:SharpDX.Direct3D10.EffectVariable.GetAnnotationByName(System.String)">
  5381. <summary>
  5382. <p>Get an annotation by name.</p>
  5383. </summary>
  5384. <param name="name"><dd> <p>The annotation name.</p> </dd></param>
  5385. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>. Note that if the annotation is not found the <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong> returned will be empty. The <strong><see cref="M:SharpDX.Direct3D10.EffectVariable.IsValid_" /></strong> method should be called to determine whether the annotation was found.</p></returns>
  5386. <remarks>
  5387. <p>Annonations can be attached to a technique, a pass or a gloval variable. For the syntax, see Annotation Syntax (Direct3D 10).</p>
  5388. </remarks>
  5389. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetAnnotationByName']/*" />
  5390. <msdn-id>bb173737</msdn-id>
  5391. <unmanaged>ID3D10EffectVariable* ID3D10EffectVariable::GetAnnotationByName([In] const char* Name)</unmanaged>
  5392. <unmanaged-short>ID3D10EffectVariable::GetAnnotationByName</unmanaged-short>
  5393. </member>
  5394. <member name="M:SharpDX.Direct3D10.EffectVariable.GetMemberByIndex(System.Int32)">
  5395. <summary>
  5396. <p>Get a structure member by index.</p>
  5397. </summary>
  5398. <param name="index"><dd> <p>A zero-based index.</p> </dd></param>
  5399. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  5400. <remarks>
  5401. <p>If the effect variable is an structure, use this method to look up a member by index.</p>
  5402. </remarks>
  5403. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetMemberByIndex']/*" />
  5404. <msdn-id>bb173740</msdn-id>
  5405. <unmanaged>ID3D10EffectVariable* ID3D10EffectVariable::GetMemberByIndex([In] unsigned int Index)</unmanaged>
  5406. <unmanaged-short>ID3D10EffectVariable::GetMemberByIndex</unmanaged-short>
  5407. </member>
  5408. <member name="M:SharpDX.Direct3D10.EffectVariable.GetMemberByName(System.String)">
  5409. <summary>
  5410. <p>Get a structure member by name.</p>
  5411. </summary>
  5412. <param name="name"><dd> <p>Member name.</p> </dd></param>
  5413. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  5414. <remarks>
  5415. <p>If the effect variable is an structure, use this method to look up a member by name.</p>
  5416. </remarks>
  5417. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetMemberByName']/*" />
  5418. <msdn-id>bb173741</msdn-id>
  5419. <unmanaged>ID3D10EffectVariable* ID3D10EffectVariable::GetMemberByName([In] const char* Name)</unmanaged>
  5420. <unmanaged-short>ID3D10EffectVariable::GetMemberByName</unmanaged-short>
  5421. </member>
  5422. <member name="M:SharpDX.Direct3D10.EffectVariable.GetMemberBySemantic(System.String)">
  5423. <summary>
  5424. <p>Get a structure member by semantic.</p>
  5425. </summary>
  5426. <param name="semantic"><dd> <p>The semantic.</p> </dd></param>
  5427. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  5428. <remarks>
  5429. <p>If the effect variable is an structure, use this method to look up a member by attached semantic.</p>
  5430. </remarks>
  5431. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetMemberBySemantic']/*" />
  5432. <msdn-id>bb173742</msdn-id>
  5433. <unmanaged>ID3D10EffectVariable* ID3D10EffectVariable::GetMemberBySemantic([In] const char* Semantic)</unmanaged>
  5434. <unmanaged-short>ID3D10EffectVariable::GetMemberBySemantic</unmanaged-short>
  5435. </member>
  5436. <member name="M:SharpDX.Direct3D10.EffectVariable.GetElement(System.Int32)">
  5437. <summary>
  5438. <p>Get an array element.</p>
  5439. </summary>
  5440. <param name="index"><dd> <p>A zero-based index; otherwise 0.</p> </dd></param>
  5441. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  5442. <remarks>
  5443. <p>If the effect variable is an array, use this method to return one of the elements.</p>
  5444. </remarks>
  5445. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetElement']/*" />
  5446. <msdn-id>bb173739</msdn-id>
  5447. <unmanaged>ID3D10EffectVariable* ID3D10EffectVariable::GetElement([In] unsigned int Index)</unmanaged>
  5448. <unmanaged-short>ID3D10EffectVariable::GetElement</unmanaged-short>
  5449. </member>
  5450. <member name="M:SharpDX.Direct3D10.EffectVariable.GetParentConstantBuffer">
  5451. <summary>
  5452. <p>Get a constant buffer.</p>
  5453. </summary>
  5454. <returns><p>A reference to a <strong><see cref="T:SharpDX.Direct3D10.EffectConstantBuffer" /> Interface</strong>.</p></returns>
  5455. <remarks>
  5456. <p>Effect variables are read-from or written-to a constant buffer.</p>
  5457. </remarks>
  5458. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetParentConstantBuffer']/*" />
  5459. <msdn-id>bb173743</msdn-id>
  5460. <unmanaged>ID3D10EffectConstantBuffer* ID3D10EffectVariable::GetParentConstantBuffer()</unmanaged>
  5461. <unmanaged-short>ID3D10EffectVariable::GetParentConstantBuffer</unmanaged-short>
  5462. </member>
  5463. <member name="M:SharpDX.Direct3D10.EffectVariable.AsScalar_">
  5464. <summary>
  5465. <p>Get a scalar variable.</p>
  5466. </summary>
  5467. <returns><p>A reference to a scalar variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectScalarVariable" /></strong>.</p></returns>
  5468. <remarks>
  5469. <p>AsScalar returns a version of the effect variable that has been specialized to a scalar variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain scalar data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5470. </remarks>
  5471. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsScalar']/*" />
  5472. <msdn-id>bb173731</msdn-id>
  5473. <unmanaged>ID3D10EffectScalarVariable* ID3D10EffectVariable::AsScalar()</unmanaged>
  5474. <unmanaged-short>ID3D10EffectVariable::AsScalar</unmanaged-short>
  5475. </member>
  5476. <member name="M:SharpDX.Direct3D10.EffectVariable.AsVector_">
  5477. <summary>
  5478. <p>Get a vector variable.</p>
  5479. </summary>
  5480. <returns><p>A reference to a vector variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectVectorVariable" /></strong>.</p></returns>
  5481. <remarks>
  5482. <p>AsVector returns a version of the effect variable that has been specialized to a vector variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain vector data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5483. </remarks>
  5484. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsVector']/*" />
  5485. <msdn-id>bb173735</msdn-id>
  5486. <unmanaged>ID3D10EffectVectorVariable* ID3D10EffectVariable::AsVector()</unmanaged>
  5487. <unmanaged-short>ID3D10EffectVariable::AsVector</unmanaged-short>
  5488. </member>
  5489. <member name="M:SharpDX.Direct3D10.EffectVariable.AsMatrix_">
  5490. <summary>
  5491. <p>Get a matrix variable.</p>
  5492. </summary>
  5493. <returns><p>A reference to a matrix variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectMatrixVariable" /></strong>.</p></returns>
  5494. <remarks>
  5495. <p>AsMatrix returns a version of the effect variable that has been specialized to a matrix variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain matrix data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5496. </remarks>
  5497. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsMatrix']/*" />
  5498. <msdn-id>bb173728</msdn-id>
  5499. <unmanaged>ID3D10EffectMatrixVariable* ID3D10EffectVariable::AsMatrix()</unmanaged>
  5500. <unmanaged-short>ID3D10EffectVariable::AsMatrix</unmanaged-short>
  5501. </member>
  5502. <member name="M:SharpDX.Direct3D10.EffectVariable.AsString_">
  5503. <summary>
  5504. <p>Get a string variable.</p>
  5505. </summary>
  5506. <returns><p>A reference to a string variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectStringVariable" /></strong>.</p></returns>
  5507. <remarks>
  5508. <p>AsString returns a version of the effect variable that has been specialized to a string variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain string data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5509. </remarks>
  5510. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsString']/*" />
  5511. <msdn-id>bb173734</msdn-id>
  5512. <unmanaged>ID3D10EffectStringVariable* ID3D10EffectVariable::AsString()</unmanaged>
  5513. <unmanaged-short>ID3D10EffectVariable::AsString</unmanaged-short>
  5514. </member>
  5515. <member name="M:SharpDX.Direct3D10.EffectVariable.AsShaderResource_">
  5516. <summary>
  5517. <p>Get a shader-resource variable.</p>
  5518. </summary>
  5519. <returns><p>A reference to a shader-resource variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectShaderResourceVariable" /></strong>.</p></returns>
  5520. <remarks>
  5521. <p>AsShaderResource returns a version of the effect variable that has been specialized to a shader-resource variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain shader-resource data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5522. </remarks>
  5523. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsShaderResource']/*" />
  5524. <msdn-id>bb173733</msdn-id>
  5525. <unmanaged>ID3D10EffectShaderResourceVariable* ID3D10EffectVariable::AsShaderResource()</unmanaged>
  5526. <unmanaged-short>ID3D10EffectVariable::AsShaderResource</unmanaged-short>
  5527. </member>
  5528. <member name="M:SharpDX.Direct3D10.EffectVariable.AsRenderTargetView_">
  5529. <summary>
  5530. <p>Get a render-target-view variable.</p>
  5531. </summary>
  5532. <returns><p>A reference to a render-target-view variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectRenderTargetViewVariable" /> Interface</strong>.</p></returns>
  5533. <remarks>
  5534. <p>This method returns a version of the effect variable that has been specialized to a render-target-view variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain render-target-view data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5535. </remarks>
  5536. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsRenderTargetView']/*" />
  5537. <msdn-id>bb944008</msdn-id>
  5538. <unmanaged>ID3D10EffectRenderTargetViewVariable* ID3D10EffectVariable::AsRenderTargetView()</unmanaged>
  5539. <unmanaged-short>ID3D10EffectVariable::AsRenderTargetView</unmanaged-short>
  5540. </member>
  5541. <member name="M:SharpDX.Direct3D10.EffectVariable.AsDepthStencilView_">
  5542. <summary>
  5543. <p>Get a depth-stencil-view variable.</p>
  5544. </summary>
  5545. <returns><p>A reference to a depth-stencil-view variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectDepthStencilViewVariable" /> Interface</strong>.</p></returns>
  5546. <remarks>
  5547. <p>This method returns a version of the effect variable that has been specialized to a depth-stencil-view variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain depth-stencil-view data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5548. </remarks>
  5549. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsDepthStencilView']/*" />
  5550. <msdn-id>bb944007</msdn-id>
  5551. <unmanaged>ID3D10EffectDepthStencilViewVariable* ID3D10EffectVariable::AsDepthStencilView()</unmanaged>
  5552. <unmanaged-short>ID3D10EffectVariable::AsDepthStencilView</unmanaged-short>
  5553. </member>
  5554. <member name="M:SharpDX.Direct3D10.EffectVariable.AsConstantBuffer_">
  5555. <summary>
  5556. <p>Get a constant buffer.</p>
  5557. </summary>
  5558. <returns><p>A reference to a constant buffer. See <strong><see cref="T:SharpDX.Direct3D10.EffectConstantBuffer" /></strong>.</p></returns>
  5559. <remarks>
  5560. <p>AsConstantBuffer returns a version of the effect variable that has been specialized to a constant buffer. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain constant buffer data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5561. </remarks>
  5562. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsConstantBuffer']/*" />
  5563. <msdn-id>bb173726</msdn-id>
  5564. <unmanaged>ID3D10EffectConstantBuffer* ID3D10EffectVariable::AsConstantBuffer()</unmanaged>
  5565. <unmanaged-short>ID3D10EffectVariable::AsConstantBuffer</unmanaged-short>
  5566. </member>
  5567. <member name="M:SharpDX.Direct3D10.EffectVariable.AsShader_">
  5568. <summary>
  5569. <p>Get a shader variable.</p>
  5570. </summary>
  5571. <returns><p>A reference to a shader variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectShaderVariable" /></strong>.</p></returns>
  5572. <remarks>
  5573. <p>AsShader returns a version of the effect variable that has been specialized to a shader variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain shader data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5574. </remarks>
  5575. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsShader']/*" />
  5576. <msdn-id>bb173732</msdn-id>
  5577. <unmanaged>ID3D10EffectShaderVariable* ID3D10EffectVariable::AsShader()</unmanaged>
  5578. <unmanaged-short>ID3D10EffectVariable::AsShader</unmanaged-short>
  5579. </member>
  5580. <member name="M:SharpDX.Direct3D10.EffectVariable.AsBlend_">
  5581. <summary>
  5582. <p>Get a effect-blend variable.</p>
  5583. </summary>
  5584. <returns><p>A reference to an effect blend variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectBlendVariable" /></strong>.</p></returns>
  5585. <remarks>
  5586. <p>AsBlend returns a version of the effect variable that has been specialized to an effect-blend variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain effect-blend data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5587. </remarks>
  5588. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsBlend']/*" />
  5589. <msdn-id>bb173725</msdn-id>
  5590. <unmanaged>ID3D10EffectBlendVariable* ID3D10EffectVariable::AsBlend()</unmanaged>
  5591. <unmanaged-short>ID3D10EffectVariable::AsBlend</unmanaged-short>
  5592. </member>
  5593. <member name="M:SharpDX.Direct3D10.EffectVariable.AsDepthStencil_">
  5594. <summary>
  5595. <p>Get a depth-stencil variable.</p>
  5596. </summary>
  5597. <returns><p>A reference to a depth-stencil variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectDepthStencilVariable" /></strong>.</p></returns>
  5598. <remarks>
  5599. <p>AsDepthStencil returns a version of the effect variable that has been specialized to a depth-stencil variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain depth-stencil data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5600. </remarks>
  5601. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsDepthStencil']/*" />
  5602. <msdn-id>bb173727</msdn-id>
  5603. <unmanaged>ID3D10EffectDepthStencilVariable* ID3D10EffectVariable::AsDepthStencil()</unmanaged>
  5604. <unmanaged-short>ID3D10EffectVariable::AsDepthStencil</unmanaged-short>
  5605. </member>
  5606. <member name="M:SharpDX.Direct3D10.EffectVariable.AsRasterizer_">
  5607. <summary>
  5608. <p>Get a rasterizer variable.</p>
  5609. </summary>
  5610. <returns><p>A reference to a rasterizer variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectRasterizerVariable" /></strong>.</p></returns>
  5611. <remarks>
  5612. <p>AsRasterizer returns a version of the effect variable that has been specialized to a rasterizer variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain rasterizer data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5613. </remarks>
  5614. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsRasterizer']/*" />
  5615. <msdn-id>bb173729</msdn-id>
  5616. <unmanaged>ID3D10EffectRasterizerVariable* ID3D10EffectVariable::AsRasterizer()</unmanaged>
  5617. <unmanaged-short>ID3D10EffectVariable::AsRasterizer</unmanaged-short>
  5618. </member>
  5619. <member name="M:SharpDX.Direct3D10.EffectVariable.AsSampler_">
  5620. <summary>
  5621. <p>Get a sampler variable.</p>
  5622. </summary>
  5623. <returns><p>A reference to a sampler variable. See <strong><see cref="T:SharpDX.Direct3D10.EffectSamplerVariable" /></strong>.</p></returns>
  5624. <remarks>
  5625. <p>AsSampler returns a version of the effect variable that has been specialized to a sampler variable. Similar to a cast, this specialization will return an invalid object if the effect variable does not contain sampler data.</p><p>Applications can test the returned object for validity by calling <strong>IsValid</strong>.</p>
  5626. </remarks>
  5627. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::AsSampler']/*" />
  5628. <msdn-id>bb173730</msdn-id>
  5629. <unmanaged>ID3D10EffectSamplerVariable* ID3D10EffectVariable::AsSampler()</unmanaged>
  5630. <unmanaged-short>ID3D10EffectVariable::AsSampler</unmanaged-short>
  5631. </member>
  5632. <member name="M:SharpDX.Direct3D10.EffectVariable.SetRawValue(System.IntPtr,System.Int32,System.Int32)">
  5633. <summary>
  5634. <p>Set data.</p>
  5635. </summary>
  5636. <param name="dataRef"><dd> <p>A reference to the variable.</p> </dd></param>
  5637. <param name="offset"><dd> <p>The offset (in bytes) from the beginning of the reference to the data.</p> </dd></param>
  5638. <param name="byteCount"><dd> <p>The number of bytes to set.</p> </dd></param>
  5639. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5640. <remarks>
  5641. <p>This method does no conversion or type checking; it is therefore a very quick way to access array items.</p>
  5642. </remarks>
  5643. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::SetRawValue']/*" />
  5644. <msdn-id>bb173747</msdn-id>
  5645. <unmanaged>HRESULT ID3D10EffectVariable::SetRawValue([In, Buffer] void* pData,[In] unsigned int Offset,[In] unsigned int ByteCount)</unmanaged>
  5646. <unmanaged-short>ID3D10EffectVariable::SetRawValue</unmanaged-short>
  5647. </member>
  5648. <member name="M:SharpDX.Direct3D10.EffectVariable.GetRawValue(System.IntPtr,System.Int32,System.Int32)">
  5649. <summary>
  5650. <p>Get data.</p>
  5651. </summary>
  5652. <param name="dataRef"><dd> <p>A reference to the variable.</p> </dd></param>
  5653. <param name="offset"><dd> <p>The offset (in bytes) from the beginning of the reference to the data.</p> </dd></param>
  5654. <param name="byteCount"><dd> <p>The number of bytes to get.</p> </dd></param>
  5655. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5656. <remarks>
  5657. <p>This method does no conversion or type checking; it is therefore a very quick way to access array items.</p>
  5658. </remarks>
  5659. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVariable::GetRawValue']/*" />
  5660. <msdn-id>bb173744</msdn-id>
  5661. <unmanaged>HRESULT ID3D10EffectVariable::GetRawValue([Out, Buffer] void* pData,[In] unsigned int Offset,[In] unsigned int ByteCount)</unmanaged>
  5662. <unmanaged-short>ID3D10EffectVariable::GetRawValue</unmanaged-short>
  5663. </member>
  5664. <member name="T:SharpDX.Direct3D10.EffectVectorVariable">
  5665. <summary>
  5666. <p>A vector-variable interface accesses a four-component vector.</p>
  5667. </summary>
  5668. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable']/*" />
  5669. <msdn-id>bb173748</msdn-id>
  5670. <unmanaged>ID3D10EffectVectorVariable</unmanaged>
  5671. <unmanaged-short>ID3D10EffectVectorVariable</unmanaged-short>
  5672. </member>
  5673. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetIntVector">
  5674. <summary>
  5675. Get a four-component vector that contains integer data.
  5676. </summary>
  5677. <returns>Returns a four-component vector that contains integer data </returns>
  5678. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetIntVector([Out] int* pData)</unmanaged>
  5679. </member>
  5680. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetFloatVector">
  5681. <summary>
  5682. Get a four-component vector that contains floating-point data.
  5683. </summary>
  5684. <returns>Returns a four-component vector that contains floating-point data.</returns>
  5685. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetFloatVector([Out] float* pData)</unmanaged>
  5686. </member>
  5687. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetBoolVector">
  5688. <summary>
  5689. Get a four-component vector that contains boolean data.
  5690. </summary>
  5691. <returns>a four-component vector that contains boolean data. </returns>
  5692. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetBoolVector([Out, Buffer] BOOL* pData)</unmanaged>
  5693. </member>
  5694. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetVector``1">
  5695. <summary>
  5696. Get a four-component vector.
  5697. </summary>
  5698. <typeparam name="T">Type of the four-component vector</typeparam>
  5699. <returns>a four-component vector. </returns>
  5700. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetFloatVector([Out, Buffer] BOOL* pData)</unmanaged>
  5701. </member>
  5702. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawInt4[])">
  5703. <summary>
  5704. Set an array of four-component vectors that contain integer data.
  5705. </summary>
  5706. <param name="array">A reference to the start of the data to set. </param>
  5707. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  5708. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetIntVectorArray([In, Buffer] int* pData,[None] int Offset,[None] int Count)</unmanaged>
  5709. </member>
  5710. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawVector4[])">
  5711. <summary>
  5712. Set an array of four-component vectors that contain floating-point data.
  5713. </summary>
  5714. <param name="array">A reference to the start of the data to set. </param>
  5715. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  5716. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetFloatVectorArray([In, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  5717. </member>
  5718. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set``1(``0[])">
  5719. <summary>
  5720. Set an array of four-component vectors that contain floating-point data.
  5721. </summary>
  5722. <typeparam name="T">Type of the four-component vector</typeparam>
  5723. <param name="array">A reference to the start of the data to set.</param>
  5724. <returns>
  5725. Returns one of the following {{Direct3D 10 Return Codes}}.
  5726. </returns>
  5727. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetFloatVectorArray([In, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  5728. </member>
  5729. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set``1(``0)">
  5730. <summary>
  5731. Set a x-component vector.
  5732. </summary>
  5733. <param name="value">A reference to the first component. </param>
  5734. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  5735. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetFloatVector([In] float* pData)</unmanaged>
  5736. </member>
  5737. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set``1(``0@)">
  5738. <summary>
  5739. Set a x-component vector.
  5740. </summary>
  5741. <param name="value">A reference to the first component. </param>
  5742. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  5743. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetFloatVector([In] float* pData)</unmanaged>
  5744. </member>
  5745. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawVector2)">
  5746. <summary>
  5747. Set a two-component vector that contains floating-point data.
  5748. </summary>
  5749. <param name="value">A reference to the first component. </param>
  5750. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  5751. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetFloatVector([In] float* pData)</unmanaged>
  5752. </member>
  5753. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawVector3)">
  5754. <summary>
  5755. Set a three-component vector that contains floating-point data.
  5756. </summary>
  5757. <param name="value">A reference to the first component. </param>
  5758. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  5759. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetFloatVector([In] float* pData)</unmanaged>
  5760. </member>
  5761. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawColor4)">
  5762. <summary>
  5763. Set a four-component color that contains floating-point data.
  5764. </summary>
  5765. <param name="value">A reference to the first component. </param>
  5766. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  5767. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetFloatVector([In] float* pData)</unmanaged>
  5768. </member>
  5769. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawColor4[])">
  5770. <summary>
  5771. Set an array of four-component color that contain floating-point data.
  5772. </summary>
  5773. <param name="array">A reference to the start of the data to set. </param>
  5774. <returns>Returns one of the following {{Direct3D 10 Return Codes}}. </returns>
  5775. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetFloatVectorArray([In, Buffer] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  5776. </member>
  5777. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetIntVectorArray(System.Int32)">
  5778. <summary>
  5779. Get an array of four-component vectors that contain integer data.
  5780. </summary>
  5781. <param name="count">The number of array elements to set. </param>
  5782. <returns>Returns an array of four-component vectors that contain integer data. </returns>
  5783. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetIntVectorArray([Out, Buffer] int* pData,[None] int Offset,[None] int Count)</unmanaged>
  5784. </member>
  5785. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetFloatVectorArray(System.Int32)">
  5786. <summary>
  5787. Get an array of four-component vectors that contain floating-point data.
  5788. </summary>
  5789. <param name="count">The number of array elements to set. </param>
  5790. <returns>Returns an array of four-component vectors that contain floating-point data. </returns>
  5791. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetFloatVectorArray([None] float* pData,[None] int Offset,[None] int Count)</unmanaged>
  5792. </member>
  5793. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetBoolVectorArray(System.Int32)">
  5794. <summary>
  5795. Get an array of four-component vectors that contain boolean data.
  5796. </summary>
  5797. <param name="count">The number of array elements to set. </param>
  5798. <returns>an array of four-component vectors that contain boolean data. </returns>
  5799. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetBoolVectorArray([Out, Buffer] BOOL* pData,[None] int Offset,[None] int Count)</unmanaged>
  5800. </member>
  5801. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetVectorArray``1(System.Int32)">
  5802. <summary>
  5803. Get an array of four-component vectors that contain boolean data.
  5804. </summary>
  5805. <param name="count">The number of array elements to set. </param>
  5806. <returns>an array of four-component vectors that contain boolean data. </returns>
  5807. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetBoolVectorArray([Out, Buffer] BOOL* pData,[None] int Offset,[None] int Count)</unmanaged>
  5808. </member>
  5809. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.#ctor(System.IntPtr)">
  5810. <summary>
  5811. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectVectorVariable"/> class.
  5812. </summary>
  5813. <param name="nativePtr">The native pointer.</param>
  5814. </member>
  5815. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectVectorVariable">
  5816. <summary>
  5817. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectVectorVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  5818. </summary>
  5819. <param name="nativePointer">The native pointer.</param>
  5820. <returns>
  5821. The result of the conversion.
  5822. </returns>
  5823. </member>
  5824. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawBool4)">
  5825. <summary>
  5826. <p>Set a four-component vector that contains boolean data.</p>
  5827. </summary>
  5828. <param name="dataRef"><dd> <p>A reference to the first component.</p> </dd></param>
  5829. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5830. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::SetBoolVector']/*" />
  5831. <msdn-id>bb173755</msdn-id>
  5832. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetBoolVector([In] SHARPDX_BOOL4* pData)</unmanaged>
  5833. <unmanaged-short>ID3D10EffectVectorVariable::SetBoolVector</unmanaged-short>
  5834. </member>
  5835. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawInt4)">
  5836. <summary>
  5837. <p>Set a four-component vector that contains integer data.</p>
  5838. </summary>
  5839. <param name="dataRef"><dd> <p>A reference to the first component.</p> </dd></param>
  5840. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5841. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::SetIntVector']/*" />
  5842. <msdn-id>bb173759</msdn-id>
  5843. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetIntVector([In] SHARPDX_INT4* pData)</unmanaged>
  5844. <unmanaged-short>ID3D10EffectVectorVariable::SetIntVector</unmanaged-short>
  5845. </member>
  5846. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(System.Single)">
  5847. <summary>
  5848. <p>Set a four-component vector that contains floating-point data.</p>
  5849. </summary>
  5850. <param name="dataRef"><dd> <p>A reference to the first component.</p> </dd></param>
  5851. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5852. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::SetFloatVector']/*" />
  5853. <msdn-id>bb173757</msdn-id>
  5854. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetFloatVector([In] float* pData)</unmanaged>
  5855. <unmanaged-short>ID3D10EffectVectorVariable::SetFloatVector</unmanaged-short>
  5856. </member>
  5857. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetBoolVector(SharpDX.Mathematics.Interop.RawBool4@)">
  5858. <summary>
  5859. <p>Get a four-component vector that contains boolean data.</p>
  5860. </summary>
  5861. <param name="dataRef"><dd> <p>A reference to the first component.</p> </dd></param>
  5862. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5863. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::GetBoolVector']/*" />
  5864. <msdn-id>bb173749</msdn-id>
  5865. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetBoolVector([Out] SHARPDX_BOOL4* pData)</unmanaged>
  5866. <unmanaged-short>ID3D10EffectVectorVariable::GetBoolVector</unmanaged-short>
  5867. </member>
  5868. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetIntVector(SharpDX.Mathematics.Interop.RawInt4@)">
  5869. <summary>
  5870. <p>Get a four-component vector that contains integer data.</p>
  5871. </summary>
  5872. <param name="dataRef"><dd> <p>A reference to the first component.</p> </dd></param>
  5873. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5874. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::GetIntVector']/*" />
  5875. <msdn-id>bb173753</msdn-id>
  5876. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetIntVector([Out] SHARPDX_INT4* pData)</unmanaged>
  5877. <unmanaged-short>ID3D10EffectVectorVariable::GetIntVector</unmanaged-short>
  5878. </member>
  5879. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetFloatVector(SharpDX.Mathematics.Interop.RawVector4@)">
  5880. <summary>
  5881. <p>Get a four-component vector that contains floating-point data.</p>
  5882. </summary>
  5883. <param name="dataRef"><dd> <p>A reference to the first component.</p> </dd></param>
  5884. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5885. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::GetFloatVector']/*" />
  5886. <msdn-id>bb173751</msdn-id>
  5887. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetFloatVector([Out] SHARPDX_VECTOR4* pData)</unmanaged>
  5888. <unmanaged-short>ID3D10EffectVectorVariable::GetFloatVector</unmanaged-short>
  5889. </member>
  5890. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawBool4[],System.Int32,System.Int32)">
  5891. <summary>
  5892. <p>Set an array of four-component vectors that contain boolean data.</p>
  5893. </summary>
  5894. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  5895. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  5896. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  5897. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5898. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::SetBoolVectorArray']/*" />
  5899. <msdn-id>bb173756</msdn-id>
  5900. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetBoolVectorArray([In, Buffer] SHARPDX_BOOL4* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  5901. <unmanaged-short>ID3D10EffectVectorVariable::SetBoolVectorArray</unmanaged-short>
  5902. </member>
  5903. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawInt4[],System.Int32,System.Int32)">
  5904. <summary>
  5905. <p>Set an array of four-component vectors that contain integer data.</p>
  5906. </summary>
  5907. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  5908. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  5909. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  5910. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5911. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::SetIntVectorArray']/*" />
  5912. <msdn-id>bb173760</msdn-id>
  5913. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetIntVectorArray([In, Buffer] SHARPDX_INT4* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  5914. <unmanaged-short>ID3D10EffectVectorVariable::SetIntVectorArray</unmanaged-short>
  5915. </member>
  5916. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.Set(SharpDX.Mathematics.Interop.RawVector4[],System.Int32,System.Int32)">
  5917. <summary>
  5918. <p>Set an array of four-component vectors that contain floating-point data.</p>
  5919. </summary>
  5920. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  5921. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  5922. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  5923. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5924. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::SetFloatVectorArray']/*" />
  5925. <msdn-id>bb173758</msdn-id>
  5926. <unmanaged>HRESULT ID3D10EffectVectorVariable::SetFloatVectorArray([In, Buffer] SHARPDX_VECTOR4* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  5927. <unmanaged-short>ID3D10EffectVectorVariable::SetFloatVectorArray</unmanaged-short>
  5928. </member>
  5929. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetBoolVectorArray(SharpDX.Mathematics.Interop.RawBool4[],System.Int32,System.Int32)">
  5930. <summary>
  5931. <p>Get an array of four-component vectors that contain boolean data.</p>
  5932. </summary>
  5933. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  5934. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  5935. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  5936. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5937. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::GetBoolVectorArray']/*" />
  5938. <msdn-id>bb173750</msdn-id>
  5939. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetBoolVectorArray([Out, Buffer] SHARPDX_BOOL4* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  5940. <unmanaged-short>ID3D10EffectVectorVariable::GetBoolVectorArray</unmanaged-short>
  5941. </member>
  5942. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetIntVectorArray(SharpDX.Mathematics.Interop.RawInt4[],System.Int32,System.Int32)">
  5943. <summary>
  5944. <p>Get an array of four-component vectors that contain integer data.</p>
  5945. </summary>
  5946. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  5947. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  5948. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  5949. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5950. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::GetIntVectorArray']/*" />
  5951. <msdn-id>bb173754</msdn-id>
  5952. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetIntVectorArray([Out, Buffer] SHARPDX_INT4* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  5953. <unmanaged-short>ID3D10EffectVectorVariable::GetIntVectorArray</unmanaged-short>
  5954. </member>
  5955. <member name="M:SharpDX.Direct3D10.EffectVectorVariable.GetFloatVectorArray(SharpDX.Mathematics.Interop.RawVector4[],System.Int32,System.Int32)">
  5956. <summary>
  5957. <p>Get an array of four-component vectors that contain floating-point data.</p>
  5958. </summary>
  5959. <param name="dataRef"><dd> <p>A reference to the start of the data to set.</p> </dd></param>
  5960. <param name="offset"><dd> <p>Must be set to 0; this is reserved for future use. </p> </dd></param>
  5961. <param name="count"><dd> <p>The number of array elements to set.</p> </dd></param>
  5962. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  5963. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectVectorVariable::GetFloatVectorArray']/*" />
  5964. <msdn-id>bb173752</msdn-id>
  5965. <unmanaged>HRESULT ID3D10EffectVectorVariable::GetFloatVectorArray([Out, Buffer] SHARPDX_VECTOR4* pData,[In] unsigned int Offset,[In] unsigned int Count)</unmanaged>
  5966. <unmanaged-short>ID3D10EffectVectorVariable::GetFloatVectorArray</unmanaged-short>
  5967. </member>
  5968. <member name="T:SharpDX.Direct3D10.Font">
  5969. <summary>
  5970. <p>The <see cref="T:SharpDX.Direct3D10.Font" /> interface encapsulates the textures and resources needed to render a specific font on a specific device.</p>
  5971. </summary>
  5972. <remarks>
  5973. <p>The <see cref="T:SharpDX.Direct3D10.Font" /> interface is obtained by calling <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateFont(SharpDX.Direct3D10.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32,System.Int32,System.Int32,System.Int32,System.String,SharpDX.Direct3D10.Font)" /></strong> or <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateFontIndirect(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.FontDescription@,SharpDX.Direct3D10.Font)" /></strong>.</p><p>The LPD3DX10FONT type is defined as a reference to the <see cref="T:SharpDX.Direct3D10.Font" /> interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D10.Font" /> <see cref="T:SharpDX.Direct3D10.Font" />;
  5974. typedef interface <see cref="T:SharpDX.Direct3D10.Font" /> *LPD3DX10FONT;
  5975. </pre>
  5976. </remarks>
  5977. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font']/*" />
  5978. <msdn-id>bb173886</msdn-id>
  5979. <unmanaged>ID3DX10Font</unmanaged>
  5980. <unmanaged-short>ID3DX10Font</unmanaged-short>
  5981. </member>
  5982. <member name="M:SharpDX.Direct3D10.Font.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.FontDescription)">
  5983. <summary>
  5984. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Font"/> class.
  5985. </summary>
  5986. <param name="device">The device.</param>
  5987. <param name="fontDescription">The font description.</param>
  5988. </member>
  5989. <member name="M:SharpDX.Direct3D10.Font.#ctor(SharpDX.Direct3D10.Device,System.Int32,System.Int32,SharpDX.Direct3D10.FontWeight,System.Int32,System.Boolean,SharpDX.Direct3D10.FontCharacterSet,SharpDX.Direct3D10.FontPrecision,SharpDX.Direct3D10.FontQuality,SharpDX.Direct3D10.FontPitchAndFamily,System.String)">
  5990. <summary>
  5991. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Font"/> class.
  5992. </summary>
  5993. <param name="device">The device.</param>
  5994. <param name="height">The height.</param>
  5995. <param name="width">The width.</param>
  5996. <param name="weight">The weight.</param>
  5997. <param name="mipLevels">The mip levels.</param>
  5998. <param name="isItalic">if set to <c>true</c> [is italic].</param>
  5999. <param name="characterSet">The character set.</param>
  6000. <param name="precision">The precision.</param>
  6001. <param name="quality">The quality.</param>
  6002. <param name="pitchAndFamily">The pitch and family.</param>
  6003. <param name="faceName">Name of the face.</param>
  6004. </member>
  6005. <member name="M:SharpDX.Direct3D10.Font.PreloadText(System.String)">
  6006. <summary>
  6007. Load formatted text into video memory to improve the efficiency of rendering to the device. This method supports ANSI and Unicode strings.
  6008. </summary>
  6009. <remarks>
  6010. The compiler setting also determines the function version. If Unicode is defined, the function call resolves to PreloadTextW. Otherwise, the function call resolves to PreloadTextA because ANSI strings are being used. This method generates textures that contain glyphs that represent the input text. The glyphs are drawn as a series of triangles. Text will not be rendered to the device; ID3DX10Font::DrawText must still be called to render the text. However, by preloading text into video memory, ID3DX10Font::DrawText will use substantially fewer CPU resources. This method internally converts characters to glyphs using the GDI function {{GetCharacterPlacement}}.
  6011. </remarks>
  6012. <param name="stringRef">Pointer to a string of characters to be loaded into video memory. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR; otherwise, the data type resolves to LPCSTR. See Remarks. </param>
  6013. <returns>If the method succeeds, the return value is S_OK. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA. </returns>
  6014. <unmanaged>HRESULT ID3DX10Font::PreloadTextW([None] const wchar_t* pString,[None] int Count)</unmanaged>
  6015. </member>
  6016. <member name="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)">
  6017. <summary>
  6018. Draw formatted text.
  6019. </summary>
  6020. <remarks>
  6021. The parameters of this method are very similar to those of the {{GDI DrawText}} function. This method supports both ANSI and Unicode strings. Unless the DT_NOCLIP format is used, this method clips the text so that it does not appear outside the specified rectangle. All formatting is assumed to have multiple lines unless the DT_SINGLELINE format is specified. If the selected font is too large for the rectangle, this method does not attempt to substitute a smaller font. This method supports only fonts whose escapement and orientation are both zero.
  6022. </remarks>
  6023. <param name="sprite">Reference to an ID3DX10Sprite object that contains the string you wish to draw. Can be NULL, in which case Direct3D will render the string with its own sprite object. To improve efficiency, a sprite object should be specified if ID3DX10Font::DrawText is to be called more than once in a row. </param>
  6024. <param name="text">Pointer to a string to draw. If UNICODE is defined, this parameter type resolves to an LPCWSTR, otherwise, the type resolves to an LPCSTR. If the Count parameter is -1, the string must be NULL terminated. </param>
  6025. <param name="rect">Pointer to a <see cref="T:SharpDX.Mathematics.Interop.RawRectangle"/> structure that contains the rectangle, in logical coordinates, in which the text is to be formatted. As with any RECT object, the coordinate value of the rectangle's right side must be greater than that of its left side. Likewise, the coordinate value of the bottom must be greater than that of the top. </param>
  6026. <param name="drawFlags">Specify the method of formatting the text. It can be any combination of the following values: ItemDescription DT_BOTTOM Justify the text to the bottom of the rectangle. This value must be combined with DT_SINGLELINE. DT_CALCRECT Tell DrawText to automatically calculate the width and height of the rectangle based on the length of the string you tell it to draw. If there are multiple lines of text, ID3DX10Font::DrawText uses the width of the rectangle pointed to by the pRect parameter and extends the base of the rectangle to bound the last line of text. If there is only one line of text, ID3DX10Font::DrawText modifies the right side of the rectangle so that it bounds the last character in the line. In either case, ID3DX10Font::DrawText returns the height of the formatted text but does not draw the text. DT_CENTER Center text horizontally in the rectangle. DT_EXPANDTABS Expand tab characters. The default number of characters per tab is eight. DT_LEFT Align text to the left. DT_NOCLIP Draw without clipping. ID3DX10Font::DrawText is somewhat faster when DT_NOCLIP is used. DT_RIGHT Align text to the right. DT_RTLREADING Display text in right-to-left reading order for bidirectional text when a Hebrew or Arabic font is selected. The default reading order for all text is left-to-right. DT_SINGLELINE Display text on a single line only. Carriage returns and line feeds do not break the line. DT_TOP Top-justify text. DT_VCENTER Center text vertically (single line only). DT_WORDBREAK Break words. Lines are automatically broken between words if a word would extend past the edge of the rectangle specified by the pRect parameter. A carriage return/line feed sequence also breaks the line. ? </param>
  6027. <param name="color">Color of the text. See <see cref="T:SharpDX.Mathematics.Interop.RawColor4"/>. </param>
  6028. <returns>If the function succeeds, the return value is the height of the text in logical units. If DT_VCENTER or DT_BOTTOM is specified, the return value is the offset from pRect (top to the bottom) of the drawn text. If the function fails, the return value is zero. </returns>
  6029. <unmanaged>int ID3DX10Font::DrawTextW([None] LPD3DX10SPRITE pSprite,[None] const wchar_t* pString,[None] int Count,[None] RECT* pRect,[None] int Format,[None] D3DXCOLOR Color)</unmanaged>
  6030. </member>
  6031. <member name="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColor4)">
  6032. <summary>
  6033. Draw formatted text at the specified position.
  6034. </summary>
  6035. <param name="sprite">Reference to an ID3DX10Sprite object that contains the string you wish to draw. Can be NULL, in which case Direct3D will render the string with its own sprite object. To improve efficiency, a sprite object should be specified if ID3DX10Font::DrawText is to be called more than once in a row.</param>
  6036. <param name="text">Pointer to a string to draw. If UNICODE is defined, this parameter type resolves to an LPCWSTR, otherwise, the type resolves to an LPCSTR. If the Count parameter is -1, the string must be NULL terminated.</param>
  6037. <param name="x">The x.</param>
  6038. <param name="y">The y.</param>
  6039. <param name="color">Color of the text. See <see cref="T:SharpDX.Mathematics.Interop.RawColor4"/>.</param>
  6040. <returns>
  6041. If the function succeeds, the return value is the height of the text in logical units. If DT_VCENTER or DT_BOTTOM is specified, the return value is the offset from pRect (top to the bottom) of the drawn text. If the function fails, the return value is zero.
  6042. </returns>
  6043. <unmanaged>int ID3DX10Font::DrawTextW([None] LPD3DX10SPRITE pSprite,[None] const wchar_t* pString,[None] int Count,[None] RECT* pRect,[None] int Format,[None] D3DXCOLOR Color)</unmanaged>
  6044. <remarks>
  6045. The parameters of this method are very similar to those of the {{GDI DrawText}} function. This method supports both ANSI and Unicode strings. Unless the DT_NOCLIP format is used, this method clips the text so that it does not appear outside the specified rectangle. All formatting is assumed to have multiple lines unless the DT_SINGLELINE format is specified. If the selected font is too large for the rectangle, this method does not attempt to substitute a smaller font. This method supports only fonts whose escapement and orientation are both zero.
  6046. </remarks>
  6047. <unmanaged>int ID3DX10Font::DrawTextW([In] ID3DX10Sprite* pSprite,[In] const wchar_t* pString,[In] int Count,[In] RECT* pRect,[In] unsigned int Format,[In] D3DXCOLOR Color)</unmanaged>
  6048. </member>
  6049. <!-- Badly formed XML comment ignored for member "M:SharpDX.Direct3D10.Font.MeasureText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags)" -->
  6050. <!-- Badly formed XML comment ignored for member "M:SharpDX.Direct3D10.Font.MeasureText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,System.Int32@)" -->
  6051. <member name="M:SharpDX.Direct3D10.Font.#ctor(System.IntPtr)">
  6052. <summary>
  6053. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Font"/> class.
  6054. </summary>
  6055. <param name="nativePtr">The native pointer.</param>
  6056. </member>
  6057. <member name="M:SharpDX.Direct3D10.Font.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Font">
  6058. <summary>
  6059. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Font"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  6060. </summary>
  6061. <param name="nativePointer">The native pointer.</param>
  6062. <returns>
  6063. The result of the conversion.
  6064. </returns>
  6065. </member>
  6066. <member name="P:SharpDX.Direct3D10.Font.Device">
  6067. <summary>
  6068. <p>Retrieve the Direct3D device associated with the font object.</p>
  6069. </summary>
  6070. <remarks>
  6071. <p><strong>Note</strong>??Calling this method will increase the internal reference count on the <see cref="T:SharpDX.Direct3D10.Device" /> interface. Be sure to call <see cref="T:SharpDX.ComObject" /> when you are done using this <see cref="T:SharpDX.Direct3D10.Device" /> interface or you will have a memory leak.</p>
  6072. </remarks>
  6073. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::GetDevice']/*" />
  6074. <msdn-id>bb173891</msdn-id>
  6075. <unmanaged>GetDevice</unmanaged>
  6076. <unmanaged-short>GetDevice</unmanaged-short>
  6077. <unmanaged>HRESULT ID3DX10Font::GetDevice([Out] ID3D10Device** ppDevice)</unmanaged>
  6078. </member>
  6079. <member name="P:SharpDX.Direct3D10.Font.Description">
  6080. <summary>
  6081. <p>Get a description of the current font object.</p>
  6082. </summary>
  6083. <remarks>
  6084. <p>This method describes Unicode font objects if UNICODE is defined. Otherwise GetDescA is called, which returns a reference to the D3DX10FONT_DESCA structure.</p>
  6085. </remarks>
  6086. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::GetDescW']/*" />
  6087. <msdn-id>bb173890</msdn-id>
  6088. <unmanaged>GetDescW</unmanaged>
  6089. <unmanaged-short>GetDescW</unmanaged-short>
  6090. <unmanaged>HRESULT ID3DX10Font::GetDescW([Out] D3DX10_FONT_DESCW* pDesc)</unmanaged>
  6091. </member>
  6092. <member name="P:SharpDX.Direct3D10.Font.DeviceContext">
  6093. <summary>
  6094. <p>Return a handle to a display device context (DC) that has the font set onto it.</p>
  6095. </summary>
  6096. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::GetDC']/*" />
  6097. <msdn-id>bb173889</msdn-id>
  6098. <unmanaged>GetDC</unmanaged>
  6099. <unmanaged-short>GetDC</unmanaged-short>
  6100. <unmanaged>HDC ID3DX10Font::GetDC()</unmanaged>
  6101. </member>
  6102. <member name="M:SharpDX.Direct3D10.Font.GetDevice(SharpDX.Direct3D10.Device@)">
  6103. <summary>
  6104. <p>Retrieve the Direct3D device associated with the font object.</p>
  6105. </summary>
  6106. <param name="deviceOut"><dd> <p>Address of a reference to an <see cref="T:SharpDX.Direct3D10.Device" /> interface, representing the Direct3D device object associated with the font object.</p> </dd></param>
  6107. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA.</p></returns>
  6108. <remarks>
  6109. <p><strong>Note</strong>??Calling this method will increase the internal reference count on the <see cref="T:SharpDX.Direct3D10.Device" /> interface. Be sure to call <see cref="T:SharpDX.ComObject" /> when you are done using this <see cref="T:SharpDX.Direct3D10.Device" /> interface or you will have a memory leak.</p>
  6110. </remarks>
  6111. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::GetDevice']/*" />
  6112. <msdn-id>bb173891</msdn-id>
  6113. <unmanaged>HRESULT ID3DX10Font::GetDevice([Out] ID3D10Device** ppDevice)</unmanaged>
  6114. <unmanaged-short>ID3DX10Font::GetDevice</unmanaged-short>
  6115. </member>
  6116. <member name="M:SharpDX.Direct3D10.Font.GetDescription(SharpDX.Direct3D10.FontDescription@)">
  6117. <summary>
  6118. <p>Get a description of the current font object.</p>
  6119. </summary>
  6120. <param name="descRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D10.FontDescription" /></strong> structure that describes the font object. If UNICODE is defined, a reference to a D3DX10FONT_DESCW is returned; otherwise a reference to a D3DX10FONT_DESCA is returned.</p> </dd></param>
  6121. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the following value will be returned: D3DERR_INVALIDCALL.</p></returns>
  6122. <remarks>
  6123. <p>This method describes Unicode font objects if UNICODE is defined. Otherwise GetDescA is called, which returns a reference to the D3DX10FONT_DESCA structure.</p>
  6124. </remarks>
  6125. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::GetDescW']/*" />
  6126. <msdn-id>bb173890</msdn-id>
  6127. <unmanaged>HRESULT ID3DX10Font::GetDescW([Out] D3DX10_FONT_DESCW* pDesc)</unmanaged>
  6128. <unmanaged-short>ID3DX10Font::GetDescW</unmanaged-short>
  6129. </member>
  6130. <member name="M:SharpDX.Direct3D10.Font.GetTextMetrics(System.IntPtr)">
  6131. <summary>
  6132. <p>Retrieve font characteristics.</p>
  6133. </summary>
  6134. <param name="textMetricsRef"><dd> <p>Pointer to a <see cref="!:SharpDX.Win32Native.TextMetric" /> structure, which contains font properties. If Unicode is defined, the function returns a <see cref="!:SharpDX.Win32Native.TextMetric" /> structure. Otherwise, the function returns a <see cref="!:SharpDX.Win32Native.TextMetricA" /> structure.</p> </dd></param>
  6135. <returns><p>Nonzero if the function is successful; otherwise 0.</p></returns>
  6136. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::GetTextMetricsW']/*" />
  6137. <msdn-id>bb173893</msdn-id>
  6138. <unmanaged>BOOL ID3DX10Font::GetTextMetricsW([In] void* pTextMetrics)</unmanaged>
  6139. <unmanaged-short>ID3DX10Font::GetTextMetricsW</unmanaged-short>
  6140. </member>
  6141. <member name="M:SharpDX.Direct3D10.Font.GetDeviceContext">
  6142. <summary>
  6143. <p>Return a handle to a display device context (DC) that has the font set onto it.</p>
  6144. </summary>
  6145. <returns><p>Handle to a display DC.</p></returns>
  6146. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::GetDC']/*" />
  6147. <msdn-id>bb173889</msdn-id>
  6148. <unmanaged>HDC ID3DX10Font::GetDC()</unmanaged>
  6149. <unmanaged-short>ID3DX10Font::GetDC</unmanaged-short>
  6150. </member>
  6151. <member name="M:SharpDX.Direct3D10.Font.GetGlyphData(System.Int32,SharpDX.Direct3D10.ShaderResourceView@,SharpDX.Mathematics.Interop.RawRectangle@,SharpDX.Mathematics.Interop.RawPoint@)">
  6152. <summary>
  6153. <p>Return information about the placement and orientation of a glyph in a character cell.</p>
  6154. </summary>
  6155. <param name="glyph"><dd> <p>Glyph identifier.</p> </dd></param>
  6156. <param name="textureOut"><dd> <p>Address of a reference to a ID3D10Texture object that contains the glyph.</p> </dd></param>
  6157. <param name="blackBoxRef"><dd> <p>Pointer to the smallest rectangle object that completely encloses the glyph. See <see cref="T:SharpDX.Mathematics.Interop.RawRectangle" />.</p> </dd></param>
  6158. <param name="cellIncRef"><dd> <p>Pointer to the two-dimensional vector that connects the origin of the current character cell to the origin of the next character cell. See <see cref="T:SharpDX.Mathematics.Interop.RawPoint" />.</p> </dd></param>
  6159. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA.</p></returns>
  6160. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::GetGlyphData']/*" />
  6161. <msdn-id>bb173892</msdn-id>
  6162. <unmanaged>HRESULT ID3DX10Font::GetGlyphData([In] unsigned int Glyph,[Out] ID3D10ShaderResourceView** ppTexture,[Out] RECT* pBlackBox,[Out] POINT* pCellInc)</unmanaged>
  6163. <unmanaged-short>ID3DX10Font::GetGlyphData</unmanaged-short>
  6164. </member>
  6165. <member name="M:SharpDX.Direct3D10.Font.PreloadCharacters(System.Int32,System.Int32)">
  6166. <summary>
  6167. <p>Load a series of characters into video memory to improve the efficiency of rendering to the device.</p>
  6168. </summary>
  6169. <param name="first"><dd> <p>ID of the first character to be loaded into video memory.</p> </dd></param>
  6170. <param name="last"><dd> <p>ID of the last character to be loaded into video memory.</p> </dd></param>
  6171. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA.</p></returns>
  6172. <remarks>
  6173. <p>This method generates textures containing glyphs that represent the input characters. The glyphs are drawn as a series of triangles.</p><p>Characters will not be rendered to the device; <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> must still be called to render the characters. However, by pre-loading characters into video memory, <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> will use substantially fewer CPU resources.</p><p>This method internally converts characters to glyphs using the GDI function GetCharacterPlacement.</p>
  6174. </remarks>
  6175. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::PreloadCharacters']/*" />
  6176. <msdn-id>bb173894</msdn-id>
  6177. <unmanaged>HRESULT ID3DX10Font::PreloadCharacters([In] unsigned int First,[In] unsigned int Last)</unmanaged>
  6178. <unmanaged-short>ID3DX10Font::PreloadCharacters</unmanaged-short>
  6179. </member>
  6180. <member name="M:SharpDX.Direct3D10.Font.PreloadGlyphs(System.Int32,System.Int32)">
  6181. <summary>
  6182. <p>Load a series of glyphs into video memory to improve the efficiency of rendering to the device.</p>
  6183. </summary>
  6184. <param name="first"><dd> <p>ID of the first glyph to be loaded into video memory.</p> </dd></param>
  6185. <param name="last"><dd> <p>ID of the last glyph to be loaded into video memory.</p> </dd></param>
  6186. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA.</p></returns>
  6187. <remarks>
  6188. <p>This method generates textures that contain the input glyphs. The glyphs are drawn as a series of triangles.</p><p>Glyphs will not be rendered to the device; <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> must still be called to render the glyphs. However, by pre-loading glyphs into video memory, <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> will use substantially fewer CPU resources.</p>
  6189. </remarks>
  6190. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::PreloadGlyphs']/*" />
  6191. <msdn-id>bb173895</msdn-id>
  6192. <unmanaged>HRESULT ID3DX10Font::PreloadGlyphs([In] unsigned int First,[In] unsigned int Last)</unmanaged>
  6193. <unmanaged-short>ID3DX10Font::PreloadGlyphs</unmanaged-short>
  6194. </member>
  6195. <member name="M:SharpDX.Direct3D10.Font.PreloadText(System.String,System.Int32)">
  6196. <summary>
  6197. <p>Load formatted text into video memory to improve the efficiency of rendering to the device. This method supports ANSI and Unicode strings.</p>
  6198. </summary>
  6199. <param name="stringRef"><dd> <p>Pointer to a string of characters to be loaded into video memory. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR; otherwise, the data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  6200. <param name="count"><dd> <p>Number of characters in the text string.</p> </dd></param>
  6201. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA.</p></returns>
  6202. <remarks>
  6203. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to PreloadTextW. Otherwise, the function call resolves to PreloadTextA because ANSI strings are being used.</p><p>This method generates textures that contain glyphs that represent the input text. The glyphs are drawn as a series of triangles.</p><p>Text will not be rendered to the device; <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> must still be called to render the text. However, by preloading text into video memory, <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> will use substantially fewer CPU resources.</p><p>This method internally converts characters to glyphs using the GDI function GetCharacterPlacement.</p>
  6204. </remarks>
  6205. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::PreloadTextW']/*" />
  6206. <msdn-id>bb173896</msdn-id>
  6207. <unmanaged>HRESULT ID3DX10Font::PreloadTextW([In] const wchar_t* pString,[In] int Count)</unmanaged>
  6208. <unmanaged-short>ID3DX10Font::PreloadTextW</unmanaged-short>
  6209. </member>
  6210. <member name="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,System.Int32,System.IntPtr,System.Int32,SharpDX.Mathematics.Interop.RawColor4)">
  6211. <summary>
  6212. <p>Draw formatted text. This method supports ANSI and Unicode strings.</p>
  6213. </summary>
  6214. <param name="spriteRef"><dd> <p>Pointer to an <see cref="T:SharpDX.Direct3D10.Sprite" /> object that contains the string you wish to draw. Can be <strong><c>null</c></strong>, in which case Direct3D will render the string with its own sprite object. To improve efficiency, a sprite object should be specified if <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> is to be called more than once in a row.</p> </dd></param>
  6215. <param name="stringRef"><dd> <p>Pointer to a string to draw. If UNICODE is defined, this parameter type resolves to an LPCWSTR, otherwise, the type resolves to an LPCSTR. If the Count parameter is -1, the string must be <strong><c>null</c></strong> terminated.</p> </dd></param>
  6216. <param name="count"><dd> <p>The number of characters in the string. If Count is -1, then the pString parameter is assumed to be a reference to a sprite containing a <c>null</c>-terminated string and <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> computes the character count automatically.</p> </dd></param>
  6217. <param name="rectRef"><dd> <p>Pointer to a <see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /> structure that contains the rectangle, in logical coordinates, in which the text is to be formatted. As with any <see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /> object, the coordinate value of the rectangle's right side must be greater than that of its left side. Likewise, the coordinate value of the bottom must be greater than that of the top.</p> </dd></param>
  6218. <param name="format"><dd> <p>Specify the method of formatting the text. It can be any combination of the following values: </p> <p /> <table> <tr><th>Item</th><th>Description</th></tr> <tr><td> <p>DT_BOTTOM</p> </td><td> <p>Justify the text to the bottom of the rectangle. This value must be combined with DT_SINGLELINE.</p> </td></tr> <tr><td> <p>DT_CALCRECT</p> </td><td> <p>Tell DrawText to automatically calculate the width and height of the rectangle based on the length of the string you tell it to draw. If there are multiple lines of text, <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> uses the width of the rectangle pointed to by the pRect parameter and extends the base of the rectangle to bound the last line of text. If there is only one line of text, <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> modifies the right side of the rectangle so that it bounds the last character in the line. In either case, <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> returns the height of the formatted text but does not draw the text.</p> </td></tr> <tr><td> <p>DT_CENTER</p> </td><td> <p>Center text horizontally in the rectangle.</p> </td></tr> <tr><td> <p>DT_EXPANDTABS</p> </td><td> <p>Expand tab characters. The default number of characters per tab is eight.</p> </td></tr> <tr><td> <p>DT_LEFT</p> </td><td> <p>Align text to the left.</p> </td></tr> <tr><td> <p>DT_NOCLIP</p> </td><td> <p>Draw without clipping. <see cref="M:SharpDX.Direct3D10.Font.DrawText(SharpDX.Direct3D10.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D10.FontDrawFlags,SharpDX.Mathematics.Interop.RawColor4)" /> is somewhat faster when DT_NOCLIP is used.</p> </td></tr> <tr><td> <p>DT_RIGHT</p> </td><td> <p>Align text to the right.</p> </td></tr> <tr><td> <p>DT_RTLREADING</p> </td><td> <p>Display text in right-to-left reading order for bidirectional text when a Hebrew or Arabic font is selected. The default reading order for all text is left-to-right.</p> </td></tr> <tr><td> <p>DT_SINGLELINE</p> </td><td> <p>Display text on a single line only. Carriage returns and line feeds do not break the line.</p> </td></tr> <tr><td> <p>DT_TOP</p> </td><td> <p>Top-justify text.</p> </td></tr> <tr><td> <p>DT_VCENTER</p> </td><td> <p>Center text vertically (single line only).</p> </td></tr> <tr><td> <p>DT_WORDBREAK</p> </td><td> <p>Break words. Lines are automatically broken between words if a word would extend past the edge of the rectangle specified by the pRect parameter. A carriage return/line feed sequence also breaks the line.</p> </td></tr> </table> <p>?</p> </dd></param>
  6219. <param name="color"><dd> <p>Color of the text. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawColor4" /></strong>.</p> </dd></param>
  6220. <returns><p>If the function succeeds, the return value is the height of the text in logical units. If DT_VCENTER or DT_BOTTOM is specified, the return value is the offset from pRect (top to the bottom) of the drawn text. If the function fails, the return value is zero.</p></returns>
  6221. <remarks>
  6222. <p>The parameters of this method are very similar to those of the GDI DrawText function.</p><p>This method supports both ANSI and Unicode strings.</p><p>Unless the DT_NOCLIP format is used, this method clips the text so that it does not appear outside the specified rectangle. All formatting is assumed to have multiple lines unless the DT_SINGLELINE format is specified.</p><p>If the selected font is too large for the rectangle, this method does not attempt to substitute a smaller font.</p><p>This method supports only fonts whose escapement and orientation are both zero.</p>
  6223. </remarks>
  6224. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Font::DrawTextW']/*" />
  6225. <msdn-id>bb173887</msdn-id>
  6226. <unmanaged>int ID3DX10Font::DrawTextW([In] ID3DX10Sprite* pSprite,[In] const wchar_t* pString,[In] int Count,[In] void* pRect,[In] unsigned int Format,[In] D3DXCOLOR Color)</unmanaged>
  6227. <unmanaged-short>ID3DX10Font::DrawTextW</unmanaged-short>
  6228. </member>
  6229. <member name="T:SharpDX.Direct3D10.FontCharacterSet">
  6230. <summary>
  6231. Defines possible character sets for fonts.
  6232. </summary>
  6233. <unmanaged>CHARSET</unmanaged>
  6234. </member>
  6235. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Ansi">
  6236. <summary>
  6237. The ANSI character set.
  6238. </summary>
  6239. </member>
  6240. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Arabic">
  6241. <summary>
  6242. The Arabic character set.
  6243. </summary>
  6244. </member>
  6245. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Baltic">
  6246. <summary>
  6247. The Baltic character set.
  6248. </summary>
  6249. </member>
  6250. <member name="F:SharpDX.Direct3D10.FontCharacterSet.ChineseBig5">
  6251. <summary>
  6252. The Chinese character set.
  6253. </summary>
  6254. </member>
  6255. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Default">
  6256. <summary>
  6257. The default system character set.
  6258. </summary>
  6259. </member>
  6260. <member name="F:SharpDX.Direct3D10.FontCharacterSet.EastEurope">
  6261. <summary>
  6262. The East Europe character set.
  6263. </summary>
  6264. </member>
  6265. <member name="F:SharpDX.Direct3D10.FontCharacterSet.GB2312">
  6266. <summary>
  6267. The GB2312 character set.
  6268. </summary>
  6269. </member>
  6270. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Greek">
  6271. <summary>
  6272. The Greek character set.
  6273. </summary>
  6274. </member>
  6275. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Hangul">
  6276. <summary>
  6277. The Hangul character set.
  6278. </summary>
  6279. </member>
  6280. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Hebrew">
  6281. <summary>
  6282. The Hebrew character set.
  6283. </summary>
  6284. </member>
  6285. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Johab">
  6286. <summary>
  6287. The Johab character set.
  6288. </summary>
  6289. </member>
  6290. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Mac">
  6291. <summary>
  6292. The Mac character set.
  6293. </summary>
  6294. </member>
  6295. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Oem">
  6296. <summary>
  6297. The OEM character set.
  6298. </summary>
  6299. </member>
  6300. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Russian">
  6301. <summary>
  6302. The Russian character set.
  6303. </summary>
  6304. </member>
  6305. <member name="F:SharpDX.Direct3D10.FontCharacterSet.ShiftJIS">
  6306. <summary>
  6307. The ShiftJIS character set.
  6308. </summary>
  6309. </member>
  6310. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Symbol">
  6311. <summary>
  6312. The symbol character set.
  6313. </summary>
  6314. </member>
  6315. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Thai">
  6316. <summary>
  6317. The Thai character set.
  6318. </summary>
  6319. </member>
  6320. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Turkish">
  6321. <summary>
  6322. The Turkish character set.
  6323. </summary>
  6324. </member>
  6325. <member name="F:SharpDX.Direct3D10.FontCharacterSet.Vietnamese">
  6326. <summary>
  6327. The Vietnamese character set.
  6328. </summary>
  6329. </member>
  6330. <member name="T:SharpDX.Direct3D10.FontDrawFlags">
  6331. <summary>
  6332. Specifies formatting options for text rendering.
  6333. </summary>
  6334. <unmanaged>DT</unmanaged>
  6335. </member>
  6336. <member name="F:SharpDX.Direct3D10.FontDrawFlags.Bottom">
  6337. <summary>
  6338. Align the text to the bottom.
  6339. </summary>
  6340. </member>
  6341. <member name="F:SharpDX.Direct3D10.FontDrawFlags.Center">
  6342. <summary>
  6343. Align the text to the center.
  6344. </summary>
  6345. </member>
  6346. <member name="F:SharpDX.Direct3D10.FontDrawFlags.ExpandTabs">
  6347. <summary>
  6348. Expand tab characters.
  6349. </summary>
  6350. </member>
  6351. <member name="F:SharpDX.Direct3D10.FontDrawFlags.Left">
  6352. <summary>
  6353. Align the text to the left.
  6354. </summary>
  6355. </member>
  6356. <member name="F:SharpDX.Direct3D10.FontDrawFlags.NoClip">
  6357. <summary>
  6358. Don't clip the text.
  6359. </summary>
  6360. </member>
  6361. <member name="F:SharpDX.Direct3D10.FontDrawFlags.Right">
  6362. <summary>
  6363. Align the text to the right.
  6364. </summary>
  6365. </member>
  6366. <member name="F:SharpDX.Direct3D10.FontDrawFlags.RtlReading">
  6367. <summary>
  6368. Rendering the text in right-to-left reading order.
  6369. </summary>
  6370. </member>
  6371. <member name="F:SharpDX.Direct3D10.FontDrawFlags.SingleLine">
  6372. <summary>
  6373. Force all text to a single line.
  6374. </summary>
  6375. </member>
  6376. <member name="F:SharpDX.Direct3D10.FontDrawFlags.Top">
  6377. <summary>
  6378. Align the text to the top.
  6379. </summary>
  6380. </member>
  6381. <member name="F:SharpDX.Direct3D10.FontDrawFlags.VerticalCenter">
  6382. <summary>
  6383. Vertically align the text to the center.
  6384. </summary>
  6385. </member>
  6386. <member name="F:SharpDX.Direct3D10.FontDrawFlags.WordBreak">
  6387. <summary>
  6388. Allow word breaks.
  6389. </summary>
  6390. </member>
  6391. <member name="T:SharpDX.Direct3D10.FontPitchAndFamily">
  6392. <summary>
  6393. Defines pitch and family settings for fonts.
  6394. </summary>
  6395. </member>
  6396. <member name="F:SharpDX.Direct3D10.FontPitchAndFamily.Decorative">
  6397. <summary>
  6398. Use the Decorative family.
  6399. </summary>
  6400. </member>
  6401. <member name="F:SharpDX.Direct3D10.FontPitchAndFamily.Default">
  6402. <summary>
  6403. Default pitch.
  6404. </summary>
  6405. </member>
  6406. <member name="F:SharpDX.Direct3D10.FontPitchAndFamily.DontCare">
  6407. <summary>
  6408. The font family doesn't matter.
  6409. </summary>
  6410. </member>
  6411. <member name="F:SharpDX.Direct3D10.FontPitchAndFamily.Fixed">
  6412. <summary>
  6413. Fixed pitch.
  6414. </summary>
  6415. </member>
  6416. <member name="F:SharpDX.Direct3D10.FontPitchAndFamily.Modern">
  6417. <summary>
  6418. Use the Modern family.
  6419. </summary>
  6420. </member>
  6421. <member name="F:SharpDX.Direct3D10.FontPitchAndFamily.Mono">
  6422. <summary>
  6423. Mono pitch.
  6424. </summary>
  6425. </member>
  6426. <member name="F:SharpDX.Direct3D10.FontPitchAndFamily.Roman">
  6427. <summary>
  6428. Use the Roman family.
  6429. </summary>
  6430. </member>
  6431. <member name="F:SharpDX.Direct3D10.FontPitchAndFamily.Script">
  6432. <summary>
  6433. Use the Script family.
  6434. </summary>
  6435. </member>
  6436. <member name="F:SharpDX.Direct3D10.FontPitchAndFamily.Swiss">
  6437. <summary>
  6438. Use the Swiss family.
  6439. </summary>
  6440. </member>
  6441. <member name="F:SharpDX.Direct3D10.FontPitchAndFamily.Variable">
  6442. <summary>
  6443. Variable pitch.
  6444. </summary>
  6445. </member>
  6446. <member name="T:SharpDX.Direct3D10.FontPrecision">
  6447. <summary>
  6448. Defines precision levels for font rendering.
  6449. </summary>
  6450. <unmanaged>OutPrecision</unmanaged>
  6451. </member>
  6452. <member name="F:SharpDX.Direct3D10.FontPrecision.Default">
  6453. <summary>
  6454. Default
  6455. </summary>
  6456. </member>
  6457. <member name="F:SharpDX.Direct3D10.FontPrecision.String">
  6458. <summary>
  6459. String
  6460. </summary>
  6461. </member>
  6462. <member name="F:SharpDX.Direct3D10.FontPrecision.Character">
  6463. <summary>
  6464. Character
  6465. </summary>
  6466. </member>
  6467. <member name="F:SharpDX.Direct3D10.FontPrecision.Stroke">
  6468. <summary>
  6469. Stroke
  6470. </summary>
  6471. </member>
  6472. <member name="F:SharpDX.Direct3D10.FontPrecision.TrueType">
  6473. <summary>
  6474. TrueType
  6475. </summary>
  6476. </member>
  6477. <member name="F:SharpDX.Direct3D10.FontPrecision.Device">
  6478. <summary>
  6479. Device
  6480. </summary>
  6481. </member>
  6482. <member name="F:SharpDX.Direct3D10.FontPrecision.Raster">
  6483. <summary>
  6484. Raster
  6485. </summary>
  6486. </member>
  6487. <member name="F:SharpDX.Direct3D10.FontPrecision.TrueTypeOnly">
  6488. <summary>
  6489. TrueTypeOnly
  6490. </summary>
  6491. </member>
  6492. <member name="F:SharpDX.Direct3D10.FontPrecision.Outline">
  6493. <summary>
  6494. Outline
  6495. </summary>
  6496. </member>
  6497. <member name="F:SharpDX.Direct3D10.FontPrecision.ScreenOutline">
  6498. <summary>
  6499. ScreenOutline
  6500. </summary>
  6501. </member>
  6502. <member name="F:SharpDX.Direct3D10.FontPrecision.PostScriptOnly">
  6503. <summary>
  6504. PostScriptOnly
  6505. </summary>
  6506. </member>
  6507. <member name="T:SharpDX.Direct3D10.FontQuality">
  6508. <summary>
  6509. Specifies quality options for font rendering.
  6510. </summary>
  6511. <unmanaged>QUALITY</unmanaged>
  6512. </member>
  6513. <member name="F:SharpDX.Direct3D10.FontQuality.Default">
  6514. <summary>
  6515. Default
  6516. </summary>
  6517. </member>
  6518. <member name="F:SharpDX.Direct3D10.FontQuality.Draft">
  6519. <summary>
  6520. Draft
  6521. </summary>
  6522. </member>
  6523. <member name="F:SharpDX.Direct3D10.FontQuality.Proof">
  6524. <summary>
  6525. Proof
  6526. </summary>
  6527. </member>
  6528. <member name="F:SharpDX.Direct3D10.FontQuality.NonAntialiased">
  6529. <summary>
  6530. Non antialiased
  6531. </summary>
  6532. </member>
  6533. <member name="F:SharpDX.Direct3D10.FontQuality.Antialiased">
  6534. <summary>
  6535. Antialiased
  6536. </summary>
  6537. </member>
  6538. <member name="F:SharpDX.Direct3D10.FontQuality.ClearType">
  6539. <summary>
  6540. ClearType
  6541. </summary>
  6542. </member>
  6543. <member name="F:SharpDX.Direct3D10.FontQuality.ClearTypeNatural">
  6544. <summary>
  6545. ClearTypeNatural
  6546. </summary>
  6547. </member>
  6548. <member name="T:SharpDX.Direct3D10.FontWeight">
  6549. <summary>
  6550. Specifies weights for font rendering.
  6551. </summary>
  6552. <unmanaged>FW</unmanaged>
  6553. </member>
  6554. <member name="F:SharpDX.Direct3D10.FontWeight.Black">
  6555. <summary>
  6556. Use a black weight.
  6557. </summary>
  6558. </member>
  6559. <member name="F:SharpDX.Direct3D10.FontWeight.Bold">
  6560. <summary>
  6561. Use a bold weight.
  6562. </summary>
  6563. </member>
  6564. <member name="F:SharpDX.Direct3D10.FontWeight.DemiBold">
  6565. <summary>
  6566. Use a demi-bold weight.
  6567. </summary>
  6568. </member>
  6569. <member name="F:SharpDX.Direct3D10.FontWeight.DoNotCare">
  6570. <summary>
  6571. The font weight doesn't matter.
  6572. </summary>
  6573. </member>
  6574. <member name="F:SharpDX.Direct3D10.FontWeight.ExtraBold">
  6575. <summary>
  6576. Use an extra bold weight.
  6577. </summary>
  6578. </member>
  6579. <member name="F:SharpDX.Direct3D10.FontWeight.ExtraLight">
  6580. <summary>
  6581. Make the font extra light.
  6582. </summary>
  6583. </member>
  6584. <member name="F:SharpDX.Direct3D10.FontWeight.Heavy">
  6585. <summary>
  6586. Use a heavy weight.
  6587. </summary>
  6588. </member>
  6589. <member name="F:SharpDX.Direct3D10.FontWeight.Light">
  6590. <summary>
  6591. Make the font light.
  6592. </summary>
  6593. </member>
  6594. <member name="F:SharpDX.Direct3D10.FontWeight.Medium">
  6595. <summary>
  6596. Use a medium weight.
  6597. </summary>
  6598. </member>
  6599. <member name="F:SharpDX.Direct3D10.FontWeight.Normal">
  6600. <summary>
  6601. Use a normal weight.
  6602. </summary>
  6603. </member>
  6604. <member name="F:SharpDX.Direct3D10.FontWeight.Regular">
  6605. <summary>
  6606. Use a regular weight.
  6607. </summary>
  6608. </member>
  6609. <member name="F:SharpDX.Direct3D10.FontWeight.SemiBold">
  6610. <summary>
  6611. Use a semi-bold weight.
  6612. </summary>
  6613. </member>
  6614. <member name="F:SharpDX.Direct3D10.FontWeight.Thin">
  6615. <summary>
  6616. Make the font thin.
  6617. </summary>
  6618. </member>
  6619. <member name="F:SharpDX.Direct3D10.FontWeight.UltraBold">
  6620. <summary>
  6621. Use an ultra bold weight.
  6622. </summary>
  6623. </member>
  6624. <member name="F:SharpDX.Direct3D10.FontWeight.UltraLight">
  6625. <summary>
  6626. Make the font ultra light.
  6627. </summary>
  6628. </member>
  6629. <member name="T:SharpDX.Direct3D10.AsynchronousFlags">
  6630. <summary>
  6631. Flags that defines the behavior of method <see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" />.
  6632. </summary>
  6633. <msdn-id>bb204887</msdn-id>
  6634. <unmanaged>D3D10_ASYNC_GETDATA_FLAG</unmanaged>
  6635. <unmanaged-short>D3D10_ASYNC_GETDATA_FLAG</unmanaged-short>
  6636. </member>
  6637. <member name="F:SharpDX.Direct3D10.AsynchronousFlags.DoNotFlush">
  6638. <summary>
  6639. No documentation.
  6640. </summary>
  6641. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_ASYNC_GETDATA_DONOTFLUSH']/*" />
  6642. <msdn-id>bb204887</msdn-id>
  6643. <unmanaged>D3D10_ASYNC_GETDATA_DONOTFLUSH</unmanaged>
  6644. <unmanaged-short>D3D10_ASYNC_GETDATA_DONOTFLUSH</unmanaged-short>
  6645. </member>
  6646. <member name="F:SharpDX.Direct3D10.AsynchronousFlags.None">
  6647. <summary>
  6648. None.
  6649. </summary>
  6650. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  6651. <unmanaged>None</unmanaged>
  6652. <unmanaged-short>None</unmanaged-short>
  6653. </member>
  6654. <member name="T:SharpDX.Direct3D10.BindFlags">
  6655. <summary>
  6656. <p>Identifies how to bind a resource to the pipeline.</p>
  6657. </summary>
  6658. <remarks>
  6659. <p>In general, binding flags can be combined using a logical OR (except the constant-buffer flag); however, you should use a single flag to allow the device to optimize the resource usage.</p><p>This enumeration is used by a:</p><ul> <li> <strong>Buffer description</strong> when creating a buffer.</li> <li>Texture description when creating a texture (see <strong><see cref="T:SharpDX.Direct3D10.Texture1DDescription" /></strong> or <strong><see cref="T:SharpDX.Direct3D10.Texture2DDescription" /></strong> or <strong><see cref="T:SharpDX.Direct3D10.Texture3DDescription" /></strong>).</li> </ul><p>A shader-resource buffer is NOT a constant buffer; rather, it is a texture or buffer resource that is bound to a shader, that contains texture or buffer data (it is not limited to a single element type in the buffer). A shader-resource buffer is created with the <see cref="F:SharpDX.Direct3D10.BindFlags.ShaderResource" /> flag and is bound to the pipeline using one of these APIs: <strong><see cref="M:SharpDX.Direct3D10.GeometryShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.PixelShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])" /></strong>, or <strong><see cref="M:SharpDX.Direct3D10.VertexShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])" /></strong>. Furthermore, a shader-resource buffer cannot use the <strong><see cref="F:SharpDX.Direct3D10.MapMode.WriteNoOverwrite" /></strong> flag.</p>
  6660. </remarks>
  6661. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BIND_FLAG']/*" />
  6662. <msdn-id>bb204891</msdn-id>
  6663. <unmanaged>D3D10_BIND_FLAG</unmanaged>
  6664. <unmanaged-short>D3D10_BIND_FLAG</unmanaged-short>
  6665. </member>
  6666. <member name="F:SharpDX.Direct3D10.BindFlags.VertexBuffer">
  6667. <summary>
  6668. <dd> <p>Bind a buffer as a vertex buffer to the input-assembler stage.</p> </dd>
  6669. </summary>
  6670. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BIND_VERTEX_BUFFER']/*" />
  6671. <msdn-id>bb204891</msdn-id>
  6672. <unmanaged>D3D10_BIND_VERTEX_BUFFER</unmanaged>
  6673. <unmanaged-short>D3D10_BIND_VERTEX_BUFFER</unmanaged-short>
  6674. </member>
  6675. <member name="F:SharpDX.Direct3D10.BindFlags.IndexBuffer">
  6676. <summary>
  6677. <dd> <p>Bind a buffer as an index buffer to the input-assembler stage.</p> </dd>
  6678. </summary>
  6679. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BIND_INDEX_BUFFER']/*" />
  6680. <msdn-id>bb204891</msdn-id>
  6681. <unmanaged>D3D10_BIND_INDEX_BUFFER</unmanaged>
  6682. <unmanaged-short>D3D10_BIND_INDEX_BUFFER</unmanaged-short>
  6683. </member>
  6684. <member name="F:SharpDX.Direct3D10.BindFlags.ConstantBuffer">
  6685. <summary>
  6686. <dd> <p>Bind a buffer as a constant buffer to a shader stage; this flag may NOT be combined with any other bind flag.</p> </dd>
  6687. </summary>
  6688. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BIND_CONSTANT_BUFFER']/*" />
  6689. <msdn-id>bb204891</msdn-id>
  6690. <unmanaged>D3D10_BIND_CONSTANT_BUFFER</unmanaged>
  6691. <unmanaged-short>D3D10_BIND_CONSTANT_BUFFER</unmanaged-short>
  6692. </member>
  6693. <member name="F:SharpDX.Direct3D10.BindFlags.ShaderResource">
  6694. <summary>
  6695. <dd> <p>Bind a buffer or texture to a shader stage; this flag cannot be used with the <strong><see cref="F:SharpDX.Direct3D10.MapMode.WriteNoOverwrite" /></strong> flag.</p> </dd>
  6696. </summary>
  6697. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BIND_SHADER_RESOURCE']/*" />
  6698. <msdn-id>bb204891</msdn-id>
  6699. <unmanaged>D3D10_BIND_SHADER_RESOURCE</unmanaged>
  6700. <unmanaged-short>D3D10_BIND_SHADER_RESOURCE</unmanaged-short>
  6701. </member>
  6702. <member name="F:SharpDX.Direct3D10.BindFlags.StreamOutput">
  6703. <summary>
  6704. <dd> <p>Bind an output buffer for the stream-output stage.</p> </dd>
  6705. </summary>
  6706. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BIND_STREAM_OUTPUT']/*" />
  6707. <msdn-id>bb204891</msdn-id>
  6708. <unmanaged>D3D10_BIND_STREAM_OUTPUT</unmanaged>
  6709. <unmanaged-short>D3D10_BIND_STREAM_OUTPUT</unmanaged-short>
  6710. </member>
  6711. <member name="F:SharpDX.Direct3D10.BindFlags.RenderTarget">
  6712. <summary>
  6713. <dd> <p>Bind a texture as a render target for the output-merger stage.</p> </dd>
  6714. </summary>
  6715. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BIND_RENDER_TARGET']/*" />
  6716. <msdn-id>bb204891</msdn-id>
  6717. <unmanaged>D3D10_BIND_RENDER_TARGET</unmanaged>
  6718. <unmanaged-short>D3D10_BIND_RENDER_TARGET</unmanaged-short>
  6719. </member>
  6720. <member name="F:SharpDX.Direct3D10.BindFlags.DepthStencil">
  6721. <summary>
  6722. <dd> <p>Bind a texture as a depth-stencil target for the output-merger stage.</p> </dd>
  6723. </summary>
  6724. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BIND_DEPTH_STENCIL']/*" />
  6725. <msdn-id>bb204891</msdn-id>
  6726. <unmanaged>D3D10_BIND_DEPTH_STENCIL</unmanaged>
  6727. <unmanaged-short>D3D10_BIND_DEPTH_STENCIL</unmanaged-short>
  6728. </member>
  6729. <member name="F:SharpDX.Direct3D10.BindFlags.None">
  6730. <summary>
  6731. None.
  6732. </summary>
  6733. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  6734. <unmanaged>None</unmanaged>
  6735. <unmanaged-short>None</unmanaged-short>
  6736. </member>
  6737. <member name="T:SharpDX.Direct3D10.BlendOperation">
  6738. <summary>
  6739. <p>RGB or alpha blending operation.</p>
  6740. </summary>
  6741. <remarks>
  6742. <p>The runtime implements RGB blending and alpha blending separately. Therefore, blend state requires separate blend operations for RGB data and alpha data. These blend operations are specified in a <strong>blend description</strong>. The two sources ? source 1 and source 2 ? are shown in the blending block diagram.</p><p>Blend state is used by the output-merger stage to determine how to blend together two RGB pixel values and two alpha values. The two RGB pixel values and two alpha values are the RGB pixel value and alpha value that the pixel shader outputs and the RGB pixel value and alpha value already in the output render target. The <strong>blend option</strong> controls the data source that the blending stage uses to modulate values for the pixel shader, render target, or both. The <strong>blend operation</strong> controls how the blending stage mathematically combines these modulated values.</p>
  6743. </remarks>
  6744. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_OP']/*" />
  6745. <msdn-id>bb204894</msdn-id>
  6746. <unmanaged>D3D10_BLEND_OP</unmanaged>
  6747. <unmanaged-short>D3D10_BLEND_OP</unmanaged-short>
  6748. </member>
  6749. <member name="F:SharpDX.Direct3D10.BlendOperation.Add">
  6750. <summary>
  6751. <dd> <p>Add source 1 and source 2.</p> </dd>
  6752. </summary>
  6753. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_OP_ADD']/*" />
  6754. <msdn-id>bb204894</msdn-id>
  6755. <unmanaged>D3D10_BLEND_OP_ADD</unmanaged>
  6756. <unmanaged-short>D3D10_BLEND_OP_ADD</unmanaged-short>
  6757. </member>
  6758. <member name="F:SharpDX.Direct3D10.BlendOperation.Subtract">
  6759. <summary>
  6760. <dd> <p>Subtract source 1 from source 2.</p> </dd>
  6761. </summary>
  6762. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_OP_SUBTRACT']/*" />
  6763. <msdn-id>bb204894</msdn-id>
  6764. <unmanaged>D3D10_BLEND_OP_SUBTRACT</unmanaged>
  6765. <unmanaged-short>D3D10_BLEND_OP_SUBTRACT</unmanaged-short>
  6766. </member>
  6767. <member name="F:SharpDX.Direct3D10.BlendOperation.ReverseSubtract">
  6768. <summary>
  6769. <dd> <p>Subtract source 2 from source 1.</p> </dd>
  6770. </summary>
  6771. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_OP_REV_SUBTRACT']/*" />
  6772. <msdn-id>bb204894</msdn-id>
  6773. <unmanaged>D3D10_BLEND_OP_REV_SUBTRACT</unmanaged>
  6774. <unmanaged-short>D3D10_BLEND_OP_REV_SUBTRACT</unmanaged-short>
  6775. </member>
  6776. <member name="F:SharpDX.Direct3D10.BlendOperation.Minimum">
  6777. <summary>
  6778. <dd> <p>Find the minimum of source 1 and source 2.</p> </dd>
  6779. </summary>
  6780. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_OP_MIN']/*" />
  6781. <msdn-id>bb204894</msdn-id>
  6782. <unmanaged>D3D10_BLEND_OP_MIN</unmanaged>
  6783. <unmanaged-short>D3D10_BLEND_OP_MIN</unmanaged-short>
  6784. </member>
  6785. <member name="F:SharpDX.Direct3D10.BlendOperation.Maximum">
  6786. <summary>
  6787. <dd> <p>Find the maximum of source 1 and source 2.</p> </dd>
  6788. </summary>
  6789. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_OP_MAX']/*" />
  6790. <msdn-id>bb204894</msdn-id>
  6791. <unmanaged>D3D10_BLEND_OP_MAX</unmanaged>
  6792. <unmanaged-short>D3D10_BLEND_OP_MAX</unmanaged-short>
  6793. </member>
  6794. <member name="T:SharpDX.Direct3D10.BlendOption">
  6795. <summary>
  6796. <p>Describes the blend state.</p>
  6797. </summary>
  6798. <remarks>
  6799. <p>To see how blending is done, see Output-Merger Stage (Direct3D 10).</p><p>These are the default values for blend state.</p><table> <tr><th>State</th><th>Default Value</th></tr> <tr><td>AlphaToCoverageEnable</td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td>BlendEnable[8]</td><td><see cref="F:SharpDX.Result.False" /> (for all 8)</td></tr> <tr><td>SrcBlend</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.One" /></td></tr> <tr><td>DestBlend</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.Zero" /></td></tr> <tr><td>BlendOp</td><td><see cref="F:SharpDX.Direct3D10.BlendOperation.Add" /></td></tr> <tr><td>SrcBlendAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.One" /></td></tr> <tr><td>DestBlendAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.Zero" /></td></tr> <tr><td>BlendOpAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOperation.Add" /></td></tr> <tr><td>RenderTargetWriteMask[8]</td><td><see cref="F:SharpDX.Direct3D10.ColorWriteMaskFlags.All" /> (for all 8)</td></tr> </table><p>?</p>
  6800. </remarks>
  6801. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND']/*" />
  6802. <msdn-id>bb204893</msdn-id>
  6803. <unmanaged>D3D10_BLEND</unmanaged>
  6804. <unmanaged-short>D3D10_BLEND</unmanaged-short>
  6805. </member>
  6806. <member name="F:SharpDX.Direct3D10.BlendOption.Zero">
  6807. <summary>
  6808. <dd> <p>Determines whether or not to use alpha-to-coverage as a multisampling technique when setting a pixel to a rendertarget.</p> </dd>
  6809. </summary>
  6810. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_ZERO']/*" />
  6811. <msdn-id>bb204893</msdn-id>
  6812. <unmanaged>D3D10_BLEND_ZERO</unmanaged>
  6813. <unmanaged-short>D3D10_BLEND_ZERO</unmanaged-short>
  6814. </member>
  6815. <member name="F:SharpDX.Direct3D10.BlendOption.One">
  6816. <summary>
  6817. <dd> <p>Enable (or disable) blending. There are eight elements in this array; these correspond to the eight rendertargets that can be set to output-merger stage at one time.</p> </dd>
  6818. </summary>
  6819. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_ONE']/*" />
  6820. <msdn-id>bb204893</msdn-id>
  6821. <unmanaged>D3D10_BLEND_ONE</unmanaged>
  6822. <unmanaged-short>D3D10_BLEND_ONE</unmanaged-short>
  6823. </member>
  6824. <member name="F:SharpDX.Direct3D10.BlendOption.SourceColor">
  6825. <summary>
  6826. <dd> <p>This <strong>blend option</strong> specifies the first RGB data source and includes an optional pre-blend operation.</p> </dd>
  6827. </summary>
  6828. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_SRC_COLOR']/*" />
  6829. <msdn-id>bb204893</msdn-id>
  6830. <unmanaged>D3D10_BLEND_SRC_COLOR</unmanaged>
  6831. <unmanaged-short>D3D10_BLEND_SRC_COLOR</unmanaged-short>
  6832. </member>
  6833. <member name="F:SharpDX.Direct3D10.BlendOption.InverseSourceColor">
  6834. <summary>
  6835. <dd> <p>This <strong>blend option</strong> specifies the second RGB data source and includes an optional pre-blend operation.</p> </dd>
  6836. </summary>
  6837. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_INV_SRC_COLOR']/*" />
  6838. <msdn-id>bb204893</msdn-id>
  6839. <unmanaged>D3D10_BLEND_INV_SRC_COLOR</unmanaged>
  6840. <unmanaged-short>D3D10_BLEND_INV_SRC_COLOR</unmanaged-short>
  6841. </member>
  6842. <member name="F:SharpDX.Direct3D10.BlendOption.SourceAlpha">
  6843. <summary>
  6844. <dd> <p>This <strong>blend operation</strong> defines how to combine the RGB data sources.</p> </dd>
  6845. </summary>
  6846. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_SRC_ALPHA']/*" />
  6847. <msdn-id>bb204893</msdn-id>
  6848. <unmanaged>D3D10_BLEND_SRC_ALPHA</unmanaged>
  6849. <unmanaged-short>D3D10_BLEND_SRC_ALPHA</unmanaged-short>
  6850. </member>
  6851. <member name="F:SharpDX.Direct3D10.BlendOption.InverseSourceAlpha">
  6852. <summary>
  6853. <dd> <p>This <strong>blend option</strong> specifies the first alpha data source and includes an optional pre-blend operation. Blend options that end in _COLOR are not allowed.</p> </dd>
  6854. </summary>
  6855. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_INV_SRC_ALPHA']/*" />
  6856. <msdn-id>bb204893</msdn-id>
  6857. <unmanaged>D3D10_BLEND_INV_SRC_ALPHA</unmanaged>
  6858. <unmanaged-short>D3D10_BLEND_INV_SRC_ALPHA</unmanaged-short>
  6859. </member>
  6860. <member name="F:SharpDX.Direct3D10.BlendOption.DestinationAlpha">
  6861. <summary>
  6862. <dd> <p>This <strong>blend option</strong> specifies the second alpha data source and includes an optional pre-blend operation. Blend options that end in _COLOR are not allowed.</p> </dd>
  6863. </summary>
  6864. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DEST_ALPHA']/*" />
  6865. <msdn-id>bb204893</msdn-id>
  6866. <unmanaged>D3D10_BLEND_DEST_ALPHA</unmanaged>
  6867. <unmanaged-short>D3D10_BLEND_DEST_ALPHA</unmanaged-short>
  6868. </member>
  6869. <member name="F:SharpDX.Direct3D10.BlendOption.InverseDestinationAlpha">
  6870. <summary>
  6871. <dd> <p>This <strong>blend operation</strong> defines how to combine the alpha data sources.</p> </dd>
  6872. </summary>
  6873. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_INV_DEST_ALPHA']/*" />
  6874. <msdn-id>bb204893</msdn-id>
  6875. <unmanaged>D3D10_BLEND_INV_DEST_ALPHA</unmanaged>
  6876. <unmanaged-short>D3D10_BLEND_INV_DEST_ALPHA</unmanaged-short>
  6877. </member>
  6878. <member name="F:SharpDX.Direct3D10.BlendOption.DestinationColor">
  6879. <summary>
  6880. <dd> <p>A per-pixel write mask that allows control over which components can be written (see <strong><see cref="T:SharpDX.Direct3D10.ColorWriteMaskFlags" /></strong>).</p> </dd>
  6881. </summary>
  6882. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DEST_COLOR']/*" />
  6883. <msdn-id>bb204893</msdn-id>
  6884. <unmanaged>D3D10_BLEND_DEST_COLOR</unmanaged>
  6885. <unmanaged-short>D3D10_BLEND_DEST_COLOR</unmanaged-short>
  6886. </member>
  6887. <member name="F:SharpDX.Direct3D10.BlendOption.InverseDestinationColor">
  6888. <summary>
  6889. No documentation.
  6890. </summary>
  6891. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_INV_DEST_COLOR']/*" />
  6892. <msdn-id>bb204893</msdn-id>
  6893. <unmanaged>D3D10_BLEND_INV_DEST_COLOR</unmanaged>
  6894. <unmanaged-short>D3D10_BLEND_INV_DEST_COLOR</unmanaged-short>
  6895. </member>
  6896. <member name="F:SharpDX.Direct3D10.BlendOption.SourceAlphaSaturate">
  6897. <summary>
  6898. No documentation.
  6899. </summary>
  6900. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_SRC_ALPHA_SAT']/*" />
  6901. <msdn-id>bb204893</msdn-id>
  6902. <unmanaged>D3D10_BLEND_SRC_ALPHA_SAT</unmanaged>
  6903. <unmanaged-short>D3D10_BLEND_SRC_ALPHA_SAT</unmanaged-short>
  6904. </member>
  6905. <member name="F:SharpDX.Direct3D10.BlendOption.BlendFactor">
  6906. <summary>
  6907. No documentation.
  6908. </summary>
  6909. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_BLEND_FACTOR']/*" />
  6910. <msdn-id>bb204893</msdn-id>
  6911. <unmanaged>D3D10_BLEND_BLEND_FACTOR</unmanaged>
  6912. <unmanaged-short>D3D10_BLEND_BLEND_FACTOR</unmanaged-short>
  6913. </member>
  6914. <member name="F:SharpDX.Direct3D10.BlendOption.InverseBlendFactor">
  6915. <summary>
  6916. No documentation.
  6917. </summary>
  6918. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_INV_BLEND_FACTOR']/*" />
  6919. <msdn-id>bb204893</msdn-id>
  6920. <unmanaged>D3D10_BLEND_INV_BLEND_FACTOR</unmanaged>
  6921. <unmanaged-short>D3D10_BLEND_INV_BLEND_FACTOR</unmanaged-short>
  6922. </member>
  6923. <member name="F:SharpDX.Direct3D10.BlendOption.SecondarySourceColor">
  6924. <summary>
  6925. No documentation.
  6926. </summary>
  6927. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_SRC1_COLOR']/*" />
  6928. <msdn-id>bb204893</msdn-id>
  6929. <unmanaged>D3D10_BLEND_SRC1_COLOR</unmanaged>
  6930. <unmanaged-short>D3D10_BLEND_SRC1_COLOR</unmanaged-short>
  6931. </member>
  6932. <member name="F:SharpDX.Direct3D10.BlendOption.InverseSecondarySourceColor">
  6933. <summary>
  6934. No documentation.
  6935. </summary>
  6936. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_INV_SRC1_COLOR']/*" />
  6937. <msdn-id>bb204893</msdn-id>
  6938. <unmanaged>D3D10_BLEND_INV_SRC1_COLOR</unmanaged>
  6939. <unmanaged-short>D3D10_BLEND_INV_SRC1_COLOR</unmanaged-short>
  6940. </member>
  6941. <member name="F:SharpDX.Direct3D10.BlendOption.SecondarySourceAlpha">
  6942. <summary>
  6943. No documentation.
  6944. </summary>
  6945. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_SRC1_ALPHA']/*" />
  6946. <msdn-id>bb204893</msdn-id>
  6947. <unmanaged>D3D10_BLEND_SRC1_ALPHA</unmanaged>
  6948. <unmanaged-short>D3D10_BLEND_SRC1_ALPHA</unmanaged-short>
  6949. </member>
  6950. <member name="F:SharpDX.Direct3D10.BlendOption.InverseSecondarySourceAlpha">
  6951. <summary>
  6952. No documentation.
  6953. </summary>
  6954. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_INV_SRC1_ALPHA']/*" />
  6955. <msdn-id>bb204893</msdn-id>
  6956. <unmanaged>D3D10_BLEND_INV_SRC1_ALPHA</unmanaged>
  6957. <unmanaged-short>D3D10_BLEND_INV_SRC1_ALPHA</unmanaged-short>
  6958. </member>
  6959. <member name="T:SharpDX.Direct3D10.Channel">
  6960. <summary>
  6961. <p>These flags are used by functions which operate on one or more channels in a texture.</p>
  6962. </summary>
  6963. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_CHANNEL_FLAG']/*" />
  6964. <msdn-id>bb172690</msdn-id>
  6965. <unmanaged>D3DX10_CHANNEL_FLAG</unmanaged>
  6966. <unmanaged-short>D3DX10_CHANNEL_FLAG</unmanaged-short>
  6967. </member>
  6968. <member name="F:SharpDX.Direct3D10.Channel.Red">
  6969. <summary>
  6970. <dd> <p>Indicates the red channel should be used.</p> </dd>
  6971. </summary>
  6972. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_CHANNEL_RED']/*" />
  6973. <msdn-id>bb172690</msdn-id>
  6974. <unmanaged>D3DX10_CHANNEL_RED</unmanaged>
  6975. <unmanaged-short>D3DX10_CHANNEL_RED</unmanaged-short>
  6976. </member>
  6977. <member name="F:SharpDX.Direct3D10.Channel.Blue">
  6978. <summary>
  6979. <dd> <p>Indicates the blue channel should be used.</p> </dd>
  6980. </summary>
  6981. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_CHANNEL_BLUE']/*" />
  6982. <msdn-id>bb172690</msdn-id>
  6983. <unmanaged>D3DX10_CHANNEL_BLUE</unmanaged>
  6984. <unmanaged-short>D3DX10_CHANNEL_BLUE</unmanaged-short>
  6985. </member>
  6986. <member name="F:SharpDX.Direct3D10.Channel.Green">
  6987. <summary>
  6988. <dd> <p>Indicates the green channel should be used.</p> </dd>
  6989. </summary>
  6990. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_CHANNEL_GREEN']/*" />
  6991. <msdn-id>bb172690</msdn-id>
  6992. <unmanaged>D3DX10_CHANNEL_GREEN</unmanaged>
  6993. <unmanaged-short>D3DX10_CHANNEL_GREEN</unmanaged-short>
  6994. </member>
  6995. <member name="F:SharpDX.Direct3D10.Channel.Alpha">
  6996. <summary>
  6997. <dd> <p>Indicates the alpha channel should be used.</p> </dd>
  6998. </summary>
  6999. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_CHANNEL_ALPHA']/*" />
  7000. <msdn-id>bb172690</msdn-id>
  7001. <unmanaged>D3DX10_CHANNEL_ALPHA</unmanaged>
  7002. <unmanaged-short>D3DX10_CHANNEL_ALPHA</unmanaged-short>
  7003. </member>
  7004. <member name="F:SharpDX.Direct3D10.Channel.Luminance">
  7005. <summary>
  7006. <dd> <p>Indicates the luminaces of the red, green, and blue channels should be used.</p> </dd>
  7007. </summary>
  7008. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_CHANNEL_LUMINANCE']/*" />
  7009. <msdn-id>bb172690</msdn-id>
  7010. <unmanaged>D3DX10_CHANNEL_LUMINANCE</unmanaged>
  7011. <unmanaged-short>D3DX10_CHANNEL_LUMINANCE</unmanaged-short>
  7012. </member>
  7013. <member name="F:SharpDX.Direct3D10.Channel.None">
  7014. <summary>
  7015. None.
  7016. </summary>
  7017. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  7018. <unmanaged>None</unmanaged>
  7019. <unmanaged-short>None</unmanaged-short>
  7020. </member>
  7021. <member name="T:SharpDX.Direct3D10.ColorWriteMaskFlags">
  7022. <summary>
  7023. <p>Identify which components of each pixel of a render target are writable during blending.</p>
  7024. </summary>
  7025. <remarks>
  7026. <p>These flags can be combined with a bitwise OR.</p>
  7027. </remarks>
  7028. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COLOR_WRITE_ENABLE']/*" />
  7029. <msdn-id>bb204901</msdn-id>
  7030. <unmanaged>D3D10_COLOR_WRITE_ENABLE</unmanaged>
  7031. <unmanaged-short>D3D10_COLOR_WRITE_ENABLE</unmanaged-short>
  7032. </member>
  7033. <member name="F:SharpDX.Direct3D10.ColorWriteMaskFlags.Red">
  7034. <summary>
  7035. No documentation.
  7036. </summary>
  7037. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COLOR_WRITE_ENABLE_RED']/*" />
  7038. <msdn-id>bb204901</msdn-id>
  7039. <unmanaged>D3D10_COLOR_WRITE_ENABLE_RED</unmanaged>
  7040. <unmanaged-short>D3D10_COLOR_WRITE_ENABLE_RED</unmanaged-short>
  7041. </member>
  7042. <member name="F:SharpDX.Direct3D10.ColorWriteMaskFlags.Green">
  7043. <summary>
  7044. No documentation.
  7045. </summary>
  7046. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COLOR_WRITE_ENABLE_GREEN']/*" />
  7047. <msdn-id>bb204901</msdn-id>
  7048. <unmanaged>D3D10_COLOR_WRITE_ENABLE_GREEN</unmanaged>
  7049. <unmanaged-short>D3D10_COLOR_WRITE_ENABLE_GREEN</unmanaged-short>
  7050. </member>
  7051. <member name="F:SharpDX.Direct3D10.ColorWriteMaskFlags.Blue">
  7052. <summary>
  7053. No documentation.
  7054. </summary>
  7055. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COLOR_WRITE_ENABLE_BLUE']/*" />
  7056. <msdn-id>bb204901</msdn-id>
  7057. <unmanaged>D3D10_COLOR_WRITE_ENABLE_BLUE</unmanaged>
  7058. <unmanaged-short>D3D10_COLOR_WRITE_ENABLE_BLUE</unmanaged-short>
  7059. </member>
  7060. <member name="F:SharpDX.Direct3D10.ColorWriteMaskFlags.Alpha">
  7061. <summary>
  7062. No documentation.
  7063. </summary>
  7064. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COLOR_WRITE_ENABLE_ALPHA']/*" />
  7065. <msdn-id>bb204901</msdn-id>
  7066. <unmanaged>D3D10_COLOR_WRITE_ENABLE_ALPHA</unmanaged>
  7067. <unmanaged-short>D3D10_COLOR_WRITE_ENABLE_ALPHA</unmanaged-short>
  7068. </member>
  7069. <member name="F:SharpDX.Direct3D10.ColorWriteMaskFlags.All">
  7070. <summary>
  7071. No documentation.
  7072. </summary>
  7073. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COLOR_WRITE_ENABLE_ALL']/*" />
  7074. <msdn-id>bb204901</msdn-id>
  7075. <unmanaged>D3D10_COLOR_WRITE_ENABLE_ALL</unmanaged>
  7076. <unmanaged-short>D3D10_COLOR_WRITE_ENABLE_ALL</unmanaged-short>
  7077. </member>
  7078. <member name="T:SharpDX.Direct3D10.Comparison">
  7079. <summary>
  7080. <p>Comparison options.</p>
  7081. </summary>
  7082. <remarks>
  7083. <p>A comparison option determines whether how the runtime compares source (new) data against destination (existing) data before storing the new data. The comparison option is declared in a description before an object is created. The API allows you to set a comparison option for a depth-stencil buffer (see <strong><see cref="T:SharpDX.Direct3D10.DepthStencilStateDescription" /></strong>), depth-stencil operations (see <strong><see cref="T:SharpDX.Direct3D10.DepthStencilOperationDescription" /></strong>), or sampler state (see <strong><see cref="T:SharpDX.Direct3D10.SamplerStateDescription" /></strong>).</p>
  7084. </remarks>
  7085. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COMPARISON_FUNC']/*" />
  7086. <msdn-id>bb204902</msdn-id>
  7087. <unmanaged>D3D10_COMPARISON_FUNC</unmanaged>
  7088. <unmanaged-short>D3D10_COMPARISON_FUNC</unmanaged-short>
  7089. </member>
  7090. <member name="F:SharpDX.Direct3D10.Comparison.Never">
  7091. <summary>
  7092. <dd> <p>Never pass the comparison.</p> </dd>
  7093. </summary>
  7094. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COMPARISON_NEVER']/*" />
  7095. <msdn-id>bb204902</msdn-id>
  7096. <unmanaged>D3D10_COMPARISON_NEVER</unmanaged>
  7097. <unmanaged-short>D3D10_COMPARISON_NEVER</unmanaged-short>
  7098. </member>
  7099. <member name="F:SharpDX.Direct3D10.Comparison.Less">
  7100. <summary>
  7101. <dd> <p>If the source data is less than the destination data, the comparison passes.</p> </dd>
  7102. </summary>
  7103. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COMPARISON_LESS']/*" />
  7104. <msdn-id>bb204902</msdn-id>
  7105. <unmanaged>D3D10_COMPARISON_LESS</unmanaged>
  7106. <unmanaged-short>D3D10_COMPARISON_LESS</unmanaged-short>
  7107. </member>
  7108. <member name="F:SharpDX.Direct3D10.Comparison.Equal">
  7109. <summary>
  7110. <dd> <p>If the source data is equal to the destination data, the comparison passes.</p> </dd>
  7111. </summary>
  7112. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COMPARISON_EQUAL']/*" />
  7113. <msdn-id>bb204902</msdn-id>
  7114. <unmanaged>D3D10_COMPARISON_EQUAL</unmanaged>
  7115. <unmanaged-short>D3D10_COMPARISON_EQUAL</unmanaged-short>
  7116. </member>
  7117. <member name="F:SharpDX.Direct3D10.Comparison.LessEqual">
  7118. <summary>
  7119. <dd> <p>If the source data is less than or equal to the destination data, the comparison passes.</p> </dd>
  7120. </summary>
  7121. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COMPARISON_LESS_EQUAL']/*" />
  7122. <msdn-id>bb204902</msdn-id>
  7123. <unmanaged>D3D10_COMPARISON_LESS_EQUAL</unmanaged>
  7124. <unmanaged-short>D3D10_COMPARISON_LESS_EQUAL</unmanaged-short>
  7125. </member>
  7126. <member name="F:SharpDX.Direct3D10.Comparison.Greater">
  7127. <summary>
  7128. <dd> <p>If the source data is greater than the destination data, the comparison passes.</p> </dd>
  7129. </summary>
  7130. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COMPARISON_GREATER']/*" />
  7131. <msdn-id>bb204902</msdn-id>
  7132. <unmanaged>D3D10_COMPARISON_GREATER</unmanaged>
  7133. <unmanaged-short>D3D10_COMPARISON_GREATER</unmanaged-short>
  7134. </member>
  7135. <member name="F:SharpDX.Direct3D10.Comparison.NotEqual">
  7136. <summary>
  7137. <dd> <p>If the source data is not equal to the destination data, the comparison passes.</p> </dd>
  7138. </summary>
  7139. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COMPARISON_NOT_EQUAL']/*" />
  7140. <msdn-id>bb204902</msdn-id>
  7141. <unmanaged>D3D10_COMPARISON_NOT_EQUAL</unmanaged>
  7142. <unmanaged-short>D3D10_COMPARISON_NOT_EQUAL</unmanaged-short>
  7143. </member>
  7144. <member name="F:SharpDX.Direct3D10.Comparison.GreaterEqual">
  7145. <summary>
  7146. <dd> <p>If the source data is greater than or equal to the destination data, the comparison passes.</p> </dd>
  7147. </summary>
  7148. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COMPARISON_GREATER_EQUAL']/*" />
  7149. <msdn-id>bb204902</msdn-id>
  7150. <unmanaged>D3D10_COMPARISON_GREATER_EQUAL</unmanaged>
  7151. <unmanaged-short>D3D10_COMPARISON_GREATER_EQUAL</unmanaged-short>
  7152. </member>
  7153. <member name="F:SharpDX.Direct3D10.Comparison.Always">
  7154. <summary>
  7155. <dd> <p>Always pass the comparison.</p> </dd>
  7156. </summary>
  7157. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COMPARISON_ALWAYS']/*" />
  7158. <msdn-id>bb204902</msdn-id>
  7159. <unmanaged>D3D10_COMPARISON_ALWAYS</unmanaged>
  7160. <unmanaged-short>D3D10_COMPARISON_ALWAYS</unmanaged-short>
  7161. </member>
  7162. <member name="T:SharpDX.Direct3D10.CounterKind">
  7163. <summary>
  7164. <p>Performance counter types.</p>
  7165. </summary>
  7166. <remarks>
  7167. <p>In addition to these performance counters, independent hardware vendors may define their own set of performance counters for their devices. The enum values for these counters would start after <see cref="F:SharpDX.Direct3D10.CounterKind.DeviceDependent0" /> and would be defined by those hardware vendors.</p><p>A device can support one or more of these performance counters, but it is not required to support any of them.</p>
  7168. </remarks>
  7169. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER']/*" />
  7170. <msdn-id>bb204904</msdn-id>
  7171. <unmanaged>D3D10_COUNTER</unmanaged>
  7172. <unmanaged-short>D3D10_COUNTER</unmanaged-short>
  7173. </member>
  7174. <member name="F:SharpDX.Direct3D10.CounterKind.GpuIdle">
  7175. <summary>
  7176. <dd> <p>Percentage of the time that the GPU is idle.</p> </dd>
  7177. </summary>
  7178. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_GPU_IDLE']/*" />
  7179. <msdn-id>bb204904</msdn-id>
  7180. <unmanaged>D3D10_COUNTER_GPU_IDLE</unmanaged>
  7181. <unmanaged-short>D3D10_COUNTER_GPU_IDLE</unmanaged-short>
  7182. </member>
  7183. <member name="F:SharpDX.Direct3D10.CounterKind.VertexProcessing">
  7184. <summary>
  7185. <dd> <p>Percentage of the time that the GPU does vertex processing.</p> </dd>
  7186. </summary>
  7187. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_VERTEX_PROCESSING']/*" />
  7188. <msdn-id>bb204904</msdn-id>
  7189. <unmanaged>D3D10_COUNTER_VERTEX_PROCESSING</unmanaged>
  7190. <unmanaged-short>D3D10_COUNTER_VERTEX_PROCESSING</unmanaged-short>
  7191. </member>
  7192. <member name="F:SharpDX.Direct3D10.CounterKind.GeometryProcessing">
  7193. <summary>
  7194. <dd> <p>Percentage of the time that the GPU does geometry processing.</p> </dd>
  7195. </summary>
  7196. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_GEOMETRY_PROCESSING']/*" />
  7197. <msdn-id>bb204904</msdn-id>
  7198. <unmanaged>D3D10_COUNTER_GEOMETRY_PROCESSING</unmanaged>
  7199. <unmanaged-short>D3D10_COUNTER_GEOMETRY_PROCESSING</unmanaged-short>
  7200. </member>
  7201. <member name="F:SharpDX.Direct3D10.CounterKind.PixelProcessing">
  7202. <summary>
  7203. <dd> <p>Percentage of the time that the GPU does pixel processing.</p> </dd>
  7204. </summary>
  7205. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_PIXEL_PROCESSING']/*" />
  7206. <msdn-id>bb204904</msdn-id>
  7207. <unmanaged>D3D10_COUNTER_PIXEL_PROCESSING</unmanaged>
  7208. <unmanaged-short>D3D10_COUNTER_PIXEL_PROCESSING</unmanaged-short>
  7209. </member>
  7210. <member name="F:SharpDX.Direct3D10.CounterKind.OtherGpuProcessing">
  7211. <summary>
  7212. <dd> <p>Percentage of the time that the GPU does other processing (not vertex, geometry, or pixel processing).</p> </dd>
  7213. </summary>
  7214. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_OTHER_GPU_PROCESSING']/*" />
  7215. <msdn-id>bb204904</msdn-id>
  7216. <unmanaged>D3D10_COUNTER_OTHER_GPU_PROCESSING</unmanaged>
  7217. <unmanaged-short>D3D10_COUNTER_OTHER_GPU_PROCESSING</unmanaged-short>
  7218. </member>
  7219. <member name="F:SharpDX.Direct3D10.CounterKind.HostAdapterBandwidthUtilization">
  7220. <summary>
  7221. <dd> <p>Percentage of bandwidth used on a host adapter. Value returned by <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> between 0.0 and 1.0 when using this counter.</p> </dd>
  7222. </summary>
  7223. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_HOST_ADAPTER_BANDWIDTH_UTILIZATION']/*" />
  7224. <msdn-id>bb204904</msdn-id>
  7225. <unmanaged>D3D10_COUNTER_HOST_ADAPTER_BANDWIDTH_UTILIZATION</unmanaged>
  7226. <unmanaged-short>D3D10_COUNTER_HOST_ADAPTER_BANDWIDTH_UTILIZATION</unmanaged-short>
  7227. </member>
  7228. <member name="F:SharpDX.Direct3D10.CounterKind.LocalVidmemBandwidthUtilization">
  7229. <summary>
  7230. <dd> <p>Percentage of bandwidth used by the local video memory. Value returned by <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> between 0.0 and 1.0 when using this counter</p> </dd>
  7231. </summary>
  7232. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_LOCAL_VIDMEM_BANDWIDTH_UTILIZATION']/*" />
  7233. <msdn-id>bb204904</msdn-id>
  7234. <unmanaged>D3D10_COUNTER_LOCAL_VIDMEM_BANDWIDTH_UTILIZATION</unmanaged>
  7235. <unmanaged-short>D3D10_COUNTER_LOCAL_VIDMEM_BANDWIDTH_UTILIZATION</unmanaged-short>
  7236. </member>
  7237. <member name="F:SharpDX.Direct3D10.CounterKind.VertexThroughputUtilization">
  7238. <summary>
  7239. <dd> <p>Percentage of throughput used for vertices. Value returned by <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> between 0.0 and 1.0 when using this counter</p> </dd>
  7240. </summary>
  7241. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_VERTEX_THROUGHPUT_UTILIZATION']/*" />
  7242. <msdn-id>bb204904</msdn-id>
  7243. <unmanaged>D3D10_COUNTER_VERTEX_THROUGHPUT_UTILIZATION</unmanaged>
  7244. <unmanaged-short>D3D10_COUNTER_VERTEX_THROUGHPUT_UTILIZATION</unmanaged-short>
  7245. </member>
  7246. <member name="F:SharpDX.Direct3D10.CounterKind.TriangleSetupThroughputUtilization">
  7247. <summary>
  7248. <dd> <p>Percentage of throughput used for triangle setup. Value returned by <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> between 0.0 and 1.0 when using this counter</p> </dd>
  7249. </summary>
  7250. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_TRIANGLE_SETUP_THROUGHPUT_UTILIZATION']/*" />
  7251. <msdn-id>bb204904</msdn-id>
  7252. <unmanaged>D3D10_COUNTER_TRIANGLE_SETUP_THROUGHPUT_UTILIZATION</unmanaged>
  7253. <unmanaged-short>D3D10_COUNTER_TRIANGLE_SETUP_THROUGHPUT_UTILIZATION</unmanaged-short>
  7254. </member>
  7255. <member name="F:SharpDX.Direct3D10.CounterKind.FillrateThroughputUtilization">
  7256. <summary>
  7257. <dd> <p>Percentage of throughput used for the fillrate. Value returned by <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> between 0.0 and 1.0 when using this counter.</p> </dd>
  7258. </summary>
  7259. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_FILLRATE_THROUGHPUT_UTILIZATION']/*" />
  7260. <msdn-id>bb204904</msdn-id>
  7261. <unmanaged>D3D10_COUNTER_FILLRATE_THROUGHPUT_UTILIZATION</unmanaged>
  7262. <unmanaged-short>D3D10_COUNTER_FILLRATE_THROUGHPUT_UTILIZATION</unmanaged-short>
  7263. </member>
  7264. <member name="F:SharpDX.Direct3D10.CounterKind.VertexShaderMemoryLimited">
  7265. <summary>
  7266. <dd> <p>Percentage of time that a vertex shader spends sampling resources.</p> </dd>
  7267. </summary>
  7268. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_VS_MEMORY_LIMITED']/*" />
  7269. <msdn-id>bb204904</msdn-id>
  7270. <unmanaged>D3D10_COUNTER_VS_MEMORY_LIMITED</unmanaged>
  7271. <unmanaged-short>D3D10_COUNTER_VS_MEMORY_LIMITED</unmanaged-short>
  7272. </member>
  7273. <member name="F:SharpDX.Direct3D10.CounterKind.VertexShaderComputationLimited">
  7274. <summary>
  7275. <dd> <p>Percentage of time that a vertex shader spends doing computations.</p> </dd>
  7276. </summary>
  7277. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_VS_COMPUTATION_LIMITED']/*" />
  7278. <msdn-id>bb204904</msdn-id>
  7279. <unmanaged>D3D10_COUNTER_VS_COMPUTATION_LIMITED</unmanaged>
  7280. <unmanaged-short>D3D10_COUNTER_VS_COMPUTATION_LIMITED</unmanaged-short>
  7281. </member>
  7282. <member name="F:SharpDX.Direct3D10.CounterKind.GeometryShaderMemoryLimited">
  7283. <summary>
  7284. <dd> <p>Percentage of time that a geometry shader spends sampling resources.</p> </dd>
  7285. </summary>
  7286. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_GS_MEMORY_LIMITED']/*" />
  7287. <msdn-id>bb204904</msdn-id>
  7288. <unmanaged>D3D10_COUNTER_GS_MEMORY_LIMITED</unmanaged>
  7289. <unmanaged-short>D3D10_COUNTER_GS_MEMORY_LIMITED</unmanaged-short>
  7290. </member>
  7291. <member name="F:SharpDX.Direct3D10.CounterKind.GeometryShaderComputationLimited">
  7292. <summary>
  7293. <dd> <p>Percentage of time that a geometry shader spends doing computations.</p> </dd>
  7294. </summary>
  7295. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_GS_COMPUTATION_LIMITED']/*" />
  7296. <msdn-id>bb204904</msdn-id>
  7297. <unmanaged>D3D10_COUNTER_GS_COMPUTATION_LIMITED</unmanaged>
  7298. <unmanaged-short>D3D10_COUNTER_GS_COMPUTATION_LIMITED</unmanaged-short>
  7299. </member>
  7300. <member name="F:SharpDX.Direct3D10.CounterKind.PixelShaderMemoryLimited">
  7301. <summary>
  7302. <dd> <p>Percentage of time that a pixel shader spends sampling resources.</p> </dd>
  7303. </summary>
  7304. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_PS_MEMORY_LIMITED']/*" />
  7305. <msdn-id>bb204904</msdn-id>
  7306. <unmanaged>D3D10_COUNTER_PS_MEMORY_LIMITED</unmanaged>
  7307. <unmanaged-short>D3D10_COUNTER_PS_MEMORY_LIMITED</unmanaged-short>
  7308. </member>
  7309. <member name="F:SharpDX.Direct3D10.CounterKind.PixelShaderComputationLimited">
  7310. <summary>
  7311. <dd> <p>Percentage of time that a pixel shader spends doing computations.</p> </dd>
  7312. </summary>
  7313. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_PS_COMPUTATION_LIMITED']/*" />
  7314. <msdn-id>bb204904</msdn-id>
  7315. <unmanaged>D3D10_COUNTER_PS_COMPUTATION_LIMITED</unmanaged>
  7316. <unmanaged-short>D3D10_COUNTER_PS_COMPUTATION_LIMITED</unmanaged-short>
  7317. </member>
  7318. <member name="F:SharpDX.Direct3D10.CounterKind.PostTransformCacheHitRate">
  7319. <summary>
  7320. <dd> <p>Percentage of vertex data that was read from the vertex cache. For example, if 6 vertices were added to the cache and 3 of them were read from the cache, then the hit rate would be 0.5.</p> </dd>
  7321. </summary>
  7322. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_POST_TRANSFORM_CACHE_HIT_RATE']/*" />
  7323. <msdn-id>bb204904</msdn-id>
  7324. <unmanaged>D3D10_COUNTER_POST_TRANSFORM_CACHE_HIT_RATE</unmanaged>
  7325. <unmanaged-short>D3D10_COUNTER_POST_TRANSFORM_CACHE_HIT_RATE</unmanaged-short>
  7326. </member>
  7327. <member name="F:SharpDX.Direct3D10.CounterKind.TextureCacheHitRate">
  7328. <summary>
  7329. <dd> <p>Percentage of texel data that was read from the vertex cache. For example, if 6 texels were added to the cache and 3 of them were read from the cache, then the hit rate would be 0.5.</p> </dd>
  7330. </summary>
  7331. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_TEXTURE_CACHE_HIT_RATE']/*" />
  7332. <msdn-id>bb204904</msdn-id>
  7333. <unmanaged>D3D10_COUNTER_TEXTURE_CACHE_HIT_RATE</unmanaged>
  7334. <unmanaged-short>D3D10_COUNTER_TEXTURE_CACHE_HIT_RATE</unmanaged-short>
  7335. </member>
  7336. <member name="F:SharpDX.Direct3D10.CounterKind.DeviceDependent0">
  7337. <summary>
  7338. <dd> <p>Start of the device-dependent counters. See remarks.</p> </dd>
  7339. </summary>
  7340. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_DEVICE_DEPENDENT_0']/*" />
  7341. <msdn-id>bb204904</msdn-id>
  7342. <unmanaged>D3D10_COUNTER_DEVICE_DEPENDENT_0</unmanaged>
  7343. <unmanaged-short>D3D10_COUNTER_DEVICE_DEPENDENT_0</unmanaged-short>
  7344. </member>
  7345. <member name="T:SharpDX.Direct3D10.CounterType">
  7346. <summary>
  7347. <p>Data type of a performance counter.</p>
  7348. </summary>
  7349. <remarks>
  7350. <p>These flags are an output parameter in <strong><see cref="M:SharpDX.Direct3D10.Device.CheckCounter(SharpDX.Direct3D10.CounterDescription,SharpDX.Direct3D10.CounterType@,System.Int32@,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)" /></strong>.</p>
  7351. </remarks>
  7352. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_TYPE']/*" />
  7353. <msdn-id>bb204907</msdn-id>
  7354. <unmanaged>D3D10_COUNTER_TYPE</unmanaged>
  7355. <unmanaged-short>D3D10_COUNTER_TYPE</unmanaged-short>
  7356. </member>
  7357. <member name="F:SharpDX.Direct3D10.CounterType.Float32">
  7358. <summary>
  7359. <dd> <p>32-bit floating point.</p> </dd>
  7360. </summary>
  7361. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_TYPE_FLOAT32']/*" />
  7362. <msdn-id>bb204907</msdn-id>
  7363. <unmanaged>D3D10_COUNTER_TYPE_FLOAT32</unmanaged>
  7364. <unmanaged-short>D3D10_COUNTER_TYPE_FLOAT32</unmanaged-short>
  7365. </member>
  7366. <member name="F:SharpDX.Direct3D10.CounterType.UInt16">
  7367. <summary>
  7368. <dd> <p>16-bit unsigned integer.</p> </dd>
  7369. </summary>
  7370. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_TYPE_UINT16']/*" />
  7371. <msdn-id>bb204907</msdn-id>
  7372. <unmanaged>D3D10_COUNTER_TYPE_UINT16</unmanaged>
  7373. <unmanaged-short>D3D10_COUNTER_TYPE_UINT16</unmanaged-short>
  7374. </member>
  7375. <member name="F:SharpDX.Direct3D10.CounterType.UInt32">
  7376. <summary>
  7377. <dd> <p>32-bit unsigned integer.</p> </dd>
  7378. </summary>
  7379. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_TYPE_UINT32']/*" />
  7380. <msdn-id>bb204907</msdn-id>
  7381. <unmanaged>D3D10_COUNTER_TYPE_UINT32</unmanaged>
  7382. <unmanaged-short>D3D10_COUNTER_TYPE_UINT32</unmanaged-short>
  7383. </member>
  7384. <member name="F:SharpDX.Direct3D10.CounterType.UInt64">
  7385. <summary>
  7386. <dd> <p>64-bit unsigned integer.</p> </dd>
  7387. </summary>
  7388. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_TYPE_UINT64']/*" />
  7389. <msdn-id>bb204907</msdn-id>
  7390. <unmanaged>D3D10_COUNTER_TYPE_UINT64</unmanaged>
  7391. <unmanaged-short>D3D10_COUNTER_TYPE_UINT64</unmanaged-short>
  7392. </member>
  7393. <member name="T:SharpDX.Direct3D10.CpuAccessFlags">
  7394. <summary>
  7395. <p>Specifies the types of CPU access allowed for a resource.</p>
  7396. </summary>
  7397. <remarks>
  7398. <p>This enumeration is used in <strong><see cref="T:SharpDX.Direct3D10.BufferDescription" /></strong>, <strong><see cref="T:SharpDX.Direct3D10.Texture1DDescription" /></strong>, <strong><see cref="T:SharpDX.Direct3D10.Texture2DDescription" /></strong>, <strong><see cref="T:SharpDX.Direct3D10.Texture3DDescription" /></strong>, and <strong><see cref="T:SharpDX.Direct3D10.ImageLoadInformation" /></strong>. See Creating Buffer Resources (Direct3D 10) for more details.</p><p>Applications can combine one or more of these flags with a bitwise OR. When possible, create resources with no CPU access flags, as this enables better resource optimization.</p>
  7399. </remarks>
  7400. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CPU_ACCESS_FLAG']/*" />
  7401. <msdn-id>bb204908</msdn-id>
  7402. <unmanaged>D3D10_CPU_ACCESS_FLAG</unmanaged>
  7403. <unmanaged-short>D3D10_CPU_ACCESS_FLAG</unmanaged-short>
  7404. </member>
  7405. <member name="F:SharpDX.Direct3D10.CpuAccessFlags.Write">
  7406. <summary>
  7407. <dd> <p>The resource is to be mappable so that the CPU can change its contents. Resources created with this flag cannot be set as outputs of the pipeline and must be created with either dynamic or staging usage (see <strong><see cref="T:SharpDX.Direct3D10.ResourceUsage" /></strong>).</p> </dd>
  7408. </summary>
  7409. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CPU_ACCESS_WRITE']/*" />
  7410. <msdn-id>bb204908</msdn-id>
  7411. <unmanaged>D3D10_CPU_ACCESS_WRITE</unmanaged>
  7412. <unmanaged-short>D3D10_CPU_ACCESS_WRITE</unmanaged-short>
  7413. </member>
  7414. <member name="F:SharpDX.Direct3D10.CpuAccessFlags.Read">
  7415. <summary>
  7416. <dd> <p>The resource is to be mappable so that the CPU can read its contents. Resources created with this flag cannot be set as either inputs or outputs to the pipeline and must be created with staging usage (see <strong><see cref="T:SharpDX.Direct3D10.ResourceUsage" /></strong>).</p> </dd>
  7417. </summary>
  7418. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CPU_ACCESS_READ']/*" />
  7419. <msdn-id>bb204908</msdn-id>
  7420. <unmanaged>D3D10_CPU_ACCESS_READ</unmanaged>
  7421. <unmanaged-short>D3D10_CPU_ACCESS_READ</unmanaged-short>
  7422. </member>
  7423. <member name="F:SharpDX.Direct3D10.CpuAccessFlags.None">
  7424. <summary>
  7425. None.
  7426. </summary>
  7427. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  7428. <unmanaged>None</unmanaged>
  7429. <unmanaged-short>None</unmanaged-short>
  7430. </member>
  7431. <member name="T:SharpDX.Direct3D10.CullMode">
  7432. <summary>
  7433. <p>Indicates triangles facing a particular direction are not drawn.</p>
  7434. </summary>
  7435. <remarks>
  7436. <p>This enumeration is part of a rasterizer-state object description (see <strong><see cref="T:SharpDX.Direct3D10.RasterizerStateDescription" /></strong>).</p>
  7437. </remarks>
  7438. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CULL_MODE']/*" />
  7439. <msdn-id>bb204911</msdn-id>
  7440. <unmanaged>D3D10_CULL_MODE</unmanaged>
  7441. <unmanaged-short>D3D10_CULL_MODE</unmanaged-short>
  7442. </member>
  7443. <member name="F:SharpDX.Direct3D10.CullMode.None">
  7444. <summary>
  7445. <dd> <p>Always draw all triangles.</p> </dd>
  7446. </summary>
  7447. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CULL_NONE']/*" />
  7448. <msdn-id>bb204911</msdn-id>
  7449. <unmanaged>D3D10_CULL_NONE</unmanaged>
  7450. <unmanaged-short>D3D10_CULL_NONE</unmanaged-short>
  7451. </member>
  7452. <member name="F:SharpDX.Direct3D10.CullMode.Front">
  7453. <summary>
  7454. <dd> <p>Do not draw triangles that are front-facing.</p> </dd>
  7455. </summary>
  7456. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CULL_FRONT']/*" />
  7457. <msdn-id>bb204911</msdn-id>
  7458. <unmanaged>D3D10_CULL_FRONT</unmanaged>
  7459. <unmanaged-short>D3D10_CULL_FRONT</unmanaged-short>
  7460. </member>
  7461. <member name="F:SharpDX.Direct3D10.CullMode.Back">
  7462. <summary>
  7463. <dd> <p>Do not draw triangles that are back-facing.</p> </dd>
  7464. </summary>
  7465. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CULL_BACK']/*" />
  7466. <msdn-id>bb204911</msdn-id>
  7467. <unmanaged>D3D10_CULL_BACK</unmanaged>
  7468. <unmanaged-short>D3D10_CULL_BACK</unmanaged-short>
  7469. </member>
  7470. <member name="T:SharpDX.Direct3D10.DebugFeatureFlags">
  7471. <summary>
  7472. No documentation.
  7473. </summary>
  7474. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEBUG_FEATURE_FLAGS']/*" />
  7475. <unmanaged>D3D10_DEBUG_FEATURE_FLAGS</unmanaged>
  7476. <unmanaged-short>D3D10_DEBUG_FEATURE_FLAGS</unmanaged-short>
  7477. </member>
  7478. <member name="F:SharpDX.Direct3D10.DebugFeatureFlags.FlushPerRender">
  7479. <summary>
  7480. No documentation.
  7481. </summary>
  7482. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEBUG_FEATURE_FLUSH_PER_RENDER_OP']/*" />
  7483. <unmanaged>D3D10_DEBUG_FEATURE_FLUSH_PER_RENDER_OP</unmanaged>
  7484. <unmanaged-short>D3D10_DEBUG_FEATURE_FLUSH_PER_RENDER_OP</unmanaged-short>
  7485. </member>
  7486. <member name="F:SharpDX.Direct3D10.DebugFeatureFlags.FinishPerRender">
  7487. <summary>
  7488. No documentation.
  7489. </summary>
  7490. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEBUG_FEATURE_FINISH_PER_RENDER_OP']/*" />
  7491. <unmanaged>D3D10_DEBUG_FEATURE_FINISH_PER_RENDER_OP</unmanaged>
  7492. <unmanaged-short>D3D10_DEBUG_FEATURE_FINISH_PER_RENDER_OP</unmanaged-short>
  7493. </member>
  7494. <member name="F:SharpDX.Direct3D10.DebugFeatureFlags.PresentPerRender">
  7495. <summary>
  7496. No documentation.
  7497. </summary>
  7498. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEBUG_FEATURE_PRESENT_PER_RENDER_OP']/*" />
  7499. <unmanaged>D3D10_DEBUG_FEATURE_PRESENT_PER_RENDER_OP</unmanaged>
  7500. <unmanaged-short>D3D10_DEBUG_FEATURE_PRESENT_PER_RENDER_OP</unmanaged-short>
  7501. </member>
  7502. <member name="T:SharpDX.Direct3D10.DepthStencilClearFlags">
  7503. <summary>
  7504. <p>Specifies the parts of the depth stencil to clear. Usually used with <strong><see cref="M:SharpDX.Direct3D10.Device.ClearDepthStencilView(SharpDX.Direct3D10.DepthStencilView,SharpDX.Direct3D10.DepthStencilClearFlags,System.Single,System.Byte)" /></strong>.</p>
  7505. </summary>
  7506. <remarks>
  7507. <p>These flags can be bitwise ORed together.</p>
  7508. </remarks>
  7509. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CLEAR_FLAG']/*" />
  7510. <msdn-id>bb204900</msdn-id>
  7511. <unmanaged>D3D10_CLEAR_FLAG</unmanaged>
  7512. <unmanaged-short>D3D10_CLEAR_FLAG</unmanaged-short>
  7513. </member>
  7514. <member name="F:SharpDX.Direct3D10.DepthStencilClearFlags.Depth">
  7515. <summary>
  7516. No documentation.
  7517. </summary>
  7518. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CLEAR_DEPTH']/*" />
  7519. <msdn-id>bb204900</msdn-id>
  7520. <unmanaged>D3D10_CLEAR_DEPTH</unmanaged>
  7521. <unmanaged-short>D3D10_CLEAR_DEPTH</unmanaged-short>
  7522. </member>
  7523. <member name="F:SharpDX.Direct3D10.DepthStencilClearFlags.Stencil">
  7524. <summary>
  7525. No documentation.
  7526. </summary>
  7527. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CLEAR_STENCIL']/*" />
  7528. <msdn-id>bb204900</msdn-id>
  7529. <unmanaged>D3D10_CLEAR_STENCIL</unmanaged>
  7530. <unmanaged-short>D3D10_CLEAR_STENCIL</unmanaged-short>
  7531. </member>
  7532. <member name="T:SharpDX.Direct3D10.DepthStencilViewDimension">
  7533. <summary>
  7534. <p>Specifies how to access a resource used in a depth-stencil view.</p>
  7535. </summary>
  7536. <remarks>
  7537. <p>This enumeration is used in <strong><see cref="T:SharpDX.Direct3D10.DepthStencilViewDescription" /></strong> to create a depth-stencil view.</p>
  7538. </remarks>
  7539. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DSV_DIMENSION']/*" />
  7540. <msdn-id>bb205043</msdn-id>
  7541. <unmanaged>D3D10_DSV_DIMENSION</unmanaged>
  7542. <unmanaged-short>D3D10_DSV_DIMENSION</unmanaged-short>
  7543. </member>
  7544. <member name="F:SharpDX.Direct3D10.DepthStencilViewDimension.Unknown">
  7545. <summary>
  7546. No documentation.
  7547. </summary>
  7548. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DSV_DIMENSION_UNKNOWN']/*" />
  7549. <msdn-id>bb205043</msdn-id>
  7550. <unmanaged>D3D10_DSV_DIMENSION_UNKNOWN</unmanaged>
  7551. <unmanaged-short>D3D10_DSV_DIMENSION_UNKNOWN</unmanaged-short>
  7552. </member>
  7553. <member name="F:SharpDX.Direct3D10.DepthStencilViewDimension.Texture1D">
  7554. <summary>
  7555. No documentation.
  7556. </summary>
  7557. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DSV_DIMENSION_TEXTURE1D']/*" />
  7558. <msdn-id>bb205043</msdn-id>
  7559. <unmanaged>D3D10_DSV_DIMENSION_TEXTURE1D</unmanaged>
  7560. <unmanaged-short>D3D10_DSV_DIMENSION_TEXTURE1D</unmanaged-short>
  7561. </member>
  7562. <member name="F:SharpDX.Direct3D10.DepthStencilViewDimension.Texture1DArray">
  7563. <summary>
  7564. No documentation.
  7565. </summary>
  7566. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DSV_DIMENSION_TEXTURE1DARRAY']/*" />
  7567. <msdn-id>bb205043</msdn-id>
  7568. <unmanaged>D3D10_DSV_DIMENSION_TEXTURE1DARRAY</unmanaged>
  7569. <unmanaged-short>D3D10_DSV_DIMENSION_TEXTURE1DARRAY</unmanaged-short>
  7570. </member>
  7571. <member name="F:SharpDX.Direct3D10.DepthStencilViewDimension.Texture2D">
  7572. <summary>
  7573. No documentation.
  7574. </summary>
  7575. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DSV_DIMENSION_TEXTURE2D']/*" />
  7576. <msdn-id>bb205043</msdn-id>
  7577. <unmanaged>D3D10_DSV_DIMENSION_TEXTURE2D</unmanaged>
  7578. <unmanaged-short>D3D10_DSV_DIMENSION_TEXTURE2D</unmanaged-short>
  7579. </member>
  7580. <member name="F:SharpDX.Direct3D10.DepthStencilViewDimension.Texture2DArray">
  7581. <summary>
  7582. No documentation.
  7583. </summary>
  7584. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DSV_DIMENSION_TEXTURE2DARRAY']/*" />
  7585. <msdn-id>bb205043</msdn-id>
  7586. <unmanaged>D3D10_DSV_DIMENSION_TEXTURE2DARRAY</unmanaged>
  7587. <unmanaged-short>D3D10_DSV_DIMENSION_TEXTURE2DARRAY</unmanaged-short>
  7588. </member>
  7589. <member name="F:SharpDX.Direct3D10.DepthStencilViewDimension.Texture2DMultisampled">
  7590. <summary>
  7591. No documentation.
  7592. </summary>
  7593. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DSV_DIMENSION_TEXTURE2DMS']/*" />
  7594. <msdn-id>bb205043</msdn-id>
  7595. <unmanaged>D3D10_DSV_DIMENSION_TEXTURE2DMS</unmanaged>
  7596. <unmanaged-short>D3D10_DSV_DIMENSION_TEXTURE2DMS</unmanaged-short>
  7597. </member>
  7598. <member name="F:SharpDX.Direct3D10.DepthStencilViewDimension.Texture2DMultisampledArray">
  7599. <summary>
  7600. No documentation.
  7601. </summary>
  7602. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DSV_DIMENSION_TEXTURE2DMSARRAY']/*" />
  7603. <msdn-id>bb205043</msdn-id>
  7604. <unmanaged>D3D10_DSV_DIMENSION_TEXTURE2DMSARRAY</unmanaged>
  7605. <unmanaged-short>D3D10_DSV_DIMENSION_TEXTURE2DMSARRAY</unmanaged-short>
  7606. </member>
  7607. <member name="T:SharpDX.Direct3D10.DepthWriteMask">
  7608. <summary>
  7609. <p>Identify the portion of a depth-stencil buffer for writing depth data.</p>
  7610. </summary>
  7611. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_WRITE_MASK']/*" />
  7612. <msdn-id>bb205038</msdn-id>
  7613. <unmanaged>D3D10_DEPTH_WRITE_MASK</unmanaged>
  7614. <unmanaged-short>D3D10_DEPTH_WRITE_MASK</unmanaged-short>
  7615. </member>
  7616. <member name="F:SharpDX.Direct3D10.DepthWriteMask.Zero">
  7617. <summary>
  7618. No documentation.
  7619. </summary>
  7620. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_WRITE_MASK_ZERO']/*" />
  7621. <msdn-id>bb205038</msdn-id>
  7622. <unmanaged>D3D10_DEPTH_WRITE_MASK_ZERO</unmanaged>
  7623. <unmanaged-short>D3D10_DEPTH_WRITE_MASK_ZERO</unmanaged-short>
  7624. </member>
  7625. <member name="F:SharpDX.Direct3D10.DepthWriteMask.All">
  7626. <summary>
  7627. No documentation.
  7628. </summary>
  7629. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_WRITE_MASK_ALL']/*" />
  7630. <msdn-id>bb205038</msdn-id>
  7631. <unmanaged>D3D10_DEPTH_WRITE_MASK_ALL</unmanaged>
  7632. <unmanaged-short>D3D10_DEPTH_WRITE_MASK_ALL</unmanaged-short>
  7633. </member>
  7634. <member name="T:SharpDX.Direct3D10.DeviceCreationFlags">
  7635. <summary>
  7636. <p>Device creation flags.</p>
  7637. </summary>
  7638. <remarks>
  7639. <p>Device creation flags are used by <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device@)" /></strong>.</p><p>An application might dynamically create (and destroy) threads to improve performance especially on a machine with multiple CPU cores. There may be cases, however, when an application needs to prevent extra threads from being created. This can happen when you want to simplify debugging, profile code or develop a tool for instance. For these cases, use <see cref="F:SharpDX.Direct3D10.DeviceCreationFlags.PreventInternalThreadingOptimizations" /> to request that the runtime and video driver not create any additional threads that might interfere with the application.</p>
  7640. </remarks>
  7641. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CREATE_DEVICE_FLAG']/*" />
  7642. <msdn-id>bb204909</msdn-id>
  7643. <unmanaged>D3D10_CREATE_DEVICE_FLAG</unmanaged>
  7644. <unmanaged-short>D3D10_CREATE_DEVICE_FLAG</unmanaged-short>
  7645. </member>
  7646. <member name="F:SharpDX.Direct3D10.DeviceCreationFlags.SingleThreaded">
  7647. <summary>
  7648. <dd> <p>Use this flag if an application will only be calling D3D10 from a single thread. If this flag is not specified, the default behavior of D3D10 is to enter a lock during each API call to prevent multiple threads altering internal state. By using this flag no locks will be taken which can slightly increase performance, but could result in undefine behavior if D3D10 is called from multiple threads.</p> </dd>
  7649. </summary>
  7650. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CREATE_DEVICE_SINGLETHREADED']/*" />
  7651. <msdn-id>bb204909</msdn-id>
  7652. <unmanaged>D3D10_CREATE_DEVICE_SINGLETHREADED</unmanaged>
  7653. <unmanaged-short>D3D10_CREATE_DEVICE_SINGLETHREADED</unmanaged-short>
  7654. </member>
  7655. <member name="F:SharpDX.Direct3D10.DeviceCreationFlags.Debug">
  7656. <summary>
  7657. <dd> <p>Create a device that supports the debug layer.</p> </dd>
  7658. </summary>
  7659. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CREATE_DEVICE_DEBUG']/*" />
  7660. <msdn-id>bb204909</msdn-id>
  7661. <unmanaged>D3D10_CREATE_DEVICE_DEBUG</unmanaged>
  7662. <unmanaged-short>D3D10_CREATE_DEVICE_DEBUG</unmanaged-short>
  7663. </member>
  7664. <member name="F:SharpDX.Direct3D10.DeviceCreationFlags.SwitchToRef">
  7665. <summary>
  7666. <dd> <p>Create both a software (REF) and hardware (HAL) version of the device simultaneously, which allows an application to switch to a reference device to enable debugging. See <strong><see cref="T:SharpDX.Direct3D10.SwitchToRef" /> Interface</strong> for more information.</p> </dd>
  7667. </summary>
  7668. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CREATE_DEVICE_SWITCH_TO_REF']/*" />
  7669. <msdn-id>bb204909</msdn-id>
  7670. <unmanaged>D3D10_CREATE_DEVICE_SWITCH_TO_REF</unmanaged>
  7671. <unmanaged-short>D3D10_CREATE_DEVICE_SWITCH_TO_REF</unmanaged-short>
  7672. </member>
  7673. <member name="F:SharpDX.Direct3D10.DeviceCreationFlags.PreventInternalThreadingOptimizations">
  7674. <summary>
  7675. <dd> <p>Prevents multiple threads from being created. When this flag is used with a WARP device, no additional threads will be created by WARP and all rasterization will occur on the calling thread. This flag is not recommended for general use. See remarks. </p> </dd>
  7676. </summary>
  7677. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS']/*" />
  7678. <msdn-id>bb204909</msdn-id>
  7679. <unmanaged>D3D10_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS</unmanaged>
  7680. <unmanaged-short>D3D10_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS</unmanaged-short>
  7681. </member>
  7682. <member name="F:SharpDX.Direct3D10.DeviceCreationFlags.AllowNullFromMap">
  7683. <summary>
  7684. <dd> <p>Return a <strong><c>null</c></strong> reference instead of triggering an exception on memory exhaustion during invocations to Map. Without this flag an exception will be raised on memory exhaustion. Only valid on Winodws 7.</p> </dd>
  7685. </summary>
  7686. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CREATE_DEVICE_ALLOW_NULL_FROM_MAP']/*" />
  7687. <msdn-id>bb204909</msdn-id>
  7688. <unmanaged>D3D10_CREATE_DEVICE_ALLOW_NULL_FROM_MAP</unmanaged>
  7689. <unmanaged-short>D3D10_CREATE_DEVICE_ALLOW_NULL_FROM_MAP</unmanaged-short>
  7690. </member>
  7691. <member name="F:SharpDX.Direct3D10.DeviceCreationFlags.BgraSupport">
  7692. <summary>
  7693. <dd> <p>Causes device creation to fail if BGRA support is not available.</p> <p>BGRA support enables the following formats.</p> <ul> <li><see cref="F:SharpDX.DXGI.Format.B8G8R8A8_Typeless" /></li> <li><see cref="F:SharpDX.DXGI.Format.B8G8R8A8_UNorm" /></li> <li><see cref="F:SharpDX.DXGI.Format.B8G8R8A8_UNorm_SRgb" /></li> <li><see cref="F:SharpDX.DXGI.Format.B8G8R8X8_Typeless" /></li> <li><see cref="F:SharpDX.DXGI.Format.B8G8R8X8_UNorm" /></li> <li><see cref="F:SharpDX.DXGI.Format.B8G8R8X8_UNorm_SRgb" /></li> </ul> <p><see cref="F:SharpDX.Direct3D10.DeviceCreationFlags.BgraSupport" /> is only relevant when a device is created with <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /></strong> or <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device1@)" /></strong> using the <strong><see cref="F:SharpDX.Direct3D10.FeatureLevel.Level_10_0" /></strong> or <strong><see cref="F:SharpDX.Direct3D10.FeatureLevel.Level_10_1" /></strong> feature levels, the flag will be ignored when a device is created with other feature levels.</p> <p>Note that BGRA support may be present even if the application didn't specify <see cref="F:SharpDX.Direct3D10.DeviceCreationFlags.BgraSupport" />. The flag merely causes device creation to fail if BGRA support isn't available.</p> <p><see cref="F:SharpDX.Direct3D10.DeviceCreationFlags.BgraSupport" /> is only valid on Windows 7, Windows Server 2008 R2, and updated Windows Vista (KB971644) systems.</p> </dd>
  7694. </summary>
  7695. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CREATE_DEVICE_BGRA_SUPPORT']/*" />
  7696. <msdn-id>bb204909</msdn-id>
  7697. <unmanaged>D3D10_CREATE_DEVICE_BGRA_SUPPORT</unmanaged>
  7698. <unmanaged-short>D3D10_CREATE_DEVICE_BGRA_SUPPORT</unmanaged-short>
  7699. </member>
  7700. <member name="F:SharpDX.Direct3D10.DeviceCreationFlags.PreventAlteringLayerSettingsFromRegistry">
  7701. <summary>
  7702. <dd> <p>Causes the Direct3D runtime to ignore registry settings that turn on the debug layer. You can turn on the debug layer by using the DirectX Control Panel that was included as part of the DirectX SDK. We shipped the last version of the DirectX SDK in June 2010; you can download it from the Microsoft Download Center. You can set this flag in your app, typically in release builds only, to prevent end users from using the DirectX Control Panel to monitor how the app uses Direct3D.</p> <p><strong>Note</strong>??You can also set this flag in your app to prevent Direct3D debugging tools, such as Visual Studio Ultimate?2012, from hooking your app.</p> <p><strong>Windows?8.1:??</strong>This flag doesn't prevent Visual Studio?2013 and later running on Windows?8.1 and later from hooking your app. But, this flag still prevents Visual Studio?2013 and later running on Windows?8 and earlier from hooking your app. </p> <p><strong>Direct3D 11:??</strong>This value is not supported until Direct3D 11.1.</p> </dd>
  7703. </summary>
  7704. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CREATE_DEVICE_PREVENT_ALTERING_LAYER_SETTINGS_FROM_REGISTRY']/*" />
  7705. <msdn-id>bb204909</msdn-id>
  7706. <unmanaged>D3D10_CREATE_DEVICE_PREVENT_ALTERING_LAYER_SETTINGS_FROM_REGISTRY</unmanaged>
  7707. <unmanaged-short>D3D10_CREATE_DEVICE_PREVENT_ALTERING_LAYER_SETTINGS_FROM_REGISTRY</unmanaged-short>
  7708. </member>
  7709. <member name="F:SharpDX.Direct3D10.DeviceCreationFlags.StrictValidation">
  7710. <summary>
  7711. <dd> <p>Reserved. This flag is currently not supported. Do not use.</p> </dd>
  7712. </summary>
  7713. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CREATE_DEVICE_STRICT_VALIDATION']/*" />
  7714. <msdn-id>bb204909</msdn-id>
  7715. <unmanaged>D3D10_CREATE_DEVICE_STRICT_VALIDATION</unmanaged>
  7716. <unmanaged-short>D3D10_CREATE_DEVICE_STRICT_VALIDATION</unmanaged-short>
  7717. </member>
  7718. <member name="F:SharpDX.Direct3D10.DeviceCreationFlags.Debuggable">
  7719. <summary>
  7720. <dd> <p>Causes the device and driver to keep information that you can use for shader debugging. The exact impact from this flag will vary from driver to driver. To use this flag, you must have D3D11_1SDKLayers.dll installed; otherwise, device creation fails. The created device supports the debug layer. To get D3D11_1SDKLayers.dll, you must install the SDK for Windows?8.</p> <p><strong>Direct3D 11:??</strong>This value is not supported until Direct3D 11.1.</p> </dd>
  7721. </summary>
  7722. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CREATE_DEVICE_DEBUGGABLE']/*" />
  7723. <msdn-id>bb204909</msdn-id>
  7724. <unmanaged>D3D10_CREATE_DEVICE_DEBUGGABLE</unmanaged>
  7725. <unmanaged-short>D3D10_CREATE_DEVICE_DEBUGGABLE</unmanaged-short>
  7726. </member>
  7727. <member name="F:SharpDX.Direct3D10.DeviceCreationFlags.None">
  7728. <summary>
  7729. None.
  7730. </summary>
  7731. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  7732. <unmanaged>None</unmanaged>
  7733. <unmanaged-short>None</unmanaged-short>
  7734. </member>
  7735. <member name="T:SharpDX.Direct3D10.DriverType">
  7736. <summary>
  7737. <p>The device-driver type.</p>
  7738. </summary>
  7739. <remarks>
  7740. <p>The device-driver type needs to be specified when the device is created (using <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong> or <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device@)" /></strong>). </p><p>For information about limitations creating nonhardware-type devices on certain feature levels, see Limitations Creating WARP and Reference Devices.</p>
  7741. </remarks>
  7742. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DRIVER_TYPE']/*" />
  7743. <msdn-id>bb205042</msdn-id>
  7744. <unmanaged>D3D10_DRIVER_TYPE</unmanaged>
  7745. <unmanaged-short>D3D10_DRIVER_TYPE</unmanaged-short>
  7746. </member>
  7747. <member name="F:SharpDX.Direct3D10.DriverType.Hardware">
  7748. <summary>
  7749. <dd> <p>A hardware device; commonly called a HAL device.</p> </dd>
  7750. </summary>
  7751. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DRIVER_TYPE_HARDWARE']/*" />
  7752. <msdn-id>bb205042</msdn-id>
  7753. <unmanaged>D3D10_DRIVER_TYPE_HARDWARE</unmanaged>
  7754. <unmanaged-short>D3D10_DRIVER_TYPE_HARDWARE</unmanaged-short>
  7755. </member>
  7756. <member name="F:SharpDX.Direct3D10.DriverType.Reference">
  7757. <summary>
  7758. <dd> <p>A reference device; commonly called a REF device.</p> </dd>
  7759. </summary>
  7760. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DRIVER_TYPE_REFERENCE']/*" />
  7761. <msdn-id>bb205042</msdn-id>
  7762. <unmanaged>D3D10_DRIVER_TYPE_REFERENCE</unmanaged>
  7763. <unmanaged-short>D3D10_DRIVER_TYPE_REFERENCE</unmanaged-short>
  7764. </member>
  7765. <member name="F:SharpDX.Direct3D10.DriverType.Null">
  7766. <summary>
  7767. <dd> <p>A <c>null</c> device; which is a reference device without render capability.</p> </dd>
  7768. </summary>
  7769. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DRIVER_TYPE_NULL']/*" />
  7770. <msdn-id>bb205042</msdn-id>
  7771. <unmanaged>D3D10_DRIVER_TYPE_NULL</unmanaged>
  7772. <unmanaged-short>D3D10_DRIVER_TYPE_NULL</unmanaged-short>
  7773. </member>
  7774. <member name="F:SharpDX.Direct3D10.DriverType.Software">
  7775. <summary>
  7776. <dd> <p>Reserved for later use.</p> </dd>
  7777. </summary>
  7778. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DRIVER_TYPE_SOFTWARE']/*" />
  7779. <msdn-id>bb205042</msdn-id>
  7780. <unmanaged>D3D10_DRIVER_TYPE_SOFTWARE</unmanaged>
  7781. <unmanaged-short>D3D10_DRIVER_TYPE_SOFTWARE</unmanaged-short>
  7782. </member>
  7783. <member name="F:SharpDX.Direct3D10.DriverType.Warp">
  7784. <summary>
  7785. <dd> <p>A WARP driver, which is a high-performance software rasterizer. The rasterizer supports feature level 9_1 through level 10.1 with a high performance software implementation when hardware is not available. For more information about using a WARP driver, see Windows Advanced Rasterization Platform (WARP) In-Depth Guide. Note that WARP is only available with the DirectX 11 Runtime (Windows 7, Windows Server 2008 R2, updated Windows Vista [KB971644]).</p> </dd>
  7786. </summary>
  7787. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DRIVER_TYPE_WARP']/*" />
  7788. <msdn-id>bb205042</msdn-id>
  7789. <unmanaged>D3D10_DRIVER_TYPE_WARP</unmanaged>
  7790. <unmanaged-short>D3D10_DRIVER_TYPE_WARP</unmanaged-short>
  7791. </member>
  7792. <member name="T:SharpDX.Direct3D10.EffectVariableFlags">
  7793. <summary>
  7794. <p>Describes an effect variable.</p>
  7795. </summary>
  7796. <remarks>
  7797. <p>To get an effect-variable description, call <strong><see cref="M:SharpDX.Direct3D10.EffectVariable.GetDescription(SharpDX.Direct3D10.EffectVariableDescription@)" /></strong>.</p>
  7798. </remarks>
  7799. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_FLAGS']/*" />
  7800. <msdn-id>bb205056</msdn-id>
  7801. <unmanaged>D3D10_EFFECT_VARIABLE_FLAGS</unmanaged>
  7802. <unmanaged-short>D3D10_EFFECT_VARIABLE_FLAGS</unmanaged-short>
  7803. </member>
  7804. <member name="F:SharpDX.Direct3D10.EffectVariableFlags.Pooled">
  7805. <summary>
  7806. <dd> <p>A string that contains the variable name.</p> </dd>
  7807. </summary>
  7808. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_POOLED']/*" />
  7809. <msdn-id>bb205056</msdn-id>
  7810. <unmanaged>D3D10_EFFECT_VARIABLE_POOLED</unmanaged>
  7811. <unmanaged-short>D3D10_EFFECT_VARIABLE_POOLED</unmanaged-short>
  7812. </member>
  7813. <member name="F:SharpDX.Direct3D10.EffectVariableFlags.Annotation">
  7814. <summary>
  7815. <dd> <p>The semantic attached to the variable; otherwise <strong><c>null</c></strong>.</p> </dd>
  7816. </summary>
  7817. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_ANNOTATION']/*" />
  7818. <msdn-id>bb205056</msdn-id>
  7819. <unmanaged>D3D10_EFFECT_VARIABLE_ANNOTATION</unmanaged>
  7820. <unmanaged-short>D3D10_EFFECT_VARIABLE_ANNOTATION</unmanaged-short>
  7821. </member>
  7822. <member name="F:SharpDX.Direct3D10.EffectVariableFlags.ExplicitBindPoint">
  7823. <summary>
  7824. <dd> <p>Optional flags for effect variables. </p> </dd>
  7825. </summary>
  7826. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_EXPLICIT_BIND_POINT']/*" />
  7827. <msdn-id>bb205056</msdn-id>
  7828. <unmanaged>D3D10_EFFECT_VARIABLE_EXPLICIT_BIND_POINT</unmanaged>
  7829. <unmanaged-short>D3D10_EFFECT_VARIABLE_EXPLICIT_BIND_POINT</unmanaged-short>
  7830. </member>
  7831. <member name="F:SharpDX.Direct3D10.EffectVariableFlags.None">
  7832. <summary>
  7833. None.
  7834. </summary>
  7835. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  7836. <unmanaged>None</unmanaged>
  7837. <unmanaged-short>None</unmanaged-short>
  7838. </member>
  7839. <member name="T:SharpDX.Direct3D10.FeatureLevel">
  7840. <summary>
  7841. <p>The version of hardware acceleration requested.</p>
  7842. </summary>
  7843. <remarks>
  7844. <p>Use this enumeration when creating a device with <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /></strong> or <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device1@)" /></strong>.</p><p>Note that 10level9 feature levels 9_1, 9_2, and 9_3 are only available with the Direct3D 11 runtime (Windows?7, Windows Server?2008?R2, updated Windows?Vista with Service Pack?2 (SP2) [KB 971644], and updated Windows Server?2008 [KB 971512]).</p><p>For information about limitations creating nonhardware-type devices on certain feature levels, see Limitations Creating WARP and Reference Devices.</p><p>For an overview of the capabilities of each feature level, see Overview For Each Feature Level.</p>
  7845. </remarks>
  7846. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FEATURE_LEVEL1']/*" />
  7847. <msdn-id>bb694529</msdn-id>
  7848. <unmanaged>D3D10_FEATURE_LEVEL1</unmanaged>
  7849. <unmanaged-short>D3D10_FEATURE_LEVEL1</unmanaged-short>
  7850. </member>
  7851. <member name="F:SharpDX.Direct3D10.FeatureLevel.Level_10_0">
  7852. <summary>
  7853. <dd> <p>The hardware supports Direct3D 10.0 features.</p> </dd>
  7854. </summary>
  7855. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FEATURE_LEVEL_10_0']/*" />
  7856. <msdn-id>bb694529</msdn-id>
  7857. <unmanaged>D3D10_FEATURE_LEVEL_10_0</unmanaged>
  7858. <unmanaged-short>D3D10_FEATURE_LEVEL_10_0</unmanaged-short>
  7859. </member>
  7860. <member name="F:SharpDX.Direct3D10.FeatureLevel.Level_10_1">
  7861. <summary>
  7862. <dd> <p>The hardware supports Direct3D 10.1 features.</p> </dd>
  7863. </summary>
  7864. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FEATURE_LEVEL_10_1']/*" />
  7865. <msdn-id>bb694529</msdn-id>
  7866. <unmanaged>D3D10_FEATURE_LEVEL_10_1</unmanaged>
  7867. <unmanaged-short>D3D10_FEATURE_LEVEL_10_1</unmanaged-short>
  7868. </member>
  7869. <member name="F:SharpDX.Direct3D10.FeatureLevel.Level_9_1">
  7870. <summary>
  7871. <dd> <p>The hardware supports 9.1 feature level.</p> </dd>
  7872. </summary>
  7873. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FEATURE_LEVEL_9_1']/*" />
  7874. <msdn-id>bb694529</msdn-id>
  7875. <unmanaged>D3D10_FEATURE_LEVEL_9_1</unmanaged>
  7876. <unmanaged-short>D3D10_FEATURE_LEVEL_9_1</unmanaged-short>
  7877. </member>
  7878. <member name="F:SharpDX.Direct3D10.FeatureLevel.Level_9_2">
  7879. <summary>
  7880. <dd> <p>The hardware supports 9.2 feature level.</p> </dd>
  7881. </summary>
  7882. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FEATURE_LEVEL_9_2']/*" />
  7883. <msdn-id>bb694529</msdn-id>
  7884. <unmanaged>D3D10_FEATURE_LEVEL_9_2</unmanaged>
  7885. <unmanaged-short>D3D10_FEATURE_LEVEL_9_2</unmanaged-short>
  7886. </member>
  7887. <member name="F:SharpDX.Direct3D10.FeatureLevel.Level_9_3">
  7888. <summary>
  7889. <dd> <p>The hardware supports 9.3 feature level.</p> </dd>
  7890. </summary>
  7891. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FEATURE_LEVEL_9_3']/*" />
  7892. <msdn-id>bb694529</msdn-id>
  7893. <unmanaged>D3D10_FEATURE_LEVEL_9_3</unmanaged>
  7894. <unmanaged-short>D3D10_FEATURE_LEVEL_9_3</unmanaged-short>
  7895. </member>
  7896. <member name="T:SharpDX.Direct3D10.FillMode">
  7897. <summary>
  7898. <p>Determines the fill mode to use when rendering triangles.</p>
  7899. </summary>
  7900. <remarks>
  7901. <p>This enumeration is part of a rasterizer-state object description (see <strong><see cref="T:SharpDX.Direct3D10.RasterizerStateDescription" /></strong>).</p>
  7902. </remarks>
  7903. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILL_MODE']/*" />
  7904. <msdn-id>bb205059</msdn-id>
  7905. <unmanaged>D3D10_FILL_MODE</unmanaged>
  7906. <unmanaged-short>D3D10_FILL_MODE</unmanaged-short>
  7907. </member>
  7908. <member name="F:SharpDX.Direct3D10.FillMode.Wireframe">
  7909. <summary>
  7910. <dd> <p>Draw lines connecting the vertices. Adjacent vertices are not drawn.</p> </dd>
  7911. </summary>
  7912. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILL_WIREFRAME']/*" />
  7913. <msdn-id>bb205059</msdn-id>
  7914. <unmanaged>D3D10_FILL_WIREFRAME</unmanaged>
  7915. <unmanaged-short>D3D10_FILL_WIREFRAME</unmanaged-short>
  7916. </member>
  7917. <member name="F:SharpDX.Direct3D10.FillMode.Solid">
  7918. <summary>
  7919. <dd> <p>Fill the triangles formed by the vertices. Adjacent vertices are not drawn.</p> </dd>
  7920. </summary>
  7921. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILL_SOLID']/*" />
  7922. <msdn-id>bb205059</msdn-id>
  7923. <unmanaged>D3D10_FILL_SOLID</unmanaged>
  7924. <unmanaged-short>D3D10_FILL_SOLID</unmanaged-short>
  7925. </member>
  7926. <member name="T:SharpDX.Direct3D10.Filter">
  7927. <summary>
  7928. <p>Filtering options during texture sampling.</p>
  7929. </summary>
  7930. <remarks>
  7931. <p>During texture sampling, one or more texels are read and combined (this is calling filtering) to produce a single value. Point sampling reads a single texel while linear sampling reads two texels (endpoints) and linearly interpolates a third value between the endpoints.</p><p>HLSL texture-sampling functions also support comparison filtering during texture sampling. Comparison filtering compares each sampled texel against a comparison value. The boolean result is blended the same way that normal texture filtering is blended.</p><p>You can use HLSL intrinsic texture-sampling functions that implement texture filtering only or companion functions that use texture filtering with comparison filtering.</p><table> <tr><th>Texture Sampling Function</th><th>Texture Sampling Function with Comparison Filtering</th></tr> <tr><td> sample </td><td> samplecmp or samplecmplevelzero </td></tr> </table><p>?</p><p>Comparison filters only work with textures that have the following <strong>formats</strong>: R32_FLOAT_X8X24_TYPELESS, R32_FLOAT, R24_UNORM_X8_TYPELESS, R16_UNORM.</p>
  7932. </remarks>
  7933. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER']/*" />
  7934. <msdn-id>bb205060</msdn-id>
  7935. <unmanaged>D3D10_FILTER</unmanaged>
  7936. <unmanaged-short>D3D10_FILTER</unmanaged-short>
  7937. </member>
  7938. <member name="F:SharpDX.Direct3D10.Filter.MinMagMipPoint">
  7939. <summary>
  7940. <dd> <p>Use point sampling for minification, magnification, and mip-level sampling.</p> </dd>
  7941. </summary>
  7942. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_MIN_MAG_MIP_POINT']/*" />
  7943. <msdn-id>bb205060</msdn-id>
  7944. <unmanaged>D3D10_FILTER_MIN_MAG_MIP_POINT</unmanaged>
  7945. <unmanaged-short>D3D10_FILTER_MIN_MAG_MIP_POINT</unmanaged-short>
  7946. </member>
  7947. <member name="F:SharpDX.Direct3D10.Filter.MinMagPointMipLinear">
  7948. <summary>
  7949. <dd> <p>Use point sampling for minification and magnification; use linear interpolation for mip-level sampling.</p> </dd>
  7950. </summary>
  7951. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_MIN_MAG_POINT_MIP_LINEAR']/*" />
  7952. <msdn-id>bb205060</msdn-id>
  7953. <unmanaged>D3D10_FILTER_MIN_MAG_POINT_MIP_LINEAR</unmanaged>
  7954. <unmanaged-short>D3D10_FILTER_MIN_MAG_POINT_MIP_LINEAR</unmanaged-short>
  7955. </member>
  7956. <member name="F:SharpDX.Direct3D10.Filter.MinPointMagLinearMipPoint">
  7957. <summary>
  7958. <dd> <p>Use point sampling for minification; use linear interpolation for magnification; use point sampling for mip-level sampling.</p> </dd>
  7959. </summary>
  7960. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT']/*" />
  7961. <msdn-id>bb205060</msdn-id>
  7962. <unmanaged>D3D10_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT</unmanaged>
  7963. <unmanaged-short>D3D10_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT</unmanaged-short>
  7964. </member>
  7965. <member name="F:SharpDX.Direct3D10.Filter.MinPointMagMipLinear">
  7966. <summary>
  7967. <dd> <p>Use point sampling for minification; use linear interpolation for magnification and mip-level sampling.</p> </dd>
  7968. </summary>
  7969. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_MIN_POINT_MAG_MIP_LINEAR']/*" />
  7970. <msdn-id>bb205060</msdn-id>
  7971. <unmanaged>D3D10_FILTER_MIN_POINT_MAG_MIP_LINEAR</unmanaged>
  7972. <unmanaged-short>D3D10_FILTER_MIN_POINT_MAG_MIP_LINEAR</unmanaged-short>
  7973. </member>
  7974. <member name="F:SharpDX.Direct3D10.Filter.MinLinearMagMipPoint">
  7975. <summary>
  7976. <dd> <p>Use linear interpolation for minification; use point sampling for magnification and mip-level sampling.</p> </dd>
  7977. </summary>
  7978. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_MIN_LINEAR_MAG_MIP_POINT']/*" />
  7979. <msdn-id>bb205060</msdn-id>
  7980. <unmanaged>D3D10_FILTER_MIN_LINEAR_MAG_MIP_POINT</unmanaged>
  7981. <unmanaged-short>D3D10_FILTER_MIN_LINEAR_MAG_MIP_POINT</unmanaged-short>
  7982. </member>
  7983. <member name="F:SharpDX.Direct3D10.Filter.MinLinearMagPointMipLinear">
  7984. <summary>
  7985. <dd> <p>Use linear interpolation for minification; use point sampling for magnification; use linear interpolation for mip-level sampling.</p> </dd>
  7986. </summary>
  7987. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR']/*" />
  7988. <msdn-id>bb205060</msdn-id>
  7989. <unmanaged>D3D10_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR</unmanaged>
  7990. <unmanaged-short>D3D10_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR</unmanaged-short>
  7991. </member>
  7992. <member name="F:SharpDX.Direct3D10.Filter.MinMagLinearMipPoint">
  7993. <summary>
  7994. <dd> <p>Use linear interpolation for minification and magnification; use point sampling for mip-level sampling.</p> </dd>
  7995. </summary>
  7996. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_MIN_MAG_LINEAR_MIP_POINT']/*" />
  7997. <msdn-id>bb205060</msdn-id>
  7998. <unmanaged>D3D10_FILTER_MIN_MAG_LINEAR_MIP_POINT</unmanaged>
  7999. <unmanaged-short>D3D10_FILTER_MIN_MAG_LINEAR_MIP_POINT</unmanaged-short>
  8000. </member>
  8001. <member name="F:SharpDX.Direct3D10.Filter.MinMagMipLinear">
  8002. <summary>
  8003. <dd> <p>Use linear interpolation for minification, magnification, and mip-level sampling.</p> </dd>
  8004. </summary>
  8005. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_MIN_MAG_MIP_LINEAR']/*" />
  8006. <msdn-id>bb205060</msdn-id>
  8007. <unmanaged>D3D10_FILTER_MIN_MAG_MIP_LINEAR</unmanaged>
  8008. <unmanaged-short>D3D10_FILTER_MIN_MAG_MIP_LINEAR</unmanaged-short>
  8009. </member>
  8010. <member name="F:SharpDX.Direct3D10.Filter.Anisotropic">
  8011. <summary>
  8012. <dd> <p>Use anisotropic interpolation for minification, magnification, and mip-level sampling.</p> </dd>
  8013. </summary>
  8014. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_ANISOTROPIC']/*" />
  8015. <msdn-id>bb205060</msdn-id>
  8016. <unmanaged>D3D10_FILTER_ANISOTROPIC</unmanaged>
  8017. <unmanaged-short>D3D10_FILTER_ANISOTROPIC</unmanaged-short>
  8018. </member>
  8019. <member name="F:SharpDX.Direct3D10.Filter.ComparisonMinMagMipPoint">
  8020. <summary>
  8021. <dd> <p>Use point sampling for minification, magnification, and mip-level sampling. Compare the result to the comparison value.</p> </dd>
  8022. </summary>
  8023. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_COMPARISON_MIN_MAG_MIP_POINT']/*" />
  8024. <msdn-id>bb205060</msdn-id>
  8025. <unmanaged>D3D10_FILTER_COMPARISON_MIN_MAG_MIP_POINT</unmanaged>
  8026. <unmanaged-short>D3D10_FILTER_COMPARISON_MIN_MAG_MIP_POINT</unmanaged-short>
  8027. </member>
  8028. <member name="F:SharpDX.Direct3D10.Filter.ComparisonMinMagPointMipLinear">
  8029. <summary>
  8030. <dd> <p>Use point sampling for minification and magnification; use linear interpolation for mip-level sampling. Compare the result to the comparison value.</p> </dd>
  8031. </summary>
  8032. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR']/*" />
  8033. <msdn-id>bb205060</msdn-id>
  8034. <unmanaged>D3D10_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR</unmanaged>
  8035. <unmanaged-short>D3D10_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR</unmanaged-short>
  8036. </member>
  8037. <member name="F:SharpDX.Direct3D10.Filter.ComparisonMinPointMagLinearMipPoint">
  8038. <summary>
  8039. <dd> <p>Use point sampling for minification; use linear interpolation for magnification; use point sampling for mip-level sampling. Compare the result to the comparison value.</p> </dd>
  8040. </summary>
  8041. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT']/*" />
  8042. <msdn-id>bb205060</msdn-id>
  8043. <unmanaged>D3D10_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT</unmanaged>
  8044. <unmanaged-short>D3D10_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT</unmanaged-short>
  8045. </member>
  8046. <member name="F:SharpDX.Direct3D10.Filter.ComparisonMinPointMagMipLinear">
  8047. <summary>
  8048. <dd> <p>Use point sampling for minification; use linear interpolation for magnification and mip-level sampling. Compare the result to the comparison value.</p> </dd>
  8049. </summary>
  8050. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR']/*" />
  8051. <msdn-id>bb205060</msdn-id>
  8052. <unmanaged>D3D10_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR</unmanaged>
  8053. <unmanaged-short>D3D10_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR</unmanaged-short>
  8054. </member>
  8055. <member name="F:SharpDX.Direct3D10.Filter.ComparisonMinLinearMagMipPoint">
  8056. <summary>
  8057. <dd> <p>Use linear interpolation for minification; use point sampling for magnification and mip-level sampling. Compare the result to the comparison value.</p> </dd>
  8058. </summary>
  8059. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT']/*" />
  8060. <msdn-id>bb205060</msdn-id>
  8061. <unmanaged>D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT</unmanaged>
  8062. <unmanaged-short>D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT</unmanaged-short>
  8063. </member>
  8064. <member name="F:SharpDX.Direct3D10.Filter.ComparisonMinLinearMagPointMipLinear">
  8065. <summary>
  8066. <dd> <p>Use linear interpolation for minification; use point sampling for magnification; use linear interpolation for mip-level sampling. Compare the result to the comparison value.</p> </dd>
  8067. </summary>
  8068. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR']/*" />
  8069. <msdn-id>bb205060</msdn-id>
  8070. <unmanaged>D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR</unmanaged>
  8071. <unmanaged-short>D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR</unmanaged-short>
  8072. </member>
  8073. <member name="F:SharpDX.Direct3D10.Filter.ComparisonMinMagLinearMipPoint">
  8074. <summary>
  8075. <dd> <p>Use linear interpolation for minification and magnification; use point sampling for mip-level sampling. Compare the result to the comparison value.</p> </dd>
  8076. </summary>
  8077. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT']/*" />
  8078. <msdn-id>bb205060</msdn-id>
  8079. <unmanaged>D3D10_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT</unmanaged>
  8080. <unmanaged-short>D3D10_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT</unmanaged-short>
  8081. </member>
  8082. <member name="F:SharpDX.Direct3D10.Filter.ComparisonMinMagMipLinear">
  8083. <summary>
  8084. <dd> <p>Use linear interpolation for minification, magnification, and mip-level sampling. Compare the result to the comparison value.</p> </dd>
  8085. </summary>
  8086. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR']/*" />
  8087. <msdn-id>bb205060</msdn-id>
  8088. <unmanaged>D3D10_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR</unmanaged>
  8089. <unmanaged-short>D3D10_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR</unmanaged-short>
  8090. </member>
  8091. <member name="F:SharpDX.Direct3D10.Filter.ComparisonAnisotropic">
  8092. <summary>
  8093. <dd> <p>Use anisotropic interpolation for minification, magnification, and mip-level sampling. Compare the result to the comparison value.</p> </dd>
  8094. </summary>
  8095. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_COMPARISON_ANISOTROPIC']/*" />
  8096. <msdn-id>bb205060</msdn-id>
  8097. <unmanaged>D3D10_FILTER_COMPARISON_ANISOTROPIC</unmanaged>
  8098. <unmanaged-short>D3D10_FILTER_COMPARISON_ANISOTROPIC</unmanaged-short>
  8099. </member>
  8100. <member name="F:SharpDX.Direct3D10.Filter.Texture1Bit">
  8101. <summary>
  8102. <dd> <p>For use in pixel shaders with textures that have the R1_UNORM format.</p> </dd>
  8103. </summary>
  8104. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_TEXT_1BIT']/*" />
  8105. <msdn-id>bb205060</msdn-id>
  8106. <unmanaged>D3D10_FILTER_TEXT_1BIT</unmanaged>
  8107. <unmanaged-short>D3D10_FILTER_TEXT_1BIT</unmanaged-short>
  8108. </member>
  8109. <member name="T:SharpDX.Direct3D10.FilterFlags">
  8110. <summary>
  8111. <p>Texture filtering flags.</p>
  8112. </summary>
  8113. <remarks>
  8114. <p>D3DX10 automatically performs gamma correction (to convert color data from RGB space to standard RGB space) when loading texture data. This is automatically done for instance when RGB data is loaded from a .png file into an sRGB texture. Use the SRGB filter flags to indicate if the data does not need to be converted into sRGB space.</p>
  8115. </remarks>
  8116. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_FLAG']/*" />
  8117. <msdn-id>bb172692</msdn-id>
  8118. <unmanaged>D3DX10_FILTER_FLAG</unmanaged>
  8119. <unmanaged-short>D3DX10_FILTER_FLAG</unmanaged-short>
  8120. </member>
  8121. <member name="F:SharpDX.Direct3D10.FilterFlags.None">
  8122. <summary>
  8123. <dd> <p>No scaling or filtering will take place. Pixels outside the bounds of the source image are assumed to be transparent black.</p> </dd>
  8124. </summary>
  8125. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_NONE']/*" />
  8126. <msdn-id>bb172692</msdn-id>
  8127. <unmanaged>D3DX10_FILTER_NONE</unmanaged>
  8128. <unmanaged-short>D3DX10_FILTER_NONE</unmanaged-short>
  8129. </member>
  8130. <member name="F:SharpDX.Direct3D10.FilterFlags.Point">
  8131. <summary>
  8132. <dd> <p>Each destination pixel is computed by sampling the nearest pixel from the source image.</p> </dd>
  8133. </summary>
  8134. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_POINT']/*" />
  8135. <msdn-id>bb172692</msdn-id>
  8136. <unmanaged>D3DX10_FILTER_POINT</unmanaged>
  8137. <unmanaged-short>D3DX10_FILTER_POINT</unmanaged-short>
  8138. </member>
  8139. <member name="F:SharpDX.Direct3D10.FilterFlags.Linear">
  8140. <summary>
  8141. <dd> <p>Each destination pixel is computed by sampling the four nearest pixels from the source image. This filter works best when the scale on both axes is less than two.</p> </dd>
  8142. </summary>
  8143. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_LINEAR']/*" />
  8144. <msdn-id>bb172692</msdn-id>
  8145. <unmanaged>D3DX10_FILTER_LINEAR</unmanaged>
  8146. <unmanaged-short>D3DX10_FILTER_LINEAR</unmanaged-short>
  8147. </member>
  8148. <member name="F:SharpDX.Direct3D10.FilterFlags.Triangle">
  8149. <summary>
  8150. <dd> <p>Every pixel in the source image contributes equally to the destination image. This is the slowest of the filters.</p> </dd>
  8151. </summary>
  8152. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_TRIANGLE']/*" />
  8153. <msdn-id>bb172692</msdn-id>
  8154. <unmanaged>D3DX10_FILTER_TRIANGLE</unmanaged>
  8155. <unmanaged-short>D3DX10_FILTER_TRIANGLE</unmanaged-short>
  8156. </member>
  8157. <member name="F:SharpDX.Direct3D10.FilterFlags.Box">
  8158. <summary>
  8159. <dd> <p>Each pixel is computed by averaging a 2x2(x2) box of pixels from the source image. This filter works only when the dimensions of the destination are half those of the source, as is the case with mipmaps.</p> </dd>
  8160. </summary>
  8161. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_BOX']/*" />
  8162. <msdn-id>bb172692</msdn-id>
  8163. <unmanaged>D3DX10_FILTER_BOX</unmanaged>
  8164. <unmanaged-short>D3DX10_FILTER_BOX</unmanaged-short>
  8165. </member>
  8166. <member name="F:SharpDX.Direct3D10.FilterFlags.MirrorU">
  8167. <summary>
  8168. <dd> <p>Pixels off the edge of the texture on the u-axis should be mirrored, not wrapped.</p> </dd>
  8169. </summary>
  8170. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_MIRROR_U']/*" />
  8171. <msdn-id>bb172692</msdn-id>
  8172. <unmanaged>D3DX10_FILTER_MIRROR_U</unmanaged>
  8173. <unmanaged-short>D3DX10_FILTER_MIRROR_U</unmanaged-short>
  8174. </member>
  8175. <member name="F:SharpDX.Direct3D10.FilterFlags.MirrorV">
  8176. <summary>
  8177. <dd> <p>Pixels off the edge of the texture on the v-axis should be mirrored, not wrapped.</p> </dd>
  8178. </summary>
  8179. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_MIRROR_V']/*" />
  8180. <msdn-id>bb172692</msdn-id>
  8181. <unmanaged>D3DX10_FILTER_MIRROR_V</unmanaged>
  8182. <unmanaged-short>D3DX10_FILTER_MIRROR_V</unmanaged-short>
  8183. </member>
  8184. <member name="F:SharpDX.Direct3D10.FilterFlags.MirrorW">
  8185. <summary>
  8186. <dd> <p>Pixels off the edge of the texture on the w-axis should be mirrored, not wrapped.</p> </dd>
  8187. </summary>
  8188. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_MIRROR_W']/*" />
  8189. <msdn-id>bb172692</msdn-id>
  8190. <unmanaged>D3DX10_FILTER_MIRROR_W</unmanaged>
  8191. <unmanaged-short>D3DX10_FILTER_MIRROR_W</unmanaged-short>
  8192. </member>
  8193. <member name="F:SharpDX.Direct3D10.FilterFlags.Mirror">
  8194. <summary>
  8195. <dd> <p>Specifying this flag is the same as specifying the D3DX_FILTER_MIRROR_U, D3DX_FILTER_MIRROR_V, and D3DX_FILTER_MIRROR_W flags.</p> </dd>
  8196. </summary>
  8197. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_MIRROR']/*" />
  8198. <msdn-id>bb172692</msdn-id>
  8199. <unmanaged>D3DX10_FILTER_MIRROR</unmanaged>
  8200. <unmanaged-short>D3DX10_FILTER_MIRROR</unmanaged-short>
  8201. </member>
  8202. <member name="F:SharpDX.Direct3D10.FilterFlags.Dither">
  8203. <summary>
  8204. <dd> <p>The resulting image must be dithered using a 4x4 ordered dither algorithm. This happens when converting from one format to another.</p> </dd>
  8205. </summary>
  8206. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_DITHER']/*" />
  8207. <msdn-id>bb172692</msdn-id>
  8208. <unmanaged>D3DX10_FILTER_DITHER</unmanaged>
  8209. <unmanaged-short>D3DX10_FILTER_DITHER</unmanaged-short>
  8210. </member>
  8211. <member name="F:SharpDX.Direct3D10.FilterFlags.DitherDiffusion">
  8212. <summary>
  8213. <dd> <p>Do diffuse dithering on the image when changing from one format to another.</p> </dd>
  8214. </summary>
  8215. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_DITHER_DIFFUSION']/*" />
  8216. <msdn-id>bb172692</msdn-id>
  8217. <unmanaged>D3DX10_FILTER_DITHER_DIFFUSION</unmanaged>
  8218. <unmanaged-short>D3DX10_FILTER_DITHER_DIFFUSION</unmanaged-short>
  8219. </member>
  8220. <member name="F:SharpDX.Direct3D10.FilterFlags.SRgbIn">
  8221. <summary>
  8222. <dd> <p>Input data is in standard RGB (sRGB) color space. See remarks.</p> </dd>
  8223. </summary>
  8224. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_SRGB_IN']/*" />
  8225. <msdn-id>bb172692</msdn-id>
  8226. <unmanaged>D3DX10_FILTER_SRGB_IN</unmanaged>
  8227. <unmanaged-short>D3DX10_FILTER_SRGB_IN</unmanaged-short>
  8228. </member>
  8229. <member name="F:SharpDX.Direct3D10.FilterFlags.SRgbOut">
  8230. <summary>
  8231. <dd> <p>Output data is in standard RGB (sRGB) color space. See remarks.</p> </dd>
  8232. </summary>
  8233. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_SRGB_OUT']/*" />
  8234. <msdn-id>bb172692</msdn-id>
  8235. <unmanaged>D3DX10_FILTER_SRGB_OUT</unmanaged>
  8236. <unmanaged-short>D3DX10_FILTER_SRGB_OUT</unmanaged-short>
  8237. </member>
  8238. <member name="F:SharpDX.Direct3D10.FilterFlags.SRgb">
  8239. <summary>
  8240. <dd> <p>Same as specifying D3DX_FILTER_SRGB_IN | D3DX_FILTER_SRGB_OUT. See remarks.</p> </dd>
  8241. </summary>
  8242. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FILTER_SRGB']/*" />
  8243. <msdn-id>bb172692</msdn-id>
  8244. <unmanaged>D3DX10_FILTER_SRGB</unmanaged>
  8245. <unmanaged-short>D3DX10_FILTER_SRGB</unmanaged-short>
  8246. </member>
  8247. <member name="T:SharpDX.Direct3D10.FilterType">
  8248. <summary>
  8249. <p>Types of magnification or minification sampler filters.</p>
  8250. </summary>
  8251. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_TYPE']/*" />
  8252. <msdn-id>bb205061</msdn-id>
  8253. <unmanaged>D3D10_FILTER_TYPE</unmanaged>
  8254. <unmanaged-short>D3D10_FILTER_TYPE</unmanaged-short>
  8255. </member>
  8256. <member name="F:SharpDX.Direct3D10.FilterType.Point">
  8257. <summary>
  8258. <dd> <p>Point filtering used as a texture magnification or minification filter. The texel with coordinates nearest to the desired pixel value is used. The texture filter to be used between mipmap levels is nearest-point mipmap filtering. The rasterizer uses the color from the texel of the nearest mipmap texture. </p> </dd>
  8259. </summary>
  8260. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_TYPE_POINT']/*" />
  8261. <msdn-id>bb205061</msdn-id>
  8262. <unmanaged>D3D10_FILTER_TYPE_POINT</unmanaged>
  8263. <unmanaged-short>D3D10_FILTER_TYPE_POINT</unmanaged-short>
  8264. </member>
  8265. <member name="F:SharpDX.Direct3D10.FilterType.Linear">
  8266. <summary>
  8267. <dd> <p>Bilinear interpolation filtering used as a texture magnification or minification filter. A weighted average of a 2 x 2 area of texels surrounding the desired pixel is used. The texture filter to use between mipmap levels is trilinear mipmap interpolation. The rasterizer linearly interpolates pixel color, using the texels of the two nearest mipmap textures. </p> </dd>
  8268. </summary>
  8269. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FILTER_TYPE_LINEAR']/*" />
  8270. <msdn-id>bb205061</msdn-id>
  8271. <unmanaged>D3D10_FILTER_TYPE_LINEAR</unmanaged>
  8272. <unmanaged-short>D3D10_FILTER_TYPE_LINEAR</unmanaged-short>
  8273. </member>
  8274. <member name="T:SharpDX.Direct3D10.FormatSupport">
  8275. <summary>
  8276. <p>Which resources are supported for a given format and given device (see <strong><see cref="M:SharpDX.Direct3D10.Device.CheckFormatSupport(SharpDX.DXGI.Format)" /></strong>).</p>
  8277. </summary>
  8278. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT']/*" />
  8279. <msdn-id>bb205063</msdn-id>
  8280. <unmanaged>D3D10_FORMAT_SUPPORT</unmanaged>
  8281. <unmanaged-short>D3D10_FORMAT_SUPPORT</unmanaged-short>
  8282. </member>
  8283. <member name="F:SharpDX.Direct3D10.FormatSupport.Buffer">
  8284. <summary>
  8285. No documentation.
  8286. </summary>
  8287. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_BUFFER']/*" />
  8288. <msdn-id>bb205063</msdn-id>
  8289. <unmanaged>D3D10_FORMAT_SUPPORT_BUFFER</unmanaged>
  8290. <unmanaged-short>D3D10_FORMAT_SUPPORT_BUFFER</unmanaged-short>
  8291. </member>
  8292. <member name="F:SharpDX.Direct3D10.FormatSupport.InputAssemblyVertexBuffer">
  8293. <summary>
  8294. No documentation.
  8295. </summary>
  8296. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_IA_VERTEX_BUFFER']/*" />
  8297. <msdn-id>bb205063</msdn-id>
  8298. <unmanaged>D3D10_FORMAT_SUPPORT_IA_VERTEX_BUFFER</unmanaged>
  8299. <unmanaged-short>D3D10_FORMAT_SUPPORT_IA_VERTEX_BUFFER</unmanaged-short>
  8300. </member>
  8301. <member name="F:SharpDX.Direct3D10.FormatSupport.InputAssemblyIndexBuffer">
  8302. <summary>
  8303. No documentation.
  8304. </summary>
  8305. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_IA_INDEX_BUFFER']/*" />
  8306. <msdn-id>bb205063</msdn-id>
  8307. <unmanaged>D3D10_FORMAT_SUPPORT_IA_INDEX_BUFFER</unmanaged>
  8308. <unmanaged-short>D3D10_FORMAT_SUPPORT_IA_INDEX_BUFFER</unmanaged-short>
  8309. </member>
  8310. <member name="F:SharpDX.Direct3D10.FormatSupport.StreamOutputBuffer">
  8311. <summary>
  8312. No documentation.
  8313. </summary>
  8314. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_SO_BUFFER']/*" />
  8315. <msdn-id>bb205063</msdn-id>
  8316. <unmanaged>D3D10_FORMAT_SUPPORT_SO_BUFFER</unmanaged>
  8317. <unmanaged-short>D3D10_FORMAT_SUPPORT_SO_BUFFER</unmanaged-short>
  8318. </member>
  8319. <member name="F:SharpDX.Direct3D10.FormatSupport.Texture1D">
  8320. <summary>
  8321. No documentation.
  8322. </summary>
  8323. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_TEXTURE1D']/*" />
  8324. <msdn-id>bb205063</msdn-id>
  8325. <unmanaged>D3D10_FORMAT_SUPPORT_TEXTURE1D</unmanaged>
  8326. <unmanaged-short>D3D10_FORMAT_SUPPORT_TEXTURE1D</unmanaged-short>
  8327. </member>
  8328. <member name="F:SharpDX.Direct3D10.FormatSupport.Texture2D">
  8329. <summary>
  8330. No documentation.
  8331. </summary>
  8332. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_TEXTURE2D']/*" />
  8333. <msdn-id>bb205063</msdn-id>
  8334. <unmanaged>D3D10_FORMAT_SUPPORT_TEXTURE2D</unmanaged>
  8335. <unmanaged-short>D3D10_FORMAT_SUPPORT_TEXTURE2D</unmanaged-short>
  8336. </member>
  8337. <member name="F:SharpDX.Direct3D10.FormatSupport.Texture3D">
  8338. <summary>
  8339. No documentation.
  8340. </summary>
  8341. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_TEXTURE3D']/*" />
  8342. <msdn-id>bb205063</msdn-id>
  8343. <unmanaged>D3D10_FORMAT_SUPPORT_TEXTURE3D</unmanaged>
  8344. <unmanaged-short>D3D10_FORMAT_SUPPORT_TEXTURE3D</unmanaged-short>
  8345. </member>
  8346. <member name="F:SharpDX.Direct3D10.FormatSupport.TextureCube">
  8347. <summary>
  8348. No documentation.
  8349. </summary>
  8350. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_TEXTURECUBE']/*" />
  8351. <msdn-id>bb205063</msdn-id>
  8352. <unmanaged>D3D10_FORMAT_SUPPORT_TEXTURECUBE</unmanaged>
  8353. <unmanaged-short>D3D10_FORMAT_SUPPORT_TEXTURECUBE</unmanaged-short>
  8354. </member>
  8355. <member name="F:SharpDX.Direct3D10.FormatSupport.ShaderLoad">
  8356. <summary>
  8357. No documentation.
  8358. </summary>
  8359. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_SHADER_LOAD']/*" />
  8360. <msdn-id>bb205063</msdn-id>
  8361. <unmanaged>D3D10_FORMAT_SUPPORT_SHADER_LOAD</unmanaged>
  8362. <unmanaged-short>D3D10_FORMAT_SUPPORT_SHADER_LOAD</unmanaged-short>
  8363. </member>
  8364. <member name="F:SharpDX.Direct3D10.FormatSupport.ShaderSample">
  8365. <summary>
  8366. No documentation.
  8367. </summary>
  8368. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_SHADER_SAMPLE']/*" />
  8369. <msdn-id>bb205063</msdn-id>
  8370. <unmanaged>D3D10_FORMAT_SUPPORT_SHADER_SAMPLE</unmanaged>
  8371. <unmanaged-short>D3D10_FORMAT_SUPPORT_SHADER_SAMPLE</unmanaged-short>
  8372. </member>
  8373. <member name="F:SharpDX.Direct3D10.FormatSupport.ShaderSampleComparison">
  8374. <summary>
  8375. No documentation.
  8376. </summary>
  8377. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_COMPARISON']/*" />
  8378. <msdn-id>bb205063</msdn-id>
  8379. <unmanaged>D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_COMPARISON</unmanaged>
  8380. <unmanaged-short>D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_COMPARISON</unmanaged-short>
  8381. </member>
  8382. <member name="F:SharpDX.Direct3D10.FormatSupport.ShaderSampleMonoText">
  8383. <summary>
  8384. No documentation.
  8385. </summary>
  8386. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_MONO_TEXT']/*" />
  8387. <msdn-id>bb205063</msdn-id>
  8388. <unmanaged>D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_MONO_TEXT</unmanaged>
  8389. <unmanaged-short>D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_MONO_TEXT</unmanaged-short>
  8390. </member>
  8391. <member name="F:SharpDX.Direct3D10.FormatSupport.Mip">
  8392. <summary>
  8393. No documentation.
  8394. </summary>
  8395. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_MIP']/*" />
  8396. <msdn-id>bb205063</msdn-id>
  8397. <unmanaged>D3D10_FORMAT_SUPPORT_MIP</unmanaged>
  8398. <unmanaged-short>D3D10_FORMAT_SUPPORT_MIP</unmanaged-short>
  8399. </member>
  8400. <member name="F:SharpDX.Direct3D10.FormatSupport.MipAutogen">
  8401. <summary>
  8402. No documentation.
  8403. </summary>
  8404. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_MIP_AUTOGEN']/*" />
  8405. <msdn-id>bb205063</msdn-id>
  8406. <unmanaged>D3D10_FORMAT_SUPPORT_MIP_AUTOGEN</unmanaged>
  8407. <unmanaged-short>D3D10_FORMAT_SUPPORT_MIP_AUTOGEN</unmanaged-short>
  8408. </member>
  8409. <member name="F:SharpDX.Direct3D10.FormatSupport.RenderTarget">
  8410. <summary>
  8411. No documentation.
  8412. </summary>
  8413. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_RENDER_TARGET']/*" />
  8414. <msdn-id>bb205063</msdn-id>
  8415. <unmanaged>D3D10_FORMAT_SUPPORT_RENDER_TARGET</unmanaged>
  8416. <unmanaged-short>D3D10_FORMAT_SUPPORT_RENDER_TARGET</unmanaged-short>
  8417. </member>
  8418. <member name="F:SharpDX.Direct3D10.FormatSupport.Blendable">
  8419. <summary>
  8420. No documentation.
  8421. </summary>
  8422. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_BLENDABLE']/*" />
  8423. <msdn-id>bb205063</msdn-id>
  8424. <unmanaged>D3D10_FORMAT_SUPPORT_BLENDABLE</unmanaged>
  8425. <unmanaged-short>D3D10_FORMAT_SUPPORT_BLENDABLE</unmanaged-short>
  8426. </member>
  8427. <member name="F:SharpDX.Direct3D10.FormatSupport.DepthStencil">
  8428. <summary>
  8429. No documentation.
  8430. </summary>
  8431. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_DEPTH_STENCIL']/*" />
  8432. <msdn-id>bb205063</msdn-id>
  8433. <unmanaged>D3D10_FORMAT_SUPPORT_DEPTH_STENCIL</unmanaged>
  8434. <unmanaged-short>D3D10_FORMAT_SUPPORT_DEPTH_STENCIL</unmanaged-short>
  8435. </member>
  8436. <member name="F:SharpDX.Direct3D10.FormatSupport.CpuLockable">
  8437. <summary>
  8438. No documentation.
  8439. </summary>
  8440. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_CPU_LOCKABLE']/*" />
  8441. <msdn-id>bb205063</msdn-id>
  8442. <unmanaged>D3D10_FORMAT_SUPPORT_CPU_LOCKABLE</unmanaged>
  8443. <unmanaged-short>D3D10_FORMAT_SUPPORT_CPU_LOCKABLE</unmanaged-short>
  8444. </member>
  8445. <member name="F:SharpDX.Direct3D10.FormatSupport.MultisampleResolve">
  8446. <summary>
  8447. No documentation.
  8448. </summary>
  8449. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_MULTISAMPLE_RESOLVE']/*" />
  8450. <msdn-id>bb205063</msdn-id>
  8451. <unmanaged>D3D10_FORMAT_SUPPORT_MULTISAMPLE_RESOLVE</unmanaged>
  8452. <unmanaged-short>D3D10_FORMAT_SUPPORT_MULTISAMPLE_RESOLVE</unmanaged-short>
  8453. </member>
  8454. <member name="F:SharpDX.Direct3D10.FormatSupport.Display">
  8455. <summary>
  8456. No documentation.
  8457. </summary>
  8458. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_DISPLAY']/*" />
  8459. <msdn-id>bb205063</msdn-id>
  8460. <unmanaged>D3D10_FORMAT_SUPPORT_DISPLAY</unmanaged>
  8461. <unmanaged-short>D3D10_FORMAT_SUPPORT_DISPLAY</unmanaged-short>
  8462. </member>
  8463. <member name="F:SharpDX.Direct3D10.FormatSupport.CastWithinBitLayout">
  8464. <summary>
  8465. No documentation.
  8466. </summary>
  8467. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_CAST_WITHIN_BIT_LAYOUT']/*" />
  8468. <msdn-id>bb205063</msdn-id>
  8469. <unmanaged>D3D10_FORMAT_SUPPORT_CAST_WITHIN_BIT_LAYOUT</unmanaged>
  8470. <unmanaged-short>D3D10_FORMAT_SUPPORT_CAST_WITHIN_BIT_LAYOUT</unmanaged-short>
  8471. </member>
  8472. <member name="F:SharpDX.Direct3D10.FormatSupport.MultisampleRenderTarget">
  8473. <summary>
  8474. No documentation.
  8475. </summary>
  8476. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_MULTISAMPLE_RENDERTARGET']/*" />
  8477. <msdn-id>bb205063</msdn-id>
  8478. <unmanaged>D3D10_FORMAT_SUPPORT_MULTISAMPLE_RENDERTARGET</unmanaged>
  8479. <unmanaged-short>D3D10_FORMAT_SUPPORT_MULTISAMPLE_RENDERTARGET</unmanaged-short>
  8480. </member>
  8481. <member name="F:SharpDX.Direct3D10.FormatSupport.MultisampleLoad">
  8482. <summary>
  8483. No documentation.
  8484. </summary>
  8485. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_MULTISAMPLE_LOAD']/*" />
  8486. <msdn-id>bb205063</msdn-id>
  8487. <unmanaged>D3D10_FORMAT_SUPPORT_MULTISAMPLE_LOAD</unmanaged>
  8488. <unmanaged-short>D3D10_FORMAT_SUPPORT_MULTISAMPLE_LOAD</unmanaged-short>
  8489. </member>
  8490. <member name="F:SharpDX.Direct3D10.FormatSupport.ShaderGather">
  8491. <summary>
  8492. No documentation.
  8493. </summary>
  8494. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_SHADER_GATHER']/*" />
  8495. <msdn-id>bb205063</msdn-id>
  8496. <unmanaged>D3D10_FORMAT_SUPPORT_SHADER_GATHER</unmanaged>
  8497. <unmanaged-short>D3D10_FORMAT_SUPPORT_SHADER_GATHER</unmanaged-short>
  8498. </member>
  8499. <member name="F:SharpDX.Direct3D10.FormatSupport.BackBufferCast">
  8500. <summary>
  8501. No documentation.
  8502. </summary>
  8503. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_FORMAT_SUPPORT_BACK_BUFFER_CAST']/*" />
  8504. <msdn-id>bb205063</msdn-id>
  8505. <unmanaged>D3D10_FORMAT_SUPPORT_BACK_BUFFER_CAST</unmanaged>
  8506. <unmanaged-short>D3D10_FORMAT_SUPPORT_BACK_BUFFER_CAST</unmanaged-short>
  8507. </member>
  8508. <member name="F:SharpDX.Direct3D10.FormatSupport.None">
  8509. <summary>
  8510. None.
  8511. </summary>
  8512. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  8513. <unmanaged>None</unmanaged>
  8514. <unmanaged-short>None</unmanaged-short>
  8515. </member>
  8516. <member name="T:SharpDX.Direct3D10.ImageFileFormat">
  8517. <summary>
  8518. <p>Image file formats supported by D3DXCreatexxx and D3DX10Savexxx functions.</p>
  8519. </summary>
  8520. <remarks>
  8521. <p>See Types of Bitmaps (GDI+) for more information on some of these formats.</p><p>D3DX10 makes use of the Windows Imaging Component to implement the majority of the supported bitmap file types. See Windows Imaging Component Overview for additional information.
  8522. </p>
  8523. </remarks>
  8524. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_FILE_FORMAT']/*" />
  8525. <msdn-id>bb172694</msdn-id>
  8526. <unmanaged>D3DX10_IMAGE_FILE_FORMAT</unmanaged>
  8527. <unmanaged-short>D3DX10_IMAGE_FILE_FORMAT</unmanaged-short>
  8528. </member>
  8529. <member name="F:SharpDX.Direct3D10.ImageFileFormat.Bmp">
  8530. <summary>
  8531. <dd> <p>Windows bitmap (BMP) file format. Contains a header that describes the resolution of the device on which the rectangle of pixels was created, the dimensions of the rectangle, the size of the array of bits, a logical palette, and an array of bits that defines the relationship between pixels in the bitmapped image and entries in the logical palette. The file extension for this format is .bmp.</p> </dd>
  8532. </summary>
  8533. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IFF_BMP']/*" />
  8534. <msdn-id>bb172694</msdn-id>
  8535. <unmanaged>D3DX10_IFF_BMP</unmanaged>
  8536. <unmanaged-short>D3DX10_IFF_BMP</unmanaged-short>
  8537. </member>
  8538. <member name="F:SharpDX.Direct3D10.ImageFileFormat.Jpg">
  8539. <summary>
  8540. <dd> <p>Joint Photographic Experts Group (JPEG) compressed file format. Specifies variable compression of 24-bit RGB color and 8-bit gray-scale Tagged Image File Format (TIFF) image document files. The file extension for this format is .jpg.</p> </dd>
  8541. </summary>
  8542. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IFF_JPG']/*" />
  8543. <msdn-id>bb172694</msdn-id>
  8544. <unmanaged>D3DX10_IFF_JPG</unmanaged>
  8545. <unmanaged-short>D3DX10_IFF_JPG</unmanaged-short>
  8546. </member>
  8547. <member name="F:SharpDX.Direct3D10.ImageFileFormat.Png">
  8548. <summary>
  8549. <dd> <p>Portable Network Graphics (PNG) file format. A non-proprietary bitmap format using lossless compression. The file extension for this format is .png.</p> </dd>
  8550. </summary>
  8551. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IFF_PNG']/*" />
  8552. <msdn-id>bb172694</msdn-id>
  8553. <unmanaged>D3DX10_IFF_PNG</unmanaged>
  8554. <unmanaged-short>D3DX10_IFF_PNG</unmanaged-short>
  8555. </member>
  8556. <member name="F:SharpDX.Direct3D10.ImageFileFormat.Dds">
  8557. <summary>
  8558. <dd> <p>DirectDraw surface (DDS) file format. Stores textures, volume textures, and cubic environment maps, with or without mipmap levels, and with or without pixel compression. The file extension for this format is .dds.</p> </dd>
  8559. </summary>
  8560. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IFF_DDS']/*" />
  8561. <msdn-id>bb172694</msdn-id>
  8562. <unmanaged>D3DX10_IFF_DDS</unmanaged>
  8563. <unmanaged-short>D3DX10_IFF_DDS</unmanaged-short>
  8564. </member>
  8565. <member name="F:SharpDX.Direct3D10.ImageFileFormat.Tiff">
  8566. <summary>
  8567. <dd> <p>Tagged Image File Format (TIFF). The file extensions for this format are .tif and .tiff.</p> </dd>
  8568. </summary>
  8569. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IFF_TIFF']/*" />
  8570. <msdn-id>bb172694</msdn-id>
  8571. <unmanaged>D3DX10_IFF_TIFF</unmanaged>
  8572. <unmanaged-short>D3DX10_IFF_TIFF</unmanaged-short>
  8573. </member>
  8574. <member name="F:SharpDX.Direct3D10.ImageFileFormat.Gif">
  8575. <summary>
  8576. <dd> <p>Graphics Interchange Format (GIF).The file extension for this format is .gif.</p> </dd>
  8577. </summary>
  8578. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IFF_GIF']/*" />
  8579. <msdn-id>bb172694</msdn-id>
  8580. <unmanaged>D3DX10_IFF_GIF</unmanaged>
  8581. <unmanaged-short>D3DX10_IFF_GIF</unmanaged-short>
  8582. </member>
  8583. <member name="F:SharpDX.Direct3D10.ImageFileFormat.Wmp">
  8584. <summary>
  8585. <dd> <p>Windows Media Photo format (WMP). This format is also known as HD Photo and JPEG XR. The file extensions for this format are .hdp, .jxr, and .wdp.</p> <p>To work properly, <strong><see cref="F:SharpDX.Direct3D10.ImageFileFormat.Wmp" /></strong> requires that you initialize COM. Therefore, call <strong>CoInitialize</strong> or <strong>CoInitializeEx</strong> in your application before you call D3DX.</p> </dd>
  8586. </summary>
  8587. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IFF_WMP']/*" />
  8588. <msdn-id>bb172694</msdn-id>
  8589. <unmanaged>D3DX10_IFF_WMP</unmanaged>
  8590. <unmanaged-short>D3DX10_IFF_WMP</unmanaged-short>
  8591. </member>
  8592. <member name="T:SharpDX.Direct3D10.InputClassification">
  8593. <summary>
  8594. <p>Type of data contained in an input slot.</p>
  8595. </summary>
  8596. <remarks>
  8597. <p>Use these values to specify the type of data for a particular input element (see <strong><see cref="T:SharpDX.Direct3D10.InputElement" /></strong>) of an input-layout object.</p>
  8598. </remarks>
  8599. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_CLASSIFICATION']/*" />
  8600. <msdn-id>bb205315</msdn-id>
  8601. <unmanaged>D3D10_INPUT_CLASSIFICATION</unmanaged>
  8602. <unmanaged-short>D3D10_INPUT_CLASSIFICATION</unmanaged-short>
  8603. </member>
  8604. <member name="F:SharpDX.Direct3D10.InputClassification.PerVertexData">
  8605. <summary>
  8606. <dd> <p>Input data is per-vertex data.</p> </dd>
  8607. </summary>
  8608. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_PER_VERTEX_DATA']/*" />
  8609. <msdn-id>bb205315</msdn-id>
  8610. <unmanaged>D3D10_INPUT_PER_VERTEX_DATA</unmanaged>
  8611. <unmanaged-short>D3D10_INPUT_PER_VERTEX_DATA</unmanaged-short>
  8612. </member>
  8613. <member name="F:SharpDX.Direct3D10.InputClassification.PerInstanceData">
  8614. <summary>
  8615. <dd> <p>Input data is per-instance data.</p> </dd>
  8616. </summary>
  8617. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_PER_INSTANCE_DATA']/*" />
  8618. <msdn-id>bb205315</msdn-id>
  8619. <unmanaged>D3D10_INPUT_PER_INSTANCE_DATA</unmanaged>
  8620. <unmanaged-short>D3D10_INPUT_PER_INSTANCE_DATA</unmanaged-short>
  8621. </member>
  8622. <member name="T:SharpDX.Direct3D10.MapFlags">
  8623. <summary>
  8624. <p>Specifies how the CPU should respond when Map is called on a resource being used by the GPU.</p>
  8625. </summary>
  8626. <remarks>
  8627. <p>This enumeration is used by <strong><see cref="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode)" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.Texture1D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,System.IntPtr@)" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.Texture2D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,SharpDX.DataRectangle@)" /></strong>, and <strong><see cref="M:SharpDX.Direct3D10.Texture3D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,SharpDX.DataBox@)" /></strong>.</p><p><see cref="F:SharpDX.Direct3D10.MapFlags.DoNotWait" /> cannot be used with <strong><see cref="F:SharpDX.Direct3D10.MapMode.WriteDiscard" /></strong> or <strong>D3D10_MAP_WRITE_NOOVERWRITE</strong>.</p><p>For more information about potential conflicts between the GPU and CPU during resource mapping, see Copying and Accessing Resource Data (Direct3D 10).</p>
  8628. </remarks>
  8629. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MAP_FLAG']/*" />
  8630. <msdn-id>bb205321</msdn-id>
  8631. <unmanaged>D3D10_MAP_FLAG</unmanaged>
  8632. <unmanaged-short>D3D10_MAP_FLAG</unmanaged-short>
  8633. </member>
  8634. <member name="F:SharpDX.Direct3D10.MapFlags.DoNotWait">
  8635. <summary>
  8636. <dd> <p>Specifies that Map should return <strong><see cref="F:SharpDX.DXGI.ResultCode.WasStillDrawing" /></strong> when the GPU blocks the CPU from accessing a resource.</p> </dd>
  8637. </summary>
  8638. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MAP_FLAG_DO_NOT_WAIT']/*" />
  8639. <msdn-id>bb205321</msdn-id>
  8640. <unmanaged>D3D10_MAP_FLAG_DO_NOT_WAIT</unmanaged>
  8641. <unmanaged-short>D3D10_MAP_FLAG_DO_NOT_WAIT</unmanaged-short>
  8642. </member>
  8643. <member name="F:SharpDX.Direct3D10.MapFlags.None">
  8644. <summary>
  8645. None.
  8646. </summary>
  8647. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  8648. <unmanaged>None</unmanaged>
  8649. <unmanaged-short>None</unmanaged-short>
  8650. </member>
  8651. <member name="T:SharpDX.Direct3D10.MapMode">
  8652. <summary>
  8653. <p>Identifies a resource to be accessed for reading and writing by the CPU. Applications may combine one or more of these flags.</p>
  8654. </summary>
  8655. <remarks>
  8656. <p>This enumeration is used in <strong><see cref="M:SharpDX.Direct3D10.Buffer.Map(SharpDX.Direct3D10.MapMode)" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.Texture1D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,System.IntPtr@)" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.Texture2D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,SharpDX.DataRectangle@)" /></strong>, and <strong><see cref="M:SharpDX.Direct3D10.Texture3D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,SharpDX.DataBox@)" /></strong>.</p><p>These remarks are divided into the following topics:</p><p> </p><ul> <li>Meaning</li> <li>Common</li> </ul>
  8657. </remarks>
  8658. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MAP']/*" />
  8659. <msdn-id>bb205318</msdn-id>
  8660. <unmanaged>D3D10_MAP</unmanaged>
  8661. <unmanaged-short>D3D10_MAP</unmanaged-short>
  8662. </member>
  8663. <member name="F:SharpDX.Direct3D10.MapMode.Read">
  8664. <summary>
  8665. <dd> <p>Resource is mapped for reading. The resource must have been created with read access (see <strong><see cref="F:SharpDX.Direct3D10.CpuAccessFlags.Read" /></strong>).</p> </dd>
  8666. </summary>
  8667. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MAP_READ']/*" />
  8668. <msdn-id>bb205318</msdn-id>
  8669. <unmanaged>D3D10_MAP_READ</unmanaged>
  8670. <unmanaged-short>D3D10_MAP_READ</unmanaged-short>
  8671. </member>
  8672. <member name="F:SharpDX.Direct3D10.MapMode.Write">
  8673. <summary>
  8674. <dd> <p>Resource is mapped for writing. The resource must have been created with write access (see <strong><see cref="F:SharpDX.Direct3D10.CpuAccessFlags.Write" /></strong>).</p> </dd>
  8675. </summary>
  8676. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MAP_WRITE']/*" />
  8677. <msdn-id>bb205318</msdn-id>
  8678. <unmanaged>D3D10_MAP_WRITE</unmanaged>
  8679. <unmanaged-short>D3D10_MAP_WRITE</unmanaged-short>
  8680. </member>
  8681. <member name="F:SharpDX.Direct3D10.MapMode.ReadWrite">
  8682. <summary>
  8683. <dd> <p>Resource is mapped for reading and writing. The resource must have been created with read and write access (see <strong><see cref="F:SharpDX.Direct3D10.CpuAccessFlags.Read" /> and <see cref="F:SharpDX.Direct3D10.CpuAccessFlags.Write" /></strong>).</p> </dd>
  8684. </summary>
  8685. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MAP_READ_WRITE']/*" />
  8686. <msdn-id>bb205318</msdn-id>
  8687. <unmanaged>D3D10_MAP_READ_WRITE</unmanaged>
  8688. <unmanaged-short>D3D10_MAP_READ_WRITE</unmanaged-short>
  8689. </member>
  8690. <member name="F:SharpDX.Direct3D10.MapMode.WriteDiscard">
  8691. <summary>
  8692. <dd> <p>Resource is mapped for writing; the previous contents of the resource will be undefined. The resource must have been created with write access (see <strong><see cref="F:SharpDX.Direct3D10.CpuAccessFlags.Write" /></strong>).</p> </dd>
  8693. </summary>
  8694. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MAP_WRITE_DISCARD']/*" />
  8695. <msdn-id>bb205318</msdn-id>
  8696. <unmanaged>D3D10_MAP_WRITE_DISCARD</unmanaged>
  8697. <unmanaged-short>D3D10_MAP_WRITE_DISCARD</unmanaged-short>
  8698. </member>
  8699. <member name="F:SharpDX.Direct3D10.MapMode.WriteNoOverwrite">
  8700. <summary>
  8701. <dd> <p>Resource is mapped for writing; the existing contents of the resource cannot be overwritten (see Remarks). This flag is only valid on vertex and index buffers. The resource must have been created with write access (see <strong><see cref="F:SharpDX.Direct3D10.CpuAccessFlags.Write" /></strong>). Cannot be used on a resource created with the <strong><see cref="F:SharpDX.Direct3D10.BindFlags.ConstantBuffer" /></strong> flag.</p> </dd>
  8702. </summary>
  8703. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MAP_WRITE_NO_OVERWRITE']/*" />
  8704. <msdn-id>bb205318</msdn-id>
  8705. <unmanaged>D3D10_MAP_WRITE_NO_OVERWRITE</unmanaged>
  8706. <unmanaged-short>D3D10_MAP_WRITE_NO_OVERWRITE</unmanaged-short>
  8707. </member>
  8708. <member name="T:SharpDX.Direct3D10.MeshDiscardFlags">
  8709. <summary>
  8710. <p>Specifies which pieces of mesh data to discard from the device. Used with <strong><see cref="M:SharpDX.Direct3D10.Mesh.Discard(SharpDX.Direct3D10.MeshDiscardFlags)" /></strong>.</p>
  8711. </summary>
  8712. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESH_DISCARD_FLAGS']/*" />
  8713. <msdn-id>bb172700</msdn-id>
  8714. <unmanaged>D3DX10_MESH_DISCARD_FLAGS</unmanaged>
  8715. <unmanaged-short>D3DX10_MESH_DISCARD_FLAGS</unmanaged-short>
  8716. </member>
  8717. <member name="F:SharpDX.Direct3D10.MeshDiscardFlags.AttributeBuffer">
  8718. <summary>
  8719. No documentation.
  8720. </summary>
  8721. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESH_DISCARD_ATTRIBUTE_BUFFER']/*" />
  8722. <msdn-id>bb172700</msdn-id>
  8723. <unmanaged>D3DX10_MESH_DISCARD_ATTRIBUTE_BUFFER</unmanaged>
  8724. <unmanaged-short>D3DX10_MESH_DISCARD_ATTRIBUTE_BUFFER</unmanaged-short>
  8725. </member>
  8726. <member name="F:SharpDX.Direct3D10.MeshDiscardFlags.AttributeTable">
  8727. <summary>
  8728. No documentation.
  8729. </summary>
  8730. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESH_DISCARD_ATTRIBUTE_TABLE']/*" />
  8731. <msdn-id>bb172700</msdn-id>
  8732. <unmanaged>D3DX10_MESH_DISCARD_ATTRIBUTE_TABLE</unmanaged>
  8733. <unmanaged-short>D3DX10_MESH_DISCARD_ATTRIBUTE_TABLE</unmanaged-short>
  8734. </member>
  8735. <member name="F:SharpDX.Direct3D10.MeshDiscardFlags.PointRepresentation">
  8736. <summary>
  8737. No documentation.
  8738. </summary>
  8739. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESH_DISCARD_POINTREPS']/*" />
  8740. <msdn-id>bb172700</msdn-id>
  8741. <unmanaged>D3DX10_MESH_DISCARD_POINTREPS</unmanaged>
  8742. <unmanaged-short>D3DX10_MESH_DISCARD_POINTREPS</unmanaged-short>
  8743. </member>
  8744. <member name="F:SharpDX.Direct3D10.MeshDiscardFlags.WithAdjacency">
  8745. <summary>
  8746. No documentation.
  8747. </summary>
  8748. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESH_DISCARD_ADJACENCY']/*" />
  8749. <msdn-id>bb172700</msdn-id>
  8750. <unmanaged>D3DX10_MESH_DISCARD_ADJACENCY</unmanaged>
  8751. <unmanaged-short>D3DX10_MESH_DISCARD_ADJACENCY</unmanaged-short>
  8752. </member>
  8753. <member name="F:SharpDX.Direct3D10.MeshDiscardFlags.DeviceBuffers">
  8754. <summary>
  8755. No documentation.
  8756. </summary>
  8757. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESH_DISCARD_DEVICE_BUFFERS']/*" />
  8758. <msdn-id>bb172700</msdn-id>
  8759. <unmanaged>D3DX10_MESH_DISCARD_DEVICE_BUFFERS</unmanaged>
  8760. <unmanaged-short>D3DX10_MESH_DISCARD_DEVICE_BUFFERS</unmanaged-short>
  8761. </member>
  8762. <member name="T:SharpDX.Direct3D10.MeshFlags">
  8763. <summary>
  8764. <p>Flags used to specify creation options for a mesh.</p>
  8765. </summary>
  8766. <remarks>
  8767. <p>A 32-bit mesh (D3DXMESH_32BIT) can theoretically support (232)-1 faces and vertices. However, allocating memory for a mesh that large on a 32-bit operating system is not practical.</p>
  8768. </remarks>
  8769. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='_D3DX10_MESH']/*" />
  8770. <msdn-id>bb172698</msdn-id>
  8771. <unmanaged>_D3DX10_MESH</unmanaged>
  8772. <unmanaged-short>_D3DX10_MESH</unmanaged-short>
  8773. </member>
  8774. <member name="F:SharpDX.Direct3D10.MeshFlags.Has32BitIndices">
  8775. <summary>
  8776. <dd> <p>The mesh has 32-bit indices instead of 16-bit indices. See Remarks.</p> </dd>
  8777. </summary>
  8778. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESH_32_BIT']/*" />
  8779. <msdn-id>bb172698</msdn-id>
  8780. <unmanaged>D3DX10_MESH_32_BIT</unmanaged>
  8781. <unmanaged-short>D3DX10_MESH_32_BIT</unmanaged-short>
  8782. </member>
  8783. <member name="F:SharpDX.Direct3D10.MeshFlags.HasAdjacency">
  8784. <summary>
  8785. <dd> <p>Signals that the mesh contains geometry shader adjacency data.</p> </dd>
  8786. </summary>
  8787. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESH_GS_ADJACENCY']/*" />
  8788. <msdn-id>bb172698</msdn-id>
  8789. <unmanaged>D3DX10_MESH_GS_ADJACENCY</unmanaged>
  8790. <unmanaged-short>D3DX10_MESH_GS_ADJACENCY</unmanaged-short>
  8791. </member>
  8792. <member name="F:SharpDX.Direct3D10.MeshFlags.None">
  8793. <summary>
  8794. None.
  8795. </summary>
  8796. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  8797. <unmanaged>None</unmanaged>
  8798. <unmanaged-short>None</unmanaged-short>
  8799. </member>
  8800. <member name="T:SharpDX.Direct3D10.MeshOptimizeFlags">
  8801. <summary>
  8802. <p>Specifies the type of mesh optimization to be performed.</p>
  8803. </summary>
  8804. <remarks>
  8805. <p>The D3DXMESHOPT_STRIPREORDER and D3DXMESHOPT_VERTEXCACHE optimization flags are mutually exclusive.</p><p>The D3DXMESHOPT_SHAREVB flag has been removed from this enumeration. Use D3DXMESH_VB_SHARE instead, in D3DXMESH.</p>
  8806. </remarks>
  8807. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='_D3DX10_MESHOPT']/*" />
  8808. <msdn-id>bb172699</msdn-id>
  8809. <unmanaged>_D3DX10_MESHOPT</unmanaged>
  8810. <unmanaged-short>_D3DX10_MESHOPT</unmanaged-short>
  8811. </member>
  8812. <member name="F:SharpDX.Direct3D10.MeshOptimizeFlags.Compact">
  8813. <summary>
  8814. <dd> <p>Reorders faces to remove unused vertices and faces.</p> </dd>
  8815. </summary>
  8816. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESHOPT_COMPACT']/*" />
  8817. <msdn-id>bb172699</msdn-id>
  8818. <unmanaged>D3DX10_MESHOPT_COMPACT</unmanaged>
  8819. <unmanaged-short>D3DX10_MESHOPT_COMPACT</unmanaged-short>
  8820. </member>
  8821. <member name="F:SharpDX.Direct3D10.MeshOptimizeFlags.AttributeSort">
  8822. <summary>
  8823. <dd> <p>Reorders faces to optimize for fewer attribute bundle state changes and enhanced DrawSubset performance.</p> </dd>
  8824. </summary>
  8825. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESHOPT_ATTR_SORT']/*" />
  8826. <msdn-id>bb172699</msdn-id>
  8827. <unmanaged>D3DX10_MESHOPT_ATTR_SORT</unmanaged>
  8828. <unmanaged-short>D3DX10_MESHOPT_ATTR_SORT</unmanaged-short>
  8829. </member>
  8830. <member name="F:SharpDX.Direct3D10.MeshOptimizeFlags.VertexCache">
  8831. <summary>
  8832. <dd> <p>Reorders faces to increase the cache hit rate of vertex caches.</p> </dd>
  8833. </summary>
  8834. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESHOPT_VERTEX_CACHE']/*" />
  8835. <msdn-id>bb172699</msdn-id>
  8836. <unmanaged>D3DX10_MESHOPT_VERTEX_CACHE</unmanaged>
  8837. <unmanaged-short>D3DX10_MESHOPT_VERTEX_CACHE</unmanaged-short>
  8838. </member>
  8839. <member name="F:SharpDX.Direct3D10.MeshOptimizeFlags.StripReorder">
  8840. <summary>
  8841. <dd> <p>Reorders faces to maximize length of adjacent triangles.</p> </dd>
  8842. </summary>
  8843. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESHOPT_STRIP_REORDER']/*" />
  8844. <msdn-id>bb172699</msdn-id>
  8845. <unmanaged>D3DX10_MESHOPT_STRIP_REORDER</unmanaged>
  8846. <unmanaged-short>D3DX10_MESHOPT_STRIP_REORDER</unmanaged-short>
  8847. </member>
  8848. <member name="F:SharpDX.Direct3D10.MeshOptimizeFlags.IgnoreVertices">
  8849. <summary>
  8850. <dd> <p>Optimize the faces only; do not optimize the vertices.</p> </dd>
  8851. </summary>
  8852. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESHOPT_IGNORE_VERTS']/*" />
  8853. <msdn-id>bb172699</msdn-id>
  8854. <unmanaged>D3DX10_MESHOPT_IGNORE_VERTS</unmanaged>
  8855. <unmanaged-short>D3DX10_MESHOPT_IGNORE_VERTS</unmanaged-short>
  8856. </member>
  8857. <member name="F:SharpDX.Direct3D10.MeshOptimizeFlags.DoNotSplit">
  8858. <summary>
  8859. <dd> <p>While attribute sorting, do not split vertices that are shared between attribute groups.</p> </dd>
  8860. </summary>
  8861. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESHOPT_DO_NOT_SPLIT']/*" />
  8862. <msdn-id>bb172699</msdn-id>
  8863. <unmanaged>D3DX10_MESHOPT_DO_NOT_SPLIT</unmanaged>
  8864. <unmanaged-short>D3DX10_MESHOPT_DO_NOT_SPLIT</unmanaged-short>
  8865. </member>
  8866. <member name="F:SharpDX.Direct3D10.MeshOptimizeFlags.DeviceIndependent">
  8867. <summary>
  8868. <dd> <p>Affects the vertex cache size. Using this flag specifies a default vertex cache size that works well on legacy hardware.</p> </dd>
  8869. </summary>
  8870. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_MESHOPT_DEVICE_INDEPENDENT']/*" />
  8871. <msdn-id>bb172699</msdn-id>
  8872. <unmanaged>D3DX10_MESHOPT_DEVICE_INDEPENDENT</unmanaged>
  8873. <unmanaged-short>D3DX10_MESHOPT_DEVICE_INDEPENDENT</unmanaged-short>
  8874. </member>
  8875. <member name="T:SharpDX.Direct3D10.MessageCategory">
  8876. <summary>
  8877. <p>Categories of debug messages. This will identify the category of a message when retrieving a message with <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.GetMessage(System.Int64,System.IntPtr,SharpDX.PointerSize@)" /></strong> and when adding a message with <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.AddMessage(SharpDX.Direct3D10.MessageCategory,SharpDX.Direct3D10.MessageSeverity,SharpDX.Direct3D10.MessageId,System.String)" /></strong>. When creating an <strong>info queue filter</strong>, these values can be used to allow or deny any categories of messages to pass through the storage and retrieval filters.</p>
  8878. </summary>
  8879. <remarks>
  8880. <p>This is part of the Information Queue feature. See <strong><see cref="T:SharpDX.Direct3D10.InfoQueue" /> Interface</strong>.</p>
  8881. </remarks>
  8882. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY']/*" />
  8883. <msdn-id>bb205323</msdn-id>
  8884. <unmanaged>D3D10_MESSAGE_CATEGORY</unmanaged>
  8885. <unmanaged-short>D3D10_MESSAGE_CATEGORY</unmanaged-short>
  8886. </member>
  8887. <member name="F:SharpDX.Direct3D10.MessageCategory.ApplicationDefined">
  8888. <summary>
  8889. No documentation.
  8890. </summary>
  8891. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_APPLICATION_DEFINED']/*" />
  8892. <msdn-id>bb205323</msdn-id>
  8893. <unmanaged>D3D10_MESSAGE_CATEGORY_APPLICATION_DEFINED</unmanaged>
  8894. <unmanaged-short>D3D10_MESSAGE_CATEGORY_APPLICATION_DEFINED</unmanaged-short>
  8895. </member>
  8896. <member name="F:SharpDX.Direct3D10.MessageCategory.Miscellaneous">
  8897. <summary>
  8898. No documentation.
  8899. </summary>
  8900. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_MISCELLANEOUS']/*" />
  8901. <msdn-id>bb205323</msdn-id>
  8902. <unmanaged>D3D10_MESSAGE_CATEGORY_MISCELLANEOUS</unmanaged>
  8903. <unmanaged-short>D3D10_MESSAGE_CATEGORY_MISCELLANEOUS</unmanaged-short>
  8904. </member>
  8905. <member name="F:SharpDX.Direct3D10.MessageCategory.Initialization">
  8906. <summary>
  8907. No documentation.
  8908. </summary>
  8909. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_INITIALIZATION']/*" />
  8910. <msdn-id>bb205323</msdn-id>
  8911. <unmanaged>D3D10_MESSAGE_CATEGORY_INITIALIZATION</unmanaged>
  8912. <unmanaged-short>D3D10_MESSAGE_CATEGORY_INITIALIZATION</unmanaged-short>
  8913. </member>
  8914. <member name="F:SharpDX.Direct3D10.MessageCategory.Cleanup">
  8915. <summary>
  8916. No documentation.
  8917. </summary>
  8918. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_CLEANUP']/*" />
  8919. <msdn-id>bb205323</msdn-id>
  8920. <unmanaged>D3D10_MESSAGE_CATEGORY_CLEANUP</unmanaged>
  8921. <unmanaged-short>D3D10_MESSAGE_CATEGORY_CLEANUP</unmanaged-short>
  8922. </member>
  8923. <member name="F:SharpDX.Direct3D10.MessageCategory.Compilation">
  8924. <summary>
  8925. No documentation.
  8926. </summary>
  8927. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_COMPILATION']/*" />
  8928. <msdn-id>bb205323</msdn-id>
  8929. <unmanaged>D3D10_MESSAGE_CATEGORY_COMPILATION</unmanaged>
  8930. <unmanaged-short>D3D10_MESSAGE_CATEGORY_COMPILATION</unmanaged-short>
  8931. </member>
  8932. <member name="F:SharpDX.Direct3D10.MessageCategory.StateCreation">
  8933. <summary>
  8934. No documentation.
  8935. </summary>
  8936. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_STATE_CREATION']/*" />
  8937. <msdn-id>bb205323</msdn-id>
  8938. <unmanaged>D3D10_MESSAGE_CATEGORY_STATE_CREATION</unmanaged>
  8939. <unmanaged-short>D3D10_MESSAGE_CATEGORY_STATE_CREATION</unmanaged-short>
  8940. </member>
  8941. <member name="F:SharpDX.Direct3D10.MessageCategory.StateSetting">
  8942. <summary>
  8943. No documentation.
  8944. </summary>
  8945. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_STATE_SETTING']/*" />
  8946. <msdn-id>bb205323</msdn-id>
  8947. <unmanaged>D3D10_MESSAGE_CATEGORY_STATE_SETTING</unmanaged>
  8948. <unmanaged-short>D3D10_MESSAGE_CATEGORY_STATE_SETTING</unmanaged-short>
  8949. </member>
  8950. <member name="F:SharpDX.Direct3D10.MessageCategory.StateGetting">
  8951. <summary>
  8952. No documentation.
  8953. </summary>
  8954. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_STATE_GETTING']/*" />
  8955. <msdn-id>bb205323</msdn-id>
  8956. <unmanaged>D3D10_MESSAGE_CATEGORY_STATE_GETTING</unmanaged>
  8957. <unmanaged-short>D3D10_MESSAGE_CATEGORY_STATE_GETTING</unmanaged-short>
  8958. </member>
  8959. <member name="F:SharpDX.Direct3D10.MessageCategory.ResourceManipulation">
  8960. <summary>
  8961. No documentation.
  8962. </summary>
  8963. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_RESOURCE_MANIPULATION']/*" />
  8964. <msdn-id>bb205323</msdn-id>
  8965. <unmanaged>D3D10_MESSAGE_CATEGORY_RESOURCE_MANIPULATION</unmanaged>
  8966. <unmanaged-short>D3D10_MESSAGE_CATEGORY_RESOURCE_MANIPULATION</unmanaged-short>
  8967. </member>
  8968. <member name="F:SharpDX.Direct3D10.MessageCategory.Execution">
  8969. <summary>
  8970. No documentation.
  8971. </summary>
  8972. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_EXECUTION']/*" />
  8973. <msdn-id>bb205323</msdn-id>
  8974. <unmanaged>D3D10_MESSAGE_CATEGORY_EXECUTION</unmanaged>
  8975. <unmanaged-short>D3D10_MESSAGE_CATEGORY_EXECUTION</unmanaged-short>
  8976. </member>
  8977. <member name="F:SharpDX.Direct3D10.MessageCategory.Shader">
  8978. <summary>
  8979. No documentation.
  8980. </summary>
  8981. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_CATEGORY_SHADER']/*" />
  8982. <msdn-id>bb205323</msdn-id>
  8983. <unmanaged>D3D10_MESSAGE_CATEGORY_SHADER</unmanaged>
  8984. <unmanaged-short>D3D10_MESSAGE_CATEGORY_SHADER</unmanaged-short>
  8985. </member>
  8986. <member name="T:SharpDX.Direct3D10.MessageId">
  8987. <summary>
  8988. <p>Debug messages for setting up an info-queue filter (see <strong><see cref="T:SharpDX.Direct3D10.InfoQueueFilter" /></strong>); use these messages to allow or deny message categories to pass through the storage and retrieval filters. These IDs are used by methods such as <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.GetMessage(System.Int64,System.IntPtr,SharpDX.PointerSize@)" /></strong> or <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.AddMessage(SharpDX.Direct3D10.MessageCategory,SharpDX.Direct3D10.MessageSeverity,SharpDX.Direct3D10.MessageId,System.String)" /></strong>. </p>
  8989. </summary>
  8990. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID']/*" />
  8991. <msdn-id>bb205324</msdn-id>
  8992. <unmanaged>D3D10_MESSAGE_ID</unmanaged>
  8993. <unmanaged-short>D3D10_MESSAGE_ID</unmanaged-short>
  8994. </member>
  8995. <member name="F:SharpDX.Direct3D10.MessageId.Unknown">
  8996. <summary>
  8997. No documentation.
  8998. </summary>
  8999. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_UNKNOWN']/*" />
  9000. <msdn-id>bb205324</msdn-id>
  9001. <unmanaged>D3D10_MESSAGE_ID_UNKNOWN</unmanaged>
  9002. <unmanaged-short>D3D10_MESSAGE_ID_UNKNOWN</unmanaged-short>
  9003. </member>
  9004. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetVertexBuffersHazard">
  9005. <summary>
  9006. No documentation.
  9007. </summary>
  9008. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD']/*" />
  9009. <msdn-id>bb205324</msdn-id>
  9010. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD</unmanaged>
  9011. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD</unmanaged-short>
  9012. </member>
  9013. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetIndexBufferHazard">
  9014. <summary>
  9015. No documentation.
  9016. </summary>
  9017. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD']/*" />
  9018. <msdn-id>bb205324</msdn-id>
  9019. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD</unmanaged>
  9020. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD</unmanaged-short>
  9021. </member>
  9022. <member name="F:SharpDX.Direct3D10.MessageId.DeviceVertexShaderSetShaderResourcesHazard">
  9023. <summary>
  9024. No documentation.
  9025. </summary>
  9026. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD']/*" />
  9027. <msdn-id>bb205324</msdn-id>
  9028. <unmanaged>D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD</unmanaged>
  9029. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD</unmanaged-short>
  9030. </member>
  9031. <member name="F:SharpDX.Direct3D10.MessageId.DeviceVertexShaderSetConstantBuffersHazard">
  9032. <summary>
  9033. No documentation.
  9034. </summary>
  9035. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD']/*" />
  9036. <msdn-id>bb205324</msdn-id>
  9037. <unmanaged>D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD</unmanaged>
  9038. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD</unmanaged-short>
  9039. </member>
  9040. <member name="F:SharpDX.Direct3D10.MessageId.DeviceGeometryShaderSetShaderResourcesHazard">
  9041. <summary>
  9042. No documentation.
  9043. </summary>
  9044. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD']/*" />
  9045. <msdn-id>bb205324</msdn-id>
  9046. <unmanaged>D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD</unmanaged>
  9047. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD</unmanaged-short>
  9048. </member>
  9049. <member name="F:SharpDX.Direct3D10.MessageId.DeviceGeometryShaderSetConstantBuffersHazard">
  9050. <summary>
  9051. No documentation.
  9052. </summary>
  9053. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD']/*" />
  9054. <msdn-id>bb205324</msdn-id>
  9055. <unmanaged>D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD</unmanaged>
  9056. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD</unmanaged-short>
  9057. </member>
  9058. <member name="F:SharpDX.Direct3D10.MessageId.DevicePixelShaderSetShaderResourcesHazard">
  9059. <summary>
  9060. No documentation.
  9061. </summary>
  9062. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD']/*" />
  9063. <msdn-id>bb205324</msdn-id>
  9064. <unmanaged>D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD</unmanaged>
  9065. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD</unmanaged-short>
  9066. </member>
  9067. <member name="F:SharpDX.Direct3D10.MessageId.DevicePixelShaderSetConstantBuffersHazard">
  9068. <summary>
  9069. No documentation.
  9070. </summary>
  9071. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD']/*" />
  9072. <msdn-id>bb205324</msdn-id>
  9073. <unmanaged>D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD</unmanaged>
  9074. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD</unmanaged-short>
  9075. </member>
  9076. <member name="F:SharpDX.Direct3D10.MessageId.DeviceOutputMergerSetRenderTargetsHazard">
  9077. <summary>
  9078. No documentation.
  9079. </summary>
  9080. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD']/*" />
  9081. <msdn-id>bb205324</msdn-id>
  9082. <unmanaged>D3D10_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD</unmanaged>
  9083. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD</unmanaged-short>
  9084. </member>
  9085. <member name="F:SharpDX.Direct3D10.MessageId.DeviceStreamOutputSetTargetsHazard">
  9086. <summary>
  9087. No documentation.
  9088. </summary>
  9089. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD']/*" />
  9090. <msdn-id>bb205324</msdn-id>
  9091. <unmanaged>D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD</unmanaged>
  9092. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD</unmanaged-short>
  9093. </member>
  9094. <member name="F:SharpDX.Direct3D10.MessageId.StringFromApplication">
  9095. <summary>
  9096. No documentation.
  9097. </summary>
  9098. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_STRING_FROM_APPLICATION']/*" />
  9099. <msdn-id>bb205324</msdn-id>
  9100. <unmanaged>D3D10_MESSAGE_ID_STRING_FROM_APPLICATION</unmanaged>
  9101. <unmanaged-short>D3D10_MESSAGE_ID_STRING_FROM_APPLICATION</unmanaged-short>
  9102. </member>
  9103. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedThis">
  9104. <summary>
  9105. No documentation.
  9106. </summary>
  9107. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_THIS']/*" />
  9108. <msdn-id>bb205324</msdn-id>
  9109. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_THIS</unmanaged>
  9110. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_THIS</unmanaged-short>
  9111. </member>
  9112. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter1">
  9113. <summary>
  9114. No documentation.
  9115. </summary>
  9116. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER1']/*" />
  9117. <msdn-id>bb205324</msdn-id>
  9118. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER1</unmanaged>
  9119. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER1</unmanaged-short>
  9120. </member>
  9121. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter2">
  9122. <summary>
  9123. No documentation.
  9124. </summary>
  9125. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER2']/*" />
  9126. <msdn-id>bb205324</msdn-id>
  9127. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER2</unmanaged>
  9128. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER2</unmanaged-short>
  9129. </member>
  9130. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter3">
  9131. <summary>
  9132. No documentation.
  9133. </summary>
  9134. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER3']/*" />
  9135. <msdn-id>bb205324</msdn-id>
  9136. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER3</unmanaged>
  9137. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER3</unmanaged-short>
  9138. </member>
  9139. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter4">
  9140. <summary>
  9141. No documentation.
  9142. </summary>
  9143. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER4']/*" />
  9144. <msdn-id>bb205324</msdn-id>
  9145. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER4</unmanaged>
  9146. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER4</unmanaged-short>
  9147. </member>
  9148. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter5">
  9149. <summary>
  9150. No documentation.
  9151. </summary>
  9152. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER5']/*" />
  9153. <msdn-id>bb205324</msdn-id>
  9154. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER5</unmanaged>
  9155. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER5</unmanaged-short>
  9156. </member>
  9157. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter6">
  9158. <summary>
  9159. No documentation.
  9160. </summary>
  9161. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER6']/*" />
  9162. <msdn-id>bb205324</msdn-id>
  9163. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER6</unmanaged>
  9164. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER6</unmanaged-short>
  9165. </member>
  9166. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter7">
  9167. <summary>
  9168. No documentation.
  9169. </summary>
  9170. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER7']/*" />
  9171. <msdn-id>bb205324</msdn-id>
  9172. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER7</unmanaged>
  9173. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER7</unmanaged-short>
  9174. </member>
  9175. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter8">
  9176. <summary>
  9177. No documentation.
  9178. </summary>
  9179. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER8']/*" />
  9180. <msdn-id>bb205324</msdn-id>
  9181. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER8</unmanaged>
  9182. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER8</unmanaged-short>
  9183. </member>
  9184. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter9">
  9185. <summary>
  9186. No documentation.
  9187. </summary>
  9188. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER9']/*" />
  9189. <msdn-id>bb205324</msdn-id>
  9190. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER9</unmanaged>
  9191. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER9</unmanaged-short>
  9192. </member>
  9193. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter10">
  9194. <summary>
  9195. No documentation.
  9196. </summary>
  9197. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER10']/*" />
  9198. <msdn-id>bb205324</msdn-id>
  9199. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER10</unmanaged>
  9200. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER10</unmanaged-short>
  9201. </member>
  9202. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter11">
  9203. <summary>
  9204. No documentation.
  9205. </summary>
  9206. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER11']/*" />
  9207. <msdn-id>bb205324</msdn-id>
  9208. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER11</unmanaged>
  9209. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER11</unmanaged-short>
  9210. </member>
  9211. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter12">
  9212. <summary>
  9213. No documentation.
  9214. </summary>
  9215. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER12']/*" />
  9216. <msdn-id>bb205324</msdn-id>
  9217. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER12</unmanaged>
  9218. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER12</unmanaged-short>
  9219. </member>
  9220. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter13">
  9221. <summary>
  9222. No documentation.
  9223. </summary>
  9224. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER13']/*" />
  9225. <msdn-id>bb205324</msdn-id>
  9226. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER13</unmanaged>
  9227. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER13</unmanaged-short>
  9228. </member>
  9229. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter14">
  9230. <summary>
  9231. No documentation.
  9232. </summary>
  9233. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER14']/*" />
  9234. <msdn-id>bb205324</msdn-id>
  9235. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER14</unmanaged>
  9236. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER14</unmanaged-short>
  9237. </member>
  9238. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedParameter15">
  9239. <summary>
  9240. No documentation.
  9241. </summary>
  9242. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_PARAMETER15']/*" />
  9243. <msdn-id>bb205324</msdn-id>
  9244. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER15</unmanaged>
  9245. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_PARAMETER15</unmanaged-short>
  9246. </member>
  9247. <member name="F:SharpDX.Direct3D10.MessageId.CorruptedMultithreading">
  9248. <summary>
  9249. No documentation.
  9250. </summary>
  9251. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CORRUPTED_MULTITHREADING']/*" />
  9252. <msdn-id>bb205324</msdn-id>
  9253. <unmanaged>D3D10_MESSAGE_ID_CORRUPTED_MULTITHREADING</unmanaged>
  9254. <unmanaged-short>D3D10_MESSAGE_ID_CORRUPTED_MULTITHREADING</unmanaged-short>
  9255. </member>
  9256. <member name="F:SharpDX.Direct3D10.MessageId.MessageReportingOufOfMemory">
  9257. <summary>
  9258. No documentation.
  9259. </summary>
  9260. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY']/*" />
  9261. <msdn-id>bb205324</msdn-id>
  9262. <unmanaged>D3D10_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY</unmanaged>
  9263. <unmanaged-short>D3D10_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY</unmanaged-short>
  9264. </member>
  9265. <member name="F:SharpDX.Direct3D10.MessageId.InputAssemblySetInputLayoutUnbindDeletingObject">
  9266. <summary>
  9267. No documentation.
  9268. </summary>
  9269. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT']/*" />
  9270. <msdn-id>bb205324</msdn-id>
  9271. <unmanaged>D3D10_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT</unmanaged>
  9272. <unmanaged-short>D3D10_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT</unmanaged-short>
  9273. </member>
  9274. <member name="F:SharpDX.Direct3D10.MessageId.InputAssemblySetVertexBuffersUnbindDeletingObject">
  9275. <summary>
  9276. No documentation.
  9277. </summary>
  9278. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT']/*" />
  9279. <msdn-id>bb205324</msdn-id>
  9280. <unmanaged>D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT</unmanaged>
  9281. <unmanaged-short>D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT</unmanaged-short>
  9282. </member>
  9283. <member name="F:SharpDX.Direct3D10.MessageId.InputAssemblySetIndexBufferUnbindDeletingObject">
  9284. <summary>
  9285. No documentation.
  9286. </summary>
  9287. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT']/*" />
  9288. <msdn-id>bb205324</msdn-id>
  9289. <unmanaged>D3D10_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT</unmanaged>
  9290. <unmanaged-short>D3D10_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT</unmanaged-short>
  9291. </member>
  9292. <member name="F:SharpDX.Direct3D10.MessageId.VertexShaderSetShaderUnbindDeletingObject">
  9293. <summary>
  9294. No documentation.
  9295. </summary>
  9296. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT']/*" />
  9297. <msdn-id>bb205324</msdn-id>
  9298. <unmanaged>D3D10_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT</unmanaged>
  9299. <unmanaged-short>D3D10_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT</unmanaged-short>
  9300. </member>
  9301. <member name="F:SharpDX.Direct3D10.MessageId.VertexShaderSetShaderResourcesUnbindDeletingObject">
  9302. <summary>
  9303. No documentation.
  9304. </summary>
  9305. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT']/*" />
  9306. <msdn-id>bb205324</msdn-id>
  9307. <unmanaged>D3D10_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT</unmanaged>
  9308. <unmanaged-short>D3D10_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT</unmanaged-short>
  9309. </member>
  9310. <member name="F:SharpDX.Direct3D10.MessageId.VertexShaderSetConstantBuffersUnbindDeletingObject">
  9311. <summary>
  9312. No documentation.
  9313. </summary>
  9314. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT']/*" />
  9315. <msdn-id>bb205324</msdn-id>
  9316. <unmanaged>D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT</unmanaged>
  9317. <unmanaged-short>D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT</unmanaged-short>
  9318. </member>
  9319. <member name="F:SharpDX.Direct3D10.MessageId.VertexShaderSetSamplersUnbindDeletingObject">
  9320. <summary>
  9321. No documentation.
  9322. </summary>
  9323. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT']/*" />
  9324. <msdn-id>bb205324</msdn-id>
  9325. <unmanaged>D3D10_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT</unmanaged>
  9326. <unmanaged-short>D3D10_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT</unmanaged-short>
  9327. </member>
  9328. <member name="F:SharpDX.Direct3D10.MessageId.GeometryShaderSetShaderUnbindDeletingObject">
  9329. <summary>
  9330. No documentation.
  9331. </summary>
  9332. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT']/*" />
  9333. <msdn-id>bb205324</msdn-id>
  9334. <unmanaged>D3D10_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT</unmanaged>
  9335. <unmanaged-short>D3D10_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT</unmanaged-short>
  9336. </member>
  9337. <member name="F:SharpDX.Direct3D10.MessageId.GeometryShaderSetShaderResourcesUnbindDeletingObject">
  9338. <summary>
  9339. No documentation.
  9340. </summary>
  9341. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT']/*" />
  9342. <msdn-id>bb205324</msdn-id>
  9343. <unmanaged>D3D10_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT</unmanaged>
  9344. <unmanaged-short>D3D10_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT</unmanaged-short>
  9345. </member>
  9346. <member name="F:SharpDX.Direct3D10.MessageId.GeometryShaderSetConstantBuffersUnbindDeletingObject">
  9347. <summary>
  9348. No documentation.
  9349. </summary>
  9350. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT']/*" />
  9351. <msdn-id>bb205324</msdn-id>
  9352. <unmanaged>D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT</unmanaged>
  9353. <unmanaged-short>D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT</unmanaged-short>
  9354. </member>
  9355. <member name="F:SharpDX.Direct3D10.MessageId.GeometryShaderSetSamplersUnbindDeletingObject">
  9356. <summary>
  9357. No documentation.
  9358. </summary>
  9359. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT']/*" />
  9360. <msdn-id>bb205324</msdn-id>
  9361. <unmanaged>D3D10_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT</unmanaged>
  9362. <unmanaged-short>D3D10_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT</unmanaged-short>
  9363. </member>
  9364. <member name="F:SharpDX.Direct3D10.MessageId.StreamOutputSetTargetsUnbindDeletingObject">
  9365. <summary>
  9366. No documentation.
  9367. </summary>
  9368. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT']/*" />
  9369. <msdn-id>bb205324</msdn-id>
  9370. <unmanaged>D3D10_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT</unmanaged>
  9371. <unmanaged-short>D3D10_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT</unmanaged-short>
  9372. </member>
  9373. <member name="F:SharpDX.Direct3D10.MessageId.PixelShaderSetShaderUnbindDeletingObject">
  9374. <summary>
  9375. No documentation.
  9376. </summary>
  9377. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT']/*" />
  9378. <msdn-id>bb205324</msdn-id>
  9379. <unmanaged>D3D10_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT</unmanaged>
  9380. <unmanaged-short>D3D10_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT</unmanaged-short>
  9381. </member>
  9382. <member name="F:SharpDX.Direct3D10.MessageId.PixelShaderSetShaderResourcesUnbindDeletingObject">
  9383. <summary>
  9384. No documentation.
  9385. </summary>
  9386. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT']/*" />
  9387. <msdn-id>bb205324</msdn-id>
  9388. <unmanaged>D3D10_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT</unmanaged>
  9389. <unmanaged-short>D3D10_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT</unmanaged-short>
  9390. </member>
  9391. <member name="F:SharpDX.Direct3D10.MessageId.PixelShaderSetConstantBuffersUnbindDeletingObject">
  9392. <summary>
  9393. No documentation.
  9394. </summary>
  9395. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT']/*" />
  9396. <msdn-id>bb205324</msdn-id>
  9397. <unmanaged>D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT</unmanaged>
  9398. <unmanaged-short>D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT</unmanaged-short>
  9399. </member>
  9400. <member name="F:SharpDX.Direct3D10.MessageId.PixelShaderSetSamplersUnbindDeletingObject">
  9401. <summary>
  9402. No documentation.
  9403. </summary>
  9404. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT']/*" />
  9405. <msdn-id>bb205324</msdn-id>
  9406. <unmanaged>D3D10_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT</unmanaged>
  9407. <unmanaged-short>D3D10_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT</unmanaged-short>
  9408. </member>
  9409. <member name="F:SharpDX.Direct3D10.MessageId.RasterizerSetStateUnbindDeletingObject">
  9410. <summary>
  9411. No documentation.
  9412. </summary>
  9413. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT']/*" />
  9414. <msdn-id>bb205324</msdn-id>
  9415. <unmanaged>D3D10_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT</unmanaged>
  9416. <unmanaged-short>D3D10_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT</unmanaged-short>
  9417. </member>
  9418. <member name="F:SharpDX.Direct3D10.MessageId.OutputMergerSetBlendStateUnbindDeletingObject">
  9419. <summary>
  9420. No documentation.
  9421. </summary>
  9422. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT']/*" />
  9423. <msdn-id>bb205324</msdn-id>
  9424. <unmanaged>D3D10_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT</unmanaged>
  9425. <unmanaged-short>D3D10_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT</unmanaged-short>
  9426. </member>
  9427. <member name="F:SharpDX.Direct3D10.MessageId.OutputMergerSetDepthStencilStateUnbindDeletingObject">
  9428. <summary>
  9429. No documentation.
  9430. </summary>
  9431. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT']/*" />
  9432. <msdn-id>bb205324</msdn-id>
  9433. <unmanaged>D3D10_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT</unmanaged>
  9434. <unmanaged-short>D3D10_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT</unmanaged-short>
  9435. </member>
  9436. <member name="F:SharpDX.Direct3D10.MessageId.OutputMergerSetRenderTargetsUnbindDeletingObject">
  9437. <summary>
  9438. No documentation.
  9439. </summary>
  9440. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT']/*" />
  9441. <msdn-id>bb205324</msdn-id>
  9442. <unmanaged>D3D10_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT</unmanaged>
  9443. <unmanaged-short>D3D10_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT</unmanaged-short>
  9444. </member>
  9445. <member name="F:SharpDX.Direct3D10.MessageId.SetPredicationUnbindDeletingObject">
  9446. <summary>
  9447. No documentation.
  9448. </summary>
  9449. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT']/*" />
  9450. <msdn-id>bb205324</msdn-id>
  9451. <unmanaged>D3D10_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT</unmanaged>
  9452. <unmanaged-short>D3D10_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT</unmanaged-short>
  9453. </member>
  9454. <member name="F:SharpDX.Direct3D10.MessageId.GetPrivateDataMoreData">
  9455. <summary>
  9456. No documentation.
  9457. </summary>
  9458. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_GETPRIVATEDATA_MOREDATA']/*" />
  9459. <msdn-id>bb205324</msdn-id>
  9460. <unmanaged>D3D10_MESSAGE_ID_GETPRIVATEDATA_MOREDATA</unmanaged>
  9461. <unmanaged-short>D3D10_MESSAGE_ID_GETPRIVATEDATA_MOREDATA</unmanaged-short>
  9462. </member>
  9463. <member name="F:SharpDX.Direct3D10.MessageId.SetPrivateDataInvalidFreeData">
  9464. <summary>
  9465. No documentation.
  9466. </summary>
  9467. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA']/*" />
  9468. <msdn-id>bb205324</msdn-id>
  9469. <unmanaged>D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA</unmanaged>
  9470. <unmanaged-short>D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA</unmanaged-short>
  9471. </member>
  9472. <member name="F:SharpDX.Direct3D10.MessageId.SetPrivateDataInvalidIUnknown">
  9473. <summary>
  9474. No documentation.
  9475. </summary>
  9476. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN']/*" />
  9477. <msdn-id>bb205324</msdn-id>
  9478. <unmanaged>D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN</unmanaged>
  9479. <unmanaged-short>D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN</unmanaged-short>
  9480. </member>
  9481. <member name="F:SharpDX.Direct3D10.MessageId.SetPrivateDataInvalidFlags">
  9482. <summary>
  9483. No documentation.
  9484. </summary>
  9485. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS']/*" />
  9486. <msdn-id>bb205324</msdn-id>
  9487. <unmanaged>D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS</unmanaged>
  9488. <unmanaged-short>D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS</unmanaged-short>
  9489. </member>
  9490. <member name="F:SharpDX.Direct3D10.MessageId.SetPrivateDataChangingparams">
  9491. <summary>
  9492. No documentation.
  9493. </summary>
  9494. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS']/*" />
  9495. <msdn-id>bb205324</msdn-id>
  9496. <unmanaged>D3D10_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS</unmanaged>
  9497. <unmanaged-short>D3D10_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS</unmanaged-short>
  9498. </member>
  9499. <member name="F:SharpDX.Direct3D10.MessageId.SetPrivateDataOufOfMemory">
  9500. <summary>
  9501. No documentation.
  9502. </summary>
  9503. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY']/*" />
  9504. <msdn-id>bb205324</msdn-id>
  9505. <unmanaged>D3D10_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY</unmanaged>
  9506. <unmanaged-short>D3D10_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY</unmanaged-short>
  9507. </member>
  9508. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferUnrecognizedFormat">
  9509. <summary>
  9510. No documentation.
  9511. </summary>
  9512. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT']/*" />
  9513. <msdn-id>bb205324</msdn-id>
  9514. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT</unmanaged>
  9515. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT</unmanaged-short>
  9516. </member>
  9517. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferInvalidSamples">
  9518. <summary>
  9519. No documentation.
  9520. </summary>
  9521. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES']/*" />
  9522. <msdn-id>bb205324</msdn-id>
  9523. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES</unmanaged>
  9524. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES</unmanaged-short>
  9525. </member>
  9526. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferUnrecognizedUsage">
  9527. <summary>
  9528. No documentation.
  9529. </summary>
  9530. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE']/*" />
  9531. <msdn-id>bb205324</msdn-id>
  9532. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE</unmanaged>
  9533. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE</unmanaged-short>
  9534. </member>
  9535. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferUnrecognizedBindFlags">
  9536. <summary>
  9537. No documentation.
  9538. </summary>
  9539. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS']/*" />
  9540. <msdn-id>bb205324</msdn-id>
  9541. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS</unmanaged>
  9542. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS</unmanaged-short>
  9543. </member>
  9544. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferUnrecognizedCpuAccessFlags">
  9545. <summary>
  9546. No documentation.
  9547. </summary>
  9548. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS']/*" />
  9549. <msdn-id>bb205324</msdn-id>
  9550. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS</unmanaged>
  9551. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS</unmanaged-short>
  9552. </member>
  9553. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferUnrecognizedMiscFlags">
  9554. <summary>
  9555. No documentation.
  9556. </summary>
  9557. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS']/*" />
  9558. <msdn-id>bb205324</msdn-id>
  9559. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS</unmanaged>
  9560. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS</unmanaged-short>
  9561. </member>
  9562. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferInvalidCpuAccessFlags">
  9563. <summary>
  9564. No documentation.
  9565. </summary>
  9566. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS']/*" />
  9567. <msdn-id>bb205324</msdn-id>
  9568. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS</unmanaged>
  9569. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS</unmanaged-short>
  9570. </member>
  9571. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferInvalidBindFlags">
  9572. <summary>
  9573. No documentation.
  9574. </summary>
  9575. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS']/*" />
  9576. <msdn-id>bb205324</msdn-id>
  9577. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS</unmanaged>
  9578. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS</unmanaged-short>
  9579. </member>
  9580. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferInvalidInitialData">
  9581. <summary>
  9582. No documentation.
  9583. </summary>
  9584. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA']/*" />
  9585. <msdn-id>bb205324</msdn-id>
  9586. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA</unmanaged>
  9587. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA</unmanaged-short>
  9588. </member>
  9589. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferInvalidDimensions">
  9590. <summary>
  9591. No documentation.
  9592. </summary>
  9593. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS']/*" />
  9594. <msdn-id>bb205324</msdn-id>
  9595. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS</unmanaged>
  9596. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS</unmanaged-short>
  9597. </member>
  9598. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferInvalidMipLevels">
  9599. <summary>
  9600. No documentation.
  9601. </summary>
  9602. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS']/*" />
  9603. <msdn-id>bb205324</msdn-id>
  9604. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS</unmanaged>
  9605. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS</unmanaged-short>
  9606. </member>
  9607. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferInvalidMiscFlags">
  9608. <summary>
  9609. No documentation.
  9610. </summary>
  9611. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS']/*" />
  9612. <msdn-id>bb205324</msdn-id>
  9613. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS</unmanaged>
  9614. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS</unmanaged-short>
  9615. </member>
  9616. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferInvalidArgumentReturn">
  9617. <summary>
  9618. No documentation.
  9619. </summary>
  9620. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN']/*" />
  9621. <msdn-id>bb205324</msdn-id>
  9622. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN</unmanaged>
  9623. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN</unmanaged-short>
  9624. </member>
  9625. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferOufOfMemoryReturn">
  9626. <summary>
  9627. No documentation.
  9628. </summary>
  9629. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN']/*" />
  9630. <msdn-id>bb205324</msdn-id>
  9631. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN</unmanaged>
  9632. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN</unmanaged-short>
  9633. </member>
  9634. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferNullDescription">
  9635. <summary>
  9636. No documentation.
  9637. </summary>
  9638. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_NULLDESC']/*" />
  9639. <msdn-id>bb205324</msdn-id>
  9640. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_NULLDESC</unmanaged>
  9641. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_NULLDESC</unmanaged-short>
  9642. </member>
  9643. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferInvalidConstantBufferBindingS">
  9644. <summary>
  9645. No documentation.
  9646. </summary>
  9647. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS']/*" />
  9648. <msdn-id>bb205324</msdn-id>
  9649. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS</unmanaged>
  9650. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS</unmanaged-short>
  9651. </member>
  9652. <member name="F:SharpDX.Direct3D10.MessageId.CreateBufferLargeAllocation">
  9653. <summary>
  9654. No documentation.
  9655. </summary>
  9656. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION']/*" />
  9657. <msdn-id>bb205324</msdn-id>
  9658. <unmanaged>D3D10_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION</unmanaged>
  9659. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION</unmanaged-short>
  9660. </member>
  9661. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DUnrecognizedFormat">
  9662. <summary>
  9663. No documentation.
  9664. </summary>
  9665. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT']/*" />
  9666. <msdn-id>bb205324</msdn-id>
  9667. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT</unmanaged>
  9668. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT</unmanaged-short>
  9669. </member>
  9670. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DUnsupportedFormat">
  9671. <summary>
  9672. No documentation.
  9673. </summary>
  9674. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT']/*" />
  9675. <msdn-id>bb205324</msdn-id>
  9676. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT</unmanaged>
  9677. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT</unmanaged-short>
  9678. </member>
  9679. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DInvalidSamples">
  9680. <summary>
  9681. No documentation.
  9682. </summary>
  9683. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES']/*" />
  9684. <msdn-id>bb205324</msdn-id>
  9685. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES</unmanaged>
  9686. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES</unmanaged-short>
  9687. </member>
  9688. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DUnrecognizedUsage">
  9689. <summary>
  9690. No documentation.
  9691. </summary>
  9692. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE']/*" />
  9693. <msdn-id>bb205324</msdn-id>
  9694. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE</unmanaged>
  9695. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE</unmanaged-short>
  9696. </member>
  9697. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DUnrecognizedBindFlags">
  9698. <summary>
  9699. No documentation.
  9700. </summary>
  9701. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS']/*" />
  9702. <msdn-id>bb205324</msdn-id>
  9703. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS</unmanaged>
  9704. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS</unmanaged-short>
  9705. </member>
  9706. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DUnrecognizedCpuAccessFlags">
  9707. <summary>
  9708. No documentation.
  9709. </summary>
  9710. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS']/*" />
  9711. <msdn-id>bb205324</msdn-id>
  9712. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS</unmanaged>
  9713. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS</unmanaged-short>
  9714. </member>
  9715. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DUnrecognizedMiscFlags">
  9716. <summary>
  9717. No documentation.
  9718. </summary>
  9719. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS']/*" />
  9720. <msdn-id>bb205324</msdn-id>
  9721. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS</unmanaged>
  9722. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS</unmanaged-short>
  9723. </member>
  9724. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DInvalidCpuAccessFlags">
  9725. <summary>
  9726. No documentation.
  9727. </summary>
  9728. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS']/*" />
  9729. <msdn-id>bb205324</msdn-id>
  9730. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS</unmanaged>
  9731. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS</unmanaged-short>
  9732. </member>
  9733. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DInvalidBindFlags">
  9734. <summary>
  9735. No documentation.
  9736. </summary>
  9737. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS']/*" />
  9738. <msdn-id>bb205324</msdn-id>
  9739. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS</unmanaged>
  9740. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS</unmanaged-short>
  9741. </member>
  9742. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DInvalidInitialData">
  9743. <summary>
  9744. No documentation.
  9745. </summary>
  9746. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA']/*" />
  9747. <msdn-id>bb205324</msdn-id>
  9748. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA</unmanaged>
  9749. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA</unmanaged-short>
  9750. </member>
  9751. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DInvalidDimensions">
  9752. <summary>
  9753. No documentation.
  9754. </summary>
  9755. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS']/*" />
  9756. <msdn-id>bb205324</msdn-id>
  9757. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS</unmanaged>
  9758. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS</unmanaged-short>
  9759. </member>
  9760. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DInvalidMipLevels">
  9761. <summary>
  9762. No documentation.
  9763. </summary>
  9764. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS']/*" />
  9765. <msdn-id>bb205324</msdn-id>
  9766. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS</unmanaged>
  9767. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS</unmanaged-short>
  9768. </member>
  9769. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DInvalidMiscFlags">
  9770. <summary>
  9771. No documentation.
  9772. </summary>
  9773. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS']/*" />
  9774. <msdn-id>bb205324</msdn-id>
  9775. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS</unmanaged>
  9776. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS</unmanaged-short>
  9777. </member>
  9778. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DInvalidArgumentReturn">
  9779. <summary>
  9780. No documentation.
  9781. </summary>
  9782. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN']/*" />
  9783. <msdn-id>bb205324</msdn-id>
  9784. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN</unmanaged>
  9785. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN</unmanaged-short>
  9786. </member>
  9787. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DOufOfMemoryReturn">
  9788. <summary>
  9789. No documentation.
  9790. </summary>
  9791. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN']/*" />
  9792. <msdn-id>bb205324</msdn-id>
  9793. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN</unmanaged>
  9794. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN</unmanaged-short>
  9795. </member>
  9796. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DNullDescription">
  9797. <summary>
  9798. No documentation.
  9799. </summary>
  9800. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_NULLDESC']/*" />
  9801. <msdn-id>bb205324</msdn-id>
  9802. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_NULLDESC</unmanaged>
  9803. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_NULLDESC</unmanaged-short>
  9804. </member>
  9805. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture1DLargeAllocation">
  9806. <summary>
  9807. No documentation.
  9808. </summary>
  9809. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION']/*" />
  9810. <msdn-id>bb205324</msdn-id>
  9811. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION</unmanaged>
  9812. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION</unmanaged-short>
  9813. </member>
  9814. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DUnrecognizedFormat">
  9815. <summary>
  9816. No documentation.
  9817. </summary>
  9818. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT']/*" />
  9819. <msdn-id>bb205324</msdn-id>
  9820. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT</unmanaged>
  9821. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT</unmanaged-short>
  9822. </member>
  9823. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DUnsupportedFormat">
  9824. <summary>
  9825. No documentation.
  9826. </summary>
  9827. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT']/*" />
  9828. <msdn-id>bb205324</msdn-id>
  9829. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT</unmanaged>
  9830. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT</unmanaged-short>
  9831. </member>
  9832. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DInvalidSamples">
  9833. <summary>
  9834. No documentation.
  9835. </summary>
  9836. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES']/*" />
  9837. <msdn-id>bb205324</msdn-id>
  9838. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES</unmanaged>
  9839. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES</unmanaged-short>
  9840. </member>
  9841. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DUnrecognizedUsage">
  9842. <summary>
  9843. No documentation.
  9844. </summary>
  9845. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE']/*" />
  9846. <msdn-id>bb205324</msdn-id>
  9847. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE</unmanaged>
  9848. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE</unmanaged-short>
  9849. </member>
  9850. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DUnrecognizedBindFlags">
  9851. <summary>
  9852. No documentation.
  9853. </summary>
  9854. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS']/*" />
  9855. <msdn-id>bb205324</msdn-id>
  9856. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS</unmanaged>
  9857. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS</unmanaged-short>
  9858. </member>
  9859. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DUnrecognizedCpuAccessFlags">
  9860. <summary>
  9861. No documentation.
  9862. </summary>
  9863. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS']/*" />
  9864. <msdn-id>bb205324</msdn-id>
  9865. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS</unmanaged>
  9866. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS</unmanaged-short>
  9867. </member>
  9868. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DUnrecognizedMiscFlags">
  9869. <summary>
  9870. No documentation.
  9871. </summary>
  9872. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS']/*" />
  9873. <msdn-id>bb205324</msdn-id>
  9874. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS</unmanaged>
  9875. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS</unmanaged-short>
  9876. </member>
  9877. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DInvalidCpuAccessFlags">
  9878. <summary>
  9879. No documentation.
  9880. </summary>
  9881. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS']/*" />
  9882. <msdn-id>bb205324</msdn-id>
  9883. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS</unmanaged>
  9884. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS</unmanaged-short>
  9885. </member>
  9886. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DInvalidBindFlags">
  9887. <summary>
  9888. No documentation.
  9889. </summary>
  9890. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS']/*" />
  9891. <msdn-id>bb205324</msdn-id>
  9892. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS</unmanaged>
  9893. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS</unmanaged-short>
  9894. </member>
  9895. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DInvalidInitialData">
  9896. <summary>
  9897. No documentation.
  9898. </summary>
  9899. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA']/*" />
  9900. <msdn-id>bb205324</msdn-id>
  9901. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA</unmanaged>
  9902. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA</unmanaged-short>
  9903. </member>
  9904. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DInvalidDimensions">
  9905. <summary>
  9906. No documentation.
  9907. </summary>
  9908. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS']/*" />
  9909. <msdn-id>bb205324</msdn-id>
  9910. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS</unmanaged>
  9911. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS</unmanaged-short>
  9912. </member>
  9913. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DInvalidMipLevels">
  9914. <summary>
  9915. No documentation.
  9916. </summary>
  9917. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS']/*" />
  9918. <msdn-id>bb205324</msdn-id>
  9919. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS</unmanaged>
  9920. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS</unmanaged-short>
  9921. </member>
  9922. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DInvalidMiscFlags">
  9923. <summary>
  9924. No documentation.
  9925. </summary>
  9926. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS']/*" />
  9927. <msdn-id>bb205324</msdn-id>
  9928. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS</unmanaged>
  9929. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS</unmanaged-short>
  9930. </member>
  9931. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DInvalidArgumentReturn">
  9932. <summary>
  9933. No documentation.
  9934. </summary>
  9935. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN']/*" />
  9936. <msdn-id>bb205324</msdn-id>
  9937. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN</unmanaged>
  9938. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN</unmanaged-short>
  9939. </member>
  9940. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DOufOfMemoryReturn">
  9941. <summary>
  9942. No documentation.
  9943. </summary>
  9944. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN']/*" />
  9945. <msdn-id>bb205324</msdn-id>
  9946. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN</unmanaged>
  9947. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN</unmanaged-short>
  9948. </member>
  9949. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DNullDescription">
  9950. <summary>
  9951. No documentation.
  9952. </summary>
  9953. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_NULLDESC']/*" />
  9954. <msdn-id>bb205324</msdn-id>
  9955. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_NULLDESC</unmanaged>
  9956. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_NULLDESC</unmanaged-short>
  9957. </member>
  9958. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture2DLargeAllocation">
  9959. <summary>
  9960. No documentation.
  9961. </summary>
  9962. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION']/*" />
  9963. <msdn-id>bb205324</msdn-id>
  9964. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION</unmanaged>
  9965. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION</unmanaged-short>
  9966. </member>
  9967. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DUnrecognizedFormat">
  9968. <summary>
  9969. No documentation.
  9970. </summary>
  9971. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT']/*" />
  9972. <msdn-id>bb205324</msdn-id>
  9973. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT</unmanaged>
  9974. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT</unmanaged-short>
  9975. </member>
  9976. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DUnsupportedFormat">
  9977. <summary>
  9978. No documentation.
  9979. </summary>
  9980. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT']/*" />
  9981. <msdn-id>bb205324</msdn-id>
  9982. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT</unmanaged>
  9983. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT</unmanaged-short>
  9984. </member>
  9985. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DInvalidSamples">
  9986. <summary>
  9987. No documentation.
  9988. </summary>
  9989. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES']/*" />
  9990. <msdn-id>bb205324</msdn-id>
  9991. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES</unmanaged>
  9992. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES</unmanaged-short>
  9993. </member>
  9994. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DUnrecognizedUsage">
  9995. <summary>
  9996. No documentation.
  9997. </summary>
  9998. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE']/*" />
  9999. <msdn-id>bb205324</msdn-id>
  10000. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE</unmanaged>
  10001. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE</unmanaged-short>
  10002. </member>
  10003. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DUnrecognizedBindFlags">
  10004. <summary>
  10005. No documentation.
  10006. </summary>
  10007. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS']/*" />
  10008. <msdn-id>bb205324</msdn-id>
  10009. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS</unmanaged>
  10010. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS</unmanaged-short>
  10011. </member>
  10012. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DUnrecognizedCpuAccessFlags">
  10013. <summary>
  10014. No documentation.
  10015. </summary>
  10016. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS']/*" />
  10017. <msdn-id>bb205324</msdn-id>
  10018. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS</unmanaged>
  10019. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS</unmanaged-short>
  10020. </member>
  10021. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DUnrecognizedMiscFlags">
  10022. <summary>
  10023. No documentation.
  10024. </summary>
  10025. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS']/*" />
  10026. <msdn-id>bb205324</msdn-id>
  10027. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS</unmanaged>
  10028. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS</unmanaged-short>
  10029. </member>
  10030. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DInvalidCpuAccessFlags">
  10031. <summary>
  10032. No documentation.
  10033. </summary>
  10034. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS']/*" />
  10035. <msdn-id>bb205324</msdn-id>
  10036. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS</unmanaged>
  10037. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS</unmanaged-short>
  10038. </member>
  10039. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DInvalidBindFlags">
  10040. <summary>
  10041. No documentation.
  10042. </summary>
  10043. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS']/*" />
  10044. <msdn-id>bb205324</msdn-id>
  10045. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS</unmanaged>
  10046. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS</unmanaged-short>
  10047. </member>
  10048. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DInvalidInitialData">
  10049. <summary>
  10050. No documentation.
  10051. </summary>
  10052. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA']/*" />
  10053. <msdn-id>bb205324</msdn-id>
  10054. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA</unmanaged>
  10055. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA</unmanaged-short>
  10056. </member>
  10057. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DInvalidDimensions">
  10058. <summary>
  10059. No documentation.
  10060. </summary>
  10061. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS']/*" />
  10062. <msdn-id>bb205324</msdn-id>
  10063. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS</unmanaged>
  10064. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS</unmanaged-short>
  10065. </member>
  10066. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DInvalidMipLevels">
  10067. <summary>
  10068. No documentation.
  10069. </summary>
  10070. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS']/*" />
  10071. <msdn-id>bb205324</msdn-id>
  10072. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS</unmanaged>
  10073. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS</unmanaged-short>
  10074. </member>
  10075. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DInvalidMiscFlags">
  10076. <summary>
  10077. No documentation.
  10078. </summary>
  10079. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS']/*" />
  10080. <msdn-id>bb205324</msdn-id>
  10081. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS</unmanaged>
  10082. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS</unmanaged-short>
  10083. </member>
  10084. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DInvalidArgumentReturn">
  10085. <summary>
  10086. No documentation.
  10087. </summary>
  10088. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN']/*" />
  10089. <msdn-id>bb205324</msdn-id>
  10090. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN</unmanaged>
  10091. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN</unmanaged-short>
  10092. </member>
  10093. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DOufOfMemoryReturn">
  10094. <summary>
  10095. No documentation.
  10096. </summary>
  10097. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN']/*" />
  10098. <msdn-id>bb205324</msdn-id>
  10099. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN</unmanaged>
  10100. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN</unmanaged-short>
  10101. </member>
  10102. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DNullDescription">
  10103. <summary>
  10104. No documentation.
  10105. </summary>
  10106. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_NULLDESC']/*" />
  10107. <msdn-id>bb205324</msdn-id>
  10108. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_NULLDESC</unmanaged>
  10109. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_NULLDESC</unmanaged-short>
  10110. </member>
  10111. <member name="F:SharpDX.Direct3D10.MessageId.CreateTexture3DLargeAllocation">
  10112. <summary>
  10113. No documentation.
  10114. </summary>
  10115. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION']/*" />
  10116. <msdn-id>bb205324</msdn-id>
  10117. <unmanaged>D3D10_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION</unmanaged>
  10118. <unmanaged-short>D3D10_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION</unmanaged-short>
  10119. </member>
  10120. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewUnrecognizedFormat">
  10121. <summary>
  10122. No documentation.
  10123. </summary>
  10124. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT']/*" />
  10125. <msdn-id>bb205324</msdn-id>
  10126. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT</unmanaged>
  10127. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT</unmanaged-short>
  10128. </member>
  10129. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewInvalidDescription">
  10130. <summary>
  10131. No documentation.
  10132. </summary>
  10133. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC']/*" />
  10134. <msdn-id>bb205324</msdn-id>
  10135. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC</unmanaged>
  10136. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC</unmanaged-short>
  10137. </member>
  10138. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewInvalidFormat">
  10139. <summary>
  10140. No documentation.
  10141. </summary>
  10142. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT']/*" />
  10143. <msdn-id>bb205324</msdn-id>
  10144. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT</unmanaged>
  10145. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT</unmanaged-short>
  10146. </member>
  10147. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewInvalidDimensions">
  10148. <summary>
  10149. No documentation.
  10150. </summary>
  10151. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS']/*" />
  10152. <msdn-id>bb205324</msdn-id>
  10153. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS</unmanaged>
  10154. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS</unmanaged-short>
  10155. </member>
  10156. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewInvalidResource">
  10157. <summary>
  10158. No documentation.
  10159. </summary>
  10160. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE']/*" />
  10161. <msdn-id>bb205324</msdn-id>
  10162. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE</unmanaged>
  10163. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE</unmanaged-short>
  10164. </member>
  10165. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewTooManyObjects">
  10166. <summary>
  10167. No documentation.
  10168. </summary>
  10169. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS']/*" />
  10170. <msdn-id>bb205324</msdn-id>
  10171. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS</unmanaged>
  10172. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS</unmanaged-short>
  10173. </member>
  10174. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewInvalidArgumentReturn">
  10175. <summary>
  10176. No documentation.
  10177. </summary>
  10178. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN']/*" />
  10179. <msdn-id>bb205324</msdn-id>
  10180. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN</unmanaged>
  10181. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN</unmanaged-short>
  10182. </member>
  10183. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewOufOfMemoryReturn">
  10184. <summary>
  10185. No documentation.
  10186. </summary>
  10187. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN']/*" />
  10188. <msdn-id>bb205324</msdn-id>
  10189. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN</unmanaged>
  10190. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN</unmanaged-short>
  10191. </member>
  10192. <member name="F:SharpDX.Direct3D10.MessageId.CreateRenderTargetViewUnrecognizedFormat">
  10193. <summary>
  10194. No documentation.
  10195. </summary>
  10196. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT']/*" />
  10197. <msdn-id>bb205324</msdn-id>
  10198. <unmanaged>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT</unmanaged>
  10199. <unmanaged-short>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT</unmanaged-short>
  10200. </member>
  10201. <member name="F:SharpDX.Direct3D10.MessageId.CreateRenderTargetViewUnsupportedFormat">
  10202. <summary>
  10203. No documentation.
  10204. </summary>
  10205. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT']/*" />
  10206. <msdn-id>bb205324</msdn-id>
  10207. <unmanaged>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT</unmanaged>
  10208. <unmanaged-short>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT</unmanaged-short>
  10209. </member>
  10210. <member name="F:SharpDX.Direct3D10.MessageId.CreateRenderTargetViewInvalidDescription">
  10211. <summary>
  10212. No documentation.
  10213. </summary>
  10214. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC']/*" />
  10215. <msdn-id>bb205324</msdn-id>
  10216. <unmanaged>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC</unmanaged>
  10217. <unmanaged-short>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC</unmanaged-short>
  10218. </member>
  10219. <member name="F:SharpDX.Direct3D10.MessageId.CreateRenderTargetViewInvalidFormat">
  10220. <summary>
  10221. No documentation.
  10222. </summary>
  10223. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT']/*" />
  10224. <msdn-id>bb205324</msdn-id>
  10225. <unmanaged>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT</unmanaged>
  10226. <unmanaged-short>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT</unmanaged-short>
  10227. </member>
  10228. <member name="F:SharpDX.Direct3D10.MessageId.CreateRenderTargetViewInvalidDimensions">
  10229. <summary>
  10230. No documentation.
  10231. </summary>
  10232. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS']/*" />
  10233. <msdn-id>bb205324</msdn-id>
  10234. <unmanaged>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS</unmanaged>
  10235. <unmanaged-short>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS</unmanaged-short>
  10236. </member>
  10237. <member name="F:SharpDX.Direct3D10.MessageId.CreateRenderTargetViewInvalidResource">
  10238. <summary>
  10239. No documentation.
  10240. </summary>
  10241. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE']/*" />
  10242. <msdn-id>bb205324</msdn-id>
  10243. <unmanaged>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE</unmanaged>
  10244. <unmanaged-short>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE</unmanaged-short>
  10245. </member>
  10246. <member name="F:SharpDX.Direct3D10.MessageId.CreateRenderTargetViewTooManyObjects">
  10247. <summary>
  10248. No documentation.
  10249. </summary>
  10250. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS']/*" />
  10251. <msdn-id>bb205324</msdn-id>
  10252. <unmanaged>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS</unmanaged>
  10253. <unmanaged-short>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS</unmanaged-short>
  10254. </member>
  10255. <member name="F:SharpDX.Direct3D10.MessageId.CreateRenderTargetViewInvalidArgumentReturn">
  10256. <summary>
  10257. No documentation.
  10258. </summary>
  10259. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN']/*" />
  10260. <msdn-id>bb205324</msdn-id>
  10261. <unmanaged>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN</unmanaged>
  10262. <unmanaged-short>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN</unmanaged-short>
  10263. </member>
  10264. <member name="F:SharpDX.Direct3D10.MessageId.CreateRenderTargetViewOufOfMemoryReturn">
  10265. <summary>
  10266. No documentation.
  10267. </summary>
  10268. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN']/*" />
  10269. <msdn-id>bb205324</msdn-id>
  10270. <unmanaged>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN</unmanaged>
  10271. <unmanaged-short>D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN</unmanaged-short>
  10272. </member>
  10273. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilViewUnrecognizedFormat">
  10274. <summary>
  10275. No documentation.
  10276. </summary>
  10277. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT']/*" />
  10278. <msdn-id>bb205324</msdn-id>
  10279. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT</unmanaged>
  10280. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT</unmanaged-short>
  10281. </member>
  10282. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilViewInvalidDescription">
  10283. <summary>
  10284. No documentation.
  10285. </summary>
  10286. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC']/*" />
  10287. <msdn-id>bb205324</msdn-id>
  10288. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC</unmanaged>
  10289. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC</unmanaged-short>
  10290. </member>
  10291. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilViewInvalidFormat">
  10292. <summary>
  10293. No documentation.
  10294. </summary>
  10295. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT']/*" />
  10296. <msdn-id>bb205324</msdn-id>
  10297. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT</unmanaged>
  10298. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT</unmanaged-short>
  10299. </member>
  10300. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilViewInvalidDimensions">
  10301. <summary>
  10302. No documentation.
  10303. </summary>
  10304. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS']/*" />
  10305. <msdn-id>bb205324</msdn-id>
  10306. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS</unmanaged>
  10307. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS</unmanaged-short>
  10308. </member>
  10309. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilViewInvalidResource">
  10310. <summary>
  10311. No documentation.
  10312. </summary>
  10313. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE']/*" />
  10314. <msdn-id>bb205324</msdn-id>
  10315. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE</unmanaged>
  10316. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE</unmanaged-short>
  10317. </member>
  10318. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilViewTooManyObjects">
  10319. <summary>
  10320. No documentation.
  10321. </summary>
  10322. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS']/*" />
  10323. <msdn-id>bb205324</msdn-id>
  10324. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS</unmanaged>
  10325. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS</unmanaged-short>
  10326. </member>
  10327. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilViewInvalidArgumentReturn">
  10328. <summary>
  10329. No documentation.
  10330. </summary>
  10331. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN']/*" />
  10332. <msdn-id>bb205324</msdn-id>
  10333. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN</unmanaged>
  10334. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN</unmanaged-short>
  10335. </member>
  10336. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilViewOufOfMemoryReturn">
  10337. <summary>
  10338. No documentation.
  10339. </summary>
  10340. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN']/*" />
  10341. <msdn-id>bb205324</msdn-id>
  10342. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN</unmanaged>
  10343. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN</unmanaged-short>
  10344. </member>
  10345. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutOufOfMemory">
  10346. <summary>
  10347. No documentation.
  10348. </summary>
  10349. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY']/*" />
  10350. <msdn-id>bb205324</msdn-id>
  10351. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY</unmanaged>
  10352. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY</unmanaged-short>
  10353. </member>
  10354. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutTooManyElements">
  10355. <summary>
  10356. No documentation.
  10357. </summary>
  10358. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS']/*" />
  10359. <msdn-id>bb205324</msdn-id>
  10360. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS</unmanaged>
  10361. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS</unmanaged-short>
  10362. </member>
  10363. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutInvalidFormat">
  10364. <summary>
  10365. No documentation.
  10366. </summary>
  10367. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT']/*" />
  10368. <msdn-id>bb205324</msdn-id>
  10369. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT</unmanaged>
  10370. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT</unmanaged-short>
  10371. </member>
  10372. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutIncompatibleformat">
  10373. <summary>
  10374. No documentation.
  10375. </summary>
  10376. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT']/*" />
  10377. <msdn-id>bb205324</msdn-id>
  10378. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT</unmanaged>
  10379. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT</unmanaged-short>
  10380. </member>
  10381. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutInvalidSlot">
  10382. <summary>
  10383. No documentation.
  10384. </summary>
  10385. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT']/*" />
  10386. <msdn-id>bb205324</msdn-id>
  10387. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT</unmanaged>
  10388. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT</unmanaged-short>
  10389. </member>
  10390. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutInvalidInputsLotclass">
  10391. <summary>
  10392. No documentation.
  10393. </summary>
  10394. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS']/*" />
  10395. <msdn-id>bb205324</msdn-id>
  10396. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS</unmanaged>
  10397. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS</unmanaged-short>
  10398. </member>
  10399. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutSteprateslotclassmismatch">
  10400. <summary>
  10401. No documentation.
  10402. </summary>
  10403. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH']/*" />
  10404. <msdn-id>bb205324</msdn-id>
  10405. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH</unmanaged>
  10406. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH</unmanaged-short>
  10407. </member>
  10408. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutInvalidSlotClassChange">
  10409. <summary>
  10410. No documentation.
  10411. </summary>
  10412. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE']/*" />
  10413. <msdn-id>bb205324</msdn-id>
  10414. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE</unmanaged>
  10415. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE</unmanaged-short>
  10416. </member>
  10417. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutInvalidStepratechange">
  10418. <summary>
  10419. No documentation.
  10420. </summary>
  10421. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE']/*" />
  10422. <msdn-id>bb205324</msdn-id>
  10423. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE</unmanaged>
  10424. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE</unmanaged-short>
  10425. </member>
  10426. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutInvalidAlignment">
  10427. <summary>
  10428. No documentation.
  10429. </summary>
  10430. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT']/*" />
  10431. <msdn-id>bb205324</msdn-id>
  10432. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT</unmanaged>
  10433. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT</unmanaged-short>
  10434. </member>
  10435. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutDuplicatesemantic">
  10436. <summary>
  10437. No documentation.
  10438. </summary>
  10439. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC']/*" />
  10440. <msdn-id>bb205324</msdn-id>
  10441. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC</unmanaged>
  10442. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC</unmanaged-short>
  10443. </member>
  10444. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutUnparseableinputsignature">
  10445. <summary>
  10446. No documentation.
  10447. </summary>
  10448. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE']/*" />
  10449. <msdn-id>bb205324</msdn-id>
  10450. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE</unmanaged>
  10451. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE</unmanaged-short>
  10452. </member>
  10453. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutNullSemantic">
  10454. <summary>
  10455. No documentation.
  10456. </summary>
  10457. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC']/*" />
  10458. <msdn-id>bb205324</msdn-id>
  10459. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC</unmanaged>
  10460. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC</unmanaged-short>
  10461. </member>
  10462. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutMissingElement">
  10463. <summary>
  10464. No documentation.
  10465. </summary>
  10466. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT']/*" />
  10467. <msdn-id>bb205324</msdn-id>
  10468. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT</unmanaged>
  10469. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT</unmanaged-short>
  10470. </member>
  10471. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutNullDescription">
  10472. <summary>
  10473. No documentation.
  10474. </summary>
  10475. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC']/*" />
  10476. <msdn-id>bb205324</msdn-id>
  10477. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC</unmanaged>
  10478. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC</unmanaged-short>
  10479. </member>
  10480. <member name="F:SharpDX.Direct3D10.MessageId.CreateVertexShaderOufOfMemory">
  10481. <summary>
  10482. No documentation.
  10483. </summary>
  10484. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY']/*" />
  10485. <msdn-id>bb205324</msdn-id>
  10486. <unmanaged>D3D10_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY</unmanaged>
  10487. <unmanaged-short>D3D10_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY</unmanaged-short>
  10488. </member>
  10489. <member name="F:SharpDX.Direct3D10.MessageId.CreateVertexShaderInvalidShaderBytecode">
  10490. <summary>
  10491. No documentation.
  10492. </summary>
  10493. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE']/*" />
  10494. <msdn-id>bb205324</msdn-id>
  10495. <unmanaged>D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE</unmanaged>
  10496. <unmanaged-short>D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE</unmanaged-short>
  10497. </member>
  10498. <member name="F:SharpDX.Direct3D10.MessageId.CreateVertexShaderInvalidShaderType">
  10499. <summary>
  10500. No documentation.
  10501. </summary>
  10502. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE']/*" />
  10503. <msdn-id>bb205324</msdn-id>
  10504. <unmanaged>D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE</unmanaged>
  10505. <unmanaged-short>D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE</unmanaged-short>
  10506. </member>
  10507. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderOufOfMemory">
  10508. <summary>
  10509. No documentation.
  10510. </summary>
  10511. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY']/*" />
  10512. <msdn-id>bb205324</msdn-id>
  10513. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY</unmanaged>
  10514. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY</unmanaged-short>
  10515. </member>
  10516. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderInvalidShaderBytecode">
  10517. <summary>
  10518. No documentation.
  10519. </summary>
  10520. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE']/*" />
  10521. <msdn-id>bb205324</msdn-id>
  10522. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE</unmanaged>
  10523. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE</unmanaged-short>
  10524. </member>
  10525. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderInvalidShaderType">
  10526. <summary>
  10527. No documentation.
  10528. </summary>
  10529. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE']/*" />
  10530. <msdn-id>bb205324</msdn-id>
  10531. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE</unmanaged>
  10532. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE</unmanaged-short>
  10533. </member>
  10534. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputOufOfMemory">
  10535. <summary>
  10536. No documentation.
  10537. </summary>
  10538. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY']/*" />
  10539. <msdn-id>bb205324</msdn-id>
  10540. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY</unmanaged>
  10541. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY</unmanaged-short>
  10542. </member>
  10543. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputInvalidShaderBytecode">
  10544. <summary>
  10545. No documentation.
  10546. </summary>
  10547. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE']/*" />
  10548. <msdn-id>bb205324</msdn-id>
  10549. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE</unmanaged>
  10550. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE</unmanaged-short>
  10551. </member>
  10552. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputInvalidShaderType">
  10553. <summary>
  10554. No documentation.
  10555. </summary>
  10556. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE']/*" />
  10557. <msdn-id>bb205324</msdn-id>
  10558. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE</unmanaged>
  10559. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE</unmanaged-short>
  10560. </member>
  10561. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputInvalidNumentries">
  10562. <summary>
  10563. No documentation.
  10564. </summary>
  10565. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES']/*" />
  10566. <msdn-id>bb205324</msdn-id>
  10567. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES</unmanaged>
  10568. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES</unmanaged-short>
  10569. </member>
  10570. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputOutputStreamsTrideunused">
  10571. <summary>
  10572. No documentation.
  10573. </summary>
  10574. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED']/*" />
  10575. <msdn-id>bb205324</msdn-id>
  10576. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED</unmanaged>
  10577. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED</unmanaged-short>
  10578. </member>
  10579. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputUnexpectedDeclaration">
  10580. <summary>
  10581. No documentation.
  10582. </summary>
  10583. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL']/*" />
  10584. <msdn-id>bb205324</msdn-id>
  10585. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL</unmanaged>
  10586. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL</unmanaged-short>
  10587. </member>
  10588. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputExpectedDeclaration">
  10589. <summary>
  10590. No documentation.
  10591. </summary>
  10592. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL']/*" />
  10593. <msdn-id>bb205324</msdn-id>
  10594. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL</unmanaged>
  10595. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL</unmanaged-short>
  10596. </member>
  10597. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputOutputSlot0expected">
  10598. <summary>
  10599. No documentation.
  10600. </summary>
  10601. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED']/*" />
  10602. <msdn-id>bb205324</msdn-id>
  10603. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED</unmanaged>
  10604. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED</unmanaged-short>
  10605. </member>
  10606. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputInvalidOutputSlot">
  10607. <summary>
  10608. No documentation.
  10609. </summary>
  10610. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT']/*" />
  10611. <msdn-id>bb205324</msdn-id>
  10612. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT</unmanaged>
  10613. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT</unmanaged-short>
  10614. </member>
  10615. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputOnlyoneelementperslot">
  10616. <summary>
  10617. No documentation.
  10618. </summary>
  10619. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT']/*" />
  10620. <msdn-id>bb205324</msdn-id>
  10621. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT</unmanaged>
  10622. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT</unmanaged-short>
  10623. </member>
  10624. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputInvalidComponentcount">
  10625. <summary>
  10626. No documentation.
  10627. </summary>
  10628. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT']/*" />
  10629. <msdn-id>bb205324</msdn-id>
  10630. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT</unmanaged>
  10631. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT</unmanaged-short>
  10632. </member>
  10633. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputInvalidStartcomponentandcomponentcount">
  10634. <summary>
  10635. No documentation.
  10636. </summary>
  10637. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT']/*" />
  10638. <msdn-id>bb205324</msdn-id>
  10639. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT</unmanaged>
  10640. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT</unmanaged-short>
  10641. </member>
  10642. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputInvalidGapdefinition">
  10643. <summary>
  10644. No documentation.
  10645. </summary>
  10646. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION']/*" />
  10647. <msdn-id>bb205324</msdn-id>
  10648. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION</unmanaged>
  10649. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION</unmanaged-short>
  10650. </member>
  10651. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputRepeatedoutput">
  10652. <summary>
  10653. No documentation.
  10654. </summary>
  10655. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT']/*" />
  10656. <msdn-id>bb205324</msdn-id>
  10657. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT</unmanaged>
  10658. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT</unmanaged-short>
  10659. </member>
  10660. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputInvalidOutputStreamsTride">
  10661. <summary>
  10662. No documentation.
  10663. </summary>
  10664. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE']/*" />
  10665. <msdn-id>bb205324</msdn-id>
  10666. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE</unmanaged>
  10667. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE</unmanaged-short>
  10668. </member>
  10669. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputMissingSemantic">
  10670. <summary>
  10671. No documentation.
  10672. </summary>
  10673. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC']/*" />
  10674. <msdn-id>bb205324</msdn-id>
  10675. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC</unmanaged>
  10676. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC</unmanaged-short>
  10677. </member>
  10678. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputMaskmismatch">
  10679. <summary>
  10680. No documentation.
  10681. </summary>
  10682. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH']/*" />
  10683. <msdn-id>bb205324</msdn-id>
  10684. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH</unmanaged>
  10685. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH</unmanaged-short>
  10686. </member>
  10687. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputCanthaveonlygaps">
  10688. <summary>
  10689. No documentation.
  10690. </summary>
  10691. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS']/*" />
  10692. <msdn-id>bb205324</msdn-id>
  10693. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS</unmanaged>
  10694. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS</unmanaged-short>
  10695. </member>
  10696. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputDeclarationTooComplex">
  10697. <summary>
  10698. No documentation.
  10699. </summary>
  10700. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX']/*" />
  10701. <msdn-id>bb205324</msdn-id>
  10702. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX</unmanaged>
  10703. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX</unmanaged-short>
  10704. </member>
  10705. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputMissingOutputSignature">
  10706. <summary>
  10707. No documentation.
  10708. </summary>
  10709. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE']/*" />
  10710. <msdn-id>bb205324</msdn-id>
  10711. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE</unmanaged>
  10712. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE</unmanaged-short>
  10713. </member>
  10714. <member name="F:SharpDX.Direct3D10.MessageId.CreatePixelShaderOufOfMemory">
  10715. <summary>
  10716. No documentation.
  10717. </summary>
  10718. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY']/*" />
  10719. <msdn-id>bb205324</msdn-id>
  10720. <unmanaged>D3D10_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY</unmanaged>
  10721. <unmanaged-short>D3D10_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY</unmanaged-short>
  10722. </member>
  10723. <member name="F:SharpDX.Direct3D10.MessageId.CreatePixelShaderInvalidShaderBytecode">
  10724. <summary>
  10725. No documentation.
  10726. </summary>
  10727. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE']/*" />
  10728. <msdn-id>bb205324</msdn-id>
  10729. <unmanaged>D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE</unmanaged>
  10730. <unmanaged-short>D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE</unmanaged-short>
  10731. </member>
  10732. <member name="F:SharpDX.Direct3D10.MessageId.CreatePixelShaderInvalidShaderType">
  10733. <summary>
  10734. No documentation.
  10735. </summary>
  10736. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE']/*" />
  10737. <msdn-id>bb205324</msdn-id>
  10738. <unmanaged>D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE</unmanaged>
  10739. <unmanaged-short>D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE</unmanaged-short>
  10740. </member>
  10741. <member name="F:SharpDX.Direct3D10.MessageId.CreateRasterizerstateInvalidFillmode">
  10742. <summary>
  10743. No documentation.
  10744. </summary>
  10745. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE']/*" />
  10746. <msdn-id>bb205324</msdn-id>
  10747. <unmanaged>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE</unmanaged>
  10748. <unmanaged-short>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE</unmanaged-short>
  10749. </member>
  10750. <member name="F:SharpDX.Direct3D10.MessageId.CreateRasterizerstateInvalidCullmode">
  10751. <summary>
  10752. No documentation.
  10753. </summary>
  10754. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE']/*" />
  10755. <msdn-id>bb205324</msdn-id>
  10756. <unmanaged>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE</unmanaged>
  10757. <unmanaged-short>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE</unmanaged-short>
  10758. </member>
  10759. <member name="F:SharpDX.Direct3D10.MessageId.CreateRasterizerstateInvalidDepthBiasclamp">
  10760. <summary>
  10761. No documentation.
  10762. </summary>
  10763. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP']/*" />
  10764. <msdn-id>bb205324</msdn-id>
  10765. <unmanaged>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP</unmanaged>
  10766. <unmanaged-short>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP</unmanaged-short>
  10767. </member>
  10768. <member name="F:SharpDX.Direct3D10.MessageId.CreateRasterizerstateInvalidSlopescaleddepthbias">
  10769. <summary>
  10770. No documentation.
  10771. </summary>
  10772. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS']/*" />
  10773. <msdn-id>bb205324</msdn-id>
  10774. <unmanaged>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS</unmanaged>
  10775. <unmanaged-short>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS</unmanaged-short>
  10776. </member>
  10777. <member name="F:SharpDX.Direct3D10.MessageId.CreateRasterizerstateTooManyObjects">
  10778. <summary>
  10779. No documentation.
  10780. </summary>
  10781. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS']/*" />
  10782. <msdn-id>bb205324</msdn-id>
  10783. <unmanaged>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS</unmanaged>
  10784. <unmanaged-short>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS</unmanaged-short>
  10785. </member>
  10786. <member name="F:SharpDX.Direct3D10.MessageId.CreateRasterizerstateNullDescription">
  10787. <summary>
  10788. No documentation.
  10789. </summary>
  10790. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC']/*" />
  10791. <msdn-id>bb205324</msdn-id>
  10792. <unmanaged>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC</unmanaged>
  10793. <unmanaged-short>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC</unmanaged-short>
  10794. </member>
  10795. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateInvalidDepthWriteMask">
  10796. <summary>
  10797. No documentation.
  10798. </summary>
  10799. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK']/*" />
  10800. <msdn-id>bb205324</msdn-id>
  10801. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK</unmanaged>
  10802. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK</unmanaged-short>
  10803. </member>
  10804. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateInvalidDepthFunction">
  10805. <summary>
  10806. No documentation.
  10807. </summary>
  10808. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC']/*" />
  10809. <msdn-id>bb205324</msdn-id>
  10810. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC</unmanaged>
  10811. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC</unmanaged-short>
  10812. </member>
  10813. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateInvalidFrontfacestencilfailop">
  10814. <summary>
  10815. No documentation.
  10816. </summary>
  10817. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP']/*" />
  10818. <msdn-id>bb205324</msdn-id>
  10819. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP</unmanaged>
  10820. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP</unmanaged-short>
  10821. </member>
  10822. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateInvalidFrontfacestencilzfailop">
  10823. <summary>
  10824. No documentation.
  10825. </summary>
  10826. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP']/*" />
  10827. <msdn-id>bb205324</msdn-id>
  10828. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP</unmanaged>
  10829. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP</unmanaged-short>
  10830. </member>
  10831. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateInvalidFrontfacestencilpassop">
  10832. <summary>
  10833. No documentation.
  10834. </summary>
  10835. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP']/*" />
  10836. <msdn-id>bb205324</msdn-id>
  10837. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP</unmanaged>
  10838. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP</unmanaged-short>
  10839. </member>
  10840. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateInvalidFrontfacestencilfunc">
  10841. <summary>
  10842. No documentation.
  10843. </summary>
  10844. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC']/*" />
  10845. <msdn-id>bb205324</msdn-id>
  10846. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC</unmanaged>
  10847. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC</unmanaged-short>
  10848. </member>
  10849. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateInvalidBackfaceStencilFailop">
  10850. <summary>
  10851. No documentation.
  10852. </summary>
  10853. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP']/*" />
  10854. <msdn-id>bb205324</msdn-id>
  10855. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP</unmanaged>
  10856. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP</unmanaged-short>
  10857. </member>
  10858. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateInvalidBackfaceStencilZfailop">
  10859. <summary>
  10860. No documentation.
  10861. </summary>
  10862. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP']/*" />
  10863. <msdn-id>bb205324</msdn-id>
  10864. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP</unmanaged>
  10865. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP</unmanaged-short>
  10866. </member>
  10867. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateInvalidBackfaceStencilPassop">
  10868. <summary>
  10869. No documentation.
  10870. </summary>
  10871. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP']/*" />
  10872. <msdn-id>bb205324</msdn-id>
  10873. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP</unmanaged>
  10874. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP</unmanaged-short>
  10875. </member>
  10876. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateInvalidBackfaceStencilFunction">
  10877. <summary>
  10878. No documentation.
  10879. </summary>
  10880. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC']/*" />
  10881. <msdn-id>bb205324</msdn-id>
  10882. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC</unmanaged>
  10883. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC</unmanaged-short>
  10884. </member>
  10885. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateTooManyObjects">
  10886. <summary>
  10887. No documentation.
  10888. </summary>
  10889. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS']/*" />
  10890. <msdn-id>bb205324</msdn-id>
  10891. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS</unmanaged>
  10892. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS</unmanaged-short>
  10893. </member>
  10894. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateNullDescription">
  10895. <summary>
  10896. No documentation.
  10897. </summary>
  10898. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC']/*" />
  10899. <msdn-id>bb205324</msdn-id>
  10900. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC</unmanaged>
  10901. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC</unmanaged-short>
  10902. </member>
  10903. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateInvalidSourceBlend">
  10904. <summary>
  10905. No documentation.
  10906. </summary>
  10907. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND']/*" />
  10908. <msdn-id>bb205324</msdn-id>
  10909. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND</unmanaged>
  10910. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND</unmanaged-short>
  10911. </member>
  10912. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateInvalidDestinationBlend">
  10913. <summary>
  10914. No documentation.
  10915. </summary>
  10916. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND']/*" />
  10917. <msdn-id>bb205324</msdn-id>
  10918. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND</unmanaged>
  10919. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND</unmanaged-short>
  10920. </member>
  10921. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateInvalidBlendOperation">
  10922. <summary>
  10923. No documentation.
  10924. </summary>
  10925. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP']/*" />
  10926. <msdn-id>bb205324</msdn-id>
  10927. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP</unmanaged>
  10928. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP</unmanaged-short>
  10929. </member>
  10930. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateInvalidSourceBlendAlpha">
  10931. <summary>
  10932. No documentation.
  10933. </summary>
  10934. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA']/*" />
  10935. <msdn-id>bb205324</msdn-id>
  10936. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA</unmanaged>
  10937. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA</unmanaged-short>
  10938. </member>
  10939. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateInvalidDestinationBlendAlpha">
  10940. <summary>
  10941. No documentation.
  10942. </summary>
  10943. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA']/*" />
  10944. <msdn-id>bb205324</msdn-id>
  10945. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA</unmanaged>
  10946. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA</unmanaged-short>
  10947. </member>
  10948. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateInvalidBlendOperationAlpha">
  10949. <summary>
  10950. No documentation.
  10951. </summary>
  10952. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA']/*" />
  10953. <msdn-id>bb205324</msdn-id>
  10954. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA</unmanaged>
  10955. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA</unmanaged-short>
  10956. </member>
  10957. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateInvalidRenderTargetWriteMask">
  10958. <summary>
  10959. No documentation.
  10960. </summary>
  10961. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK']/*" />
  10962. <msdn-id>bb205324</msdn-id>
  10963. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK</unmanaged>
  10964. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK</unmanaged-short>
  10965. </member>
  10966. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateTooManyObjects">
  10967. <summary>
  10968. No documentation.
  10969. </summary>
  10970. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS']/*" />
  10971. <msdn-id>bb205324</msdn-id>
  10972. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS</unmanaged>
  10973. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS</unmanaged-short>
  10974. </member>
  10975. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateNullDescription">
  10976. <summary>
  10977. No documentation.
  10978. </summary>
  10979. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC']/*" />
  10980. <msdn-id>bb205324</msdn-id>
  10981. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC</unmanaged>
  10982. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC</unmanaged-short>
  10983. </member>
  10984. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateInvalidFilter">
  10985. <summary>
  10986. No documentation.
  10987. </summary>
  10988. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER']/*" />
  10989. <msdn-id>bb205324</msdn-id>
  10990. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER</unmanaged>
  10991. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER</unmanaged-short>
  10992. </member>
  10993. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateInvalidAddressU">
  10994. <summary>
  10995. No documentation.
  10996. </summary>
  10997. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU']/*" />
  10998. <msdn-id>bb205324</msdn-id>
  10999. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU</unmanaged>
  11000. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU</unmanaged-short>
  11001. </member>
  11002. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateInvalidAddressV">
  11003. <summary>
  11004. No documentation.
  11005. </summary>
  11006. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV']/*" />
  11007. <msdn-id>bb205324</msdn-id>
  11008. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV</unmanaged>
  11009. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV</unmanaged-short>
  11010. </member>
  11011. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateInvalidAddressW">
  11012. <summary>
  11013. No documentation.
  11014. </summary>
  11015. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW']/*" />
  11016. <msdn-id>bb205324</msdn-id>
  11017. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW</unmanaged>
  11018. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW</unmanaged-short>
  11019. </member>
  11020. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateInvalidMiplodbias">
  11021. <summary>
  11022. No documentation.
  11023. </summary>
  11024. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS']/*" />
  11025. <msdn-id>bb205324</msdn-id>
  11026. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS</unmanaged>
  11027. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS</unmanaged-short>
  11028. </member>
  11029. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateInvalidMaximumAnisotropy">
  11030. <summary>
  11031. No documentation.
  11032. </summary>
  11033. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY']/*" />
  11034. <msdn-id>bb205324</msdn-id>
  11035. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY</unmanaged>
  11036. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY</unmanaged-short>
  11037. </member>
  11038. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateInvalidComparisonfunc">
  11039. <summary>
  11040. No documentation.
  11041. </summary>
  11042. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC']/*" />
  11043. <msdn-id>bb205324</msdn-id>
  11044. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC</unmanaged>
  11045. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC</unmanaged-short>
  11046. </member>
  11047. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateInvalidMinimumLod">
  11048. <summary>
  11049. No documentation.
  11050. </summary>
  11051. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD']/*" />
  11052. <msdn-id>bb205324</msdn-id>
  11053. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD</unmanaged>
  11054. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD</unmanaged-short>
  11055. </member>
  11056. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateInvalidMaximumLod">
  11057. <summary>
  11058. No documentation.
  11059. </summary>
  11060. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD']/*" />
  11061. <msdn-id>bb205324</msdn-id>
  11062. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD</unmanaged>
  11063. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD</unmanaged-short>
  11064. </member>
  11065. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateTooManyObjects">
  11066. <summary>
  11067. No documentation.
  11068. </summary>
  11069. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS']/*" />
  11070. <msdn-id>bb205324</msdn-id>
  11071. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS</unmanaged>
  11072. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS</unmanaged-short>
  11073. </member>
  11074. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateNullDescription">
  11075. <summary>
  11076. No documentation.
  11077. </summary>
  11078. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC']/*" />
  11079. <msdn-id>bb205324</msdn-id>
  11080. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC</unmanaged>
  11081. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC</unmanaged-short>
  11082. </member>
  11083. <member name="F:SharpDX.Direct3D10.MessageId.CreateQueryOrpredicateInvalidQuery">
  11084. <summary>
  11085. No documentation.
  11086. </summary>
  11087. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY']/*" />
  11088. <msdn-id>bb205324</msdn-id>
  11089. <unmanaged>D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY</unmanaged>
  11090. <unmanaged-short>D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY</unmanaged-short>
  11091. </member>
  11092. <member name="F:SharpDX.Direct3D10.MessageId.CreateQueryOrpredicateInvalidMiscFlags">
  11093. <summary>
  11094. No documentation.
  11095. </summary>
  11096. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS']/*" />
  11097. <msdn-id>bb205324</msdn-id>
  11098. <unmanaged>D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS</unmanaged>
  11099. <unmanaged-short>D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS</unmanaged-short>
  11100. </member>
  11101. <member name="F:SharpDX.Direct3D10.MessageId.CreateQueryOrpredicateUnexpectedMiscFlags">
  11102. <summary>
  11103. No documentation.
  11104. </summary>
  11105. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG']/*" />
  11106. <msdn-id>bb205324</msdn-id>
  11107. <unmanaged>D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG</unmanaged>
  11108. <unmanaged-short>D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG</unmanaged-short>
  11109. </member>
  11110. <member name="F:SharpDX.Direct3D10.MessageId.CreateQueryOrpredicateNullDescription">
  11111. <summary>
  11112. No documentation.
  11113. </summary>
  11114. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC']/*" />
  11115. <msdn-id>bb205324</msdn-id>
  11116. <unmanaged>D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC</unmanaged>
  11117. <unmanaged-short>D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC</unmanaged-short>
  11118. </member>
  11119. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetPrimitivetopologyTopologyUnrecognized">
  11120. <summary>
  11121. No documentation.
  11122. </summary>
  11123. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED']/*" />
  11124. <msdn-id>bb205324</msdn-id>
  11125. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED</unmanaged>
  11126. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED</unmanaged-short>
  11127. </member>
  11128. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetPrimitivetopologyTopologyUndefined">
  11129. <summary>
  11130. No documentation.
  11131. </summary>
  11132. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED']/*" />
  11133. <msdn-id>bb205324</msdn-id>
  11134. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED</unmanaged>
  11135. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED</unmanaged-short>
  11136. </member>
  11137. <member name="F:SharpDX.Direct3D10.MessageId.InputAssemblySetVertexBuffersInvalidBuffer">
  11138. <summary>
  11139. No documentation.
  11140. </summary>
  11141. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER']/*" />
  11142. <msdn-id>bb205324</msdn-id>
  11143. <unmanaged>D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER</unmanaged>
  11144. <unmanaged-short>D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER</unmanaged-short>
  11145. </member>
  11146. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetVertexBuffersOffsetTooLarge">
  11147. <summary>
  11148. No documentation.
  11149. </summary>
  11150. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE']/*" />
  11151. <msdn-id>bb205324</msdn-id>
  11152. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE</unmanaged>
  11153. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE</unmanaged-short>
  11154. </member>
  11155. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetVertexBuffersBuffersEmpty">
  11156. <summary>
  11157. No documentation.
  11158. </summary>
  11159. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY']/*" />
  11160. <msdn-id>bb205324</msdn-id>
  11161. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY</unmanaged>
  11162. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY</unmanaged-short>
  11163. </member>
  11164. <member name="F:SharpDX.Direct3D10.MessageId.InputAssemblySetIndexBufferInvalidBuffer">
  11165. <summary>
  11166. No documentation.
  11167. </summary>
  11168. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER']/*" />
  11169. <msdn-id>bb205324</msdn-id>
  11170. <unmanaged>D3D10_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER</unmanaged>
  11171. <unmanaged-short>D3D10_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER</unmanaged-short>
  11172. </member>
  11173. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetIndexBufferFormatInvalid">
  11174. <summary>
  11175. No documentation.
  11176. </summary>
  11177. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID']/*" />
  11178. <msdn-id>bb205324</msdn-id>
  11179. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID</unmanaged>
  11180. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID</unmanaged-short>
  11181. </member>
  11182. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetIndexBufferOffsetTooLarge">
  11183. <summary>
  11184. No documentation.
  11185. </summary>
  11186. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE']/*" />
  11187. <msdn-id>bb205324</msdn-id>
  11188. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE</unmanaged>
  11189. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE</unmanaged-short>
  11190. </member>
  11191. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetIndexBufferOffsetUnaligned">
  11192. <summary>
  11193. No documentation.
  11194. </summary>
  11195. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED']/*" />
  11196. <msdn-id>bb205324</msdn-id>
  11197. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED</unmanaged>
  11198. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED</unmanaged-short>
  11199. </member>
  11200. <member name="F:SharpDX.Direct3D10.MessageId.DeviceVertexShaderSetShaderResourcesViewsEmpty">
  11201. <summary>
  11202. No documentation.
  11203. </summary>
  11204. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY']/*" />
  11205. <msdn-id>bb205324</msdn-id>
  11206. <unmanaged>D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY</unmanaged>
  11207. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY</unmanaged-short>
  11208. </member>
  11209. <member name="F:SharpDX.Direct3D10.MessageId.VertexShaderSetConstantBuffersInvalidBuffer">
  11210. <summary>
  11211. No documentation.
  11212. </summary>
  11213. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER']/*" />
  11214. <msdn-id>bb205324</msdn-id>
  11215. <unmanaged>D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER</unmanaged>
  11216. <unmanaged-short>D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER</unmanaged-short>
  11217. </member>
  11218. <member name="F:SharpDX.Direct3D10.MessageId.DeviceVertexShaderSetConstantBuffersBuffersEmpty">
  11219. <summary>
  11220. No documentation.
  11221. </summary>
  11222. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY']/*" />
  11223. <msdn-id>bb205324</msdn-id>
  11224. <unmanaged>D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged>
  11225. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged-short>
  11226. </member>
  11227. <member name="F:SharpDX.Direct3D10.MessageId.DeviceVertexShaderSetSamplersSamplersEmpty">
  11228. <summary>
  11229. No documentation.
  11230. </summary>
  11231. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY']/*" />
  11232. <msdn-id>bb205324</msdn-id>
  11233. <unmanaged>D3D10_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY</unmanaged>
  11234. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY</unmanaged-short>
  11235. </member>
  11236. <member name="F:SharpDX.Direct3D10.MessageId.DeviceGeometryShaderSetShaderResourcesViewsEmpty">
  11237. <summary>
  11238. No documentation.
  11239. </summary>
  11240. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY']/*" />
  11241. <msdn-id>bb205324</msdn-id>
  11242. <unmanaged>D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY</unmanaged>
  11243. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY</unmanaged-short>
  11244. </member>
  11245. <member name="F:SharpDX.Direct3D10.MessageId.GeometryShaderSetConstantBuffersInvalidBuffer">
  11246. <summary>
  11247. No documentation.
  11248. </summary>
  11249. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER']/*" />
  11250. <msdn-id>bb205324</msdn-id>
  11251. <unmanaged>D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER</unmanaged>
  11252. <unmanaged-short>D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER</unmanaged-short>
  11253. </member>
  11254. <member name="F:SharpDX.Direct3D10.MessageId.DeviceGeometryShaderSetConstantBuffersBuffersEmpty">
  11255. <summary>
  11256. No documentation.
  11257. </summary>
  11258. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY']/*" />
  11259. <msdn-id>bb205324</msdn-id>
  11260. <unmanaged>D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged>
  11261. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged-short>
  11262. </member>
  11263. <member name="F:SharpDX.Direct3D10.MessageId.DeviceGeometryShaderSetSamplersSamplersEmpty">
  11264. <summary>
  11265. No documentation.
  11266. </summary>
  11267. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY']/*" />
  11268. <msdn-id>bb205324</msdn-id>
  11269. <unmanaged>D3D10_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY</unmanaged>
  11270. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY</unmanaged-short>
  11271. </member>
  11272. <member name="F:SharpDX.Direct3D10.MessageId.StreamOutputSetTargetsInvalidBuffer">
  11273. <summary>
  11274. No documentation.
  11275. </summary>
  11276. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER']/*" />
  11277. <msdn-id>bb205324</msdn-id>
  11278. <unmanaged>D3D10_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER</unmanaged>
  11279. <unmanaged-short>D3D10_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER</unmanaged-short>
  11280. </member>
  11281. <member name="F:SharpDX.Direct3D10.MessageId.DeviceStreamOutputSetTargetsOffsetUnaligned">
  11282. <summary>
  11283. No documentation.
  11284. </summary>
  11285. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED']/*" />
  11286. <msdn-id>bb205324</msdn-id>
  11287. <unmanaged>D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED</unmanaged>
  11288. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED</unmanaged-short>
  11289. </member>
  11290. <member name="F:SharpDX.Direct3D10.MessageId.DevicePixelShaderSetShaderResourcesViewsEmpty">
  11291. <summary>
  11292. No documentation.
  11293. </summary>
  11294. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY']/*" />
  11295. <msdn-id>bb205324</msdn-id>
  11296. <unmanaged>D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY</unmanaged>
  11297. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY</unmanaged-short>
  11298. </member>
  11299. <member name="F:SharpDX.Direct3D10.MessageId.PixelShaderSetConstantBuffersInvalidBuffer">
  11300. <summary>
  11301. No documentation.
  11302. </summary>
  11303. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER']/*" />
  11304. <msdn-id>bb205324</msdn-id>
  11305. <unmanaged>D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER</unmanaged>
  11306. <unmanaged-short>D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER</unmanaged-short>
  11307. </member>
  11308. <member name="F:SharpDX.Direct3D10.MessageId.DevicePixelShaderSetConstantBuffersBuffersEmpty">
  11309. <summary>
  11310. No documentation.
  11311. </summary>
  11312. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY']/*" />
  11313. <msdn-id>bb205324</msdn-id>
  11314. <unmanaged>D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged>
  11315. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged-short>
  11316. </member>
  11317. <member name="F:SharpDX.Direct3D10.MessageId.DevicePixelShaderSetSamplersSamplersEmpty">
  11318. <summary>
  11319. No documentation.
  11320. </summary>
  11321. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY']/*" />
  11322. <msdn-id>bb205324</msdn-id>
  11323. <unmanaged>D3D10_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY</unmanaged>
  11324. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY</unmanaged-short>
  11325. </member>
  11326. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRasterizerSetViewportsInvalidViewport">
  11327. <summary>
  11328. No documentation.
  11329. </summary>
  11330. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT']/*" />
  11331. <msdn-id>bb205324</msdn-id>
  11332. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT</unmanaged>
  11333. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT</unmanaged-short>
  11334. </member>
  11335. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRasterizerSetScissorRectanglesInvalidScissor">
  11336. <summary>
  11337. No documentation.
  11338. </summary>
  11339. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR']/*" />
  11340. <msdn-id>bb205324</msdn-id>
  11341. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR</unmanaged>
  11342. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR</unmanaged-short>
  11343. </member>
  11344. <member name="F:SharpDX.Direct3D10.MessageId.ClearrendertargetviewDenormflush">
  11345. <summary>
  11346. No documentation.
  11347. </summary>
  11348. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH']/*" />
  11349. <msdn-id>bb205324</msdn-id>
  11350. <unmanaged>D3D10_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH</unmanaged>
  11351. <unmanaged-short>D3D10_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH</unmanaged-short>
  11352. </member>
  11353. <member name="F:SharpDX.Direct3D10.MessageId.CleardepthstencilviewDenormflush">
  11354. <summary>
  11355. No documentation.
  11356. </summary>
  11357. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH']/*" />
  11358. <msdn-id>bb205324</msdn-id>
  11359. <unmanaged>D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH</unmanaged>
  11360. <unmanaged-short>D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH</unmanaged-short>
  11361. </member>
  11362. <member name="F:SharpDX.Direct3D10.MessageId.CleardepthstencilviewInvalid">
  11363. <summary>
  11364. No documentation.
  11365. </summary>
  11366. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID']/*" />
  11367. <msdn-id>bb205324</msdn-id>
  11368. <unmanaged>D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID</unmanaged>
  11369. <unmanaged-short>D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID</unmanaged-short>
  11370. </member>
  11371. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblyGetVertexBuffersBuffersEmpty">
  11372. <summary>
  11373. No documentation.
  11374. </summary>
  11375. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY']/*" />
  11376. <msdn-id>bb205324</msdn-id>
  11377. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY</unmanaged>
  11378. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY</unmanaged-short>
  11379. </member>
  11380. <member name="F:SharpDX.Direct3D10.MessageId.DeviceVertexShaderGetShaderResourcesViewsEmpty">
  11381. <summary>
  11382. No documentation.
  11383. </summary>
  11384. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY']/*" />
  11385. <msdn-id>bb205324</msdn-id>
  11386. <unmanaged>D3D10_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY</unmanaged>
  11387. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY</unmanaged-short>
  11388. </member>
  11389. <member name="F:SharpDX.Direct3D10.MessageId.DeviceVertexShaderGetConstantBuffersBuffersEmpty">
  11390. <summary>
  11391. No documentation.
  11392. </summary>
  11393. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY']/*" />
  11394. <msdn-id>bb205324</msdn-id>
  11395. <unmanaged>D3D10_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged>
  11396. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged-short>
  11397. </member>
  11398. <member name="F:SharpDX.Direct3D10.MessageId.DeviceVertexShaderGetSamplersSamplersEmpty">
  11399. <summary>
  11400. No documentation.
  11401. </summary>
  11402. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY']/*" />
  11403. <msdn-id>bb205324</msdn-id>
  11404. <unmanaged>D3D10_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY</unmanaged>
  11405. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY</unmanaged-short>
  11406. </member>
  11407. <member name="F:SharpDX.Direct3D10.MessageId.DeviceGeometryShaderGetShaderResourcesViewsEmpty">
  11408. <summary>
  11409. No documentation.
  11410. </summary>
  11411. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY']/*" />
  11412. <msdn-id>bb205324</msdn-id>
  11413. <unmanaged>D3D10_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY</unmanaged>
  11414. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY</unmanaged-short>
  11415. </member>
  11416. <member name="F:SharpDX.Direct3D10.MessageId.DeviceGeometryShaderGetConstantBuffersBuffersEmpty">
  11417. <summary>
  11418. No documentation.
  11419. </summary>
  11420. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY']/*" />
  11421. <msdn-id>bb205324</msdn-id>
  11422. <unmanaged>D3D10_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged>
  11423. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged-short>
  11424. </member>
  11425. <member name="F:SharpDX.Direct3D10.MessageId.DeviceGeometryShaderGetSamplersSamplersEmpty">
  11426. <summary>
  11427. No documentation.
  11428. </summary>
  11429. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY']/*" />
  11430. <msdn-id>bb205324</msdn-id>
  11431. <unmanaged>D3D10_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY</unmanaged>
  11432. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY</unmanaged-short>
  11433. </member>
  11434. <member name="F:SharpDX.Direct3D10.MessageId.DeviceStreamOutputGetTargetsBuffersEmpty">
  11435. <summary>
  11436. No documentation.
  11437. </summary>
  11438. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY']/*" />
  11439. <msdn-id>bb205324</msdn-id>
  11440. <unmanaged>D3D10_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY</unmanaged>
  11441. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY</unmanaged-short>
  11442. </member>
  11443. <member name="F:SharpDX.Direct3D10.MessageId.DevicePixelShaderGetShaderResourcesViewsEmpty">
  11444. <summary>
  11445. No documentation.
  11446. </summary>
  11447. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY']/*" />
  11448. <msdn-id>bb205324</msdn-id>
  11449. <unmanaged>D3D10_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY</unmanaged>
  11450. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY</unmanaged-short>
  11451. </member>
  11452. <member name="F:SharpDX.Direct3D10.MessageId.DevicePixelShaderGetConstantBuffersBuffersEmpty">
  11453. <summary>
  11454. No documentation.
  11455. </summary>
  11456. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY']/*" />
  11457. <msdn-id>bb205324</msdn-id>
  11458. <unmanaged>D3D10_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged>
  11459. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY</unmanaged-short>
  11460. </member>
  11461. <member name="F:SharpDX.Direct3D10.MessageId.DevicePixelShaderGetSamplersSamplersEmpty">
  11462. <summary>
  11463. No documentation.
  11464. </summary>
  11465. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY']/*" />
  11466. <msdn-id>bb205324</msdn-id>
  11467. <unmanaged>D3D10_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY</unmanaged>
  11468. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY</unmanaged-short>
  11469. </member>
  11470. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRasterizerGetViewportsViewportsEmpty">
  11471. <summary>
  11472. No documentation.
  11473. </summary>
  11474. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY']/*" />
  11475. <msdn-id>bb205324</msdn-id>
  11476. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY</unmanaged>
  11477. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY</unmanaged-short>
  11478. </member>
  11479. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRasterizerGetScissorRectanglesRectanglesEmpty">
  11480. <summary>
  11481. No documentation.
  11482. </summary>
  11483. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY']/*" />
  11484. <msdn-id>bb205324</msdn-id>
  11485. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY</unmanaged>
  11486. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY</unmanaged-short>
  11487. </member>
  11488. <member name="F:SharpDX.Direct3D10.MessageId.DeviceGeneratemipsResourceInvalid">
  11489. <summary>
  11490. No documentation.
  11491. </summary>
  11492. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID']/*" />
  11493. <msdn-id>bb205324</msdn-id>
  11494. <unmanaged>D3D10_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID</unmanaged>
  11495. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID</unmanaged-short>
  11496. </member>
  11497. <member name="F:SharpDX.Direct3D10.MessageId.CopySubResourceRegionInvalidDestinationSubResource">
  11498. <summary>
  11499. No documentation.
  11500. </summary>
  11501. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE']/*" />
  11502. <msdn-id>bb205324</msdn-id>
  11503. <unmanaged>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE</unmanaged>
  11504. <unmanaged-short>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE</unmanaged-short>
  11505. </member>
  11506. <member name="F:SharpDX.Direct3D10.MessageId.CopySubResourceRegionInvalidSourceSubResource">
  11507. <summary>
  11508. No documentation.
  11509. </summary>
  11510. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE']/*" />
  11511. <msdn-id>bb205324</msdn-id>
  11512. <unmanaged>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE</unmanaged>
  11513. <unmanaged-short>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE</unmanaged-short>
  11514. </member>
  11515. <member name="F:SharpDX.Direct3D10.MessageId.CopySubResourceRegionInvalidSourceBox">
  11516. <summary>
  11517. No documentation.
  11518. </summary>
  11519. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX']/*" />
  11520. <msdn-id>bb205324</msdn-id>
  11521. <unmanaged>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX</unmanaged>
  11522. <unmanaged-short>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX</unmanaged-short>
  11523. </member>
  11524. <member name="F:SharpDX.Direct3D10.MessageId.CopySubResourceRegionInvalidSource">
  11525. <summary>
  11526. No documentation.
  11527. </summary>
  11528. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE']/*" />
  11529. <msdn-id>bb205324</msdn-id>
  11530. <unmanaged>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE</unmanaged>
  11531. <unmanaged-short>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE</unmanaged-short>
  11532. </member>
  11533. <member name="F:SharpDX.Direct3D10.MessageId.CopySubResourceRegionInvalidDestinationState">
  11534. <summary>
  11535. No documentation.
  11536. </summary>
  11537. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE']/*" />
  11538. <msdn-id>bb205324</msdn-id>
  11539. <unmanaged>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE</unmanaged>
  11540. <unmanaged-short>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE</unmanaged-short>
  11541. </member>
  11542. <member name="F:SharpDX.Direct3D10.MessageId.CopySubResourceRegionInvalidSourceState">
  11543. <summary>
  11544. No documentation.
  11545. </summary>
  11546. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE']/*" />
  11547. <msdn-id>bb205324</msdn-id>
  11548. <unmanaged>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE</unmanaged>
  11549. <unmanaged-short>D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE</unmanaged-short>
  11550. </member>
  11551. <member name="F:SharpDX.Direct3D10.MessageId.CopyResourceInvalidSource">
  11552. <summary>
  11553. No documentation.
  11554. </summary>
  11555. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE']/*" />
  11556. <msdn-id>bb205324</msdn-id>
  11557. <unmanaged>D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE</unmanaged>
  11558. <unmanaged-short>D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE</unmanaged-short>
  11559. </member>
  11560. <member name="F:SharpDX.Direct3D10.MessageId.CopyResourceInvalidDestinationState">
  11561. <summary>
  11562. No documentation.
  11563. </summary>
  11564. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE']/*" />
  11565. <msdn-id>bb205324</msdn-id>
  11566. <unmanaged>D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE</unmanaged>
  11567. <unmanaged-short>D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE</unmanaged-short>
  11568. </member>
  11569. <member name="F:SharpDX.Direct3D10.MessageId.CopyResourceInvalidSourceState">
  11570. <summary>
  11571. No documentation.
  11572. </summary>
  11573. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE']/*" />
  11574. <msdn-id>bb205324</msdn-id>
  11575. <unmanaged>D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE</unmanaged>
  11576. <unmanaged-short>D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE</unmanaged-short>
  11577. </member>
  11578. <member name="F:SharpDX.Direct3D10.MessageId.UpdatesUbresourceInvalidDestinationSubResource">
  11579. <summary>
  11580. No documentation.
  11581. </summary>
  11582. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE']/*" />
  11583. <msdn-id>bb205324</msdn-id>
  11584. <unmanaged>D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE</unmanaged>
  11585. <unmanaged-short>D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE</unmanaged-short>
  11586. </member>
  11587. <member name="F:SharpDX.Direct3D10.MessageId.UpdatesUbresourceInvalidDestinationBox">
  11588. <summary>
  11589. No documentation.
  11590. </summary>
  11591. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX']/*" />
  11592. <msdn-id>bb205324</msdn-id>
  11593. <unmanaged>D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX</unmanaged>
  11594. <unmanaged-short>D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX</unmanaged-short>
  11595. </member>
  11596. <member name="F:SharpDX.Direct3D10.MessageId.UpdatesUbresourceInvalidDestinationState">
  11597. <summary>
  11598. No documentation.
  11599. </summary>
  11600. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE']/*" />
  11601. <msdn-id>bb205324</msdn-id>
  11602. <unmanaged>D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE</unmanaged>
  11603. <unmanaged-short>D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE</unmanaged-short>
  11604. </member>
  11605. <member name="F:SharpDX.Direct3D10.MessageId.DeviceResolvesubresourceDestinationInvalid">
  11606. <summary>
  11607. No documentation.
  11608. </summary>
  11609. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID']/*" />
  11610. <msdn-id>bb205324</msdn-id>
  11611. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID</unmanaged>
  11612. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID</unmanaged-short>
  11613. </member>
  11614. <member name="F:SharpDX.Direct3D10.MessageId.DeviceResolvesubresourceDestinationSubResourceInvalid">
  11615. <summary>
  11616. No documentation.
  11617. </summary>
  11618. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID']/*" />
  11619. <msdn-id>bb205324</msdn-id>
  11620. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID</unmanaged>
  11621. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID</unmanaged-short>
  11622. </member>
  11623. <member name="F:SharpDX.Direct3D10.MessageId.DeviceResolvesubresourceSourceInvalid">
  11624. <summary>
  11625. No documentation.
  11626. </summary>
  11627. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID']/*" />
  11628. <msdn-id>bb205324</msdn-id>
  11629. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID</unmanaged>
  11630. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID</unmanaged-short>
  11631. </member>
  11632. <member name="F:SharpDX.Direct3D10.MessageId.DeviceResolvesubresourceSourceSubResourceInvalid">
  11633. <summary>
  11634. No documentation.
  11635. </summary>
  11636. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID']/*" />
  11637. <msdn-id>bb205324</msdn-id>
  11638. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID</unmanaged>
  11639. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID</unmanaged-short>
  11640. </member>
  11641. <member name="F:SharpDX.Direct3D10.MessageId.DeviceResolvesubresourceFormatInvalid">
  11642. <summary>
  11643. No documentation.
  11644. </summary>
  11645. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID']/*" />
  11646. <msdn-id>bb205324</msdn-id>
  11647. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID</unmanaged>
  11648. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID</unmanaged-short>
  11649. </member>
  11650. <member name="F:SharpDX.Direct3D10.MessageId.BufferMapInvalidMaptype">
  11651. <summary>
  11652. No documentation.
  11653. </summary>
  11654. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE']/*" />
  11655. <msdn-id>bb205324</msdn-id>
  11656. <unmanaged>D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE</unmanaged>
  11657. <unmanaged-short>D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE</unmanaged-short>
  11658. </member>
  11659. <member name="F:SharpDX.Direct3D10.MessageId.BufferMapInvalidFlags">
  11660. <summary>
  11661. No documentation.
  11662. </summary>
  11663. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS']/*" />
  11664. <msdn-id>bb205324</msdn-id>
  11665. <unmanaged>D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS</unmanaged>
  11666. <unmanaged-short>D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS</unmanaged-short>
  11667. </member>
  11668. <member name="F:SharpDX.Direct3D10.MessageId.BufferMapAlreadymapped">
  11669. <summary>
  11670. No documentation.
  11671. </summary>
  11672. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED']/*" />
  11673. <msdn-id>bb205324</msdn-id>
  11674. <unmanaged>D3D10_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED</unmanaged>
  11675. <unmanaged-short>D3D10_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED</unmanaged-short>
  11676. </member>
  11677. <member name="F:SharpDX.Direct3D10.MessageId.BufferMapDeviceremovedReturn">
  11678. <summary>
  11679. No documentation.
  11680. </summary>
  11681. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN']/*" />
  11682. <msdn-id>bb205324</msdn-id>
  11683. <unmanaged>D3D10_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN</unmanaged>
  11684. <unmanaged-short>D3D10_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN</unmanaged-short>
  11685. </member>
  11686. <member name="F:SharpDX.Direct3D10.MessageId.BufferUnmapNotMapped">
  11687. <summary>
  11688. No documentation.
  11689. </summary>
  11690. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED']/*" />
  11691. <msdn-id>bb205324</msdn-id>
  11692. <unmanaged>D3D10_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED</unmanaged>
  11693. <unmanaged-short>D3D10_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED</unmanaged-short>
  11694. </member>
  11695. <member name="F:SharpDX.Direct3D10.MessageId.Texture1DMapInvalidMaptype">
  11696. <summary>
  11697. No documentation.
  11698. </summary>
  11699. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE']/*" />
  11700. <msdn-id>bb205324</msdn-id>
  11701. <unmanaged>D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE</unmanaged>
  11702. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE</unmanaged-short>
  11703. </member>
  11704. <member name="F:SharpDX.Direct3D10.MessageId.Texture1DMapInvalidSubResource">
  11705. <summary>
  11706. No documentation.
  11707. </summary>
  11708. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE']/*" />
  11709. <msdn-id>bb205324</msdn-id>
  11710. <unmanaged>D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE</unmanaged>
  11711. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE</unmanaged-short>
  11712. </member>
  11713. <member name="F:SharpDX.Direct3D10.MessageId.Texture1DMapInvalidFlags">
  11714. <summary>
  11715. No documentation.
  11716. </summary>
  11717. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS']/*" />
  11718. <msdn-id>bb205324</msdn-id>
  11719. <unmanaged>D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS</unmanaged>
  11720. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS</unmanaged-short>
  11721. </member>
  11722. <member name="F:SharpDX.Direct3D10.MessageId.Texture1DMapAlreadymapped">
  11723. <summary>
  11724. No documentation.
  11725. </summary>
  11726. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED']/*" />
  11727. <msdn-id>bb205324</msdn-id>
  11728. <unmanaged>D3D10_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED</unmanaged>
  11729. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED</unmanaged-short>
  11730. </member>
  11731. <member name="F:SharpDX.Direct3D10.MessageId.Texture1DMapDeviceremovedReturn">
  11732. <summary>
  11733. No documentation.
  11734. </summary>
  11735. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN']/*" />
  11736. <msdn-id>bb205324</msdn-id>
  11737. <unmanaged>D3D10_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN</unmanaged>
  11738. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN</unmanaged-short>
  11739. </member>
  11740. <member name="F:SharpDX.Direct3D10.MessageId.Texture1DUnmapInvalidSubResource">
  11741. <summary>
  11742. No documentation.
  11743. </summary>
  11744. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE']/*" />
  11745. <msdn-id>bb205324</msdn-id>
  11746. <unmanaged>D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE</unmanaged>
  11747. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE</unmanaged-short>
  11748. </member>
  11749. <member name="F:SharpDX.Direct3D10.MessageId.Texture1DUnmapNotMapped">
  11750. <summary>
  11751. No documentation.
  11752. </summary>
  11753. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED']/*" />
  11754. <msdn-id>bb205324</msdn-id>
  11755. <unmanaged>D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED</unmanaged>
  11756. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED</unmanaged-short>
  11757. </member>
  11758. <member name="F:SharpDX.Direct3D10.MessageId.Texture2DMapInvalidMaptype">
  11759. <summary>
  11760. No documentation.
  11761. </summary>
  11762. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE']/*" />
  11763. <msdn-id>bb205324</msdn-id>
  11764. <unmanaged>D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE</unmanaged>
  11765. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE</unmanaged-short>
  11766. </member>
  11767. <member name="F:SharpDX.Direct3D10.MessageId.Texture2DMapInvalidSubResource">
  11768. <summary>
  11769. No documentation.
  11770. </summary>
  11771. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE']/*" />
  11772. <msdn-id>bb205324</msdn-id>
  11773. <unmanaged>D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE</unmanaged>
  11774. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE</unmanaged-short>
  11775. </member>
  11776. <member name="F:SharpDX.Direct3D10.MessageId.Texture2DMapInvalidFlags">
  11777. <summary>
  11778. No documentation.
  11779. </summary>
  11780. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS']/*" />
  11781. <msdn-id>bb205324</msdn-id>
  11782. <unmanaged>D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS</unmanaged>
  11783. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS</unmanaged-short>
  11784. </member>
  11785. <member name="F:SharpDX.Direct3D10.MessageId.Texture2DMapAlreadymapped">
  11786. <summary>
  11787. No documentation.
  11788. </summary>
  11789. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED']/*" />
  11790. <msdn-id>bb205324</msdn-id>
  11791. <unmanaged>D3D10_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED</unmanaged>
  11792. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED</unmanaged-short>
  11793. </member>
  11794. <member name="F:SharpDX.Direct3D10.MessageId.Texture2DMapDeviceremovedReturn">
  11795. <summary>
  11796. No documentation.
  11797. </summary>
  11798. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN']/*" />
  11799. <msdn-id>bb205324</msdn-id>
  11800. <unmanaged>D3D10_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN</unmanaged>
  11801. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN</unmanaged-short>
  11802. </member>
  11803. <member name="F:SharpDX.Direct3D10.MessageId.Texture2DUnmapInvalidSubResource">
  11804. <summary>
  11805. No documentation.
  11806. </summary>
  11807. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE']/*" />
  11808. <msdn-id>bb205324</msdn-id>
  11809. <unmanaged>D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE</unmanaged>
  11810. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE</unmanaged-short>
  11811. </member>
  11812. <member name="F:SharpDX.Direct3D10.MessageId.Texture2DUnmapNotMapped">
  11813. <summary>
  11814. No documentation.
  11815. </summary>
  11816. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED']/*" />
  11817. <msdn-id>bb205324</msdn-id>
  11818. <unmanaged>D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED</unmanaged>
  11819. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED</unmanaged-short>
  11820. </member>
  11821. <member name="F:SharpDX.Direct3D10.MessageId.Texture3DMapInvalidMaptype">
  11822. <summary>
  11823. No documentation.
  11824. </summary>
  11825. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE']/*" />
  11826. <msdn-id>bb205324</msdn-id>
  11827. <unmanaged>D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE</unmanaged>
  11828. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE</unmanaged-short>
  11829. </member>
  11830. <member name="F:SharpDX.Direct3D10.MessageId.Texture3DMapInvalidSubResource">
  11831. <summary>
  11832. No documentation.
  11833. </summary>
  11834. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE']/*" />
  11835. <msdn-id>bb205324</msdn-id>
  11836. <unmanaged>D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE</unmanaged>
  11837. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE</unmanaged-short>
  11838. </member>
  11839. <member name="F:SharpDX.Direct3D10.MessageId.Texture3DMapInvalidFlags">
  11840. <summary>
  11841. No documentation.
  11842. </summary>
  11843. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS']/*" />
  11844. <msdn-id>bb205324</msdn-id>
  11845. <unmanaged>D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS</unmanaged>
  11846. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS</unmanaged-short>
  11847. </member>
  11848. <member name="F:SharpDX.Direct3D10.MessageId.Texture3DMapAlreadymapped">
  11849. <summary>
  11850. No documentation.
  11851. </summary>
  11852. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED']/*" />
  11853. <msdn-id>bb205324</msdn-id>
  11854. <unmanaged>D3D10_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED</unmanaged>
  11855. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED</unmanaged-short>
  11856. </member>
  11857. <member name="F:SharpDX.Direct3D10.MessageId.Texture3DMapDeviceremovedReturn">
  11858. <summary>
  11859. No documentation.
  11860. </summary>
  11861. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN']/*" />
  11862. <msdn-id>bb205324</msdn-id>
  11863. <unmanaged>D3D10_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN</unmanaged>
  11864. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN</unmanaged-short>
  11865. </member>
  11866. <member name="F:SharpDX.Direct3D10.MessageId.Texture3DUnmapInvalidSubResource">
  11867. <summary>
  11868. No documentation.
  11869. </summary>
  11870. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE']/*" />
  11871. <msdn-id>bb205324</msdn-id>
  11872. <unmanaged>D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE</unmanaged>
  11873. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE</unmanaged-short>
  11874. </member>
  11875. <member name="F:SharpDX.Direct3D10.MessageId.Texture3DUnmapNotMapped">
  11876. <summary>
  11877. No documentation.
  11878. </summary>
  11879. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED']/*" />
  11880. <msdn-id>bb205324</msdn-id>
  11881. <unmanaged>D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED</unmanaged>
  11882. <unmanaged-short>D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED</unmanaged-short>
  11883. </member>
  11884. <member name="F:SharpDX.Direct3D10.MessageId.CheckFormatSupportFormatDeprecated">
  11885. <summary>
  11886. No documentation.
  11887. </summary>
  11888. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED']/*" />
  11889. <msdn-id>bb205324</msdn-id>
  11890. <unmanaged>D3D10_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED</unmanaged>
  11891. <unmanaged-short>D3D10_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED</unmanaged-short>
  11892. </member>
  11893. <member name="F:SharpDX.Direct3D10.MessageId.CheckMultisamplequalitylevelsFormatDeprecated">
  11894. <summary>
  11895. No documentation.
  11896. </summary>
  11897. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED']/*" />
  11898. <msdn-id>bb205324</msdn-id>
  11899. <unmanaged>D3D10_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED</unmanaged>
  11900. <unmanaged-short>D3D10_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED</unmanaged-short>
  11901. </member>
  11902. <member name="F:SharpDX.Direct3D10.MessageId.SetExceptionmodeUnrecognizedFlags">
  11903. <summary>
  11904. No documentation.
  11905. </summary>
  11906. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS']/*" />
  11907. <msdn-id>bb205324</msdn-id>
  11908. <unmanaged>D3D10_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS</unmanaged>
  11909. <unmanaged-short>D3D10_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS</unmanaged-short>
  11910. </member>
  11911. <member name="F:SharpDX.Direct3D10.MessageId.SetExceptionmodeInvalidArgumentReturn">
  11912. <summary>
  11913. No documentation.
  11914. </summary>
  11915. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN']/*" />
  11916. <msdn-id>bb205324</msdn-id>
  11917. <unmanaged>D3D10_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN</unmanaged>
  11918. <unmanaged-short>D3D10_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN</unmanaged-short>
  11919. </member>
  11920. <member name="F:SharpDX.Direct3D10.MessageId.SetExceptionmodeDeviceremovedReturn">
  11921. <summary>
  11922. No documentation.
  11923. </summary>
  11924. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN']/*" />
  11925. <msdn-id>bb205324</msdn-id>
  11926. <unmanaged>D3D10_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN</unmanaged>
  11927. <unmanaged-short>D3D10_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN</unmanaged-short>
  11928. </member>
  11929. <member name="F:SharpDX.Direct3D10.MessageId.RefSimulatingInfinitelyFastHardware">
  11930. <summary>
  11931. No documentation.
  11932. </summary>
  11933. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE']/*" />
  11934. <msdn-id>bb205324</msdn-id>
  11935. <unmanaged>D3D10_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE</unmanaged>
  11936. <unmanaged-short>D3D10_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE</unmanaged-short>
  11937. </member>
  11938. <member name="F:SharpDX.Direct3D10.MessageId.RefThreadingMode">
  11939. <summary>
  11940. No documentation.
  11941. </summary>
  11942. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_REF_THREADING_MODE']/*" />
  11943. <msdn-id>bb205324</msdn-id>
  11944. <unmanaged>D3D10_MESSAGE_ID_REF_THREADING_MODE</unmanaged>
  11945. <unmanaged-short>D3D10_MESSAGE_ID_REF_THREADING_MODE</unmanaged-short>
  11946. </member>
  11947. <member name="F:SharpDX.Direct3D10.MessageId.RefUmdriverException">
  11948. <summary>
  11949. No documentation.
  11950. </summary>
  11951. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_REF_UMDRIVER_EXCEPTION']/*" />
  11952. <msdn-id>bb205324</msdn-id>
  11953. <unmanaged>D3D10_MESSAGE_ID_REF_UMDRIVER_EXCEPTION</unmanaged>
  11954. <unmanaged-short>D3D10_MESSAGE_ID_REF_UMDRIVER_EXCEPTION</unmanaged-short>
  11955. </member>
  11956. <member name="F:SharpDX.Direct3D10.MessageId.RefKmdriverException">
  11957. <summary>
  11958. No documentation.
  11959. </summary>
  11960. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_REF_KMDRIVER_EXCEPTION']/*" />
  11961. <msdn-id>bb205324</msdn-id>
  11962. <unmanaged>D3D10_MESSAGE_ID_REF_KMDRIVER_EXCEPTION</unmanaged>
  11963. <unmanaged-short>D3D10_MESSAGE_ID_REF_KMDRIVER_EXCEPTION</unmanaged-short>
  11964. </member>
  11965. <member name="F:SharpDX.Direct3D10.MessageId.RefHardwareException">
  11966. <summary>
  11967. No documentation.
  11968. </summary>
  11969. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_REF_HARDWARE_EXCEPTION']/*" />
  11970. <msdn-id>bb205324</msdn-id>
  11971. <unmanaged>D3D10_MESSAGE_ID_REF_HARDWARE_EXCEPTION</unmanaged>
  11972. <unmanaged-short>D3D10_MESSAGE_ID_REF_HARDWARE_EXCEPTION</unmanaged-short>
  11973. </member>
  11974. <member name="F:SharpDX.Direct3D10.MessageId.RefAccessIngIndexAbleTempOutOfRange">
  11975. <summary>
  11976. No documentation.
  11977. </summary>
  11978. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE']/*" />
  11979. <msdn-id>bb205324</msdn-id>
  11980. <unmanaged>D3D10_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE</unmanaged>
  11981. <unmanaged-short>D3D10_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE</unmanaged-short>
  11982. </member>
  11983. <member name="F:SharpDX.Direct3D10.MessageId.RefProblemParsingShader">
  11984. <summary>
  11985. No documentation.
  11986. </summary>
  11987. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER']/*" />
  11988. <msdn-id>bb205324</msdn-id>
  11989. <unmanaged>D3D10_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER</unmanaged>
  11990. <unmanaged-short>D3D10_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER</unmanaged-short>
  11991. </member>
  11992. <member name="F:SharpDX.Direct3D10.MessageId.RefOutOfMemory">
  11993. <summary>
  11994. No documentation.
  11995. </summary>
  11996. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_REF_OUT_OF_MEMORY']/*" />
  11997. <msdn-id>bb205324</msdn-id>
  11998. <unmanaged>D3D10_MESSAGE_ID_REF_OUT_OF_MEMORY</unmanaged>
  11999. <unmanaged-short>D3D10_MESSAGE_ID_REF_OUT_OF_MEMORY</unmanaged-short>
  12000. </member>
  12001. <member name="F:SharpDX.Direct3D10.MessageId.RefInformation">
  12002. <summary>
  12003. No documentation.
  12004. </summary>
  12005. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_REF_INFO']/*" />
  12006. <msdn-id>bb205324</msdn-id>
  12007. <unmanaged>D3D10_MESSAGE_ID_REF_INFO</unmanaged>
  12008. <unmanaged-short>D3D10_MESSAGE_ID_REF_INFO</unmanaged-short>
  12009. </member>
  12010. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawVertexPosOverflow">
  12011. <summary>
  12012. No documentation.
  12013. </summary>
  12014. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW']/*" />
  12015. <msdn-id>bb205324</msdn-id>
  12016. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW</unmanaged>
  12017. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW</unmanaged-short>
  12018. </member>
  12019. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawIndexedIndexPosOverflow">
  12020. <summary>
  12021. No documentation.
  12022. </summary>
  12023. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW']/*" />
  12024. <msdn-id>bb205324</msdn-id>
  12025. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW</unmanaged>
  12026. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW</unmanaged-short>
  12027. </member>
  12028. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawInstancedVertexPosOverflow">
  12029. <summary>
  12030. No documentation.
  12031. </summary>
  12032. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW']/*" />
  12033. <msdn-id>bb205324</msdn-id>
  12034. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW</unmanaged>
  12035. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW</unmanaged-short>
  12036. </member>
  12037. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawInstancedInstancePosOverflow">
  12038. <summary>
  12039. No documentation.
  12040. </summary>
  12041. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW']/*" />
  12042. <msdn-id>bb205324</msdn-id>
  12043. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW</unmanaged>
  12044. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW</unmanaged-short>
  12045. </member>
  12046. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawIndexedInstancedInstancePosOverflow">
  12047. <summary>
  12048. No documentation.
  12049. </summary>
  12050. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW']/*" />
  12051. <msdn-id>bb205324</msdn-id>
  12052. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW</unmanaged>
  12053. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW</unmanaged-short>
  12054. </member>
  12055. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawIndexedInstancedIndexPosOverflow">
  12056. <summary>
  12057. No documentation.
  12058. </summary>
  12059. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW']/*" />
  12060. <msdn-id>bb205324</msdn-id>
  12061. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW</unmanaged>
  12062. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW</unmanaged-short>
  12063. </member>
  12064. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawVertexShaderNotSet">
  12065. <summary>
  12066. No documentation.
  12067. </summary>
  12068. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET']/*" />
  12069. <msdn-id>bb205324</msdn-id>
  12070. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET</unmanaged>
  12071. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET</unmanaged-short>
  12072. </member>
  12073. <member name="F:SharpDX.Direct3D10.MessageId.DeviceShaderLinkageSemanticnameNotFound">
  12074. <summary>
  12075. No documentation.
  12076. </summary>
  12077. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND']/*" />
  12078. <msdn-id>bb205324</msdn-id>
  12079. <unmanaged>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND</unmanaged>
  12080. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND</unmanaged-short>
  12081. </member>
  12082. <member name="F:SharpDX.Direct3D10.MessageId.DeviceShaderLinkageRegisterindex">
  12083. <summary>
  12084. No documentation.
  12085. </summary>
  12086. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX']/*" />
  12087. <msdn-id>bb205324</msdn-id>
  12088. <unmanaged>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX</unmanaged>
  12089. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX</unmanaged-short>
  12090. </member>
  12091. <member name="F:SharpDX.Direct3D10.MessageId.DeviceShaderLinkageComponenttype">
  12092. <summary>
  12093. No documentation.
  12094. </summary>
  12095. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE']/*" />
  12096. <msdn-id>bb205324</msdn-id>
  12097. <unmanaged>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE</unmanaged>
  12098. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE</unmanaged-short>
  12099. </member>
  12100. <member name="F:SharpDX.Direct3D10.MessageId.DeviceShaderLinkageRegistermask">
  12101. <summary>
  12102. No documentation.
  12103. </summary>
  12104. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK']/*" />
  12105. <msdn-id>bb205324</msdn-id>
  12106. <unmanaged>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK</unmanaged>
  12107. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK</unmanaged-short>
  12108. </member>
  12109. <member name="F:SharpDX.Direct3D10.MessageId.DeviceShaderLinkageSystemvalue">
  12110. <summary>
  12111. No documentation.
  12112. </summary>
  12113. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE']/*" />
  12114. <msdn-id>bb205324</msdn-id>
  12115. <unmanaged>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE</unmanaged>
  12116. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE</unmanaged-short>
  12117. </member>
  12118. <member name="F:SharpDX.Direct3D10.MessageId.DeviceShaderLinkageNeverwrittenAlwaysreads">
  12119. <summary>
  12120. No documentation.
  12121. </summary>
  12122. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS']/*" />
  12123. <msdn-id>bb205324</msdn-id>
  12124. <unmanaged>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS</unmanaged>
  12125. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS</unmanaged-short>
  12126. </member>
  12127. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawVertexBufferNotSet">
  12128. <summary>
  12129. No documentation.
  12130. </summary>
  12131. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET']/*" />
  12132. <msdn-id>bb205324</msdn-id>
  12133. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET</unmanaged>
  12134. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET</unmanaged-short>
  12135. </member>
  12136. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawInputLayoutNotSet">
  12137. <summary>
  12138. No documentation.
  12139. </summary>
  12140. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET']/*" />
  12141. <msdn-id>bb205324</msdn-id>
  12142. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET</unmanaged>
  12143. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET</unmanaged-short>
  12144. </member>
  12145. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawConstantBufferNotSet">
  12146. <summary>
  12147. No documentation.
  12148. </summary>
  12149. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET']/*" />
  12150. <msdn-id>bb205324</msdn-id>
  12151. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET</unmanaged>
  12152. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET</unmanaged-short>
  12153. </member>
  12154. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawConstantBufferTooSmall">
  12155. <summary>
  12156. No documentation.
  12157. </summary>
  12158. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL']/*" />
  12159. <msdn-id>bb205324</msdn-id>
  12160. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL</unmanaged>
  12161. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL</unmanaged-short>
  12162. </member>
  12163. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawSamplerNotSet">
  12164. <summary>
  12165. No documentation.
  12166. </summary>
  12167. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET']/*" />
  12168. <msdn-id>bb205324</msdn-id>
  12169. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET</unmanaged>
  12170. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET</unmanaged-short>
  12171. </member>
  12172. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawShaderResourceViewNotSet">
  12173. <summary>
  12174. No documentation.
  12175. </summary>
  12176. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET']/*" />
  12177. <msdn-id>bb205324</msdn-id>
  12178. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET</unmanaged>
  12179. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET</unmanaged-short>
  12180. </member>
  12181. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawViewDimensionMismatch">
  12182. <summary>
  12183. No documentation.
  12184. </summary>
  12185. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH']/*" />
  12186. <msdn-id>bb205324</msdn-id>
  12187. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH</unmanaged>
  12188. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH</unmanaged-short>
  12189. </member>
  12190. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawVertexBufferStrideTooSmall">
  12191. <summary>
  12192. No documentation.
  12193. </summary>
  12194. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL']/*" />
  12195. <msdn-id>bb205324</msdn-id>
  12196. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL</unmanaged>
  12197. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL</unmanaged-short>
  12198. </member>
  12199. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawVertexBufferTooSmall">
  12200. <summary>
  12201. No documentation.
  12202. </summary>
  12203. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL']/*" />
  12204. <msdn-id>bb205324</msdn-id>
  12205. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL</unmanaged>
  12206. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL</unmanaged-short>
  12207. </member>
  12208. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawIndexBufferNotSet">
  12209. <summary>
  12210. No documentation.
  12211. </summary>
  12212. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET']/*" />
  12213. <msdn-id>bb205324</msdn-id>
  12214. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET</unmanaged>
  12215. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET</unmanaged-short>
  12216. </member>
  12217. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawIndexBufferFormatInvalid">
  12218. <summary>
  12219. No documentation.
  12220. </summary>
  12221. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID']/*" />
  12222. <msdn-id>bb205324</msdn-id>
  12223. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID</unmanaged>
  12224. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID</unmanaged-short>
  12225. </member>
  12226. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawIndexBufferTooSmall">
  12227. <summary>
  12228. No documentation.
  12229. </summary>
  12230. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL']/*" />
  12231. <msdn-id>bb205324</msdn-id>
  12232. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL</unmanaged>
  12233. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL</unmanaged-short>
  12234. </member>
  12235. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawGeometryShaderInputPrimitiveMismatch">
  12236. <summary>
  12237. No documentation.
  12238. </summary>
  12239. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH']/*" />
  12240. <msdn-id>bb205324</msdn-id>
  12241. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH</unmanaged>
  12242. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH</unmanaged-short>
  12243. </member>
  12244. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawResourceReturnTypeMismatch">
  12245. <summary>
  12246. No documentation.
  12247. </summary>
  12248. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH']/*" />
  12249. <msdn-id>bb205324</msdn-id>
  12250. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH</unmanaged>
  12251. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH</unmanaged-short>
  12252. </member>
  12253. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawPositionNotPresent">
  12254. <summary>
  12255. No documentation.
  12256. </summary>
  12257. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT']/*" />
  12258. <msdn-id>bb205324</msdn-id>
  12259. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT</unmanaged>
  12260. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT</unmanaged-short>
  12261. </member>
  12262. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawOutputStreamNotSet">
  12263. <summary>
  12264. No documentation.
  12265. </summary>
  12266. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET']/*" />
  12267. <msdn-id>bb205324</msdn-id>
  12268. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET</unmanaged>
  12269. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET</unmanaged-short>
  12270. </member>
  12271. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawBoundResourceMapped">
  12272. <summary>
  12273. No documentation.
  12274. </summary>
  12275. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED']/*" />
  12276. <msdn-id>bb205324</msdn-id>
  12277. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED</unmanaged>
  12278. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED</unmanaged-short>
  12279. </member>
  12280. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawInvalidPrimitivetopology">
  12281. <summary>
  12282. No documentation.
  12283. </summary>
  12284. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY']/*" />
  12285. <msdn-id>bb205324</msdn-id>
  12286. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY</unmanaged>
  12287. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY</unmanaged-short>
  12288. </member>
  12289. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawVertexOffsetUnaligned">
  12290. <summary>
  12291. No documentation.
  12292. </summary>
  12293. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED']/*" />
  12294. <msdn-id>bb205324</msdn-id>
  12295. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED</unmanaged>
  12296. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED</unmanaged-short>
  12297. </member>
  12298. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawVertexStrideUnaligned">
  12299. <summary>
  12300. No documentation.
  12301. </summary>
  12302. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED']/*" />
  12303. <msdn-id>bb205324</msdn-id>
  12304. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED</unmanaged>
  12305. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED</unmanaged-short>
  12306. </member>
  12307. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawIndexOffsetUnaligned">
  12308. <summary>
  12309. No documentation.
  12310. </summary>
  12311. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED']/*" />
  12312. <msdn-id>bb205324</msdn-id>
  12313. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED</unmanaged>
  12314. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED</unmanaged-short>
  12315. </member>
  12316. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawOutputStreamOffsetUnaligned">
  12317. <summary>
  12318. No documentation.
  12319. </summary>
  12320. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED']/*" />
  12321. <msdn-id>bb205324</msdn-id>
  12322. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED</unmanaged>
  12323. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED</unmanaged-short>
  12324. </member>
  12325. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawResourceFormatLdUnsupported">
  12326. <summary>
  12327. No documentation.
  12328. </summary>
  12329. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED']/*" />
  12330. <msdn-id>bb205324</msdn-id>
  12331. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED</unmanaged>
  12332. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED</unmanaged-short>
  12333. </member>
  12334. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawResourceFormatSampleUnsupported">
  12335. <summary>
  12336. No documentation.
  12337. </summary>
  12338. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED']/*" />
  12339. <msdn-id>bb205324</msdn-id>
  12340. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED</unmanaged>
  12341. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED</unmanaged-short>
  12342. </member>
  12343. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawResourceFormatSampleCUnsupported">
  12344. <summary>
  12345. No documentation.
  12346. </summary>
  12347. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED']/*" />
  12348. <msdn-id>bb205324</msdn-id>
  12349. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED</unmanaged>
  12350. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED</unmanaged-short>
  12351. </member>
  12352. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawResourceMultisampleUnsupported">
  12353. <summary>
  12354. No documentation.
  12355. </summary>
  12356. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED']/*" />
  12357. <msdn-id>bb205324</msdn-id>
  12358. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED</unmanaged>
  12359. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED</unmanaged-short>
  12360. </member>
  12361. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawStreamOutputTargetsBoundWithoutSource">
  12362. <summary>
  12363. No documentation.
  12364. </summary>
  12365. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE']/*" />
  12366. <msdn-id>bb205324</msdn-id>
  12367. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE</unmanaged>
  12368. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE</unmanaged-short>
  12369. </member>
  12370. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawStreamOutputStrideLargeRThanBuffer">
  12371. <summary>
  12372. No documentation.
  12373. </summary>
  12374. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER']/*" />
  12375. <msdn-id>bb205324</msdn-id>
  12376. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER</unmanaged>
  12377. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER</unmanaged-short>
  12378. </member>
  12379. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawOutputMergerRenderTargetDoesNotSupportBlending">
  12380. <summary>
  12381. No documentation.
  12382. </summary>
  12383. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING']/*" />
  12384. <msdn-id>bb205324</msdn-id>
  12385. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING</unmanaged>
  12386. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING</unmanaged-short>
  12387. </member>
  12388. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawOutputMergerDualSourceBlendingCanOnlyHaveRenderTarget0">
  12389. <summary>
  12390. No documentation.
  12391. </summary>
  12392. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0']/*" />
  12393. <msdn-id>bb205324</msdn-id>
  12394. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0</unmanaged>
  12395. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0</unmanaged-short>
  12396. </member>
  12397. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRemovalProcessAtFault">
  12398. <summary>
  12399. No documentation.
  12400. </summary>
  12401. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT']/*" />
  12402. <msdn-id>bb205324</msdn-id>
  12403. <unmanaged>D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT</unmanaged>
  12404. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT</unmanaged-short>
  12405. </member>
  12406. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRemovalProcessPossiblyAtFault">
  12407. <summary>
  12408. No documentation.
  12409. </summary>
  12410. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT']/*" />
  12411. <msdn-id>bb205324</msdn-id>
  12412. <unmanaged>D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT</unmanaged>
  12413. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT</unmanaged-short>
  12414. </member>
  12415. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRemovalProcessNotAtFault">
  12416. <summary>
  12417. No documentation.
  12418. </summary>
  12419. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT']/*" />
  12420. <msdn-id>bb205324</msdn-id>
  12421. <unmanaged>D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT</unmanaged>
  12422. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT</unmanaged-short>
  12423. </member>
  12424. <member name="F:SharpDX.Direct3D10.MessageId.DeviceOpenSharedResourceInvalidArgumentReturn">
  12425. <summary>
  12426. No documentation.
  12427. </summary>
  12428. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN']/*" />
  12429. <msdn-id>bb205324</msdn-id>
  12430. <unmanaged>D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN</unmanaged>
  12431. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN</unmanaged-short>
  12432. </member>
  12433. <member name="F:SharpDX.Direct3D10.MessageId.DeviceOpenSharedResourceOufOfMemoryReturn">
  12434. <summary>
  12435. No documentation.
  12436. </summary>
  12437. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN']/*" />
  12438. <msdn-id>bb205324</msdn-id>
  12439. <unmanaged>D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN</unmanaged>
  12440. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN</unmanaged-short>
  12441. </member>
  12442. <member name="F:SharpDX.Direct3D10.MessageId.DeviceOpenSharedResourceBadinterfaceReturn">
  12443. <summary>
  12444. No documentation.
  12445. </summary>
  12446. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN']/*" />
  12447. <msdn-id>bb205324</msdn-id>
  12448. <unmanaged>D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN</unmanaged>
  12449. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN</unmanaged-short>
  12450. </member>
  12451. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawViewportNotSet">
  12452. <summary>
  12453. No documentation.
  12454. </summary>
  12455. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET']/*" />
  12456. <msdn-id>bb205324</msdn-id>
  12457. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET</unmanaged>
  12458. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET</unmanaged-short>
  12459. </member>
  12460. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutTrailingDigitInSemantic">
  12461. <summary>
  12462. No documentation.
  12463. </summary>
  12464. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC']/*" />
  12465. <msdn-id>bb205324</msdn-id>
  12466. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC</unmanaged>
  12467. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC</unmanaged-short>
  12468. </member>
  12469. <member name="F:SharpDX.Direct3D10.MessageId.CreateGeometryShaderWithStreamOutputTrailingDigitInSemantic">
  12470. <summary>
  12471. No documentation.
  12472. </summary>
  12473. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC']/*" />
  12474. <msdn-id>bb205324</msdn-id>
  12475. <unmanaged>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC</unmanaged>
  12476. <unmanaged-short>D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC</unmanaged-short>
  12477. </member>
  12478. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRasterizerSetViewportsDenormflush">
  12479. <summary>
  12480. No documentation.
  12481. </summary>
  12482. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH']/*" />
  12483. <msdn-id>bb205324</msdn-id>
  12484. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH</unmanaged>
  12485. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH</unmanaged-short>
  12486. </member>
  12487. <member name="F:SharpDX.Direct3D10.MessageId.OutputMergerSetRenderTargetsInvalidView">
  12488. <summary>
  12489. No documentation.
  12490. </summary>
  12491. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW']/*" />
  12492. <msdn-id>bb205324</msdn-id>
  12493. <unmanaged>D3D10_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW</unmanaged>
  12494. <unmanaged-short>D3D10_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW</unmanaged-short>
  12495. </member>
  12496. <member name="F:SharpDX.Direct3D10.MessageId.DeviceSetTextFiltersizeInvalidDimensions">
  12497. <summary>
  12498. No documentation.
  12499. </summary>
  12500. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS']/*" />
  12501. <msdn-id>bb205324</msdn-id>
  12502. <unmanaged>D3D10_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS</unmanaged>
  12503. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS</unmanaged-short>
  12504. </member>
  12505. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawSamplerMismatch">
  12506. <summary>
  12507. No documentation.
  12508. </summary>
  12509. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH']/*" />
  12510. <msdn-id>bb205324</msdn-id>
  12511. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH</unmanaged>
  12512. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH</unmanaged-short>
  12513. </member>
  12514. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutTypeMismatch">
  12515. <summary>
  12516. No documentation.
  12517. </summary>
  12518. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH']/*" />
  12519. <msdn-id>bb205324</msdn-id>
  12520. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH</unmanaged>
  12521. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH</unmanaged-short>
  12522. </member>
  12523. <member name="F:SharpDX.Direct3D10.MessageId.BlendStateGetDescriptionLegacy">
  12524. <summary>
  12525. No documentation.
  12526. </summary>
  12527. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY']/*" />
  12528. <msdn-id>bb205324</msdn-id>
  12529. <unmanaged>D3D10_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY</unmanaged>
  12530. <unmanaged-short>D3D10_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY</unmanaged-short>
  12531. </member>
  12532. <member name="F:SharpDX.Direct3D10.MessageId.ShaderResourceViewGetDescriptionLegacy">
  12533. <summary>
  12534. No documentation.
  12535. </summary>
  12536. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY']/*" />
  12537. <msdn-id>bb205324</msdn-id>
  12538. <unmanaged>D3D10_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY</unmanaged>
  12539. <unmanaged-short>D3D10_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY</unmanaged-short>
  12540. </member>
  12541. <member name="F:SharpDX.Direct3D10.MessageId.CreateQueryOufOfMemoryReturn">
  12542. <summary>
  12543. No documentation.
  12544. </summary>
  12545. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN']/*" />
  12546. <msdn-id>bb205324</msdn-id>
  12547. <unmanaged>D3D10_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN</unmanaged>
  12548. <unmanaged-short>D3D10_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN</unmanaged-short>
  12549. </member>
  12550. <member name="F:SharpDX.Direct3D10.MessageId.CreatePredicateOufOfMemoryReturn">
  12551. <summary>
  12552. No documentation.
  12553. </summary>
  12554. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN']/*" />
  12555. <msdn-id>bb205324</msdn-id>
  12556. <unmanaged>D3D10_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN</unmanaged>
  12557. <unmanaged-short>D3D10_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN</unmanaged-short>
  12558. </member>
  12559. <member name="F:SharpDX.Direct3D10.MessageId.CreateCounterOufOfRangeCounter">
  12560. <summary>
  12561. No documentation.
  12562. </summary>
  12563. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER']/*" />
  12564. <msdn-id>bb205324</msdn-id>
  12565. <unmanaged>D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER</unmanaged>
  12566. <unmanaged-short>D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER</unmanaged-short>
  12567. </member>
  12568. <member name="F:SharpDX.Direct3D10.MessageId.CreateCounterSimultaneousActiveCountersExhausted">
  12569. <summary>
  12570. No documentation.
  12571. </summary>
  12572. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED']/*" />
  12573. <msdn-id>bb205324</msdn-id>
  12574. <unmanaged>D3D10_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED</unmanaged>
  12575. <unmanaged-short>D3D10_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED</unmanaged-short>
  12576. </member>
  12577. <member name="F:SharpDX.Direct3D10.MessageId.CreateCounterUnsupportedWellknownCounter">
  12578. <summary>
  12579. No documentation.
  12580. </summary>
  12581. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER']/*" />
  12582. <msdn-id>bb205324</msdn-id>
  12583. <unmanaged>D3D10_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER</unmanaged>
  12584. <unmanaged-short>D3D10_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER</unmanaged-short>
  12585. </member>
  12586. <member name="F:SharpDX.Direct3D10.MessageId.CreateCounterOufOfMemoryReturn">
  12587. <summary>
  12588. No documentation.
  12589. </summary>
  12590. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN']/*" />
  12591. <msdn-id>bb205324</msdn-id>
  12592. <unmanaged>D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN</unmanaged>
  12593. <unmanaged-short>D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN</unmanaged-short>
  12594. </member>
  12595. <member name="F:SharpDX.Direct3D10.MessageId.CreateCounterNonexclusiveReturn">
  12596. <summary>
  12597. No documentation.
  12598. </summary>
  12599. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN']/*" />
  12600. <msdn-id>bb205324</msdn-id>
  12601. <unmanaged>D3D10_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN</unmanaged>
  12602. <unmanaged-short>D3D10_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN</unmanaged-short>
  12603. </member>
  12604. <member name="F:SharpDX.Direct3D10.MessageId.CreateCounterNullDescription">
  12605. <summary>
  12606. No documentation.
  12607. </summary>
  12608. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATECOUNTER_NULLDESC']/*" />
  12609. <msdn-id>bb205324</msdn-id>
  12610. <unmanaged>D3D10_MESSAGE_ID_CREATECOUNTER_NULLDESC</unmanaged>
  12611. <unmanaged-short>D3D10_MESSAGE_ID_CREATECOUNTER_NULLDESC</unmanaged-short>
  12612. </member>
  12613. <member name="F:SharpDX.Direct3D10.MessageId.CheckCounterOufOfRangeCounter">
  12614. <summary>
  12615. No documentation.
  12616. </summary>
  12617. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER']/*" />
  12618. <msdn-id>bb205324</msdn-id>
  12619. <unmanaged>D3D10_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER</unmanaged>
  12620. <unmanaged-short>D3D10_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER</unmanaged-short>
  12621. </member>
  12622. <member name="F:SharpDX.Direct3D10.MessageId.CheckCounterUnsupportedWellknownCounter">
  12623. <summary>
  12624. No documentation.
  12625. </summary>
  12626. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER']/*" />
  12627. <msdn-id>bb205324</msdn-id>
  12628. <unmanaged>D3D10_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER</unmanaged>
  12629. <unmanaged-short>D3D10_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER</unmanaged-short>
  12630. </member>
  12631. <member name="F:SharpDX.Direct3D10.MessageId.SetPredicationInvalidPredicateState">
  12632. <summary>
  12633. No documentation.
  12634. </summary>
  12635. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE']/*" />
  12636. <msdn-id>bb205324</msdn-id>
  12637. <unmanaged>D3D10_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE</unmanaged>
  12638. <unmanaged-short>D3D10_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE</unmanaged-short>
  12639. </member>
  12640. <member name="F:SharpDX.Direct3D10.MessageId.QueryBeginUnsupported">
  12641. <summary>
  12642. No documentation.
  12643. </summary>
  12644. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED']/*" />
  12645. <msdn-id>bb205324</msdn-id>
  12646. <unmanaged>D3D10_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED</unmanaged>
  12647. <unmanaged-short>D3D10_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED</unmanaged-short>
  12648. </member>
  12649. <member name="F:SharpDX.Direct3D10.MessageId.PredicateBeginDuringPredication">
  12650. <summary>
  12651. No documentation.
  12652. </summary>
  12653. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION']/*" />
  12654. <msdn-id>bb205324</msdn-id>
  12655. <unmanaged>D3D10_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION</unmanaged>
  12656. <unmanaged-short>D3D10_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION</unmanaged-short>
  12657. </member>
  12658. <member name="F:SharpDX.Direct3D10.MessageId.QueryBeginDuplicate">
  12659. <summary>
  12660. No documentation.
  12661. </summary>
  12662. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_QUERY_BEGIN_DUPLICATE']/*" />
  12663. <msdn-id>bb205324</msdn-id>
  12664. <unmanaged>D3D10_MESSAGE_ID_QUERY_BEGIN_DUPLICATE</unmanaged>
  12665. <unmanaged-short>D3D10_MESSAGE_ID_QUERY_BEGIN_DUPLICATE</unmanaged-short>
  12666. </member>
  12667. <member name="F:SharpDX.Direct3D10.MessageId.QueryBeginAbandoningPreviousResults">
  12668. <summary>
  12669. No documentation.
  12670. </summary>
  12671. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS']/*" />
  12672. <msdn-id>bb205324</msdn-id>
  12673. <unmanaged>D3D10_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS</unmanaged>
  12674. <unmanaged-short>D3D10_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS</unmanaged-short>
  12675. </member>
  12676. <member name="F:SharpDX.Direct3D10.MessageId.PredicateEndDuringPredication">
  12677. <summary>
  12678. No documentation.
  12679. </summary>
  12680. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION']/*" />
  12681. <msdn-id>bb205324</msdn-id>
  12682. <unmanaged>D3D10_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION</unmanaged>
  12683. <unmanaged-short>D3D10_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION</unmanaged-short>
  12684. </member>
  12685. <member name="F:SharpDX.Direct3D10.MessageId.QueryEndAbandoningPreviousResults">
  12686. <summary>
  12687. No documentation.
  12688. </summary>
  12689. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS']/*" />
  12690. <msdn-id>bb205324</msdn-id>
  12691. <unmanaged>D3D10_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS</unmanaged>
  12692. <unmanaged-short>D3D10_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS</unmanaged-short>
  12693. </member>
  12694. <member name="F:SharpDX.Direct3D10.MessageId.QueryEndWithoutBegin">
  12695. <summary>
  12696. No documentation.
  12697. </summary>
  12698. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN']/*" />
  12699. <msdn-id>bb205324</msdn-id>
  12700. <unmanaged>D3D10_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN</unmanaged>
  12701. <unmanaged-short>D3D10_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN</unmanaged-short>
  12702. </member>
  12703. <member name="F:SharpDX.Direct3D10.MessageId.QueryGetDataInvalidDataSize">
  12704. <summary>
  12705. No documentation.
  12706. </summary>
  12707. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE']/*" />
  12708. <msdn-id>bb205324</msdn-id>
  12709. <unmanaged>D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE</unmanaged>
  12710. <unmanaged-short>D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE</unmanaged-short>
  12711. </member>
  12712. <member name="F:SharpDX.Direct3D10.MessageId.QueryGetDataInvalidFlags">
  12713. <summary>
  12714. No documentation.
  12715. </summary>
  12716. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS']/*" />
  12717. <msdn-id>bb205324</msdn-id>
  12718. <unmanaged>D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS</unmanaged>
  12719. <unmanaged-short>D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS</unmanaged-short>
  12720. </member>
  12721. <member name="F:SharpDX.Direct3D10.MessageId.QueryGetDataInvalidCall">
  12722. <summary>
  12723. No documentation.
  12724. </summary>
  12725. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL']/*" />
  12726. <msdn-id>bb205324</msdn-id>
  12727. <unmanaged>D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL</unmanaged>
  12728. <unmanaged-short>D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL</unmanaged-short>
  12729. </member>
  12730. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawPixelShaderOutputTypeMismatch">
  12731. <summary>
  12732. No documentation.
  12733. </summary>
  12734. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH']/*" />
  12735. <msdn-id>bb205324</msdn-id>
  12736. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH</unmanaged>
  12737. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH</unmanaged-short>
  12738. </member>
  12739. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawResourceFormatGatherUnsupported">
  12740. <summary>
  12741. No documentation.
  12742. </summary>
  12743. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED']/*" />
  12744. <msdn-id>bb205324</msdn-id>
  12745. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED</unmanaged>
  12746. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED</unmanaged-short>
  12747. </member>
  12748. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawInvalidUseOfCenterMultisamplePattern">
  12749. <summary>
  12750. No documentation.
  12751. </summary>
  12752. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN']/*" />
  12753. <msdn-id>bb205324</msdn-id>
  12754. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN</unmanaged>
  12755. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN</unmanaged-short>
  12756. </member>
  12757. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetVertexBuffersStrideTooLarge">
  12758. <summary>
  12759. No documentation.
  12760. </summary>
  12761. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE']/*" />
  12762. <msdn-id>bb205324</msdn-id>
  12763. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE</unmanaged>
  12764. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE</unmanaged-short>
  12765. </member>
  12766. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetVertexBuffersInvalidRange">
  12767. <summary>
  12768. No documentation.
  12769. </summary>
  12770. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE']/*" />
  12771. <msdn-id>bb205324</msdn-id>
  12772. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE</unmanaged>
  12773. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE</unmanaged-short>
  12774. </member>
  12775. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutEmptyLayout">
  12776. <summary>
  12777. No documentation.
  12778. </summary>
  12779. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT']/*" />
  12780. <msdn-id>bb205324</msdn-id>
  12781. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT</unmanaged>
  12782. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT</unmanaged-short>
  12783. </member>
  12784. <member name="F:SharpDX.Direct3D10.MessageId.DeviceDrawResourceSampleCountMismatch">
  12785. <summary>
  12786. No documentation.
  12787. </summary>
  12788. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH']/*" />
  12789. <msdn-id>bb205324</msdn-id>
  12790. <unmanaged>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH</unmanaged>
  12791. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH</unmanaged-short>
  12792. </member>
  12793. <member name="F:SharpDX.Direct3D10.MessageId.LiveObjectSummary">
  12794. <summary>
  12795. No documentation.
  12796. </summary>
  12797. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_OBJECT_SUMMARY']/*" />
  12798. <msdn-id>bb205324</msdn-id>
  12799. <unmanaged>D3D10_MESSAGE_ID_LIVE_OBJECT_SUMMARY</unmanaged>
  12800. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_OBJECT_SUMMARY</unmanaged-short>
  12801. </member>
  12802. <member name="F:SharpDX.Direct3D10.MessageId.LiveBuffer">
  12803. <summary>
  12804. No documentation.
  12805. </summary>
  12806. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_BUFFER']/*" />
  12807. <msdn-id>bb205324</msdn-id>
  12808. <unmanaged>D3D10_MESSAGE_ID_LIVE_BUFFER</unmanaged>
  12809. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_BUFFER</unmanaged-short>
  12810. </member>
  12811. <member name="F:SharpDX.Direct3D10.MessageId.LiveTexture1D">
  12812. <summary>
  12813. No documentation.
  12814. </summary>
  12815. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_TEXTURE1D']/*" />
  12816. <msdn-id>bb205324</msdn-id>
  12817. <unmanaged>D3D10_MESSAGE_ID_LIVE_TEXTURE1D</unmanaged>
  12818. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_TEXTURE1D</unmanaged-short>
  12819. </member>
  12820. <member name="F:SharpDX.Direct3D10.MessageId.LiveTexture2D">
  12821. <summary>
  12822. No documentation.
  12823. </summary>
  12824. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_TEXTURE2D']/*" />
  12825. <msdn-id>bb205324</msdn-id>
  12826. <unmanaged>D3D10_MESSAGE_ID_LIVE_TEXTURE2D</unmanaged>
  12827. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_TEXTURE2D</unmanaged-short>
  12828. </member>
  12829. <member name="F:SharpDX.Direct3D10.MessageId.LiveTexture3D">
  12830. <summary>
  12831. No documentation.
  12832. </summary>
  12833. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_TEXTURE3D']/*" />
  12834. <msdn-id>bb205324</msdn-id>
  12835. <unmanaged>D3D10_MESSAGE_ID_LIVE_TEXTURE3D</unmanaged>
  12836. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_TEXTURE3D</unmanaged-short>
  12837. </member>
  12838. <member name="F:SharpDX.Direct3D10.MessageId.LiveShaderResourceView">
  12839. <summary>
  12840. No documentation.
  12841. </summary>
  12842. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW']/*" />
  12843. <msdn-id>bb205324</msdn-id>
  12844. <unmanaged>D3D10_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW</unmanaged>
  12845. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW</unmanaged-short>
  12846. </member>
  12847. <member name="F:SharpDX.Direct3D10.MessageId.LiveRenderTargetView">
  12848. <summary>
  12849. No documentation.
  12850. </summary>
  12851. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_RENDERTARGETVIEW']/*" />
  12852. <msdn-id>bb205324</msdn-id>
  12853. <unmanaged>D3D10_MESSAGE_ID_LIVE_RENDERTARGETVIEW</unmanaged>
  12854. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_RENDERTARGETVIEW</unmanaged-short>
  12855. </member>
  12856. <member name="F:SharpDX.Direct3D10.MessageId.LiveDepthStencilView">
  12857. <summary>
  12858. No documentation.
  12859. </summary>
  12860. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW']/*" />
  12861. <msdn-id>bb205324</msdn-id>
  12862. <unmanaged>D3D10_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW</unmanaged>
  12863. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW</unmanaged-short>
  12864. </member>
  12865. <member name="F:SharpDX.Direct3D10.MessageId.LiveVertexShader">
  12866. <summary>
  12867. No documentation.
  12868. </summary>
  12869. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_VERTEXSHADER']/*" />
  12870. <msdn-id>bb205324</msdn-id>
  12871. <unmanaged>D3D10_MESSAGE_ID_LIVE_VERTEXSHADER</unmanaged>
  12872. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_VERTEXSHADER</unmanaged-short>
  12873. </member>
  12874. <member name="F:SharpDX.Direct3D10.MessageId.LiveGeometryShader">
  12875. <summary>
  12876. No documentation.
  12877. </summary>
  12878. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_GEOMETRYSHADER']/*" />
  12879. <msdn-id>bb205324</msdn-id>
  12880. <unmanaged>D3D10_MESSAGE_ID_LIVE_GEOMETRYSHADER</unmanaged>
  12881. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_GEOMETRYSHADER</unmanaged-short>
  12882. </member>
  12883. <member name="F:SharpDX.Direct3D10.MessageId.LivePixelShader">
  12884. <summary>
  12885. No documentation.
  12886. </summary>
  12887. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_PIXELSHADER']/*" />
  12888. <msdn-id>bb205324</msdn-id>
  12889. <unmanaged>D3D10_MESSAGE_ID_LIVE_PIXELSHADER</unmanaged>
  12890. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_PIXELSHADER</unmanaged-short>
  12891. </member>
  12892. <member name="F:SharpDX.Direct3D10.MessageId.LiveInputLayout">
  12893. <summary>
  12894. No documentation.
  12895. </summary>
  12896. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_INPUTLAYOUT']/*" />
  12897. <msdn-id>bb205324</msdn-id>
  12898. <unmanaged>D3D10_MESSAGE_ID_LIVE_INPUTLAYOUT</unmanaged>
  12899. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_INPUTLAYOUT</unmanaged-short>
  12900. </member>
  12901. <member name="F:SharpDX.Direct3D10.MessageId.LiveSampler">
  12902. <summary>
  12903. No documentation.
  12904. </summary>
  12905. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_SAMPLER']/*" />
  12906. <msdn-id>bb205324</msdn-id>
  12907. <unmanaged>D3D10_MESSAGE_ID_LIVE_SAMPLER</unmanaged>
  12908. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_SAMPLER</unmanaged-short>
  12909. </member>
  12910. <member name="F:SharpDX.Direct3D10.MessageId.LiveBlendState">
  12911. <summary>
  12912. No documentation.
  12913. </summary>
  12914. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_BLENDSTATE']/*" />
  12915. <msdn-id>bb205324</msdn-id>
  12916. <unmanaged>D3D10_MESSAGE_ID_LIVE_BLENDSTATE</unmanaged>
  12917. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_BLENDSTATE</unmanaged-short>
  12918. </member>
  12919. <member name="F:SharpDX.Direct3D10.MessageId.LiveDepthStencilState">
  12920. <summary>
  12921. No documentation.
  12922. </summary>
  12923. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE']/*" />
  12924. <msdn-id>bb205324</msdn-id>
  12925. <unmanaged>D3D10_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE</unmanaged>
  12926. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE</unmanaged-short>
  12927. </member>
  12928. <member name="F:SharpDX.Direct3D10.MessageId.LiveRasterizerstate">
  12929. <summary>
  12930. No documentation.
  12931. </summary>
  12932. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_RASTERIZERSTATE']/*" />
  12933. <msdn-id>bb205324</msdn-id>
  12934. <unmanaged>D3D10_MESSAGE_ID_LIVE_RASTERIZERSTATE</unmanaged>
  12935. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_RASTERIZERSTATE</unmanaged-short>
  12936. </member>
  12937. <member name="F:SharpDX.Direct3D10.MessageId.LiveQuery">
  12938. <summary>
  12939. No documentation.
  12940. </summary>
  12941. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_QUERY']/*" />
  12942. <msdn-id>bb205324</msdn-id>
  12943. <unmanaged>D3D10_MESSAGE_ID_LIVE_QUERY</unmanaged>
  12944. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_QUERY</unmanaged-short>
  12945. </member>
  12946. <member name="F:SharpDX.Direct3D10.MessageId.LivePredicate">
  12947. <summary>
  12948. No documentation.
  12949. </summary>
  12950. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_PREDICATE']/*" />
  12951. <msdn-id>bb205324</msdn-id>
  12952. <unmanaged>D3D10_MESSAGE_ID_LIVE_PREDICATE</unmanaged>
  12953. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_PREDICATE</unmanaged-short>
  12954. </member>
  12955. <member name="F:SharpDX.Direct3D10.MessageId.LiveCounter">
  12956. <summary>
  12957. No documentation.
  12958. </summary>
  12959. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_COUNTER']/*" />
  12960. <msdn-id>bb205324</msdn-id>
  12961. <unmanaged>D3D10_MESSAGE_ID_LIVE_COUNTER</unmanaged>
  12962. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_COUNTER</unmanaged-short>
  12963. </member>
  12964. <member name="F:SharpDX.Direct3D10.MessageId.LiveDevice">
  12965. <summary>
  12966. No documentation.
  12967. </summary>
  12968. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_DEVICE']/*" />
  12969. <msdn-id>bb205324</msdn-id>
  12970. <unmanaged>D3D10_MESSAGE_ID_LIVE_DEVICE</unmanaged>
  12971. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_DEVICE</unmanaged-short>
  12972. </member>
  12973. <member name="F:SharpDX.Direct3D10.MessageId.LiveSwapchain">
  12974. <summary>
  12975. No documentation.
  12976. </summary>
  12977. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_LIVE_SWAPCHAIN']/*" />
  12978. <msdn-id>bb205324</msdn-id>
  12979. <unmanaged>D3D10_MESSAGE_ID_LIVE_SWAPCHAIN</unmanaged>
  12980. <unmanaged-short>D3D10_MESSAGE_ID_LIVE_SWAPCHAIN</unmanaged-short>
  12981. </member>
  12982. <member name="F:SharpDX.Direct3D10.MessageId.D3D10MessagesEnd">
  12983. <summary>
  12984. No documentation.
  12985. </summary>
  12986. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_D3D10_MESSAGES_END']/*" />
  12987. <msdn-id>bb205324</msdn-id>
  12988. <unmanaged>D3D10_MESSAGE_ID_D3D10_MESSAGES_END</unmanaged>
  12989. <unmanaged-short>D3D10_MESSAGE_ID_D3D10_MESSAGES_END</unmanaged-short>
  12990. </member>
  12991. <member name="F:SharpDX.Direct3D10.MessageId.D3D10L9MessagesStart">
  12992. <summary>
  12993. No documentation.
  12994. </summary>
  12995. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_D3D10L9_MESSAGES_START']/*" />
  12996. <msdn-id>bb205324</msdn-id>
  12997. <unmanaged>D3D10_MESSAGE_ID_D3D10L9_MESSAGES_START</unmanaged>
  12998. <unmanaged-short>D3D10_MESSAGE_ID_D3D10L9_MESSAGES_START</unmanaged-short>
  12999. </member>
  13000. <member name="F:SharpDX.Direct3D10.MessageId.CreateDepthStencilStateStencilNoTwoSided">
  13001. <summary>
  13002. No documentation.
  13003. </summary>
  13004. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED']/*" />
  13005. <msdn-id>bb205324</msdn-id>
  13006. <unmanaged>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED</unmanaged>
  13007. <unmanaged-short>D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED</unmanaged-short>
  13008. </member>
  13009. <member name="F:SharpDX.Direct3D10.MessageId.CreateRasterizerstateDepthBiasClampNotSupported">
  13010. <summary>
  13011. No documentation.
  13012. </summary>
  13013. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED']/*" />
  13014. <msdn-id>bb205324</msdn-id>
  13015. <unmanaged>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED</unmanaged>
  13016. <unmanaged-short>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED</unmanaged-short>
  13017. </member>
  13018. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateNoComparisonSupport">
  13019. <summary>
  13020. No documentation.
  13021. </summary>
  13022. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT']/*" />
  13023. <msdn-id>bb205324</msdn-id>
  13024. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT</unmanaged>
  13025. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT</unmanaged-short>
  13026. </member>
  13027. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateExcessiveAnisotropy">
  13028. <summary>
  13029. No documentation.
  13030. </summary>
  13031. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY']/*" />
  13032. <msdn-id>bb205324</msdn-id>
  13033. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY</unmanaged>
  13034. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY</unmanaged-short>
  13035. </member>
  13036. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateBorderOutOfRange">
  13037. <summary>
  13038. No documentation.
  13039. </summary>
  13040. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE']/*" />
  13041. <msdn-id>bb205324</msdn-id>
  13042. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE</unmanaged>
  13043. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE</unmanaged-short>
  13044. </member>
  13045. <member name="F:SharpDX.Direct3D10.MessageId.VertexShaderSetSamplersNotSupported">
  13046. <summary>
  13047. No documentation.
  13048. </summary>
  13049. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED']/*" />
  13050. <msdn-id>bb205324</msdn-id>
  13051. <unmanaged>D3D10_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED</unmanaged>
  13052. <unmanaged-short>D3D10_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED</unmanaged-short>
  13053. </member>
  13054. <member name="F:SharpDX.Direct3D10.MessageId.VertexShaderSetSamplersTooManySamplers">
  13055. <summary>
  13056. No documentation.
  13057. </summary>
  13058. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS']/*" />
  13059. <msdn-id>bb205324</msdn-id>
  13060. <unmanaged>D3D10_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS</unmanaged>
  13061. <unmanaged-short>D3D10_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS</unmanaged-short>
  13062. </member>
  13063. <member name="F:SharpDX.Direct3D10.MessageId.PixelShaderSetSamplersTooManySamplers">
  13064. <summary>
  13065. No documentation.
  13066. </summary>
  13067. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS']/*" />
  13068. <msdn-id>bb205324</msdn-id>
  13069. <unmanaged>D3D10_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS</unmanaged>
  13070. <unmanaged-short>D3D10_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS</unmanaged-short>
  13071. </member>
  13072. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceNoArrays">
  13073. <summary>
  13074. No documentation.
  13075. </summary>
  13076. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS']/*" />
  13077. <msdn-id>bb205324</msdn-id>
  13078. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS</unmanaged>
  13079. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS</unmanaged-short>
  13080. </member>
  13081. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceNoVertexBufferAndIndexBufferBind">
  13082. <summary>
  13083. No documentation.
  13084. </summary>
  13085. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND']/*" />
  13086. <msdn-id>bb205324</msdn-id>
  13087. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND</unmanaged>
  13088. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND</unmanaged-short>
  13089. </member>
  13090. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceNoTexture1D">
  13091. <summary>
  13092. No documentation.
  13093. </summary>
  13094. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D']/*" />
  13095. <msdn-id>bb205324</msdn-id>
  13096. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D</unmanaged>
  13097. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D</unmanaged-short>
  13098. </member>
  13099. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceDimensionOutOfRange">
  13100. <summary>
  13101. No documentation.
  13102. </summary>
  13103. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE']/*" />
  13104. <msdn-id>bb205324</msdn-id>
  13105. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE</unmanaged>
  13106. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE</unmanaged-short>
  13107. </member>
  13108. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceNotBindableAsShaderResource">
  13109. <summary>
  13110. No documentation.
  13111. </summary>
  13112. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE']/*" />
  13113. <msdn-id>bb205324</msdn-id>
  13114. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE</unmanaged>
  13115. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE</unmanaged-short>
  13116. </member>
  13117. <member name="F:SharpDX.Direct3D10.MessageId.OutputMergerSetRenderTargetsTooManyRenderTargets">
  13118. <summary>
  13119. No documentation.
  13120. </summary>
  13121. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS']/*" />
  13122. <msdn-id>bb205324</msdn-id>
  13123. <unmanaged>D3D10_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS</unmanaged>
  13124. <unmanaged-short>D3D10_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS</unmanaged-short>
  13125. </member>
  13126. <member name="F:SharpDX.Direct3D10.MessageId.OutputMergerSetRenderTargetsNoDifferingBitDepthS">
  13127. <summary>
  13128. No documentation.
  13129. </summary>
  13130. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS']/*" />
  13131. <msdn-id>bb205324</msdn-id>
  13132. <unmanaged>D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS</unmanaged>
  13133. <unmanaged-short>D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS</unmanaged-short>
  13134. </member>
  13135. <member name="F:SharpDX.Direct3D10.MessageId.InputAssemblySetVertexBuffersBadBufferIndex">
  13136. <summary>
  13137. No documentation.
  13138. </summary>
  13139. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX']/*" />
  13140. <msdn-id>bb205324</msdn-id>
  13141. <unmanaged>D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX</unmanaged>
  13142. <unmanaged-short>D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX</unmanaged-short>
  13143. </member>
  13144. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRasterizerSetViewportsTooManyViewports">
  13145. <summary>
  13146. No documentation.
  13147. </summary>
  13148. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS']/*" />
  13149. <msdn-id>bb205324</msdn-id>
  13150. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS</unmanaged>
  13151. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS</unmanaged-short>
  13152. </member>
  13153. <member name="F:SharpDX.Direct3D10.MessageId.DeviceInputAssemblySetPrimitivetopologyWithAdjacencyUnsupported">
  13154. <summary>
  13155. No documentation.
  13156. </summary>
  13157. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED']/*" />
  13158. <msdn-id>bb205324</msdn-id>
  13159. <unmanaged>D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED</unmanaged>
  13160. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED</unmanaged-short>
  13161. </member>
  13162. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRasterizerSetScissorRectanglesTooManyScissors">
  13163. <summary>
  13164. No documentation.
  13165. </summary>
  13166. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS']/*" />
  13167. <msdn-id>bb205324</msdn-id>
  13168. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS</unmanaged>
  13169. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS</unmanaged-short>
  13170. </member>
  13171. <member name="F:SharpDX.Direct3D10.MessageId.CopyResourceOnlyTexture2DWithinGpuMemory">
  13172. <summary>
  13173. No documentation.
  13174. </summary>
  13175. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY']/*" />
  13176. <msdn-id>bb205324</msdn-id>
  13177. <unmanaged>D3D10_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY</unmanaged>
  13178. <unmanaged-short>D3D10_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY</unmanaged-short>
  13179. </member>
  13180. <member name="F:SharpDX.Direct3D10.MessageId.CopyResourceNoTexture3DReadback">
  13181. <summary>
  13182. No documentation.
  13183. </summary>
  13184. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK']/*" />
  13185. <msdn-id>bb205324</msdn-id>
  13186. <unmanaged>D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK</unmanaged>
  13187. <unmanaged-short>D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK</unmanaged-short>
  13188. </member>
  13189. <member name="F:SharpDX.Direct3D10.MessageId.CopyResourceNoTextureOnlyReadback">
  13190. <summary>
  13191. No documentation.
  13192. </summary>
  13193. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK']/*" />
  13194. <msdn-id>bb205324</msdn-id>
  13195. <unmanaged>D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK</unmanaged>
  13196. <unmanaged-short>D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK</unmanaged-short>
  13197. </member>
  13198. <member name="F:SharpDX.Direct3D10.MessageId.CreateInputLayoutUnsupportedFormat">
  13199. <summary>
  13200. No documentation.
  13201. </summary>
  13202. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT']/*" />
  13203. <msdn-id>bb205324</msdn-id>
  13204. <unmanaged>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT</unmanaged>
  13205. <unmanaged-short>D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT</unmanaged-short>
  13206. </member>
  13207. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateNoAlphaToCoverage">
  13208. <summary>
  13209. No documentation.
  13210. </summary>
  13211. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE']/*" />
  13212. <msdn-id>bb205324</msdn-id>
  13213. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE</unmanaged>
  13214. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE</unmanaged-short>
  13215. </member>
  13216. <member name="F:SharpDX.Direct3D10.MessageId.CreateRasterizerstateDepthClipEnableMustBeTrue">
  13217. <summary>
  13218. No documentation.
  13219. </summary>
  13220. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE']/*" />
  13221. <msdn-id>bb205324</msdn-id>
  13222. <unmanaged>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE</unmanaged>
  13223. <unmanaged-short>D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE</unmanaged-short>
  13224. </member>
  13225. <member name="F:SharpDX.Direct3D10.MessageId.DrawIndexedStartindexlocationMustBePositive">
  13226. <summary>
  13227. No documentation.
  13228. </summary>
  13229. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE']/*" />
  13230. <msdn-id>bb205324</msdn-id>
  13231. <unmanaged>D3D10_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE</unmanaged>
  13232. <unmanaged-short>D3D10_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE</unmanaged-short>
  13233. </member>
  13234. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewMustUseLowestLod">
  13235. <summary>
  13236. No documentation.
  13237. </summary>
  13238. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD']/*" />
  13239. <msdn-id>bb205324</msdn-id>
  13240. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD</unmanaged>
  13241. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD</unmanaged-short>
  13242. </member>
  13243. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateMinimumLodMustNotBeFractional">
  13244. <summary>
  13245. No documentation.
  13246. </summary>
  13247. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL']/*" />
  13248. <msdn-id>bb205324</msdn-id>
  13249. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL</unmanaged>
  13250. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL</unmanaged-short>
  13251. </member>
  13252. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateMaximumLodMustBeFltMaximum">
  13253. <summary>
  13254. No documentation.
  13255. </summary>
  13256. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX']/*" />
  13257. <msdn-id>bb205324</msdn-id>
  13258. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX</unmanaged>
  13259. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX</unmanaged-short>
  13260. </member>
  13261. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewFirstArraySliceMustBeZero">
  13262. <summary>
  13263. No documentation.
  13264. </summary>
  13265. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO']/*" />
  13266. <msdn-id>bb205324</msdn-id>
  13267. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO</unmanaged>
  13268. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO</unmanaged-short>
  13269. </member>
  13270. <member name="F:SharpDX.Direct3D10.MessageId.CreateShaderResourceViewCubeSMustHave6Sides">
  13271. <summary>
  13272. No documentation.
  13273. </summary>
  13274. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES']/*" />
  13275. <msdn-id>bb205324</msdn-id>
  13276. <unmanaged>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES</unmanaged>
  13277. <unmanaged-short>D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES</unmanaged-short>
  13278. </member>
  13279. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceNotBindableAsRenderTarget">
  13280. <summary>
  13281. No documentation.
  13282. </summary>
  13283. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET']/*" />
  13284. <msdn-id>bb205324</msdn-id>
  13285. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET</unmanaged>
  13286. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET</unmanaged-short>
  13287. </member>
  13288. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceNoDwordIndexBuffer">
  13289. <summary>
  13290. No documentation.
  13291. </summary>
  13292. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER']/*" />
  13293. <msdn-id>bb205324</msdn-id>
  13294. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER</unmanaged>
  13295. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER</unmanaged-short>
  13296. </member>
  13297. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceMSAAPrecludesShaderResource">
  13298. <summary>
  13299. No documentation.
  13300. </summary>
  13301. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE']/*" />
  13302. <msdn-id>bb205324</msdn-id>
  13303. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE</unmanaged>
  13304. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE</unmanaged-short>
  13305. </member>
  13306. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourcePresentationPrecludesShaderResource">
  13307. <summary>
  13308. No documentation.
  13309. </summary>
  13310. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE']/*" />
  13311. <msdn-id>bb205324</msdn-id>
  13312. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE</unmanaged>
  13313. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE</unmanaged-short>
  13314. </member>
  13315. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateNoIndependentBlendEnable">
  13316. <summary>
  13317. No documentation.
  13318. </summary>
  13319. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE']/*" />
  13320. <msdn-id>bb205324</msdn-id>
  13321. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE</unmanaged>
  13322. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE</unmanaged-short>
  13323. </member>
  13324. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateNoIndependentWriteMasks">
  13325. <summary>
  13326. No documentation.
  13327. </summary>
  13328. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS']/*" />
  13329. <msdn-id>bb205324</msdn-id>
  13330. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS</unmanaged>
  13331. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS</unmanaged-short>
  13332. </member>
  13333. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceNoStreamOut">
  13334. <summary>
  13335. No documentation.
  13336. </summary>
  13337. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT']/*" />
  13338. <msdn-id>bb205324</msdn-id>
  13339. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT</unmanaged>
  13340. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT</unmanaged-short>
  13341. </member>
  13342. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceOnlyVertexBufferIndexBufferForBuffers">
  13343. <summary>
  13344. No documentation.
  13345. </summary>
  13346. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS']/*" />
  13347. <msdn-id>bb205324</msdn-id>
  13348. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS</unmanaged>
  13349. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS</unmanaged-short>
  13350. </member>
  13351. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceNoAutogenForVolumes">
  13352. <summary>
  13353. No documentation.
  13354. </summary>
  13355. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES']/*" />
  13356. <msdn-id>bb205324</msdn-id>
  13357. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES</unmanaged>
  13358. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES</unmanaged-short>
  13359. </member>
  13360. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceDxgiFormatR8G8B8A8CannotBeShared">
  13361. <summary>
  13362. No documentation.
  13363. </summary>
  13364. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED']/*" />
  13365. <msdn-id>bb205324</msdn-id>
  13366. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED</unmanaged>
  13367. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED</unmanaged-short>
  13368. </member>
  13369. <member name="F:SharpDX.Direct3D10.MessageId.VertexShaderShaderResourcesNotSupported">
  13370. <summary>
  13371. No documentation.
  13372. </summary>
  13373. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED']/*" />
  13374. <msdn-id>bb205324</msdn-id>
  13375. <unmanaged>D3D10_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED</unmanaged>
  13376. <unmanaged-short>D3D10_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED</unmanaged-short>
  13377. </member>
  13378. <member name="F:SharpDX.Direct3D10.MessageId.GeometryShaderNotSupported">
  13379. <summary>
  13380. No documentation.
  13381. </summary>
  13382. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED']/*" />
  13383. <msdn-id>bb205324</msdn-id>
  13384. <unmanaged>D3D10_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED</unmanaged>
  13385. <unmanaged-short>D3D10_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED</unmanaged-short>
  13386. </member>
  13387. <member name="F:SharpDX.Direct3D10.MessageId.StreamOutNotSupported">
  13388. <summary>
  13389. No documentation.
  13390. </summary>
  13391. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED']/*" />
  13392. <msdn-id>bb205324</msdn-id>
  13393. <unmanaged>D3D10_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED</unmanaged>
  13394. <unmanaged-short>D3D10_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED</unmanaged-short>
  13395. </member>
  13396. <member name="F:SharpDX.Direct3D10.MessageId.TextFilterNotSupported">
  13397. <summary>
  13398. No documentation.
  13399. </summary>
  13400. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED']/*" />
  13401. <msdn-id>bb205324</msdn-id>
  13402. <unmanaged>D3D10_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED</unmanaged>
  13403. <unmanaged-short>D3D10_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED</unmanaged-short>
  13404. </member>
  13405. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateNoSeparateAlphaBlend">
  13406. <summary>
  13407. No documentation.
  13408. </summary>
  13409. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND']/*" />
  13410. <msdn-id>bb205324</msdn-id>
  13411. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND</unmanaged>
  13412. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND</unmanaged-short>
  13413. </member>
  13414. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateNoMrtBlend">
  13415. <summary>
  13416. No documentation.
  13417. </summary>
  13418. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND']/*" />
  13419. <msdn-id>bb205324</msdn-id>
  13420. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND</unmanaged>
  13421. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND</unmanaged-short>
  13422. </member>
  13423. <member name="F:SharpDX.Direct3D10.MessageId.CreateBlendStateOperationNotSupported">
  13424. <summary>
  13425. No documentation.
  13426. </summary>
  13427. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED']/*" />
  13428. <msdn-id>bb205324</msdn-id>
  13429. <unmanaged>D3D10_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED</unmanaged>
  13430. <unmanaged-short>D3D10_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED</unmanaged-short>
  13431. </member>
  13432. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateNoMirrorOnce">
  13433. <summary>
  13434. No documentation.
  13435. </summary>
  13436. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE']/*" />
  13437. <msdn-id>bb205324</msdn-id>
  13438. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE</unmanaged>
  13439. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE</unmanaged-short>
  13440. </member>
  13441. <member name="F:SharpDX.Direct3D10.MessageId.DrawInstancedNotSupported">
  13442. <summary>
  13443. No documentation.
  13444. </summary>
  13445. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED']/*" />
  13446. <msdn-id>bb205324</msdn-id>
  13447. <unmanaged>D3D10_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED</unmanaged>
  13448. <unmanaged-short>D3D10_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED</unmanaged-short>
  13449. </member>
  13450. <member name="F:SharpDX.Direct3D10.MessageId.DrawIndexedInstancedNotSupportedBelow93">
  13451. <summary>
  13452. No documentation.
  13453. </summary>
  13454. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3']/*" />
  13455. <msdn-id>bb205324</msdn-id>
  13456. <unmanaged>D3D10_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3</unmanaged>
  13457. <unmanaged-short>D3D10_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3</unmanaged-short>
  13458. </member>
  13459. <member name="F:SharpDX.Direct3D10.MessageId.DrawIndexedPointListUnsupported">
  13460. <summary>
  13461. No documentation.
  13462. </summary>
  13463. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED']/*" />
  13464. <msdn-id>bb205324</msdn-id>
  13465. <unmanaged>D3D10_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED</unmanaged>
  13466. <unmanaged-short>D3D10_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED</unmanaged-short>
  13467. </member>
  13468. <member name="F:SharpDX.Direct3D10.MessageId.SetBlendStateSampleMaskCannotBeZero">
  13469. <summary>
  13470. No documentation.
  13471. </summary>
  13472. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO']/*" />
  13473. <msdn-id>bb205324</msdn-id>
  13474. <unmanaged>D3D10_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO</unmanaged>
  13475. <unmanaged-short>D3D10_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO</unmanaged-short>
  13476. </member>
  13477. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceDimensionExceedsFeatureLevelDefinition">
  13478. <summary>
  13479. No documentation.
  13480. </summary>
  13481. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION']/*" />
  13482. <msdn-id>bb205324</msdn-id>
  13483. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION</unmanaged>
  13484. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION</unmanaged-short>
  13485. </member>
  13486. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceOnlySingleMipLevelDepthStencilSupported">
  13487. <summary>
  13488. No documentation.
  13489. </summary>
  13490. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED']/*" />
  13491. <msdn-id>bb205324</msdn-id>
  13492. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED</unmanaged>
  13493. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED</unmanaged-short>
  13494. </member>
  13495. <member name="F:SharpDX.Direct3D10.MessageId.DeviceRasterizerSetScissorRectanglesNegativeScissor">
  13496. <summary>
  13497. No documentation.
  13498. </summary>
  13499. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR']/*" />
  13500. <msdn-id>bb205324</msdn-id>
  13501. <unmanaged>D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR</unmanaged>
  13502. <unmanaged-short>D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR</unmanaged-short>
  13503. </member>
  13504. <member name="F:SharpDX.Direct3D10.MessageId.SlotZeroMustBeD3D10InputPerVertexData">
  13505. <summary>
  13506. No documentation.
  13507. </summary>
  13508. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA']/*" />
  13509. <msdn-id>bb205324</msdn-id>
  13510. <unmanaged>D3D10_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA</unmanaged>
  13511. <unmanaged-short>D3D10_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA</unmanaged-short>
  13512. </member>
  13513. <member name="F:SharpDX.Direct3D10.MessageId.CreateResourceNonPow2Mipmap">
  13514. <summary>
  13515. No documentation.
  13516. </summary>
  13517. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP']/*" />
  13518. <msdn-id>bb205324</msdn-id>
  13519. <unmanaged>D3D10_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP</unmanaged>
  13520. <unmanaged-short>D3D10_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP</unmanaged-short>
  13521. </member>
  13522. <member name="F:SharpDX.Direct3D10.MessageId.CreateSamplerStateBorderNotSupported">
  13523. <summary>
  13524. No documentation.
  13525. </summary>
  13526. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED']/*" />
  13527. <msdn-id>bb205324</msdn-id>
  13528. <unmanaged>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED</unmanaged>
  13529. <unmanaged-short>D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED</unmanaged-short>
  13530. </member>
  13531. <member name="F:SharpDX.Direct3D10.MessageId.OutputMergerSetRenderTargetsNoSRgbMrt">
  13532. <summary>
  13533. No documentation.
  13534. </summary>
  13535. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT']/*" />
  13536. <msdn-id>bb205324</msdn-id>
  13537. <unmanaged>D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT</unmanaged>
  13538. <unmanaged-short>D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT</unmanaged-short>
  13539. </member>
  13540. <member name="F:SharpDX.Direct3D10.MessageId.CopyResourceNo3DMismatchedUpdates">
  13541. <summary>
  13542. No documentation.
  13543. </summary>
  13544. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_COPYRESOURCE_NO_3D_MISMATCHED_UPDATES']/*" />
  13545. <msdn-id>bb205324</msdn-id>
  13546. <unmanaged>D3D10_MESSAGE_ID_COPYRESOURCE_NO_3D_MISMATCHED_UPDATES</unmanaged>
  13547. <unmanaged-short>D3D10_MESSAGE_ID_COPYRESOURCE_NO_3D_MISMATCHED_UPDATES</unmanaged-short>
  13548. </member>
  13549. <member name="F:SharpDX.Direct3D10.MessageId.D3D10L9MessagesEnd">
  13550. <summary>
  13551. No documentation.
  13552. </summary>
  13553. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_ID_D3D10L9_MESSAGES_END']/*" />
  13554. <msdn-id>bb205324</msdn-id>
  13555. <unmanaged>D3D10_MESSAGE_ID_D3D10L9_MESSAGES_END</unmanaged>
  13556. <unmanaged-short>D3D10_MESSAGE_ID_D3D10L9_MESSAGES_END</unmanaged-short>
  13557. </member>
  13558. <member name="T:SharpDX.Direct3D10.MessageSeverity">
  13559. <summary>
  13560. <p>Debug message severity levels for an information queue.</p>
  13561. </summary>
  13562. <remarks>
  13563. <p>Use these values to allow or deny message categories to pass through the storage and retrieval filters for an information queue (see <strong><see cref="T:SharpDX.Direct3D10.InfoQueueFilter" /></strong>). This API is used by <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.AddApplicationMessage(SharpDX.Direct3D10.MessageSeverity,System.String)" /></strong>.</p>
  13564. </remarks>
  13565. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_SEVERITY']/*" />
  13566. <msdn-id>bb205325</msdn-id>
  13567. <unmanaged>D3D10_MESSAGE_SEVERITY</unmanaged>
  13568. <unmanaged-short>D3D10_MESSAGE_SEVERITY</unmanaged-short>
  13569. </member>
  13570. <member name="F:SharpDX.Direct3D10.MessageSeverity.Corruption">
  13571. <summary>
  13572. <dd> <p>Defines some type of corruption which has occurred.</p> </dd>
  13573. </summary>
  13574. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_SEVERITY_CORRUPTION']/*" />
  13575. <msdn-id>bb205325</msdn-id>
  13576. <unmanaged>D3D10_MESSAGE_SEVERITY_CORRUPTION</unmanaged>
  13577. <unmanaged-short>D3D10_MESSAGE_SEVERITY_CORRUPTION</unmanaged-short>
  13578. </member>
  13579. <member name="F:SharpDX.Direct3D10.MessageSeverity.Error">
  13580. <summary>
  13581. <dd> <p>Defines an error message.</p> </dd>
  13582. </summary>
  13583. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_SEVERITY_ERROR']/*" />
  13584. <msdn-id>bb205325</msdn-id>
  13585. <unmanaged>D3D10_MESSAGE_SEVERITY_ERROR</unmanaged>
  13586. <unmanaged-short>D3D10_MESSAGE_SEVERITY_ERROR</unmanaged-short>
  13587. </member>
  13588. <member name="F:SharpDX.Direct3D10.MessageSeverity.Warning">
  13589. <summary>
  13590. <dd> <p>Defines a warning message.</p> </dd>
  13591. </summary>
  13592. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_SEVERITY_WARNING']/*" />
  13593. <msdn-id>bb205325</msdn-id>
  13594. <unmanaged>D3D10_MESSAGE_SEVERITY_WARNING</unmanaged>
  13595. <unmanaged-short>D3D10_MESSAGE_SEVERITY_WARNING</unmanaged-short>
  13596. </member>
  13597. <member name="F:SharpDX.Direct3D10.MessageSeverity.Information">
  13598. <summary>
  13599. <dd> <p>Defines an information message.</p> </dd>
  13600. </summary>
  13601. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_SEVERITY_INFO']/*" />
  13602. <msdn-id>bb205325</msdn-id>
  13603. <unmanaged>D3D10_MESSAGE_SEVERITY_INFO</unmanaged>
  13604. <unmanaged-short>D3D10_MESSAGE_SEVERITY_INFO</unmanaged-short>
  13605. </member>
  13606. <member name="F:SharpDX.Direct3D10.MessageSeverity.Message">
  13607. <summary>
  13608. No documentation.
  13609. </summary>
  13610. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE_SEVERITY_MESSAGE']/*" />
  13611. <msdn-id>bb205325</msdn-id>
  13612. <unmanaged>D3D10_MESSAGE_SEVERITY_MESSAGE</unmanaged>
  13613. <unmanaged-short>D3D10_MESSAGE_SEVERITY_MESSAGE</unmanaged-short>
  13614. </member>
  13615. <member name="T:SharpDX.Direct3D10.NormalMapFlags">
  13616. <summary>
  13617. <p>These flags are used to control how <strong><see cref="M:SharpDX.Direct3D10.D3DX10.ComputeNormalMap(SharpDX.Direct3D10.Texture2D,SharpDX.Direct3D10.NormalMapFlags,SharpDX.Direct3D10.Channel,System.Single,SharpDX.Direct3D10.Texture2D)" /></strong> generates normal maps. Any number of these flags may be OR'd together in any combination.</p>
  13618. </summary>
  13619. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_NORMALMAP_FLAG']/*" />
  13620. <msdn-id>bb172701</msdn-id>
  13621. <unmanaged>D3DX10_NORMALMAP_FLAG</unmanaged>
  13622. <unmanaged-short>D3DX10_NORMALMAP_FLAG</unmanaged-short>
  13623. </member>
  13624. <member name="F:SharpDX.Direct3D10.NormalMapFlags.MirrorU">
  13625. <summary>
  13626. No documentation.
  13627. </summary>
  13628. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_NORMALMAP_MIRROR_U']/*" />
  13629. <msdn-id>bb172701</msdn-id>
  13630. <unmanaged>D3DX10_NORMALMAP_MIRROR_U</unmanaged>
  13631. <unmanaged-short>D3DX10_NORMALMAP_MIRROR_U</unmanaged-short>
  13632. </member>
  13633. <member name="F:SharpDX.Direct3D10.NormalMapFlags.MirrorV">
  13634. <summary>
  13635. No documentation.
  13636. </summary>
  13637. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_NORMALMAP_MIRROR_V']/*" />
  13638. <msdn-id>bb172701</msdn-id>
  13639. <unmanaged>D3DX10_NORMALMAP_MIRROR_V</unmanaged>
  13640. <unmanaged-short>D3DX10_NORMALMAP_MIRROR_V</unmanaged-short>
  13641. </member>
  13642. <member name="F:SharpDX.Direct3D10.NormalMapFlags.Mirror">
  13643. <summary>
  13644. No documentation.
  13645. </summary>
  13646. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_NORMALMAP_MIRROR']/*" />
  13647. <msdn-id>bb172701</msdn-id>
  13648. <unmanaged>D3DX10_NORMALMAP_MIRROR</unmanaged>
  13649. <unmanaged-short>D3DX10_NORMALMAP_MIRROR</unmanaged-short>
  13650. </member>
  13651. <member name="F:SharpDX.Direct3D10.NormalMapFlags.InvertSign">
  13652. <summary>
  13653. No documentation.
  13654. </summary>
  13655. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_NORMALMAP_INVERTSIGN']/*" />
  13656. <msdn-id>bb172701</msdn-id>
  13657. <unmanaged>D3DX10_NORMALMAP_INVERTSIGN</unmanaged>
  13658. <unmanaged-short>D3DX10_NORMALMAP_INVERTSIGN</unmanaged-short>
  13659. </member>
  13660. <member name="F:SharpDX.Direct3D10.NormalMapFlags.ComputeOcclusion">
  13661. <summary>
  13662. No documentation.
  13663. </summary>
  13664. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_NORMALMAP_COMPUTE_OCCLUSION']/*" />
  13665. <msdn-id>bb172701</msdn-id>
  13666. <unmanaged>D3DX10_NORMALMAP_COMPUTE_OCCLUSION</unmanaged>
  13667. <unmanaged-short>D3DX10_NORMALMAP_COMPUTE_OCCLUSION</unmanaged-short>
  13668. </member>
  13669. <member name="T:SharpDX.Direct3D10.QueryFlags">
  13670. <summary>
  13671. <p>Flags that describe miscellaneous query behavior.</p>
  13672. </summary>
  13673. <remarks>
  13674. <p>This flag is part of a query description (see <strong><see cref="T:SharpDX.Direct3D10.QueryDescription" /></strong>).</p>
  13675. </remarks>
  13676. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_MISC_FLAG']/*" />
  13677. <msdn-id>bb172406</msdn-id>
  13678. <unmanaged>D3D10_QUERY_MISC_FLAG</unmanaged>
  13679. <unmanaged-short>D3D10_QUERY_MISC_FLAG</unmanaged-short>
  13680. </member>
  13681. <member name="F:SharpDX.Direct3D10.QueryFlags.Predicatehint">
  13682. <summary>
  13683. <dd> <p>Tell the hardware that if it is not yet sure if something is hidden or not to draw it anyway. This is only used with an occlusion predicate. Predication data cannot be returned to your application via <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> when using this flag.</p> </dd>
  13684. </summary>
  13685. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_MISC_PREDICATEHINT']/*" />
  13686. <msdn-id>bb172406</msdn-id>
  13687. <unmanaged>D3D10_QUERY_MISC_PREDICATEHINT</unmanaged>
  13688. <unmanaged-short>D3D10_QUERY_MISC_PREDICATEHINT</unmanaged-short>
  13689. </member>
  13690. <member name="F:SharpDX.Direct3D10.QueryFlags.None">
  13691. <summary>
  13692. None.
  13693. </summary>
  13694. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  13695. <unmanaged>None</unmanaged>
  13696. <unmanaged-short>None</unmanaged-short>
  13697. </member>
  13698. <member name="T:SharpDX.Direct3D10.QueryType">
  13699. <summary>
  13700. <p>Query types.</p>
  13701. </summary>
  13702. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY']/*" />
  13703. <msdn-id>bb205335</msdn-id>
  13704. <unmanaged>D3D10_QUERY</unmanaged>
  13705. <unmanaged-short>D3D10_QUERY</unmanaged-short>
  13706. </member>
  13707. <member name="F:SharpDX.Direct3D10.QueryType.Event">
  13708. <summary>
  13709. <dd> <p>Determines whether or not the GPU is finished processing commands. When the GPU is finished processing commands <strong>GetData</strong> will return <see cref="F:SharpDX.Result.Ok" />, and pData will point to a <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> with a value of <strong>TRUE</strong>. When using this type of query, <strong>Begin</strong> is disabled.</p> </dd>
  13710. </summary>
  13711. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_EVENT']/*" />
  13712. <msdn-id>bb205335</msdn-id>
  13713. <unmanaged>D3D10_QUERY_EVENT</unmanaged>
  13714. <unmanaged-short>D3D10_QUERY_EVENT</unmanaged-short>
  13715. </member>
  13716. <member name="F:SharpDX.Direct3D10.QueryType.Occlusion">
  13717. <summary>
  13718. <dd> <p>Get the number of samples that passed the depth and stencil tests in between <strong>Begin</strong> and <strong>End</strong>. <strong>GetData</strong> returns a UINT64. If a depth or stencil test is disabled, then each of those tests will be counted as a pass.</p> </dd>
  13719. </summary>
  13720. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_OCCLUSION']/*" />
  13721. <msdn-id>bb205335</msdn-id>
  13722. <unmanaged>D3D10_QUERY_OCCLUSION</unmanaged>
  13723. <unmanaged-short>D3D10_QUERY_OCCLUSION</unmanaged-short>
  13724. </member>
  13725. <member name="F:SharpDX.Direct3D10.QueryType.Timestamp">
  13726. <summary>
  13727. <dd> <p>Get a timestamp value where <strong>GetData</strong> returns a UINT64. This kind of query is only useful if two timestamp queries are done in the middle of a <see cref="F:SharpDX.Direct3D10.QueryType.TimestampDisjoint" /> query. The difference of two timestamps can be used to determine how many ticks have elapsed, and the <see cref="F:SharpDX.Direct3D10.QueryType.TimestampDisjoint" /> query will determine if that difference is a reliable value and also has a value that shows how to convert the number of ticks into seconds. See <strong><see cref="T:SharpDX.Direct3D10.QueryDataTimestampDisjoint" /></strong>. When using this type of query, <strong>Begin</strong> is disabled.</p> </dd>
  13728. </summary>
  13729. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_TIMESTAMP']/*" />
  13730. <msdn-id>bb205335</msdn-id>
  13731. <unmanaged>D3D10_QUERY_TIMESTAMP</unmanaged>
  13732. <unmanaged-short>D3D10_QUERY_TIMESTAMP</unmanaged-short>
  13733. </member>
  13734. <member name="F:SharpDX.Direct3D10.QueryType.TimestampDisjoint">
  13735. <summary>
  13736. <dd> <p>Determines whether or not a <see cref="F:SharpDX.Direct3D10.QueryType.Timestamp" /> is returning reliable values, and also gives the frequency of the processor enabling you to convert the number of elapsed ticks into seconds. <strong>GetData</strong> will return a <strong><see cref="T:SharpDX.Direct3D10.QueryDataTimestampDisjoint" /></strong>. This type of query should only be invoked once per frame or less.</p> </dd>
  13737. </summary>
  13738. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_TIMESTAMP_DISJOINT']/*" />
  13739. <msdn-id>bb205335</msdn-id>
  13740. <unmanaged>D3D10_QUERY_TIMESTAMP_DISJOINT</unmanaged>
  13741. <unmanaged-short>D3D10_QUERY_TIMESTAMP_DISJOINT</unmanaged-short>
  13742. </member>
  13743. <member name="F:SharpDX.Direct3D10.QueryType.PipelineStatistics">
  13744. <summary>
  13745. <dd> <p>Get pipeline statistics, such as the number of pixel shader invocations in between <strong>Begin</strong> and <strong>End</strong>. <strong>GetData</strong> will return a <strong><see cref="T:SharpDX.Direct3D10.QueryDataPipelineStatistics" /></strong>.</p> </dd>
  13746. </summary>
  13747. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_PIPELINE_STATISTICS']/*" />
  13748. <msdn-id>bb205335</msdn-id>
  13749. <unmanaged>D3D10_QUERY_PIPELINE_STATISTICS</unmanaged>
  13750. <unmanaged-short>D3D10_QUERY_PIPELINE_STATISTICS</unmanaged-short>
  13751. </member>
  13752. <member name="F:SharpDX.Direct3D10.QueryType.OcclusionPredicate">
  13753. <summary>
  13754. <dd> <p>Similar to <see cref="F:SharpDX.Direct3D10.QueryType.Occlusion" />, except <strong>GetData</strong> returns a <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> indicating whether or not any samples passed the depth and stencil tests - <strong>TRUE</strong> meaning at least one passed, <strong><see cref="F:SharpDX.Result.False" /></strong> meaning none passed.</p> </dd>
  13755. </summary>
  13756. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_OCCLUSION_PREDICATE']/*" />
  13757. <msdn-id>bb205335</msdn-id>
  13758. <unmanaged>D3D10_QUERY_OCCLUSION_PREDICATE</unmanaged>
  13759. <unmanaged-short>D3D10_QUERY_OCCLUSION_PREDICATE</unmanaged-short>
  13760. </member>
  13761. <member name="F:SharpDX.Direct3D10.QueryType.StreamOutputStatistics">
  13762. <summary>
  13763. <dd> <p>Get streaming output statistics, such as the number of primitives streamed out in between <strong>Begin</strong> and <strong>End</strong>. <strong>GetData</strong> will return a <strong><see cref="T:SharpDX.Direct3D10.StreamOutputStatistics" /></strong> structure.</p> </dd>
  13764. </summary>
  13765. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_SO_STATISTICS']/*" />
  13766. <msdn-id>bb205335</msdn-id>
  13767. <unmanaged>D3D10_QUERY_SO_STATISTICS</unmanaged>
  13768. <unmanaged-short>D3D10_QUERY_SO_STATISTICS</unmanaged-short>
  13769. </member>
  13770. <member name="F:SharpDX.Direct3D10.QueryType.StreamOutputOverflowPredicate">
  13771. <summary>
  13772. <dd> <p>Determines whether or not any of the streaming output buffers overflowed in between <strong>Begin</strong> and <strong>End</strong>. <strong>GetData</strong> returns a <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> - <strong>TRUE</strong> meaning there was an overflow, <strong><see cref="F:SharpDX.Result.False" /></strong> meaning there was not an overflow. If streaming output writes to multiple buffers, and one of the buffers overflows, then it will stop writing to all the output buffers. When an overflow is detected by Direct3D it is prevented from happening - no memory is corrupted. This predication may be used in conjunction with an SO_STATISTICS query so that when an overflow occurs the SO_STATISTIC query will let the application know how much memory was needed to prevent an overflow.</p> </dd>
  13773. </summary>
  13774. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_SO_OVERFLOW_PREDICATE']/*" />
  13775. <msdn-id>bb205335</msdn-id>
  13776. <unmanaged>D3D10_QUERY_SO_OVERFLOW_PREDICATE</unmanaged>
  13777. <unmanaged-short>D3D10_QUERY_SO_OVERFLOW_PREDICATE</unmanaged-short>
  13778. </member>
  13779. <member name="T:SharpDX.Direct3D10.RenderTargetViewDimension">
  13780. <summary>
  13781. <p>Specifies how to access a resource used in a render-target view.</p>
  13782. </summary>
  13783. <remarks>
  13784. <p>This enumeration is used in <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription" /></strong> to create a render-target view.</p>
  13785. </remarks>
  13786. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RTV_DIMENSION']/*" />
  13787. <msdn-id>bb172414</msdn-id>
  13788. <unmanaged>D3D10_RTV_DIMENSION</unmanaged>
  13789. <unmanaged-short>D3D10_RTV_DIMENSION</unmanaged-short>
  13790. </member>
  13791. <member name="F:SharpDX.Direct3D10.RenderTargetViewDimension.Unknown">
  13792. <summary>
  13793. No documentation.
  13794. </summary>
  13795. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RTV_DIMENSION_UNKNOWN']/*" />
  13796. <msdn-id>bb172414</msdn-id>
  13797. <unmanaged>D3D10_RTV_DIMENSION_UNKNOWN</unmanaged>
  13798. <unmanaged-short>D3D10_RTV_DIMENSION_UNKNOWN</unmanaged-short>
  13799. </member>
  13800. <member name="F:SharpDX.Direct3D10.RenderTargetViewDimension.Buffer">
  13801. <summary>
  13802. No documentation.
  13803. </summary>
  13804. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RTV_DIMENSION_BUFFER']/*" />
  13805. <msdn-id>bb172414</msdn-id>
  13806. <unmanaged>D3D10_RTV_DIMENSION_BUFFER</unmanaged>
  13807. <unmanaged-short>D3D10_RTV_DIMENSION_BUFFER</unmanaged-short>
  13808. </member>
  13809. <member name="F:SharpDX.Direct3D10.RenderTargetViewDimension.Texture1D">
  13810. <summary>
  13811. No documentation.
  13812. </summary>
  13813. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RTV_DIMENSION_TEXTURE1D']/*" />
  13814. <msdn-id>bb172414</msdn-id>
  13815. <unmanaged>D3D10_RTV_DIMENSION_TEXTURE1D</unmanaged>
  13816. <unmanaged-short>D3D10_RTV_DIMENSION_TEXTURE1D</unmanaged-short>
  13817. </member>
  13818. <member name="F:SharpDX.Direct3D10.RenderTargetViewDimension.Texture1DArray">
  13819. <summary>
  13820. No documentation.
  13821. </summary>
  13822. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RTV_DIMENSION_TEXTURE1DARRAY']/*" />
  13823. <msdn-id>bb172414</msdn-id>
  13824. <unmanaged>D3D10_RTV_DIMENSION_TEXTURE1DARRAY</unmanaged>
  13825. <unmanaged-short>D3D10_RTV_DIMENSION_TEXTURE1DARRAY</unmanaged-short>
  13826. </member>
  13827. <member name="F:SharpDX.Direct3D10.RenderTargetViewDimension.Texture2D">
  13828. <summary>
  13829. No documentation.
  13830. </summary>
  13831. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RTV_DIMENSION_TEXTURE2D']/*" />
  13832. <msdn-id>bb172414</msdn-id>
  13833. <unmanaged>D3D10_RTV_DIMENSION_TEXTURE2D</unmanaged>
  13834. <unmanaged-short>D3D10_RTV_DIMENSION_TEXTURE2D</unmanaged-short>
  13835. </member>
  13836. <member name="F:SharpDX.Direct3D10.RenderTargetViewDimension.Texture2DArray">
  13837. <summary>
  13838. No documentation.
  13839. </summary>
  13840. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RTV_DIMENSION_TEXTURE2DARRAY']/*" />
  13841. <msdn-id>bb172414</msdn-id>
  13842. <unmanaged>D3D10_RTV_DIMENSION_TEXTURE2DARRAY</unmanaged>
  13843. <unmanaged-short>D3D10_RTV_DIMENSION_TEXTURE2DARRAY</unmanaged-short>
  13844. </member>
  13845. <member name="F:SharpDX.Direct3D10.RenderTargetViewDimension.Texture2DMultisampled">
  13846. <summary>
  13847. No documentation.
  13848. </summary>
  13849. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RTV_DIMENSION_TEXTURE2DMS']/*" />
  13850. <msdn-id>bb172414</msdn-id>
  13851. <unmanaged>D3D10_RTV_DIMENSION_TEXTURE2DMS</unmanaged>
  13852. <unmanaged-short>D3D10_RTV_DIMENSION_TEXTURE2DMS</unmanaged-short>
  13853. </member>
  13854. <member name="F:SharpDX.Direct3D10.RenderTargetViewDimension.Texture2DMultisampledArray">
  13855. <summary>
  13856. No documentation.
  13857. </summary>
  13858. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RTV_DIMENSION_TEXTURE2DMSARRAY']/*" />
  13859. <msdn-id>bb172414</msdn-id>
  13860. <unmanaged>D3D10_RTV_DIMENSION_TEXTURE2DMSARRAY</unmanaged>
  13861. <unmanaged-short>D3D10_RTV_DIMENSION_TEXTURE2DMSARRAY</unmanaged-short>
  13862. </member>
  13863. <member name="F:SharpDX.Direct3D10.RenderTargetViewDimension.Texture3D">
  13864. <summary>
  13865. No documentation.
  13866. </summary>
  13867. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RTV_DIMENSION_TEXTURE3D']/*" />
  13868. <msdn-id>bb172414</msdn-id>
  13869. <unmanaged>D3D10_RTV_DIMENSION_TEXTURE3D</unmanaged>
  13870. <unmanaged-short>D3D10_RTV_DIMENSION_TEXTURE3D</unmanaged-short>
  13871. </member>
  13872. <member name="T:SharpDX.Direct3D10.ResourceDimension">
  13873. <summary>
  13874. <p>Identifies the type of resource being used.</p>
  13875. </summary>
  13876. <remarks>
  13877. <p>This enumeration is used in <strong><see cref="M:SharpDX.Direct3D10.Resource.GetTypeInfo(SharpDX.Direct3D10.ResourceDimension@)" /></strong>, and <strong><see cref="T:SharpDX.Direct3D10.ImageInformation" /></strong>.</p>
  13878. </remarks>
  13879. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_DIMENSION']/*" />
  13880. <msdn-id>bb172411</msdn-id>
  13881. <unmanaged>D3D10_RESOURCE_DIMENSION</unmanaged>
  13882. <unmanaged-short>D3D10_RESOURCE_DIMENSION</unmanaged-short>
  13883. </member>
  13884. <member name="F:SharpDX.Direct3D10.ResourceDimension.Unknown">
  13885. <summary>
  13886. No documentation.
  13887. </summary>
  13888. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_DIMENSION_UNKNOWN']/*" />
  13889. <msdn-id>bb172411</msdn-id>
  13890. <unmanaged>D3D10_RESOURCE_DIMENSION_UNKNOWN</unmanaged>
  13891. <unmanaged-short>D3D10_RESOURCE_DIMENSION_UNKNOWN</unmanaged-short>
  13892. </member>
  13893. <member name="F:SharpDX.Direct3D10.ResourceDimension.Buffer">
  13894. <summary>
  13895. No documentation.
  13896. </summary>
  13897. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_DIMENSION_BUFFER']/*" />
  13898. <msdn-id>bb172411</msdn-id>
  13899. <unmanaged>D3D10_RESOURCE_DIMENSION_BUFFER</unmanaged>
  13900. <unmanaged-short>D3D10_RESOURCE_DIMENSION_BUFFER</unmanaged-short>
  13901. </member>
  13902. <member name="F:SharpDX.Direct3D10.ResourceDimension.Texture1D">
  13903. <summary>
  13904. No documentation.
  13905. </summary>
  13906. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_DIMENSION_TEXTURE1D']/*" />
  13907. <msdn-id>bb172411</msdn-id>
  13908. <unmanaged>D3D10_RESOURCE_DIMENSION_TEXTURE1D</unmanaged>
  13909. <unmanaged-short>D3D10_RESOURCE_DIMENSION_TEXTURE1D</unmanaged-short>
  13910. </member>
  13911. <member name="F:SharpDX.Direct3D10.ResourceDimension.Texture2D">
  13912. <summary>
  13913. No documentation.
  13914. </summary>
  13915. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_DIMENSION_TEXTURE2D']/*" />
  13916. <msdn-id>bb172411</msdn-id>
  13917. <unmanaged>D3D10_RESOURCE_DIMENSION_TEXTURE2D</unmanaged>
  13918. <unmanaged-short>D3D10_RESOURCE_DIMENSION_TEXTURE2D</unmanaged-short>
  13919. </member>
  13920. <member name="F:SharpDX.Direct3D10.ResourceDimension.Texture3D">
  13921. <summary>
  13922. No documentation.
  13923. </summary>
  13924. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_DIMENSION_TEXTURE3D']/*" />
  13925. <msdn-id>bb172411</msdn-id>
  13926. <unmanaged>D3D10_RESOURCE_DIMENSION_TEXTURE3D</unmanaged>
  13927. <unmanaged-short>D3D10_RESOURCE_DIMENSION_TEXTURE3D</unmanaged-short>
  13928. </member>
  13929. <member name="T:SharpDX.Direct3D10.ResourceOptionFlags">
  13930. <summary>
  13931. <p>Identifies other, less common options for resources.</p>
  13932. </summary>
  13933. <remarks>
  13934. <p>This enumeration is used in <strong><see cref="T:SharpDX.Direct3D10.BufferDescription" /></strong>, <strong><see cref="T:SharpDX.Direct3D10.Texture1DDescription" /></strong>, <strong><see cref="T:SharpDX.Direct3D10.Texture2DDescription" /></strong>, <strong><see cref="T:SharpDX.Direct3D10.Texture3DDescription" /></strong>, <strong><see cref="T:SharpDX.Direct3D10.ImageInformation" /></strong>, and <strong><see cref="T:SharpDX.Direct3D10.ImageLoadInformation" /></strong>.</p><p>These flags can be combined by bitwise OR.</p><p><see cref="F:SharpDX.Direct3D10.ResourceOptionFlags.Shared" /> and <see cref="F:SharpDX.Direct3D10.ResourceOptionFlags.SharedKeyedmutex" /> are mutually exclusive flags: either one may be set in the resource creation calls but not both simultaneously.</p>
  13935. </remarks>
  13936. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_MISC_FLAG']/*" />
  13937. <msdn-id>bb172412</msdn-id>
  13938. <unmanaged>D3D10_RESOURCE_MISC_FLAG</unmanaged>
  13939. <unmanaged-short>D3D10_RESOURCE_MISC_FLAG</unmanaged-short>
  13940. </member>
  13941. <member name="F:SharpDX.Direct3D10.ResourceOptionFlags.GenerateMipMaps">
  13942. <summary>
  13943. <dd> <p>Enables an application to call <strong><see cref="M:SharpDX.Direct3D10.Device.GenerateMips(SharpDX.Direct3D10.ShaderResourceView)" /></strong> on a texture resource. The resource must be created with the <strong>bind flags</strong> that specify that the resource is a render target and a shader resource.</p> </dd>
  13944. </summary>
  13945. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_MISC_GENERATE_MIPS']/*" />
  13946. <msdn-id>bb172412</msdn-id>
  13947. <unmanaged>D3D10_RESOURCE_MISC_GENERATE_MIPS</unmanaged>
  13948. <unmanaged-short>D3D10_RESOURCE_MISC_GENERATE_MIPS</unmanaged-short>
  13949. </member>
  13950. <member name="F:SharpDX.Direct3D10.ResourceOptionFlags.Shared">
  13951. <summary>
  13952. <dd> <p>Enables the sharing of resource data between two or more Direct3D devices. The only resources that can be shared are 2D non-mipmapped textures.</p> <p>WARP and REF devices do not support shared resources. Attempting to create a resource with this flag on either a WARP or REF device will cause the create method to return an E_OUTOFMEMORY error code.</p> </dd>
  13953. </summary>
  13954. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_MISC_SHARED']/*" />
  13955. <msdn-id>bb172412</msdn-id>
  13956. <unmanaged>D3D10_RESOURCE_MISC_SHARED</unmanaged>
  13957. <unmanaged-short>D3D10_RESOURCE_MISC_SHARED</unmanaged-short>
  13958. </member>
  13959. <member name="F:SharpDX.Direct3D10.ResourceOptionFlags.TextureCube">
  13960. <summary>
  13961. <dd> <p>Enables an application to create a cube texture from a Texture2DArray that contains 6 textures.</p> </dd>
  13962. </summary>
  13963. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_MISC_TEXTURECUBE']/*" />
  13964. <msdn-id>bb172412</msdn-id>
  13965. <unmanaged>D3D10_RESOURCE_MISC_TEXTURECUBE</unmanaged>
  13966. <unmanaged-short>D3D10_RESOURCE_MISC_TEXTURECUBE</unmanaged-short>
  13967. </member>
  13968. <member name="F:SharpDX.Direct3D10.ResourceOptionFlags.SharedKeyedmutex">
  13969. <summary>
  13970. <dd> <p>Enables the resource created to be synchronized using the <see cref="M:SharpDX.DXGI.KeyedMutex.Acquire(System.Int64,System.Int32)" /> and ReleaseSync APIs. The following resource creation D3D10 APIs, that all take a <see cref="T:SharpDX.Direct3D10.ResourceOptionFlags" /> parameter, have been extended to support the new flag.</p> <ul> <li>ID3D10Device1::CreateTexture1D</li> <li>ID3D10Device1::CreateTexture2D</li> <li>ID3D10Device1::CreateTexture3D</li> <li>ID3D10Device1::CreateBuffer</li> </ul> <p>If any of the listed functions are called with the <see cref="F:SharpDX.Direct3D10.ResourceOptionFlags.SharedKeyedmutex" /> flag set, the interface returned can be queried for an <see cref="T:SharpDX.DXGI.KeyedMutex" /> interface, which implements AcquireSync and ReleaseSync APIs to synchronize access to the surface. The device creating the surface, and any other device opening the surface (using OpenSharedResource) is required to call <see cref="M:SharpDX.DXGI.KeyedMutex.Acquire(System.Int64,System.Int32)" /> before any rendering commands to the surface, and <see cref="M:SharpDX.DXGI.KeyedMutex.Release(System.Int64)" /> when it is done rendering.</p> <p>WARP and REF devices do not support shared resources. Attempting to create a resource with this flag on either a WARP or REF device will cause the create method to return an E_OUTOFMEMORY error code.</p> </dd>
  13971. </summary>
  13972. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_MISC_SHARED_KEYEDMUTEX']/*" />
  13973. <msdn-id>bb172412</msdn-id>
  13974. <unmanaged>D3D10_RESOURCE_MISC_SHARED_KEYEDMUTEX</unmanaged>
  13975. <unmanaged-short>D3D10_RESOURCE_MISC_SHARED_KEYEDMUTEX</unmanaged-short>
  13976. </member>
  13977. <member name="F:SharpDX.Direct3D10.ResourceOptionFlags.GdiCompatible">
  13978. <summary>
  13979. <dd> <p>Enables a surface to be used for GDI interoperability. Setting this flag enables rendering on the surface via <see cref="M:SharpDX.DXGI.Surface1.GetDC(SharpDX.Mathematics.Interop.RawBool)" />.</p> </dd>
  13980. </summary>
  13981. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RESOURCE_MISC_GDI_COMPATIBLE']/*" />
  13982. <msdn-id>bb172412</msdn-id>
  13983. <unmanaged>D3D10_RESOURCE_MISC_GDI_COMPATIBLE</unmanaged>
  13984. <unmanaged-short>D3D10_RESOURCE_MISC_GDI_COMPATIBLE</unmanaged-short>
  13985. </member>
  13986. <member name="F:SharpDX.Direct3D10.ResourceOptionFlags.None">
  13987. <summary>
  13988. None.
  13989. </summary>
  13990. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  13991. <unmanaged>None</unmanaged>
  13992. <unmanaged-short>None</unmanaged-short>
  13993. </member>
  13994. <member name="T:SharpDX.Direct3D10.ResourceUsage">
  13995. <summary>
  13996. <p>Identifies expected resource use during rendering. The usage directly reflects whether a resource is accessible by the CPU and/or the GPU.</p>
  13997. </summary>
  13998. <remarks>
  13999. <p>An application identifies the way a resource is intended to be used (its usage) in a resource description. There are several structures for creating resources including: <strong><see cref="T:SharpDX.Direct3D10.Texture1DDescription" /></strong>, <strong><see cref="T:SharpDX.Direct3D10.Texture2DDescription" /></strong>, <strong><see cref="T:SharpDX.Direct3D10.Texture3DDescription" /></strong>, <strong><see cref="T:SharpDX.Direct3D10.BufferDescription" /></strong>, and <strong><see cref="T:SharpDX.Direct3D10.ImageLoadInformation" /></strong>.</p><table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>In Direct3D 9, you specify the type of memory a resource should be created in at resource creation time (using D3DPOOL). It was an application's job to decide what memory pool would provide the best combination of functionality and performance.</p> <p>In Direct3D 10, an application no longer specifies what type of memory (the pool) to create a resource in. Instead, you specify the intended usage of the resource, and let the runtime (in concert with the driver and a memory manager) choose the type of memory that will achieve the best performance.</p> </td></tr> </table><p>?</p>
  14000. </remarks>
  14001. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_USAGE']/*" />
  14002. <msdn-id>bb172499</msdn-id>
  14003. <unmanaged>D3D10_USAGE</unmanaged>
  14004. <unmanaged-short>D3D10_USAGE</unmanaged-short>
  14005. </member>
  14006. <member name="F:SharpDX.Direct3D10.ResourceUsage.Default">
  14007. <summary>
  14008. <dd> <p>A resource that requires read and write access by the GPU. This is likely to be the most common usage choice.</p> </dd>
  14009. </summary>
  14010. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_USAGE_DEFAULT']/*" />
  14011. <msdn-id>bb172499</msdn-id>
  14012. <unmanaged>D3D10_USAGE_DEFAULT</unmanaged>
  14013. <unmanaged-short>D3D10_USAGE_DEFAULT</unmanaged-short>
  14014. </member>
  14015. <member name="F:SharpDX.Direct3D10.ResourceUsage.Immutable">
  14016. <summary>
  14017. <dd> <p>A resource that can only be read by the GPU. It cannot be written by the GPU, and cannot be accessed at all by the CPU. This type of resource must be initialized when it is created, since it cannot be changed after creation.</p> </dd>
  14018. </summary>
  14019. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_USAGE_IMMUTABLE']/*" />
  14020. <msdn-id>bb172499</msdn-id>
  14021. <unmanaged>D3D10_USAGE_IMMUTABLE</unmanaged>
  14022. <unmanaged-short>D3D10_USAGE_IMMUTABLE</unmanaged-short>
  14023. </member>
  14024. <member name="F:SharpDX.Direct3D10.ResourceUsage.Dynamic">
  14025. <summary>
  14026. <dd> <p>A resource that is accessible by both the GPU and the CPU (write only). A dynamic resource is a good choice for a resource that will be updated by the CPU at least once per frame. To write to a dynamic resource on the CPU, use a <strong>Map</strong> method. You can write to a dynamic resource on the GPU using <strong>CopyResource</strong> or <strong>CopySubresourceRegion</strong>.</p> </dd>
  14027. </summary>
  14028. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_USAGE_DYNAMIC']/*" />
  14029. <msdn-id>bb172499</msdn-id>
  14030. <unmanaged>D3D10_USAGE_DYNAMIC</unmanaged>
  14031. <unmanaged-short>D3D10_USAGE_DYNAMIC</unmanaged-short>
  14032. </member>
  14033. <member name="F:SharpDX.Direct3D10.ResourceUsage.Staging">
  14034. <summary>
  14035. <dd> <p>A resource that supports data transfer (copy) from the GPU to the CPU.</p> </dd>
  14036. </summary>
  14037. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_USAGE_STAGING']/*" />
  14038. <msdn-id>bb172499</msdn-id>
  14039. <unmanaged>D3D10_USAGE_STAGING</unmanaged>
  14040. <unmanaged-short>D3D10_USAGE_STAGING</unmanaged-short>
  14041. </member>
  14042. <member name="T:SharpDX.Direct3D10.SpriteFlags">
  14043. <summary>
  14044. <p>Sprite flags that tell the sprite drawing API how to behave. These are passed into <strong><see cref="M:SharpDX.Direct3D10.Sprite.Begin(SharpDX.Direct3D10.SpriteFlags)" /></strong>.</p>
  14045. </summary>
  14046. <remarks>
  14047. <p>After a front-to-back or back-to-front sort is done, it will automatically do a secondary sort by texture. This is helpful for when there are many sprites with the same texture all on the same plane, such as when drawing the user interface in a game.</p>
  14048. </remarks>
  14049. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE_FLAG']/*" />
  14050. <msdn-id>bb172704</msdn-id>
  14051. <unmanaged>D3DX10_SPRITE_FLAG</unmanaged>
  14052. <unmanaged-short>D3DX10_SPRITE_FLAG</unmanaged-short>
  14053. </member>
  14054. <member name="F:SharpDX.Direct3D10.SpriteFlags.GroupByTexture">
  14055. <summary>
  14056. No documentation.
  14057. </summary>
  14058. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE_SORT_TEXTURE']/*" />
  14059. <msdn-id>bb172704</msdn-id>
  14060. <unmanaged>D3DX10_SPRITE_SORT_TEXTURE</unmanaged>
  14061. <unmanaged-short>D3DX10_SPRITE_SORT_TEXTURE</unmanaged-short>
  14062. </member>
  14063. <member name="F:SharpDX.Direct3D10.SpriteFlags.SortBackToFront">
  14064. <summary>
  14065. No documentation.
  14066. </summary>
  14067. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE_SORT_DEPTH_BACK_TO_FRONT']/*" />
  14068. <msdn-id>bb172704</msdn-id>
  14069. <unmanaged>D3DX10_SPRITE_SORT_DEPTH_BACK_TO_FRONT</unmanaged>
  14070. <unmanaged-short>D3DX10_SPRITE_SORT_DEPTH_BACK_TO_FRONT</unmanaged-short>
  14071. </member>
  14072. <member name="F:SharpDX.Direct3D10.SpriteFlags.SortFrontToBack">
  14073. <summary>
  14074. No documentation.
  14075. </summary>
  14076. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE_SORT_DEPTH_FRONT_TO_BACK']/*" />
  14077. <msdn-id>bb172704</msdn-id>
  14078. <unmanaged>D3DX10_SPRITE_SORT_DEPTH_FRONT_TO_BACK</unmanaged>
  14079. <unmanaged-short>D3DX10_SPRITE_SORT_DEPTH_FRONT_TO_BACK</unmanaged-short>
  14080. </member>
  14081. <member name="F:SharpDX.Direct3D10.SpriteFlags.SaveState">
  14082. <summary>
  14083. No documentation.
  14084. </summary>
  14085. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE_SAVE_STATE']/*" />
  14086. <msdn-id>bb172704</msdn-id>
  14087. <unmanaged>D3DX10_SPRITE_SAVE_STATE</unmanaged>
  14088. <unmanaged-short>D3DX10_SPRITE_SAVE_STATE</unmanaged-short>
  14089. </member>
  14090. <member name="F:SharpDX.Direct3D10.SpriteFlags.IncreaseTextureReferenceCount">
  14091. <summary>
  14092. No documentation.
  14093. </summary>
  14094. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE_ADDREF_TEXTURES']/*" />
  14095. <msdn-id>bb172704</msdn-id>
  14096. <unmanaged>D3DX10_SPRITE_ADDREF_TEXTURES</unmanaged>
  14097. <unmanaged-short>D3DX10_SPRITE_ADDREF_TEXTURES</unmanaged-short>
  14098. </member>
  14099. <member name="F:SharpDX.Direct3D10.SpriteFlags.None">
  14100. <summary>
  14101. None.
  14102. </summary>
  14103. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  14104. <unmanaged>None</unmanaged>
  14105. <unmanaged-short>None</unmanaged-short>
  14106. </member>
  14107. <member name="T:SharpDX.Direct3D10.StandardMultisampleQualityLevels">
  14108. <summary>
  14109. <p>Describes multi-sampling parameters for a resource.</p>
  14110. </summary>
  14111. <remarks>
  14112. <p>The default sampler mode, with no anti-aliasing, has a count of 1 and a quality level of 0.</p><p>If multi-sample antialiasing is being used, all bound render targets and depth buffers must have the same sample counts and quality levels.</p><table> <tr><td> <p>Differences between Direct3D 10.0 and Direct3D 10.1 and between Direct3D 10.0 and Direct3D 11:</p> <p>Direct3D 10.1 has defined two standard quality levels: <strong><see cref="F:SharpDX.Direct3D10.StandardMultisampleQualityLevels.StandardMultisamplePattern" /></strong> and <strong><see cref="F:SharpDX.Direct3D10.StandardMultisampleQualityLevels.CenterMultisamplePattern" /></strong> in the <strong><see cref="T:SharpDX.Direct3D10.StandardMultisampleQualityLevels" /></strong> enumeration in D3D10_1.h.</p> <p>Direct3D 11 has defined two standard quality levels: <strong><see cref="!:SharpDX.Direct3D11.StandardMultisampleQualityLevels.StandardMultisamplePattern" /></strong> and <strong><see cref="!:SharpDX.Direct3D11.StandardMultisampleQualityLevels.CenterMultisamplePattern" /></strong> in the <strong><see cref="!:SharpDX.Direct3D11.StandardMultisampleQualityLevels" /></strong> enumeration in D3D11.h.</p> </td></tr> </table><p>?</p>
  14113. </remarks>
  14114. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STANDARD_MULTISAMPLE_QUALITY_LEVELS']/*" />
  14115. <msdn-id>bb173072</msdn-id>
  14116. <unmanaged>D3D10_STANDARD_MULTISAMPLE_QUALITY_LEVELS</unmanaged>
  14117. <unmanaged-short>D3D10_STANDARD_MULTISAMPLE_QUALITY_LEVELS</unmanaged-short>
  14118. </member>
  14119. <member name="F:SharpDX.Direct3D10.StandardMultisampleQualityLevels.StandardMultisamplePattern">
  14120. <summary>
  14121. <dd> <p>The number of multisamples per pixel.</p> </dd>
  14122. </summary>
  14123. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STANDARD_MULTISAMPLE_PATTERN']/*" />
  14124. <msdn-id>bb173072</msdn-id>
  14125. <unmanaged>D3D10_STANDARD_MULTISAMPLE_PATTERN</unmanaged>
  14126. <unmanaged-short>D3D10_STANDARD_MULTISAMPLE_PATTERN</unmanaged-short>
  14127. </member>
  14128. <member name="F:SharpDX.Direct3D10.StandardMultisampleQualityLevels.CenterMultisamplePattern">
  14129. <summary>
  14130. <dd> <p>The image quality level. The higher the quality, the lower the performance. The valid range is between zero and one less than the level returned by <strong><see cref="M:SharpDX.Direct3D10.Device.CheckMultisampleQualityLevels(SharpDX.DXGI.Format,System.Int32)" /></strong> for Direct3D 10 or <strong><see cref="!:SharpDX.Direct3D11.Device.CheckMultisampleQualityLevels" /></strong> for Direct3D 11.</p> <p>For Direct3D 10.1 and Direct3D 11, you can use two special quality level values. For more information about these quality level values, see Remarks.</p> </dd>
  14131. </summary>
  14132. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_CENTER_MULTISAMPLE_PATTERN']/*" />
  14133. <msdn-id>bb173072</msdn-id>
  14134. <unmanaged>D3D10_CENTER_MULTISAMPLE_PATTERN</unmanaged>
  14135. <unmanaged-short>D3D10_CENTER_MULTISAMPLE_PATTERN</unmanaged-short>
  14136. </member>
  14137. <member name="T:SharpDX.Direct3D10.StencilOperation">
  14138. <summary>
  14139. <p>The stencil operations that can be performed during depth-stencil testing.</p>
  14140. </summary>
  14141. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STENCIL_OP']/*" />
  14142. <msdn-id>bb172455</msdn-id>
  14143. <unmanaged>D3D10_STENCIL_OP</unmanaged>
  14144. <unmanaged-short>D3D10_STENCIL_OP</unmanaged-short>
  14145. </member>
  14146. <member name="F:SharpDX.Direct3D10.StencilOperation.Keep">
  14147. <summary>
  14148. No documentation.
  14149. </summary>
  14150. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STENCIL_OP_KEEP']/*" />
  14151. <msdn-id>bb172455</msdn-id>
  14152. <unmanaged>D3D10_STENCIL_OP_KEEP</unmanaged>
  14153. <unmanaged-short>D3D10_STENCIL_OP_KEEP</unmanaged-short>
  14154. </member>
  14155. <member name="F:SharpDX.Direct3D10.StencilOperation.Zero">
  14156. <summary>
  14157. No documentation.
  14158. </summary>
  14159. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STENCIL_OP_ZERO']/*" />
  14160. <msdn-id>bb172455</msdn-id>
  14161. <unmanaged>D3D10_STENCIL_OP_ZERO</unmanaged>
  14162. <unmanaged-short>D3D10_STENCIL_OP_ZERO</unmanaged-short>
  14163. </member>
  14164. <member name="F:SharpDX.Direct3D10.StencilOperation.Replace">
  14165. <summary>
  14166. No documentation.
  14167. </summary>
  14168. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STENCIL_OP_REPLACE']/*" />
  14169. <msdn-id>bb172455</msdn-id>
  14170. <unmanaged>D3D10_STENCIL_OP_REPLACE</unmanaged>
  14171. <unmanaged-short>D3D10_STENCIL_OP_REPLACE</unmanaged-short>
  14172. </member>
  14173. <member name="F:SharpDX.Direct3D10.StencilOperation.IncrementAndClamp">
  14174. <summary>
  14175. No documentation.
  14176. </summary>
  14177. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STENCIL_OP_INCR_SAT']/*" />
  14178. <msdn-id>bb172455</msdn-id>
  14179. <unmanaged>D3D10_STENCIL_OP_INCR_SAT</unmanaged>
  14180. <unmanaged-short>D3D10_STENCIL_OP_INCR_SAT</unmanaged-short>
  14181. </member>
  14182. <member name="F:SharpDX.Direct3D10.StencilOperation.DecrementAndClamp">
  14183. <summary>
  14184. No documentation.
  14185. </summary>
  14186. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STENCIL_OP_DECR_SAT']/*" />
  14187. <msdn-id>bb172455</msdn-id>
  14188. <unmanaged>D3D10_STENCIL_OP_DECR_SAT</unmanaged>
  14189. <unmanaged-short>D3D10_STENCIL_OP_DECR_SAT</unmanaged-short>
  14190. </member>
  14191. <member name="F:SharpDX.Direct3D10.StencilOperation.Invert">
  14192. <summary>
  14193. No documentation.
  14194. </summary>
  14195. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STENCIL_OP_INVERT']/*" />
  14196. <msdn-id>bb172455</msdn-id>
  14197. <unmanaged>D3D10_STENCIL_OP_INVERT</unmanaged>
  14198. <unmanaged-short>D3D10_STENCIL_OP_INVERT</unmanaged-short>
  14199. </member>
  14200. <member name="F:SharpDX.Direct3D10.StencilOperation.Increment">
  14201. <summary>
  14202. No documentation.
  14203. </summary>
  14204. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STENCIL_OP_INCR']/*" />
  14205. <msdn-id>bb172455</msdn-id>
  14206. <unmanaged>D3D10_STENCIL_OP_INCR</unmanaged>
  14207. <unmanaged-short>D3D10_STENCIL_OP_INCR</unmanaged-short>
  14208. </member>
  14209. <member name="F:SharpDX.Direct3D10.StencilOperation.Decrement">
  14210. <summary>
  14211. No documentation.
  14212. </summary>
  14213. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STENCIL_OP_DECR']/*" />
  14214. <msdn-id>bb172455</msdn-id>
  14215. <unmanaged>D3D10_STENCIL_OP_DECR</unmanaged>
  14216. <unmanaged-short>D3D10_STENCIL_OP_DECR</unmanaged-short>
  14217. </member>
  14218. <member name="T:SharpDX.Direct3D10.TextureAddressMode">
  14219. <summary>
  14220. <p>Identify a technique for resolving texture coordinates that are outside of the boundaries of a texture.</p>
  14221. </summary>
  14222. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE_ADDRESS_MODE']/*" />
  14223. <msdn-id>bb172483</msdn-id>
  14224. <unmanaged>D3D10_TEXTURE_ADDRESS_MODE</unmanaged>
  14225. <unmanaged-short>D3D10_TEXTURE_ADDRESS_MODE</unmanaged-short>
  14226. </member>
  14227. <member name="F:SharpDX.Direct3D10.TextureAddressMode.Wrap">
  14228. <summary>
  14229. <dd> <p>Tile the texture at every integer junction. For example, for u values between 0 and 3, the texture is repeated three times.</p> </dd>
  14230. </summary>
  14231. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE_ADDRESS_WRAP']/*" />
  14232. <msdn-id>bb172483</msdn-id>
  14233. <unmanaged>D3D10_TEXTURE_ADDRESS_WRAP</unmanaged>
  14234. <unmanaged-short>D3D10_TEXTURE_ADDRESS_WRAP</unmanaged-short>
  14235. </member>
  14236. <member name="F:SharpDX.Direct3D10.TextureAddressMode.Mirror">
  14237. <summary>
  14238. <dd> <p>Flip the texture at every integer junction. For u values between 0 and 1, for example, the texture is addressed normally; between 1 and 2, the texture is flipped (mirrored); between 2 and 3, the texture is normal again; and so on. </p> </dd>
  14239. </summary>
  14240. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE_ADDRESS_MIRROR']/*" />
  14241. <msdn-id>bb172483</msdn-id>
  14242. <unmanaged>D3D10_TEXTURE_ADDRESS_MIRROR</unmanaged>
  14243. <unmanaged-short>D3D10_TEXTURE_ADDRESS_MIRROR</unmanaged-short>
  14244. </member>
  14245. <member name="F:SharpDX.Direct3D10.TextureAddressMode.Clamp">
  14246. <summary>
  14247. <dd> <p>Texture coordinates outside the range [0.0, 1.0] are set to the texture color at 0.0 or 1.0, respectively.</p> </dd>
  14248. </summary>
  14249. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE_ADDRESS_CLAMP']/*" />
  14250. <msdn-id>bb172483</msdn-id>
  14251. <unmanaged>D3D10_TEXTURE_ADDRESS_CLAMP</unmanaged>
  14252. <unmanaged-short>D3D10_TEXTURE_ADDRESS_CLAMP</unmanaged-short>
  14253. </member>
  14254. <member name="F:SharpDX.Direct3D10.TextureAddressMode.Border">
  14255. <summary>
  14256. <dd> <p>Texture coordinates outside the range [0.0, 1.0] are set to the border color specified in <strong><see cref="T:SharpDX.Direct3D10.SamplerStateDescription" /></strong> or HLSL code.</p> </dd>
  14257. </summary>
  14258. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE_ADDRESS_BORDER']/*" />
  14259. <msdn-id>bb172483</msdn-id>
  14260. <unmanaged>D3D10_TEXTURE_ADDRESS_BORDER</unmanaged>
  14261. <unmanaged-short>D3D10_TEXTURE_ADDRESS_BORDER</unmanaged-short>
  14262. </member>
  14263. <member name="F:SharpDX.Direct3D10.TextureAddressMode.MirrorOnce">
  14264. <summary>
  14265. <dd> <p>Similar to <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Mirror" /> and <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />. Takes the absolute value of the texture coordinate (thus, mirroring around 0), and then clamps to the maximum value.</p> </dd>
  14266. </summary>
  14267. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE_ADDRESS_MIRROR_ONCE']/*" />
  14268. <msdn-id>bb172483</msdn-id>
  14269. <unmanaged>D3D10_TEXTURE_ADDRESS_MIRROR_ONCE</unmanaged>
  14270. <unmanaged-short>D3D10_TEXTURE_ADDRESS_MIRROR_ONCE</unmanaged-short>
  14271. </member>
  14272. <member name="T:SharpDX.Direct3D10.TextureCubeFace">
  14273. <summary>
  14274. <p>The different faces of a cube texture.</p>
  14275. </summary>
  14276. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURECUBE_FACE']/*" />
  14277. <msdn-id>bb172482</msdn-id>
  14278. <unmanaged>D3D10_TEXTURECUBE_FACE</unmanaged>
  14279. <unmanaged-short>D3D10_TEXTURECUBE_FACE</unmanaged-short>
  14280. </member>
  14281. <member name="F:SharpDX.Direct3D10.TextureCubeFace.PositiveX">
  14282. <summary>
  14283. <dd> <p>Positive X face.</p> </dd>
  14284. </summary>
  14285. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURECUBE_FACE_POSITIVE_X']/*" />
  14286. <msdn-id>bb172482</msdn-id>
  14287. <unmanaged>D3D10_TEXTURECUBE_FACE_POSITIVE_X</unmanaged>
  14288. <unmanaged-short>D3D10_TEXTURECUBE_FACE_POSITIVE_X</unmanaged-short>
  14289. </member>
  14290. <member name="F:SharpDX.Direct3D10.TextureCubeFace.NegativeX">
  14291. <summary>
  14292. <dd> <p>Negative X face.</p> </dd>
  14293. </summary>
  14294. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURECUBE_FACE_NEGATIVE_X']/*" />
  14295. <msdn-id>bb172482</msdn-id>
  14296. <unmanaged>D3D10_TEXTURECUBE_FACE_NEGATIVE_X</unmanaged>
  14297. <unmanaged-short>D3D10_TEXTURECUBE_FACE_NEGATIVE_X</unmanaged-short>
  14298. </member>
  14299. <member name="F:SharpDX.Direct3D10.TextureCubeFace.PositiveY">
  14300. <summary>
  14301. <dd> <p>Positive Y face.</p> </dd>
  14302. </summary>
  14303. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURECUBE_FACE_POSITIVE_Y']/*" />
  14304. <msdn-id>bb172482</msdn-id>
  14305. <unmanaged>D3D10_TEXTURECUBE_FACE_POSITIVE_Y</unmanaged>
  14306. <unmanaged-short>D3D10_TEXTURECUBE_FACE_POSITIVE_Y</unmanaged-short>
  14307. </member>
  14308. <member name="F:SharpDX.Direct3D10.TextureCubeFace.NegativeY">
  14309. <summary>
  14310. <dd> <p>Negative Y face.</p> </dd>
  14311. </summary>
  14312. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURECUBE_FACE_NEGATIVE_Y']/*" />
  14313. <msdn-id>bb172482</msdn-id>
  14314. <unmanaged>D3D10_TEXTURECUBE_FACE_NEGATIVE_Y</unmanaged>
  14315. <unmanaged-short>D3D10_TEXTURECUBE_FACE_NEGATIVE_Y</unmanaged-short>
  14316. </member>
  14317. <member name="F:SharpDX.Direct3D10.TextureCubeFace.PositiveZ">
  14318. <summary>
  14319. <dd> <p>Positive Z face.</p> </dd>
  14320. </summary>
  14321. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURECUBE_FACE_POSITIVE_Z']/*" />
  14322. <msdn-id>bb172482</msdn-id>
  14323. <unmanaged>D3D10_TEXTURECUBE_FACE_POSITIVE_Z</unmanaged>
  14324. <unmanaged-short>D3D10_TEXTURECUBE_FACE_POSITIVE_Z</unmanaged-short>
  14325. </member>
  14326. <member name="F:SharpDX.Direct3D10.TextureCubeFace.NegativeZ">
  14327. <summary>
  14328. <dd> <p>Negative Z face.</p> </dd>
  14329. </summary>
  14330. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURECUBE_FACE_NEGATIVE_Z']/*" />
  14331. <msdn-id>bb172482</msdn-id>
  14332. <unmanaged>D3D10_TEXTURECUBE_FACE_NEGATIVE_Z</unmanaged>
  14333. <unmanaged-short>D3D10_TEXTURECUBE_FACE_NEGATIVE_Z</unmanaged-short>
  14334. </member>
  14335. <member name="T:SharpDX.Direct3D10.D3D10">
  14336. <summary>
  14337. Functions
  14338. </summary>
  14339. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SharpDX.Direct3D10.D3D10']/*" />
  14340. </member>
  14341. <member name="F:SharpDX.Direct3D10.D3D10.SdkVersion">
  14342. <summary>Constant SdkVersion.</summary>
  14343. <unmanaged>D3D10_SDK_VERSION</unmanaged>
  14344. </member>
  14345. <member name="F:SharpDX.Direct3D10.D3D10.SdkVersion1">
  14346. <summary>Constant SdkVersion1.</summary>
  14347. <unmanaged>D3D10_1_SDK_VERSION</unmanaged>
  14348. </member>
  14349. <member name="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device1@)">
  14350. <summary>
  14351. <p>Create a Direct3D 10.1 device and a swap chain.</p>
  14352. </summary>
  14353. <param name="adapterRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.DXGI.Adapter" /></strong>.</p> </dd></param>
  14354. <param name="driverType"><dd> <p>The type of driver for the device. See <strong><see cref="T:SharpDX.Direct3D10.DriverType" /></strong>.</p> </dd></param>
  14355. <param name="software"><dd> <p>A handle to the DLL that implements a software rasterizer. Must be <strong><c>null</c></strong> if DriverType is non-software. The HMODULE of a DLL can be obtained with LoadLibrary, LoadLibraryEx, or GetModuleHandle.</p> </dd></param>
  14356. <param name="flags"><dd> <p>Optional. Device creation flags (see <strong><see cref="T:SharpDX.Direct3D10.DeviceCreationFlags" /></strong>) that enable API layers. These flags can be bitwise OR'd together.</p> </dd></param>
  14357. <param name="hardwareLevel"><dd> <p>The version of hardware that is available for acceleration (see <strong><see cref="T:SharpDX.Direct3D10.FeatureLevel" /></strong>).</p> </dd></param>
  14358. <param name="sDKVersion"><dd> <p>Bit flag that indicates the version of the SDK. Should be <see cref="F:SharpDX.Direct3D10.D3D10.SdkVersion1" />, defined in D3D10.h.</p> </dd></param>
  14359. <param name="swapChainDescRef"><dd> <p>Description of the swap chain. See <strong><see cref="T:SharpDX.DXGI.SwapChainDescription" /></strong>.</p> </dd></param>
  14360. <param name="swapChainOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.DXGI.SwapChain" /></strong>.</p> </dd></param>
  14361. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D10.Device1" /> Interface</strong> that will receive the newly created device.</p> </dd></param>
  14362. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  14363. <remarks>
  14364. <p>To create a device without creating a swap chain, see <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /></strong>.</p><p>This method requires Windows Vista Service Pack 1, Windows Server 2008, or later release of Windows.</p><p><strong>Note</strong>??If you call this API in a Session 0 process, it returns <strong><see cref="F:SharpDX.DXGI.ResultCode.NotCurrentlyAvailable" /></strong>.</p>
  14365. </remarks>
  14366. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10CreateDeviceAndSwapChain1']/*" />
  14367. <msdn-id>bb694527</msdn-id>
  14368. <unmanaged>HRESULT D3D10CreateDeviceAndSwapChain1([In, Optional] IDXGIAdapter* pAdapter,[In] D3D10_DRIVER_TYPE DriverType,[In] HINSTANCE Software,[In] D3D10_CREATE_DEVICE_FLAG Flags,[In] D3D10_FEATURE_LEVEL1 HardwareLevel,[In] unsigned int SDKVersion,[In] DXGI_SWAP_CHAIN_DESC* pSwapChainDesc,[Out] IDXGISwapChain** ppSwapChain,[Out] ID3D10Device1** ppDevice)</unmanaged>
  14369. <unmanaged-short>D3D10CreateDeviceAndSwapChain1</unmanaged-short>
  14370. </member>
  14371. <member name="M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)">
  14372. <summary>
  14373. <p>Create a Direct3D 10.1 device that represents the display adapter.</p>
  14374. </summary>
  14375. <param name="adapterRef"><dd> <p>Pointer to the display adapter (see <strong><see cref="T:SharpDX.DXGI.Adapter" /></strong>) when creating a hardware device; otherwise set this parameter to <strong><c>null</c></strong>. If <strong><c>null</c></strong> is specified when creating a hardware device, Direct3D will use the first adapter enumerated by <strong>EnumAdapters</strong>.</p> </dd></param>
  14376. <param name="driverType"><dd> <p>The device-driver type (see <strong><see cref="T:SharpDX.Direct3D10.DriverType" /></strong>). The driver type determines the type of device you will create.</p> </dd></param>
  14377. <param name="software"><dd> <p>This is set to <strong><c>null</c></strong> except for <see cref="F:SharpDX.Direct3D10.DriverType.Software" /> driver types.</p> </dd></param>
  14378. <param name="flags"><dd> <p>Optional. Device creation flags (see <strong><see cref="T:SharpDX.Direct3D10.DeviceCreationFlags" /></strong>) that enable API layers. These flags can be bitwise OR'd together.</p> </dd></param>
  14379. <param name="hardwareLevel"><dd> <p>The version of hardware that is available for acceleration (see <strong><see cref="T:SharpDX.Direct3D10.FeatureLevel" /></strong>).</p> </dd></param>
  14380. <param name="sDKVersion"><dd> <p>Bit flag that indicates the version of the SDK. Should be <see cref="F:SharpDX.Direct3D10.D3D10.SdkVersion1" />, defined in D3D10.h.</p> </dd></param>
  14381. <param name="deviceOut"><dd> <p>Address of a reference to the device created (see <strong><see cref="T:SharpDX.Direct3D10.Device1" /> Interface</strong>).</p> </dd></param>
  14382. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  14383. <remarks>
  14384. <p>To create a device and a swap chain at the same time, see <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device1@)" /></strong>.</p><p>This method requires Windows Vista Service Pack 1, Windows Server 2008, or later release of Windows.</p><p>The object returned by <see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /> implements the <see cref="T:SharpDX.ComObject" /> interface and can be queried for other interfaces the object supports. To retrieve the <strong><see cref="T:SharpDX.DXGI.Device" /></strong> interface of the object the following code could be used.</p><pre> <see cref="T:SharpDX.DXGI.Device" /> * pDXGIDevice;
  14385. hr = g_pd3dDevice-&gt;QueryInterface(__uuidof(<see cref="T:SharpDX.DXGI.Device" />), (void **)&amp;pDXGIDevice); </pre>
  14386. </remarks>
  14387. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10CreateDevice1']/*" />
  14388. <msdn-id>bb694526</msdn-id>
  14389. <unmanaged>HRESULT D3D10CreateDevice1([In, Optional] IDXGIAdapter* pAdapter,[In] D3D10_DRIVER_TYPE DriverType,[In] HINSTANCE Software,[In] D3D10_CREATE_DEVICE_FLAG Flags,[In] D3D10_FEATURE_LEVEL1 HardwareLevel,[In] unsigned int SDKVersion,[Out, Fast] ID3D10Device1** ppDevice)</unmanaged>
  14390. <unmanaged-short>D3D10CreateDevice1</unmanaged-short>
  14391. </member>
  14392. <member name="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device@)">
  14393. <summary>
  14394. <p>Create a Direct3D 10.0 device and a swap chain.</p>
  14395. </summary>
  14396. <param name="adapterRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.DXGI.Adapter" /></strong>.</p> </dd></param>
  14397. <param name="driverType"><dd> <p>The type of driver for the device. See <strong><see cref="T:SharpDX.Direct3D10.DriverType" /></strong>.</p> </dd></param>
  14398. <param name="software"><dd> <p>A handle to the DLL that implements a software rasterizer. Must be <strong><c>null</c></strong> if DriverType is non-software. The HMODULE of a DLL can be obtained with LoadLibrary, LoadLibraryEx, or GetModuleHandle.</p> </dd></param>
  14399. <param name="flags"><dd> <p>Optional. Device creation flags (see <strong><see cref="T:SharpDX.Direct3D10.DeviceCreationFlags" /></strong>) that enable API layers. These flags can be bitwise OR'd together.</p> </dd></param>
  14400. <param name="sDKVersion"><dd> <p>Bit flag that indicates the version of the SDK. Should be <see cref="F:SharpDX.Direct3D10.D3D10.SdkVersion" />, defined in d3d10.h.</p> </dd></param>
  14401. <param name="swapChainDescRef"><dd> <p>Description of the swap chain. See <strong><see cref="T:SharpDX.DXGI.SwapChainDescription" /></strong>.</p> </dd></param>
  14402. <param name="swapChainOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.DXGI.SwapChain" /></strong>.</p> </dd></param>
  14403. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong> that will receive the newly created device.</p> </dd></param>
  14404. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  14405. <remarks>
  14406. <p>To create a device without creating a swap chain, see <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>.</p><p><strong>Note</strong>??If you call this API in a Session 0 process, it returns <strong><see cref="F:SharpDX.DXGI.ResultCode.NotCurrentlyAvailable" /></strong>.</p>
  14407. </remarks>
  14408. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10CreateDeviceAndSwapChain']/*" />
  14409. <msdn-id>bb205087</msdn-id>
  14410. <unmanaged>HRESULT D3D10CreateDeviceAndSwapChain([In, Optional] IDXGIAdapter* pAdapter,[In] D3D10_DRIVER_TYPE DriverType,[In] HINSTANCE Software,[In] D3D10_CREATE_DEVICE_FLAG Flags,[In] unsigned int SDKVersion,[In] DXGI_SWAP_CHAIN_DESC* pSwapChainDesc,[Out] IDXGISwapChain** ppSwapChain,[Out] ID3D10Device** ppDevice)</unmanaged>
  14411. <unmanaged-short>D3D10CreateDeviceAndSwapChain</unmanaged-short>
  14412. </member>
  14413. <member name="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)">
  14414. <summary>
  14415. <p>Create a Direct3D 10.0 device that represents the display adapter.</p>
  14416. </summary>
  14417. <param name="adapterRef"><dd> <p>Pointer to the display adapter (see <strong><see cref="T:SharpDX.DXGI.Adapter" /></strong>) when creating a hardware device; otherwise set this parameter to <strong><c>null</c></strong>. If <strong><c>null</c></strong> is specified when creating a hardware device, Direct3D will use the first adapter enumerated by <strong>EnumAdapters</strong>.</p> </dd></param>
  14418. <param name="driverType"><dd> <p>The device-driver type (see <strong><see cref="T:SharpDX.Direct3D10.DriverType" /></strong>). The driver type determines the type of device you will create.</p> </dd></param>
  14419. <param name="software"><dd> <p>Reserved. Set to <strong><c>null</c></strong>.</p> </dd></param>
  14420. <param name="flags"><dd> <p>Optional. Device creation flags (see <strong><see cref="T:SharpDX.Direct3D10.DeviceCreationFlags" /></strong>) that enable API layers. These flags can be bitwise OR'd together.</p> </dd></param>
  14421. <param name="sDKVersion"><dd> <p>Bit flag that indicates the version of the SDK. Should always be <see cref="F:SharpDX.Direct3D10.D3D10.SdkVersion" />.</p> </dd></param>
  14422. <param name="deviceOut"><dd> <p>Address of a reference to the device created (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>).</p> </dd></param>
  14423. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  14424. <remarks>
  14425. <p>This example creates a reference device.</p><pre> <see cref="T:SharpDX.Direct3D10.Device" />* g_pd3dDevice = <c>null</c>;
  14426. <see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" />( <c>null</c>, <see cref="F:SharpDX.Direct3D10.DriverType.Reference" />, <c>null</c>, 0, <see cref="F:SharpDX.Direct3D10.D3D10.SdkVersion" />, &amp;g_pd3dDevice ); </pre><p>To create a device and a swap chain at the same time, see <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device@)" /></strong>.</p><p>The object returned by <see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /> implements the <see cref="T:SharpDX.ComObject" /> interface and can be queried for other interfaces the object supports. To retrieve the <strong><see cref="T:SharpDX.DXGI.Device" /></strong> interface of the object the following code could be used.</p><pre> <see cref="T:SharpDX.DXGI.Device" /> * pDXGIDevice;
  14427. hr = g_pd3dDevice-&gt;QueryInterface(__uuidof(<see cref="T:SharpDX.DXGI.Device" />), (void **)&amp;pDXGIDevice); </pre>
  14428. </remarks>
  14429. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10CreateDevice']/*" />
  14430. <msdn-id>bb205086</msdn-id>
  14431. <unmanaged>HRESULT D3D10CreateDevice([In, Optional] IDXGIAdapter* pAdapter,[In] D3D10_DRIVER_TYPE DriverType,[In] HINSTANCE Software,[In] D3D10_CREATE_DEVICE_FLAG Flags,[In] unsigned int SDKVersion,[Out, Fast] ID3D10Device** ppDevice)</unmanaged>
  14432. <unmanaged-short>D3D10CreateDevice</unmanaged-short>
  14433. </member>
  14434. <member name="M:SharpDX.Direct3D10.D3D10.GetVertexShaderProfile(SharpDX.Direct3D10.Device)">
  14435. <summary>
  14436. <p>Get the vertex shader profile best suited to a given device.</p>
  14437. </summary>
  14438. <param name="deviceRef">No documentation.</param>
  14439. <returns><p>The shader profile.</p></returns>
  14440. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10GetVertexShaderProfile']/*" />
  14441. <msdn-id>bb205099</msdn-id>
  14442. <unmanaged>const char* D3D10GetVertexShaderProfile([In] ID3D10Device* pDevice)</unmanaged>
  14443. <unmanaged-short>D3D10GetVertexShaderProfile</unmanaged-short>
  14444. </member>
  14445. <member name="M:SharpDX.Direct3D10.D3D10.GetPixelShaderProfile(SharpDX.Direct3D10.Device)">
  14446. <summary>
  14447. <p>Get the pixel shader profile best suited to a given device.</p>
  14448. </summary>
  14449. <param name="deviceRef">No documentation.</param>
  14450. <returns><p>The shader profile.</p></returns>
  14451. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10GetPixelShaderProfile']/*" />
  14452. <msdn-id>bb205097</msdn-id>
  14453. <unmanaged>const char* D3D10GetPixelShaderProfile([In] ID3D10Device* pDevice)</unmanaged>
  14454. <unmanaged-short>D3D10GetPixelShaderProfile</unmanaged-short>
  14455. </member>
  14456. <member name="M:SharpDX.Direct3D10.D3D10.GetGeometryShaderProfile(SharpDX.Direct3D10.Device)">
  14457. <summary>
  14458. <p>Get the geometry shader profile best suited to a given device.</p>
  14459. </summary>
  14460. <param name="deviceRef">No documentation.</param>
  14461. <returns><p>The shader profile.</p></returns>
  14462. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10GetGeometryShaderProfile']/*" />
  14463. <msdn-id>bb205093</msdn-id>
  14464. <unmanaged>const char* D3D10GetGeometryShaderProfile([In] ID3D10Device* pDevice)</unmanaged>
  14465. <unmanaged-short>D3D10GetGeometryShaderProfile</unmanaged-short>
  14466. </member>
  14467. <member name="M:SharpDX.Direct3D10.D3D10.CreateEffectPoolFromMemory(System.IntPtr,SharpDX.PointerSize,System.Int32,SharpDX.Direct3D10.Device,SharpDX.Direct3D10.EffectPool)">
  14468. <summary>
  14469. <p>Create an effect pool (or shared memory location), to enable sharing variables between effects.</p>
  14470. </summary>
  14471. <param name="dataRef"><dd> <p>A reference to a compiled effect.</p> </dd></param>
  14472. <param name="dataLength"><dd> <p>Length of <em>pData</em>.</p> </dd></param>
  14473. <param name="fXFlags"><dd> <p>Effect compile options.</p> </dd></param>
  14474. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>).</p> </dd></param>
  14475. <param name="effectPoolOut"><dd> <p>A reference to the <strong><see cref="T:SharpDX.Direct3D10.EffectPool" /> Interface</strong> that contains the effect pool.</p> </dd></param>
  14476. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  14477. <remarks>
  14478. <p>A pool is a shared location in memory. Effect variables that are located in a pool can be updated once, and the effect system will take care of updating each effect that uses that variable. To pool an effect variable, tell the effect to locate the variable in a pool when the effect is created, using a helper function such as <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateEffectFromFile(System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,SharpDX.Direct3D10.EffectPool,System.IntPtr,SharpDX.Direct3D10.Effect@,SharpDX.Direct3D.Blob@,SharpDX.Result@)" /></strong>.</p><p>For help compiling an effect, see Compile an Effect (Direct3D 10).</p>
  14479. </remarks>
  14480. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10CreateEffectPoolFromMemory']/*" />
  14481. <msdn-id>bb205089</msdn-id>
  14482. <unmanaged>HRESULT D3D10CreateEffectPoolFromMemory([In, Buffer] void* pData,[In] SIZE_T DataLength,[In] unsigned int FXFlags,[In] ID3D10Device* pDevice,[Out, Fast] ID3D10EffectPool** ppEffectPool)</unmanaged>
  14483. <unmanaged-short>D3D10CreateEffectPoolFromMemory</unmanaged-short>
  14484. </member>
  14485. <member name="M:SharpDX.Direct3D10.D3D10.CreateEffectFromMemory(System.IntPtr,SharpDX.PointerSize,System.Int32,SharpDX.Direct3D10.Device,SharpDX.Direct3D10.EffectPool,SharpDX.Direct3D10.Effect)">
  14486. <summary>
  14487. <p>Creates an <see cref="T:SharpDX.Direct3D10.Effect" /> from a buffer containing a compiled effect.</p>
  14488. </summary>
  14489. <param name="dataRef"><dd> <p>A reference to a compiled effect.</p> </dd></param>
  14490. <param name="dataLength"><dd> <p>Length of <em>pData</em>.</p> </dd></param>
  14491. <param name="fXFlags"><dd> <p>Effect compile options.</p> </dd></param>
  14492. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>).</p> </dd></param>
  14493. <param name="effectPoolRef"><dd> <p>Optional. A reference to an memory space for effect variables that are shared across effects (see <strong><see cref="T:SharpDX.Direct3D10.EffectPool" /> Interface</strong>).</p> </dd></param>
  14494. <param name="effectOut"><dd> <p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.Effect" /> Interface</strong> which contains the created effect.</p> </dd></param>
  14495. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  14496. <remarks>
  14497. <p>This method is used to create an <strong><see cref="T:SharpDX.Direct3D10.Effect" /> Interface</strong> object from an effect that has been compiled before runtime and loaded into memory. For help precompiling an effect, see Offline Compiling. To load and compile an ASCII .fx file see Compile an Effect (Direct3D 10).</p>
  14498. </remarks>
  14499. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10CreateEffectFromMemory']/*" />
  14500. <msdn-id>bb205088</msdn-id>
  14501. <unmanaged>HRESULT D3D10CreateEffectFromMemory([In, Buffer] void* pData,[In] SIZE_T DataLength,[In] unsigned int FXFlags,[In] ID3D10Device* pDevice,[In, Optional] ID3D10EffectPool* pEffectPool,[Out, Fast] ID3D10Effect** ppEffect)</unmanaged>
  14502. <unmanaged-short>D3D10CreateEffectFromMemory</unmanaged-short>
  14503. </member>
  14504. <member name="M:SharpDX.Direct3D10.D3D10.CreateStateBlock(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.StateBlockMask@,SharpDX.Direct3D10.StateBlock)">
  14505. <summary>
  14506. <p>Create a state block.</p>
  14507. </summary>
  14508. <param name="deviceRef"><dd> <p>The device for which the state block will be created.</p> </dd></param>
  14509. <param name="stateBlockMaskRef"><dd> <p>Indicates which parts of the device state will be captured when calling <strong><see cref="M:SharpDX.Direct3D10.StateBlock.Capture" /></strong> and reapplied when calling <strong><see cref="M:SharpDX.Direct3D10.StateBlock.Apply" /></strong>. See remarks.</p> </dd></param>
  14510. <param name="stateBlockOut"><dd> <p>Address of a reference to the buffer created (see <strong><see cref="T:SharpDX.Direct3D10.StateBlock" /> Interface</strong>).</p> </dd></param>
  14511. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  14512. <remarks>
  14513. <p>A state block is a collection of device state, and is used for saving and restoring device state. Use a state-block mask to enable subsets of state for saving and restoring.</p><p>The <strong><see cref="T:SharpDX.Direct3D10.StateBlockMask" /></strong> structure can be filled manually or by using any of the D3D10StateBlockMaskXXX APIs. A state block mask can also be obtained by calling <strong><see cref="M:SharpDX.Direct3D10.EffectTechnique.ComputeStateBlockMask(SharpDX.Direct3D10.StateBlockMask@)" /></strong> or <strong><see cref="M:SharpDX.Direct3D10.EffectPass.ComputeStateBlockMask(SharpDX.Direct3D10.StateBlockMask@)" /></strong>.</p><table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>In Direct3D 10, a state block object does not contain any valid information about the state of the device until <strong><see cref="M:SharpDX.Direct3D10.StateBlock.Capture" /></strong> is called. In Direct3D 9, state is saved in a state block object, when it is created.</p> </td></tr> </table><p>?</p>
  14514. </remarks>
  14515. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10CreateStateBlock']/*" />
  14516. <msdn-id>bb205090</msdn-id>
  14517. <unmanaged>HRESULT D3D10CreateStateBlock([In] ID3D10Device* pDevice,[In] D3D10_STATE_BLOCK_MASK* pStateBlockMask,[Out, Fast] ID3D10StateBlock** ppStateBlock)</unmanaged>
  14518. <unmanaged-short>D3D10CreateStateBlock</unmanaged-short>
  14519. </member>
  14520. <member name="M:SharpDX.Direct3D10.D3D10.CompileEffect10FromMemory(System.IntPtr,SharpDX.PointerSize,System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,SharpDX.D3DCompiler.ShaderFlags,SharpDX.D3DCompiler.EffectFlags,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)">
  14521. <summary>
  14522. <p>Compile an effect.
  14523. </p><p><strong>Note</strong>??Use <strong>D3DX10CompileFromMemory</strong> instead of this function.</p>
  14524. </summary>
  14525. <param name="dataRef">No documentation.</param>
  14526. <param name="dataLength">No documentation.</param>
  14527. <param name="srcFileNameRef">No documentation.</param>
  14528. <param name="definesRef">No documentation.</param>
  14529. <param name="includeRef">No documentation.</param>
  14530. <param name="hLSLFlags">No documentation.</param>
  14531. <param name="fXFlags">No documentation.</param>
  14532. <param name="compiledEffectOut">No documentation.</param>
  14533. <param name="errorsOut">No documentation.</param>
  14534. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  14535. <remarks>
  14536. <p>This function uses the version of the HLSL compiler released in the November 2006 DirectX SDK.</p><p>For an example, see Compile an Effect (Direct3D 10).</p>
  14537. </remarks>
  14538. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10CompileEffectFromMemory']/*" />
  14539. <msdn-id>bb205083</msdn-id>
  14540. <unmanaged>HRESULT D3D10CompileEffectFromMemory([In, Buffer] void* pData,[In] SIZE_T DataLength,[In] const char* pSrcFileName,[In, Buffer, Optional] const D3D_SHADER_MACRO* pDefines,[In, Optional] ID3DInclude* pInclude,[In] D3DCOMPILE_SHADER_FLAGS HLSLFlags,[In] D3DCOMPILE_EFFECT_FLAGS FXFlags,[Out] ID3D10Blob** ppCompiledEffect,[Out, Optional] ID3D10Blob** ppErrors)</unmanaged>
  14541. <unmanaged-short>D3D10CompileEffectFromMemory</unmanaged-short>
  14542. </member>
  14543. <member name="T:SharpDX.Direct3D10.D3DX10">
  14544. <summary>
  14545. Functions
  14546. </summary>
  14547. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SharpDX.Direct3D10.D3DX10']/*" />
  14548. </member>
  14549. <member name="M:SharpDX.Direct3D10.D3DX10.CreateFont(SharpDX.Direct3D10.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32,System.Int32,System.Int32,System.Int32,System.String,SharpDX.Direct3D10.Font)">
  14550. <summary>
  14551. <p>Creates a font object for a device and font.</p><p><strong>Note</strong>??Instead of using this function, we recommend that you use DirectWrite and the DirectXTK library, <strong>SpriteFont</strong> class. </p>
  14552. </summary>
  14553. <param name="deviceRef">No documentation.</param>
  14554. <param name="height">No documentation.</param>
  14555. <param name="width">No documentation.</param>
  14556. <param name="weight">No documentation.</param>
  14557. <param name="mipLevels">No documentation.</param>
  14558. <param name="italic">No documentation.</param>
  14559. <param name="charSet">No documentation.</param>
  14560. <param name="outputPrecision">No documentation.</param>
  14561. <param name="quality">No documentation.</param>
  14562. <param name="pitchAndFamily">No documentation.</param>
  14563. <param name="faceNameRef">No documentation.</param>
  14564. <param name="fontOut">No documentation.</param>
  14565. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the function fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  14566. <remarks>
  14567. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to D3DXCreateFontW. Otherwise, the function call resolves to D3DXCreateFontA because ANSI strings are being used.</p><p>If you want more information about font parameters, see The Logical Font.</p>
  14568. </remarks>
  14569. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateFontW']/*" />
  14570. <msdn-id>bb172664</msdn-id>
  14571. <unmanaged>HRESULT D3DX10CreateFontW([In] ID3D10Device* pDevice,[In] int Height,[In] unsigned int Width,[In] unsigned int Weight,[In] unsigned int MipLevels,[In] BOOL Italic,[In] unsigned int CharSet,[In] unsigned int OutputPrecision,[In] unsigned int Quality,[In] unsigned int PitchAndFamily,[In] const wchar_t* pFaceName,[Out, Fast] ID3DX10Font** ppFont)</unmanaged>
  14572. <unmanaged-short>D3DX10CreateFontW</unmanaged-short>
  14573. </member>
  14574. <member name="M:SharpDX.Direct3D10.D3DX10.CreateFontIndirect(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.FontDescription@,SharpDX.Direct3D10.Font)">
  14575. <summary>
  14576. <p>Creates a font object.</p><p><strong>Note</strong>??Instead of using this function, we recommend that you use DirectWrite and the DirectXTK library, <strong>SpriteFont</strong> class. </p>
  14577. </summary>
  14578. <param name="deviceRef">No documentation.</param>
  14579. <param name="descRef">No documentation.</param>
  14580. <param name="fontOut">No documentation.</param>
  14581. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14582. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateFontIndirectW']/*" />
  14583. <msdn-id>bb172665</msdn-id>
  14584. <unmanaged>HRESULT D3DX10CreateFontIndirectW([In] ID3D10Device* pDevice,[In] const D3DX10_FONT_DESCW* pDesc,[Out, Fast] ID3DX10Font** ppFont)</unmanaged>
  14585. <unmanaged-short>D3DX10CreateFontIndirectW</unmanaged-short>
  14586. </member>
  14587. <member name="M:SharpDX.Direct3D10.D3DX10.CreateSprite(SharpDX.Direct3D10.Device,System.Int32,SharpDX.Direct3D10.Sprite)">
  14588. <summary>
  14589. <p>Create a sprite for drawing a 2D texture.</p><p><strong>Note</strong>??Instead of using this function, we recommend that you use Direct2D and the DirectXTK library, <strong>SpriteBatch</strong> class. </p>
  14590. </summary>
  14591. <param name="deviceRef">No documentation.</param>
  14592. <param name="cDeviceBufferSize">No documentation.</param>
  14593. <param name="spriteOut">No documentation.</param>
  14594. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the function fails, the return value can be one of the following: D3DERR_INVALIDCALL, E_OUTOFMEMORY.</p></returns>
  14595. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateSprite']/*" />
  14596. <msdn-id>bb172670</msdn-id>
  14597. <unmanaged>HRESULT D3DX10CreateSprite([In] ID3D10Device* pDevice,[In] unsigned int cDeviceBufferSize,[Out, Fast] ID3DX10Sprite** ppSprite)</unmanaged>
  14598. <unmanaged-short>D3DX10CreateSprite</unmanaged-short>
  14599. </member>
  14600. <member name="M:SharpDX.Direct3D10.D3DX10.CreateDeviceAndSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device@)">
  14601. <summary>
  14602. <p>Create the best Direct3D device and a swap chain.</p>
  14603. </summary>
  14604. <param name="adapterRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.DXGI.Adapter" /></strong>.</p> </dd></param>
  14605. <param name="driverType"><dd> <p>The type of driver for the device. See <strong><see cref="T:SharpDX.Direct3D10.DriverType" /></strong>.</p> </dd></param>
  14606. <param name="software"><dd> <p>A handle to the DLL that implements a software rasterizer. Must be <strong><c>null</c></strong> if DriverType is non-software. The HMODULE of a DLL can be obtained with LoadLibrary, LoadLibraryEx, or GetModuleHandle.</p> </dd></param>
  14607. <param name="flags"><dd> <p>Optional. Device creation flags (see <strong><see cref="T:SharpDX.Direct3D10.DeviceCreationFlags" /></strong>) that enable API layers. These flags can be bitwise OR'd together.</p> </dd></param>
  14608. <param name="swapChainDescRef"><dd> <p>Description of the swap chain. See <strong><see cref="T:SharpDX.DXGI.SwapChainDescription" /></strong>.</p> </dd></param>
  14609. <param name="swapChainOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.DXGI.SwapChain" /></strong>.</p> </dd></param>
  14610. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong> that will receive the newly created device.</p> </dd></param>
  14611. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  14612. <remarks>
  14613. <p>To create the best device, this method implements more than one device creation option. First, the method attempts to create a 10.1 device (and swap chain). If that fails, the method attempts to create a 10.0 device. If that fails, the method will fail. If your application needs to create only a 10.1 device, or a 10.0 device only, use these APIs instead:</p><ul> <li>Use <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device@)" /></strong> to create a Direct3D 10.0 (only) device and swap chain.</li> <li>Use <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device1@)" /></strong> to create a Direct3D 10.1 (only) device and swap chain.</li> </ul><p>This method requires Windows Vista Service Pack 1.</p>
  14614. </remarks>
  14615. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateDeviceAndSwapChain']/*" />
  14616. <msdn-id>bb694538</msdn-id>
  14617. <unmanaged>HRESULT D3DX10CreateDeviceAndSwapChain([In] IDXGIAdapter* pAdapter,[In] D3D10_DRIVER_TYPE DriverType,[In] HINSTANCE Software,[In] unsigned int Flags,[In] DXGI_SWAP_CHAIN_DESC* pSwapChainDesc,[In] IDXGISwapChain** ppSwapChain,[In] ID3D10Device** ppDevice)</unmanaged>
  14618. <unmanaged-short>D3DX10CreateDeviceAndSwapChain</unmanaged-short>
  14619. </member>
  14620. <member name="M:SharpDX.Direct3D10.D3DX10.CheckVersion(System.Int32,System.Int32)">
  14621. <summary>
  14622. <p>Verify that the version of D3DX you compiled with is the version that you are running.</p>
  14623. </summary>
  14624. <param name="d3DSdkVersion"><dd> <p>Use <see cref="F:SharpDX.Direct3D10.D3D10.SdkVersion" />. See remarks.</p> </dd></param>
  14625. <param name="d3DX10SdkVersion"><dd> <p>Use D3DX10_SDK_VERSION. See remarks.</p> </dd></param>
  14626. <returns><p>If the version doesn't match, the function will return <see cref="F:SharpDX.Result.False" /> (a number less than or equal to 0, the number itself has no meaning).</p></returns>
  14627. <remarks>
  14628. <p>Use this function during the initialization of your application.</p><pre> <see cref="T:SharpDX.Result" /> hr; if( FAILED( <see cref="M:SharpDX.Direct3D10.D3DX10.CheckVersion(System.Int32,System.Int32)" />(<see cref="F:SharpDX.Direct3D10.D3D10.SdkVersion" />, D3DX10_SDK_VERSION) ) ) return E_FAIL;
  14629. </pre>
  14630. </remarks>
  14631. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CheckVersion']/*" />
  14632. <msdn-id>bb172639</msdn-id>
  14633. <unmanaged>HRESULT D3DX10CheckVersion([In] unsigned int D3DSdkVersion,[In] unsigned int D3DX10SdkVersion)</unmanaged>
  14634. <unmanaged-short>D3DX10CheckVersion</unmanaged-short>
  14635. </member>
  14636. <member name="M:SharpDX.Direct3D10.D3DX10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,System.Int32,SharpDX.Direct3D10.Device@)">
  14637. <summary>
  14638. <p>Create the best Direct3D 10 device that represents the display adapter. If a Direct3D 10.1-compatible device can be created, it will be possible to acquire an <strong><see cref="T:SharpDX.Direct3D10.Device1" /> Interface</strong> reference from the returned device interface reference.</p>
  14639. </summary>
  14640. <param name="adapterRef">No documentation.</param>
  14641. <param name="driverType">No documentation.</param>
  14642. <param name="software">No documentation.</param>
  14643. <param name="flags">No documentation.</param>
  14644. <param name="deviceOut">No documentation.</param>
  14645. <returns><p>This function returns one of the following Direct3D 10 Return Codes.</p></returns>
  14646. <remarks>
  14647. <p>This function attempts to create the best device for the hardware. First, the function attempts to create a 10.1 device. If a 10.1 device cannot be created, the function attempts to create a 10.0 device. If neither device is successfully created, the function returns E_FAIL.</p><p>If your application needs to create only a 10.1 device, or a 10.0 device only, use the following functions instead:</p><ul> <li>Use the <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong> function to create a Direct3D 10.0 device only.</li> <li>Use the <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /></strong> function to create a Direct3D 10.1 device only.</li> <li>Use the <strong><see cref="M:SharpDX.Direct3D10.D3DX10.GetFeatureLevel1(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Device1@)" /></strong> function to get an <strong><see cref="T:SharpDX.Direct3D10.Device1" /></strong> interface reference from an <strong><see cref="T:SharpDX.Direct3D10.Device" /></strong> interface reference.</li> </ul><p>A Direct3D 10.1 device can only be created on computers running Windows Vista Service Pack 1 or later, and with Direct3D 10.1-compatible hardware installed. However, it is legal to call this function on computers running any version of Windows that has the D3DX10 DLL installed.</p>
  14648. </remarks>
  14649. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateDevice']/*" />
  14650. <msdn-id>bb694537</msdn-id>
  14651. <unmanaged>HRESULT D3DX10CreateDevice([In] IDXGIAdapter* pAdapter,[In] D3D10_DRIVER_TYPE DriverType,[In] HINSTANCE Software,[In] unsigned int Flags,[In] ID3D10Device** ppDevice)</unmanaged>
  14652. <unmanaged-short>D3DX10CreateDevice</unmanaged-short>
  14653. </member>
  14654. <member name="M:SharpDX.Direct3D10.D3DX10.GetFeatureLevel1(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Device1@)">
  14655. <summary>
  14656. <p>Get a Direct3D 10.1 device interface reference from a Direct3D 10.0 interface reference.</p>
  14657. </summary>
  14658. <param name="deviceRef"><dd> <p>Pointer to the Direct3D 10.0 device (see the <strong><see cref="T:SharpDX.Direct3D10.Device" /></strong> interface).</p> </dd></param>
  14659. <param name="device1Out"><dd> <p>Pointer to the Direct3D 10.1 device (see the <strong><see cref="T:SharpDX.Direct3D10.Device1" /></strong> interface).</p> </dd></param>
  14660. <returns><p>This function returns one of the following Direct3D 10 Return Codes. If a Direct3D 10.1 device interface can be acquired, this function succeeds and passes a reference to the 10.1 interface using the <em>ppDevice</em> parameter. If a Direct3D 10.1 device interface cannot be acquired, this function returns E_FAIL, and will not return anything for the <em>ppDevice</em> parameter.</p></returns>
  14661. <remarks>
  14662. <p>For this function to succeed, you must have acquired the supplied <strong><see cref="T:SharpDX.Direct3D10.Device" /></strong> reference using a call to the <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,System.Int32,SharpDX.Direct3D10.Device@)" /></strong> function, the <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateDeviceAndSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device@)" /></strong> function, the <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.Direct3D10.Device1)" /></strong> function, or the <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain1(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,SharpDX.Direct3D10.FeatureLevel,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device1@)" /></strong> function.</p><p>You can only create a Direct3D 10.1 device on computers running Windows Vista Service Pack 1 or later, and with Direct3D 10.1-compatible hardware installed. This function will return E_FAIL on any computer not meeting these requirements.
  14663. However, you can call this function on any version of Windows that has the D3DX10 DLL installed.</p>
  14664. </remarks>
  14665. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10GetFeatureLevel1']/*" />
  14666. <msdn-id>bb694539</msdn-id>
  14667. <unmanaged>HRESULT D3DX10GetFeatureLevel1([In] ID3D10Device* pDevice,[In] ID3D10Device1** ppDevice1)</unmanaged>
  14668. <unmanaged-short>D3DX10GetFeatureLevel1</unmanaged-short>
  14669. </member>
  14670. <member name="M:SharpDX.Direct3D10.D3DX10.CreateShaderResourceViewFromFile(SharpDX.Direct3D10.Device,System.String,System.Nullable{SharpDX.Direct3D10.ImageLoadInformation},System.IntPtr,SharpDX.Direct3D10.ShaderResourceView@,SharpDX.Result@)">
  14671. <summary>
  14672. <p>Create a shader-resource view from a file.</p>
  14673. </summary>
  14674. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resource.</p> </dd></param>
  14675. <param name="srcFileRef"><dd> <p>Name of the file that contains the shader-resource view. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the data type resolves to LPCSTR.</p> </dd></param>
  14676. <param name="loadInfoRef"><dd> <p>Optional. Identifies the characteristics of a texture (see <strong><see cref="T:SharpDX.Direct3D10.ImageLoadInformation" /></strong>) when the data processor is created; set this to <strong><c>null</c></strong> to read the characteristics of a texture when the texture is loaded.</p> </dd></param>
  14677. <param name="pumpRef"><dd> <p>Pointer to a thread-pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). If <strong><c>null</c></strong> is specified, this function will behave synchronously and will not return until it is finished.</p> </dd></param>
  14678. <param name="shaderResourceViewOut"><dd> <p>Address of a reference to the shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>).</p> </dd></param>
  14679. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14680. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14681. <remarks>
  14682. <p>For a list of supported image formats, see <strong><see cref="T:SharpDX.Direct3D10.ImageFileFormat" /></strong>.</p>
  14683. </remarks>
  14684. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateShaderResourceViewFromFileW']/*" />
  14685. <msdn-id>bb172667</msdn-id>
  14686. <unmanaged>HRESULT D3DX10CreateShaderResourceViewFromFileW([In] ID3D10Device* pDevice,[In] const wchar_t* pSrcFile,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[In] ID3DX10ThreadPump* pPump,[In] ID3D10ShaderResourceView** ppShaderResourceView,[Out] HRESULT* pHResult)</unmanaged>
  14687. <unmanaged-short>D3DX10CreateShaderResourceViewFromFileW</unmanaged-short>
  14688. </member>
  14689. <member name="M:SharpDX.Direct3D10.D3DX10.SaveTextureToFile(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.ImageFileFormat,System.String)">
  14690. <summary>
  14691. <p>Save a texture to a file.</p>
  14692. </summary>
  14693. <param name="srcTextureRef"><dd> <p>Pointer to the texture to be saved. See <strong><see cref="T:SharpDX.Direct3D10.Resource" /> Interface</strong>.</p> </dd></param>
  14694. <param name="destFormat"><dd> <p>The format the texture will be saved as (see <strong><see cref="T:SharpDX.Direct3D10.ImageFileFormat" /></strong>). <see cref="F:SharpDX.Direct3D10.ImageFileFormat.Dds" /> is the preferred format since it is the only option that supports all the formats in <strong><see cref="T:SharpDX.DXGI.Format" /></strong>.</p> </dd></param>
  14695. <param name="destFileRef"><dd> <p>Name of the destination output file where the texture will be saved. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the data type resolves to LPCSTR.</p> </dd></param>
  14696. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes; use the return value to see if the <em>DestFormat</em> is supported.</p></returns>
  14697. <remarks>
  14698. <p><strong><see cref="M:SharpDX.Direct3D10.D3DX10.SaveTextureToFile(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.ImageFileFormat,System.String)" /></strong> writes out the extra <strong>DDS_HEADER_DXT10</strong> structure for the input texture only if necessary (for example, because the input texture is in standard RGB (sRGB) format). If <strong><see cref="M:SharpDX.Direct3D10.D3DX10.SaveTextureToFile(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.ImageFileFormat,System.String)" /></strong> writes out the <strong>DDS_HEADER_DXT10</strong> structure, it sets the <strong>dwFourCC</strong> member of the <strong>DDS_PIXELFORMAT</strong> structure for the texture to <strong>DX10</strong> to indicate the prescense of the <strong>DDS_HEADER_DXT10</strong> extended header.</p>
  14699. </remarks>
  14700. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10SaveTextureToFileW']/*" />
  14701. <msdn-id>bb172684</msdn-id>
  14702. <unmanaged>HRESULT D3DX10SaveTextureToFileW([In] ID3D10Resource* pSrcTexture,[In] D3DX10_IMAGE_FILE_FORMAT DestFormat,[In] const wchar_t* pDestFile)</unmanaged>
  14703. <unmanaged-short>D3DX10SaveTextureToFileW</unmanaged-short>
  14704. </member>
  14705. <member name="M:SharpDX.Direct3D10.D3DX10.GetImageInfoFromMemory(System.IntPtr,SharpDX.PointerSize,System.IntPtr,SharpDX.Direct3D10.ImageInformation@,SharpDX.Result@)">
  14706. <summary>
  14707. <p>Get information about an image already loaded into memory.</p>
  14708. </summary>
  14709. <param name="srcDataRef"><dd> <p>Pointer to the image in memory.</p> </dd></param>
  14710. <param name="srcDataSize"><dd> <p>Size of the image in memory, in bytes.</p> </dd></param>
  14711. <param name="pumpRef"><dd> <p>Optional thread pump that can be used to load the info asynchronously. Can be <strong><c>null</c></strong>. See <strong><see cref="T:System.IntPtr" /></strong>.</p> </dd></param>
  14712. <param name="srcInfoRef"><dd> <p>Information about the image in memory.</p> </dd></param>
  14713. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14714. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14715. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10GetImageInfoFromMemory']/*" />
  14716. <msdn-id>bb172678</msdn-id>
  14717. <unmanaged>HRESULT D3DX10GetImageInfoFromMemory([In] const void* pSrcData,[In] SIZE_T SrcDataSize,[In] ID3DX10ThreadPump* pPump,[In] D3DX10_IMAGE_INFO* pSrcInfo,[Out] HRESULT* pHResult)</unmanaged>
  14718. <unmanaged-short>D3DX10GetImageInfoFromMemory</unmanaged-short>
  14719. </member>
  14720. <member name="M:SharpDX.Direct3D10.D3DX10.GetImageInfoFromResource(System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D10.ImageInformation@,SharpDX.Result@)">
  14721. <summary>
  14722. <p>Retrieves information about a given image in a resource.</p>
  14723. </summary>
  14724. <param name="hSrcModule"><dd> <p>Module where the resource is loaded. Set this parameter to <strong><c>null</c></strong> to specify the module associated with the image that the operating system used to create the current process.</p> </dd></param>
  14725. <param name="srcResourceRef"><dd> <p>Pointer to a string that specifies the filename. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  14726. <param name="pumpRef"><dd> <p>Optional thread pump that can be used to load the info asynchronously. Can be <strong><c>null</c></strong>. See <strong><see cref="T:System.IntPtr" /></strong>.</p> </dd></param>
  14727. <param name="srcInfoRef"><dd> <p>Pointer to a <see cref="T:SharpDX.Direct3D10.ImageInformation" /> structure to be filled with the description of the data in the source file.</p> </dd></param>
  14728. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14729. <returns><p>If the function succeeds, the return value is D3D_OK. If the function fails, the return value can be the following: D3DERR_INVALIDCALL</p></returns>
  14730. <remarks>
  14731. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D10.D3DX10.GetImageInfoFromResource(System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D10.ImageInformation@,SharpDX.Result@)" />. Otherwise, the function call resolves to D3DX10GetImageInfoFromResourceA because ANSI strings are being used.</p>
  14732. </remarks>
  14733. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10GetImageInfoFromResourceW']/*" />
  14734. <msdn-id>bb172679</msdn-id>
  14735. <unmanaged>HRESULT D3DX10GetImageInfoFromResourceW([In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In] ID3DX10ThreadPump* pPump,[In] D3DX10_IMAGE_INFO* pSrcInfo,[Out] HRESULT* pHResult)</unmanaged>
  14736. <unmanaged-short>D3DX10GetImageInfoFromResourceW</unmanaged-short>
  14737. </member>
  14738. <member name="M:SharpDX.Direct3D10.D3DX10.CreateTextureFromFile(SharpDX.Direct3D10.Device,System.String,System.Nullable{SharpDX.Direct3D10.ImageLoadInformation},System.IntPtr,System.IntPtr@,SharpDX.Result@)">
  14739. <summary>
  14740. <p>Create a texture resource from a file.</p>
  14741. </summary>
  14742. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resource.</p> </dd></param>
  14743. <param name="srcFileRef"><dd> <p>The name of the file containing the resource. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the data type resolves to LPCSTR. See <strong><see cref="T:SharpDX.Direct3D10.ImageFileFormat" /></strong> enumeration for a list of the supported image file formats.</p> </dd></param>
  14744. <param name="loadInfoRef"><dd> <p>Optional. Identifies the characteristics of a texture (see <strong><see cref="T:SharpDX.Direct3D10.ImageLoadInformation" /></strong>) when the data processor is created; set this to <strong><c>null</c></strong> to read the characteristics of a texture when the texture is loaded.</p> </dd></param>
  14745. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). If <strong><c>null</c></strong> is specified, this function will behave synchronously and will not return until it is finished.</p> </dd></param>
  14746. <param name="textureOut"><dd> <p>The address of a reference to the texture resource (see <strong><see cref="T:SharpDX.Direct3D10.Resource" /> Interface</strong>).</p> </dd></param>
  14747. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14748. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14749. <remarks>
  14750. <p>For a list of supported image formats see <strong><see cref="T:SharpDX.Direct3D10.ImageFileFormat" /></strong>.</p>
  14751. </remarks>
  14752. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateTextureFromFileW']/*" />
  14753. <msdn-id>bb172671</msdn-id>
  14754. <unmanaged>HRESULT D3DX10CreateTextureFromFileW([In] ID3D10Device* pDevice,[In] const wchar_t* pSrcFile,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[In] ID3DX10ThreadPump* pPump,[Out] void** ppTexture,[Out] HRESULT* pHResult)</unmanaged>
  14755. <unmanaged-short>D3DX10CreateTextureFromFileW</unmanaged-short>
  14756. </member>
  14757. <member name="M:SharpDX.Direct3D10.D3DX10.SaveTextureToMemory(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.ImageFileFormat,SharpDX.Direct3D.Blob@,System.Int32)">
  14758. <summary>
  14759. <p>Save a texture to memory.</p>
  14760. </summary>
  14761. <param name="srcTextureRef"><dd> <p>Pointer to the texture to be saved. See <strong><see cref="T:SharpDX.Direct3D10.Resource" /> Interface</strong>.</p> </dd></param>
  14762. <param name="destFormat"><dd> <p>The format the texture will be saved as. See <strong><see cref="T:SharpDX.Direct3D10.ImageFileFormat" /></strong>.</p> </dd></param>
  14763. <param name="destBufOut"><dd> <p>Address of a reference to the memory containing the saved texture. See <strong><see cref="T:SharpDX.Direct3D.Blob" /> Interface</strong>.</p> </dd></param>
  14764. <param name="flags"><dd> <p>Optional.</p> </dd></param>
  14765. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14766. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10SaveTextureToMemory']/*" />
  14767. <msdn-id>bb172685</msdn-id>
  14768. <unmanaged>HRESULT D3DX10SaveTextureToMemory([In] ID3D10Resource* pSrcTexture,[In] D3DX10_IMAGE_FILE_FORMAT DestFormat,[Out] ID3D10Blob** ppDestBuf,[In] unsigned int Flags)</unmanaged>
  14769. <unmanaged-short>D3DX10SaveTextureToMemory</unmanaged-short>
  14770. </member>
  14771. <member name="M:SharpDX.Direct3D10.D3DX10.CreateShaderResourceViewFromResource(SharpDX.Direct3D10.Device,System.IntPtr,System.String,System.Nullable{SharpDX.Direct3D10.ImageLoadInformation},System.IntPtr,SharpDX.Direct3D10.ShaderResourceView@,SharpDX.Result@)">
  14772. <summary>
  14773. <p>Create a shader-resource view from a resource.</p>
  14774. </summary>
  14775. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resource.</p> </dd></param>
  14776. <param name="hSrcModule"><dd> <p>Handle to the resource module containing the shader-resource view. HMODULE can be obtained with GetModuleHandle Function.</p> </dd></param>
  14777. <param name="srcResourceRef"><dd> <p>Name of the shader resource view in hSrcModule. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the data type resolves to LPCSTR.</p> </dd></param>
  14778. <param name="loadInfoRef"><dd> <p>Optional. Identifies the characteristics of a texture (see <strong><see cref="T:SharpDX.Direct3D10.ImageLoadInformation" /></strong>) when the data processor is created; set this to <strong><c>null</c></strong> to read the characteristics of a texture when the texture is loaded.</p> </dd></param>
  14779. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). If <strong><c>null</c></strong> is specified, this function will behave synchronously and will not return until it is finished.</p> </dd></param>
  14780. <param name="shaderResourceViewOut"><dd> <p>Address of a reference to the shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>).</p> </dd></param>
  14781. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14782. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14783. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateShaderResourceViewFromResourceW']/*" />
  14784. <msdn-id>bb172669</msdn-id>
  14785. <unmanaged>HRESULT D3DX10CreateShaderResourceViewFromResourceW([In] ID3D10Device* pDevice,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[In] ID3DX10ThreadPump* pPump,[In] ID3D10ShaderResourceView** ppShaderResourceView,[Out] HRESULT* pHResult)</unmanaged>
  14786. <unmanaged-short>D3DX10CreateShaderResourceViewFromResourceW</unmanaged-short>
  14787. </member>
  14788. <member name="M:SharpDX.Direct3D10.D3DX10.SHProjectCubeMap(System.Int32,SharpDX.Direct3D10.Texture2D,System.Single[],System.Single[],System.Single[])">
  14789. <summary>
  14790. <p>Projects a function represented in a cube map into spherical harmonics.</p>
  14791. </summary>
  14792. <param name="order"><dd> <p>Order of the SH evaluation, generates Order^2 coefs, degree is Order-1.</p> </dd></param>
  14793. <param name="cubeMapRef"><dd> <p>Cubemap that is going to be projected into spherical harmonics. See <strong><see cref="T:SharpDX.Direct3D10.Texture2D" /></strong>.</p> </dd></param>
  14794. <param name="rOutRef"><dd> <p>Output SH vector for red.</p> </dd></param>
  14795. <param name="gOutRef"><dd> <p>Output SH vector for green.</p> </dd></param>
  14796. <param name="bOutRef"><dd> <p>Output SH vector for blue.</p> </dd></param>
  14797. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14798. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10SHProjectCubeMap']/*" />
  14799. <msdn-id>bb172686</msdn-id>
  14800. <unmanaged>HRESULT D3DX10SHProjectCubeMap([In] unsigned int Order,[In] ID3D10Texture2D* pCubeMap,[Out, Buffer] float* pROut,[Out, Buffer, Optional] float* pGOut,[Out, Buffer, Optional] float* pBOut)</unmanaged>
  14801. <unmanaged-short>D3DX10SHProjectCubeMap</unmanaged-short>
  14802. </member>
  14803. <member name="M:SharpDX.Direct3D10.D3DX10.LoadTextureFromTexture(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.TextureLoadInformation,SharpDX.Direct3D10.Resource)">
  14804. <summary>
  14805. <p>Load a texture from a texture.</p>
  14806. </summary>
  14807. <param name="srcTextureRef"><dd> <p>Pointer to the source texture. See <strong><see cref="T:SharpDX.Direct3D10.Resource" /></strong>.</p> </dd></param>
  14808. <param name="loadInfoRef"><dd> <p>Pointer to texture loading parameters. See <strong><see cref="T:SharpDX.Direct3D10.TextureLoadInformation" /></strong>.</p> </dd></param>
  14809. <param name="dstTextureRef"><dd> <p>Pointer to the destination texture. See <strong><see cref="T:SharpDX.Direct3D10.Resource" /> Interface</strong>.</p> </dd></param>
  14810. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14811. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10LoadTextureFromTexture']/*" />
  14812. <msdn-id>bb172680</msdn-id>
  14813. <unmanaged>HRESULT D3DX10LoadTextureFromTexture([In] ID3D10Resource* pSrcTexture,[In] D3DX10_TEXTURE_LOAD_INFO* pLoadInfo,[In] ID3D10Resource* pDstTexture)</unmanaged>
  14814. <unmanaged-short>D3DX10LoadTextureFromTexture</unmanaged-short>
  14815. </member>
  14816. <member name="M:SharpDX.Direct3D10.D3DX10.GetImageInfoFromFile(System.String,System.IntPtr,SharpDX.Direct3D10.ImageInformation@,SharpDX.Result@)">
  14817. <summary>
  14818. <p>Retrieves information about a given image file.</p>
  14819. </summary>
  14820. <param name="srcFileRef"><dd> <p>File name of image to retrieve information about. If UNICODE or _UNICODE are defined, this parameter type is LPCWSTR, otherwise, the type is LPCSTR.</p> </dd></param>
  14821. <param name="pumpRef"><dd> <p>Optional thread pump that can be used to load the info asynchronously. Can be <strong><c>null</c></strong>. See <strong><see cref="T:System.IntPtr" /></strong>.</p> </dd></param>
  14822. <param name="srcInfoRef"><dd> <p>Pointer to a <see cref="T:SharpDX.Direct3D10.ImageInformation" /> structure to be filled with the description of the data in the source file.</p> </dd></param>
  14823. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14824. <returns><p>If the function succeeds, the return value is D3D_OK. If the function fails, the return value can be the following: D3DERR_INVALIDCALL</p></returns>
  14825. <remarks>
  14826. <p>This function supports both Unicode and ANSI strings.</p>
  14827. </remarks>
  14828. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10GetImageInfoFromFileW']/*" />
  14829. <msdn-id>bb172677</msdn-id>
  14830. <unmanaged>HRESULT D3DX10GetImageInfoFromFileW([In] const wchar_t* pSrcFile,[In] ID3DX10ThreadPump* pPump,[In] D3DX10_IMAGE_INFO* pSrcInfo,[Out] HRESULT* pHResult)</unmanaged>
  14831. <unmanaged-short>D3DX10GetImageInfoFromFileW</unmanaged-short>
  14832. </member>
  14833. <member name="M:SharpDX.Direct3D10.D3DX10.CreateShaderResourceViewFromMemory(SharpDX.Direct3D10.Device,System.IntPtr,SharpDX.PointerSize,System.Nullable{SharpDX.Direct3D10.ImageLoadInformation},System.IntPtr,SharpDX.Direct3D10.ShaderResourceView@,SharpDX.Result@)">
  14834. <summary>
  14835. <p>Create a shader-resource view from a file in memory.</p>
  14836. </summary>
  14837. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resource.</p> </dd></param>
  14838. <param name="srcDataRef"><dd> <p>Pointer to the file in memory that contains the shader-resource view.</p> </dd></param>
  14839. <param name="srcDataSize"><dd> <p>Size of the file in memory.</p> </dd></param>
  14840. <param name="loadInfoRef"><dd> <p>Optional. Identifies the characteristics of a texture (see <strong><see cref="T:SharpDX.Direct3D10.ImageLoadInformation" /></strong>) when the data processor is created; set this to <strong><c>null</c></strong> to read the characteristics of a texture when the texture is loaded.</p> </dd></param>
  14841. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). If <strong><c>null</c></strong> is specified, this function will behave synchronously and will not return until it is finished.</p> </dd></param>
  14842. <param name="shaderResourceViewOut"><dd> <p>Address of a reference to the newly created shader resource view. See <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>.</p> </dd></param>
  14843. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14844. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14845. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateShaderResourceViewFromMemory']/*" />
  14846. <msdn-id>bb172668</msdn-id>
  14847. <unmanaged>HRESULT D3DX10CreateShaderResourceViewFromMemory([In] ID3D10Device* pDevice,[In] const void* pSrcData,[In] SIZE_T SrcDataSize,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[In] ID3DX10ThreadPump* pPump,[In] ID3D10ShaderResourceView** ppShaderResourceView,[Out] HRESULT* pHResult)</unmanaged>
  14848. <unmanaged-short>D3DX10CreateShaderResourceViewFromMemory</unmanaged-short>
  14849. </member>
  14850. <member name="M:SharpDX.Direct3D10.D3DX10.ComputeNormalMap(SharpDX.Direct3D10.Texture2D,SharpDX.Direct3D10.NormalMapFlags,SharpDX.Direct3D10.Channel,System.Single,SharpDX.Direct3D10.Texture2D)">
  14851. <summary>
  14852. <p>Converts a height map into a normal map. The (x,y,z) components of each normal are mapped to the (r,g,b) channels of the output texture.</p>
  14853. </summary>
  14854. <param name="srcTextureRef"><dd> <p>Pointer to an <see cref="T:SharpDX.Direct3D10.Texture2D" /> interface, representing the source height-map texture.</p> </dd></param>
  14855. <param name="flags"><dd> <p>One or more D3DX_NORMALMAP flags that control generation of normal maps.</p> </dd></param>
  14856. <param name="channel"><dd> <p>One D3DX_CHANNEL flag specifying the source of height information.</p> </dd></param>
  14857. <param name="amplitude"><dd> <p>Constant value multiplier that increases (or decreases) the values in the normal map. Higher values usually make bumps more visible, lower values usually make bumps less visible.</p> </dd></param>
  14858. <param name="destTextureRef"><dd> <p>Pointer to an <see cref="T:SharpDX.Direct3D10.Texture2D" /> interface, representing the destination texture.</p> </dd></param>
  14859. <returns><p>If the function succeeds, the return value is D3D_OK. If the function fails, the return value can be the following value: D3DERR_INVALIDCALL.</p></returns>
  14860. <remarks>
  14861. <p>This method computes the normal by using the central difference with a kernel size of 3x3. RGB channels in the destination contain biased (x,y,z) components of the normal. The central differencing denominator is hardcoded to 2.0.</p>
  14862. </remarks>
  14863. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10ComputeNormalMap']/*" />
  14864. <msdn-id>bb172646</msdn-id>
  14865. <unmanaged>HRESULT D3DX10ComputeNormalMap([In] ID3D10Texture2D* pSrcTexture,[In] D3DX10_NORMALMAP_FLAG Flags,[In] D3DX10_CHANNEL_FLAG Channel,[In] float Amplitude,[In] ID3D10Texture2D* pDestTexture)</unmanaged>
  14866. <unmanaged-short>D3DX10ComputeNormalMap</unmanaged-short>
  14867. </member>
  14868. <member name="M:SharpDX.Direct3D10.D3DX10.FilterTexture(SharpDX.Direct3D10.Resource,System.Int32,System.Int32)">
  14869. <summary>
  14870. <p>Generates mipmap chain using a particular texture filter.</p>
  14871. </summary>
  14872. <param name="textureRef"><dd> <p>The texture object to be filtered. See <strong><see cref="T:SharpDX.Direct3D10.Resource" /></strong>.</p> </dd></param>
  14873. <param name="srcLevel"><dd> <p>The mipmap level whose data is used to generate the rest of the mipmap chain.</p> </dd></param>
  14874. <param name="mipFilter"><dd> <p>Flags controlling how each miplevel is filtered (or D3DX10_DEFAULT for <see cref="F:SharpDX.Direct3D10.FilterFlags.Box" />). See <strong><see cref="T:SharpDX.Direct3D10.FilterFlags" /></strong>.</p> </dd></param>
  14875. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14876. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10FilterTexture']/*" />
  14877. <msdn-id>bb172675</msdn-id>
  14878. <unmanaged>HRESULT D3DX10FilterTexture([In] ID3D10Resource* pTexture,[In] unsigned int SrcLevel,[In] unsigned int MipFilter)</unmanaged>
  14879. <unmanaged-short>D3DX10FilterTexture</unmanaged-short>
  14880. </member>
  14881. <member name="M:SharpDX.Direct3D10.D3DX10.CreateTextureFromResource(SharpDX.Direct3D10.Device,System.IntPtr,System.String,System.Nullable{SharpDX.Direct3D10.ImageLoadInformation},System.IntPtr,System.IntPtr@,SharpDX.Result@)">
  14882. <summary>
  14883. <p>Create a texture from another resource.</p>
  14884. </summary>
  14885. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resource.</p> </dd></param>
  14886. <param name="hSrcModule"><dd> <p>A handle to the source resource. HMODULE can be obtained with GetModuleHandle Function.</p> </dd></param>
  14887. <param name="srcResourceRef"><dd> <p>A string that contains the name of the source resource. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the data type resolves to LPCSTR. </p> </dd></param>
  14888. <param name="loadInfoRef"><dd> <p>Optional. Identifies the characteristics of a texture (see <strong><see cref="T:SharpDX.Direct3D10.ImageLoadInformation" /></strong>) when the data processor is created; set this to <strong><c>null</c></strong> to read the characteristics of a texture when the texture is loaded.</p> </dd></param>
  14889. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). If <strong><c>null</c></strong> is specified, this function will behave synchronously and will not return until it is finished.</p> </dd></param>
  14890. <param name="textureOut"><dd> <p>The address of a reference to the texture resource (see <strong><see cref="T:SharpDX.Direct3D10.Resource" /> Interface</strong>).</p> </dd></param>
  14891. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14892. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14893. <remarks>
  14894. <p>For a list of supported image formats see <strong><see cref="T:SharpDX.Direct3D10.ImageFileFormat" /></strong>.</p>
  14895. </remarks>
  14896. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateTextureFromResourceW']/*" />
  14897. <msdn-id>bb172673</msdn-id>
  14898. <unmanaged>HRESULT D3DX10CreateTextureFromResourceW([In] ID3D10Device* pDevice,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[In] ID3DX10ThreadPump* pPump,[Out] void** ppTexture,[Out] HRESULT* pHResult)</unmanaged>
  14899. <unmanaged-short>D3DX10CreateTextureFromResourceW</unmanaged-short>
  14900. </member>
  14901. <member name="M:SharpDX.Direct3D10.D3DX10.CreateTextureFromMemory(SharpDX.Direct3D10.Device,System.IntPtr,SharpDX.PointerSize,System.Nullable{SharpDX.Direct3D10.ImageLoadInformation},System.IntPtr,System.IntPtr@,SharpDX.Result@)">
  14902. <summary>
  14903. <p>Create a texture resource from a file residing in system memory.</p>
  14904. </summary>
  14905. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resource.</p> </dd></param>
  14906. <param name="srcDataRef"><dd> <p>Pointer to the resource in system memory.</p> </dd></param>
  14907. <param name="srcDataSize"><dd> <p>Size of the resource in system memory.</p> </dd></param>
  14908. <param name="loadInfoRef"><dd> <p>Optional. Identifies the characteristics of a texture (see <strong><see cref="T:SharpDX.Direct3D10.ImageLoadInformation" /></strong>) when the data processor is created; set this to <strong><c>null</c></strong> to read the characteristics of a texture when the texture is loaded.</p> </dd></param>
  14909. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). If <strong><c>null</c></strong> is specified, this function will behave synchronously and will not return until it is finished.</p> </dd></param>
  14910. <param name="textureOut"><dd> <p>Address of a reference to the created resource. See <strong><see cref="T:SharpDX.Direct3D10.Resource" /> Interface</strong>.</p> </dd></param>
  14911. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14912. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14913. <remarks>
  14914. <p>For a list of supported image formats see <strong><see cref="T:SharpDX.Direct3D10.ImageFileFormat" /></strong>.</p>
  14915. </remarks>
  14916. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateTextureFromMemory']/*" />
  14917. <msdn-id>bb172672</msdn-id>
  14918. <unmanaged>HRESULT D3DX10CreateTextureFromMemory([In] ID3D10Device* pDevice,[In] const void* pSrcData,[In] SIZE_T SrcDataSize,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[In] ID3DX10ThreadPump* pPump,[Out] void** ppTexture,[Out] HRESULT* pHResult)</unmanaged>
  14919. <unmanaged-short>D3DX10CreateTextureFromMemory</unmanaged-short>
  14920. </member>
  14921. <member name="M:SharpDX.Direct3D10.D3DX10.CreateMesh(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.InputElement[],System.Int32,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D10.Mesh)">
  14922. <summary>
  14923. <p>Creates a mesh object using a declarator.</p>
  14924. </summary>
  14925. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>, the device object to be associated with the mesh.</p> </dd></param>
  14926. <param name="declarationRef"><dd> <p>Array of <strong><see cref="T:SharpDX.Direct3D10.InputElement" /></strong> elements, describing the vertex format for the returned mesh. This parameter must map directly to a flexible vertex format (FVF).</p> </dd></param>
  14927. <param name="declCount"><dd> <p>The number of elements in pDeclaration.</p> </dd></param>
  14928. <param name="positionSemanticRef"><dd> <p>Semantic that identifies which part of the vertex declaration contains position information.</p> </dd></param>
  14929. <param name="vertexCount"><dd> <p>Number of vertices for the mesh. This parameter must be greater than 0.</p> </dd></param>
  14930. <param name="faceCount"><dd> <p>Number of faces for the mesh. The valid range for this number is greater than 0, and one less than the maximum DWORD (typically 65534), because the last index is reserved.</p> </dd></param>
  14931. <param name="options"><dd> <p>Combination of one or more flags from the <strong>D3DX10_MESH</strong>, specifying options for the mesh. </p> </dd></param>
  14932. <param name="meshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D10.Mesh" /> Interface</strong>, representing the created mesh object.</p> </dd></param>
  14933. <returns><p>If the function succeeds, the return value is D3D_OK. If the function fails, the return value can be one of the following: D3DERR_INVALIDCALL, E_OUTOFMEMORY.</p></returns>
  14934. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateMesh']/*" />
  14935. <msdn-id>bb204914</msdn-id>
  14936. <unmanaged>HRESULT D3DX10CreateMesh([In] ID3D10Device* pDevice,[In, Buffer] const D3D10_INPUT_ELEMENT_DESC* pDeclaration,[In] unsigned int DeclCount,[In] const char* pPositionSemantic,[In] unsigned int VertexCount,[In] unsigned int FaceCount,[In] unsigned int Options,[Out, Fast] ID3DX10Mesh** ppMesh)</unmanaged>
  14937. <unmanaged-short>D3DX10CreateMesh</unmanaged-short>
  14938. </member>
  14939. <member name="M:SharpDX.Direct3D10.D3DX10.CreateSkinInfo(SharpDX.Direct3D10.SkinInfo@)">
  14940. <summary>
  14941. <p>Creates an empty skin mesh object using a declarator.</p>
  14942. </summary>
  14943. <param name="skinInfoOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D10.SkinInfo" /> Interface</strong>, representing the created skin mesh object.</p> </dd></param>
  14944. <returns><p>If the function succeeds, the return value is D3D_OK. If the function fails, the return value can be: E_OUTOFMEMORY.</p></returns>
  14945. <remarks>
  14946. <p>Use the <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.SetBoneInfluence(System.Int32,System.Int32,System.Single)" /></strong> to populate the empty skin mesh object returned by this method.</p>
  14947. </remarks>
  14948. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateSkinInfo']/*" />
  14949. <msdn-id>bb204915</msdn-id>
  14950. <unmanaged>HRESULT D3DX10CreateSkinInfo([In] ID3DX10SkinInfo** ppSkinInfo)</unmanaged>
  14951. <unmanaged-short>D3DX10CreateSkinInfo</unmanaged-short>
  14952. </member>
  14953. <member name="M:SharpDX.Direct3D10.D3DX10.CreateEffectPoolFromResource(System.IntPtr,System.String,System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,System.IntPtr,SharpDX.Direct3D10.EffectPool@,SharpDX.Direct3D.Blob@,SharpDX.Result@)">
  14954. <summary>
  14955. <p>Create an effect pool from a resource.</p>
  14956. </summary>
  14957. <param name="hModule"><dd> <p>A handle to the resource module containing the effect. HMODULE can be obtained with GetModuleHandle Function.</p> </dd></param>
  14958. <param name="resourceNameRef"><dd> <p>The name of the resource in hModule. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the data type resolves to LPCSTR.</p> </dd></param>
  14959. <param name="srcFileNameRef"><dd> <p>Optional. Effect file name, which is used for error messages only. Can be <strong><c>null</c></strong>.</p> </dd></param>
  14960. <param name="definesRef"><dd> <p>A <c>null</c>-terminated array of shader macros (see <strong>D3D10_SHADER_MACRO</strong>); set this to <strong><c>null</c></strong> to specify no macros.</p> </dd></param>
  14961. <param name="includeRef"><dd> <p>A reference to an include interface (see <strong>ID3D10Include Interface</strong>). This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  14962. <param name="profileRef"><dd> <p>A string that specifies the shader profile, or shader model.</p> </dd></param>
  14963. <param name="hLSLFlags"><dd> <p>HLSL compile options (see D3D10_SHADER Constants).</p> </dd></param>
  14964. <param name="fXFlags"><dd> <p>Effect compile options (see Compile and Effect Flags).</p> </dd></param>
  14965. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resources.</p> </dd></param>
  14966. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). Use <strong><c>null</c></strong> to specify that this function should not return until it is completed.</p> </dd></param>
  14967. <param name="effectPoolOut"><dd> <p>The address of a reference to the effect pool (see <strong><see cref="T:SharpDX.Direct3D10.EffectPool" /> Interface</strong>).</p> </dd></param>
  14968. <param name="errorsOut"><dd> <p>The address of a reference to memory (see <strong><see cref="T:SharpDX.Direct3D.Blob" /> Interface</strong>) that contains effect compile errors, if there were any.</p> </dd></param>
  14969. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14970. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14971. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateEffectPoolFromResourceW']/*" />
  14972. <msdn-id>bb172663</msdn-id>
  14973. <unmanaged>HRESULT D3DX10CreateEffectPoolFromResourceW([In] HINSTANCE hModule,[In] const wchar_t* pResourceName,[In] const wchar_t* pSrcFileName,[In, Buffer, Optional] const D3D_SHADER_MACRO* pDefines,[In] ID3DInclude* pInclude,[In] const char* pProfile,[In] unsigned int HLSLFlags,[In] unsigned int FXFlags,[In] ID3D10Device* pDevice,[In] ID3DX10ThreadPump* pPump,[In] ID3D10EffectPool** ppEffectPool,[In] ID3D10Blob** ppErrors,[Out] HRESULT* pHResult)</unmanaged>
  14974. <unmanaged-short>D3DX10CreateEffectPoolFromResourceW</unmanaged-short>
  14975. </member>
  14976. <member name="M:SharpDX.Direct3D10.D3DX10.CreateEffectPoolFromFile(System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,System.IntPtr,SharpDX.Direct3D10.EffectPool@,SharpDX.Direct3D.Blob@,SharpDX.Result@)">
  14977. <summary>
  14978. <p>Create an effect pool from an effect file.</p>
  14979. </summary>
  14980. <param name="fileNameRef"><dd> <p>The effect filename. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the data type resolves to LPCSTR.</p> </dd></param>
  14981. <param name="definesRef"><dd> <p>A <c>null</c>-terminated array of shader macros (see <strong>D3D10_SHADER_MACRO</strong>); set this to <strong><c>null</c></strong> to specify no macros.</p> </dd></param>
  14982. <param name="includeRef"><dd> <p>A reference to an include interface (see <strong>ID3D10Include Interface</strong>). This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  14983. <param name="profileRef"><dd> <p>A string that specifies the shader profile, or shader model.</p> </dd></param>
  14984. <param name="hLSLFlags"><dd> <p>HLSL compile options (see D3D10_SHADER Constants).</p> </dd></param>
  14985. <param name="fXFlags"><dd> <p>Effect compile options (see Compile and Effect Flags).</p> </dd></param>
  14986. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resources.</p> </dd></param>
  14987. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). Use <strong><c>null</c></strong> to specify that this function should not return until it is completed.</p> </dd></param>
  14988. <param name="effectPoolOut"><dd> <p>The address of a reference to the effect pool (see <strong><see cref="T:SharpDX.Direct3D10.EffectPool" /> Interface</strong>).</p> </dd></param>
  14989. <param name="errorsOut"><dd> <p>The address of a reference to memory (see <strong><see cref="T:SharpDX.Direct3D.Blob" /> Interface</strong>) that contains effect compile errors, if there were any.</p> </dd></param>
  14990. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  14991. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  14992. <remarks>
  14993. <p>This example creates an effect pool from the effect used in the BasicHLSL10 Sample.</p><pre> // Create an effect pool from an effect in memory
  14994. <see cref="T:SharpDX.Direct3D10.EffectPool" /> * l_pEffectPool = <c>null</c>;
  14995. <see cref="T:SharpDX.Direct3D.Blob" />* l_pBlob_Errors = <c>null</c>;
  14996. WCHAR str[MAX_PATH];
  14997. hr = DXUTFindDXSDKMediaFileCch( str, MAX_PATH, L"BasicHLSL10.fx" );
  14998. hr = <see cref="M:SharpDX.Direct3D10.D3DX10.CreateEffectPoolFromFile(System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,System.IntPtr,SharpDX.Direct3D10.EffectPool@,SharpDX.Direct3D.Blob@,SharpDX.Result@)" />( str, <c>null</c>, <c>null</c>, D3D10_SHADER_ENABLE_STRICTNESS, 0, pd3dDevice, <c>null</c>, &amp;l_pEffectPool, &amp;l_pBlob_Errors );
  14999. </pre>
  15000. </remarks>
  15001. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateEffectPoolFromFileW']/*" />
  15002. <msdn-id>bb172661</msdn-id>
  15003. <unmanaged>HRESULT D3DX10CreateEffectPoolFromFileW([In] const wchar_t* pFileName,[In, Buffer, Optional] const D3D_SHADER_MACRO* pDefines,[In] ID3DInclude* pInclude,[In] const char* pProfile,[In] unsigned int HLSLFlags,[In] unsigned int FXFlags,[In] ID3D10Device* pDevice,[In] ID3DX10ThreadPump* pPump,[In] ID3D10EffectPool** ppEffectPool,[In] ID3D10Blob** ppErrors,[Out] HRESULT* pHResult)</unmanaged>
  15004. <unmanaged-short>D3DX10CreateEffectPoolFromFileW</unmanaged-short>
  15005. </member>
  15006. <member name="M:SharpDX.Direct3D10.D3DX10.CreateEffectFromFile(System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,SharpDX.Direct3D10.EffectPool,System.IntPtr,SharpDX.Direct3D10.Effect@,SharpDX.Direct3D.Blob@,SharpDX.Result@)">
  15007. <summary>
  15008. <p>Create an effect from a file.</p>
  15009. </summary>
  15010. <param name="fileNameRef"><dd> <p>Name of the ASCII effect file. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the data type resolves to LPCSTR.</p> </dd></param>
  15011. <param name="definesRef"><dd> <p>A <c>null</c>-terminated array of shader macros (see <strong>D3D10_SHADER_MACRO</strong>); set this to <strong><c>null</c></strong> to specify no macros.</p> </dd></param>
  15012. <param name="includeRef"><dd> <p>A reference to an include interface (see <strong>ID3D10Include Interface</strong>). This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  15013. <param name="profileRef"><dd> <p>A string that specifies the shader profile, or shader model.</p> </dd></param>
  15014. <param name="hLSLFlags"><dd> <p>HLSL compile options (see D3D10_SHADER Constants).</p> </dd></param>
  15015. <param name="fXFlags"><dd> <p>Effect compile options (see Compile and Effect Flags).</p> </dd></param>
  15016. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resources.</p> </dd></param>
  15017. <param name="effectPoolRef"><dd> <p>Pointer to an effect pool (see <strong><see cref="T:SharpDX.Direct3D10.EffectPool" /> Interface</strong>) for sharing variables between effects.</p> </dd></param>
  15018. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). Use <strong><c>null</c></strong> to specify that this function should not return until it is completed.</p> </dd></param>
  15019. <param name="effectOut"><dd> <p>Address of a reference to the effect (see <strong><see cref="T:SharpDX.Direct3D10.Effect" /> Interface</strong>) that is created.</p> </dd></param>
  15020. <param name="errorsOut"><dd> <p>The address of a reference to memory (see <strong><see cref="T:SharpDX.Direct3D.Blob" /> Interface</strong>) that contains effect compile errors, if there were any.</p> </dd></param>
  15021. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  15022. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  15023. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateEffectFromFileW']/*" />
  15024. <msdn-id>bb172658</msdn-id>
  15025. <unmanaged>HRESULT D3DX10CreateEffectFromFileW([In] const wchar_t* pFileName,[In, Buffer, Optional] const D3D_SHADER_MACRO* pDefines,[In] ID3DInclude* pInclude,[In] const char* pProfile,[In] unsigned int HLSLFlags,[In] unsigned int FXFlags,[In] ID3D10Device* pDevice,[In] ID3D10EffectPool* pEffectPool,[In] ID3DX10ThreadPump* pPump,[In] ID3D10Effect** ppEffect,[In] ID3D10Blob** ppErrors,[Out] HRESULT* pHResult)</unmanaged>
  15026. <unmanaged-short>D3DX10CreateEffectFromFileW</unmanaged-short>
  15027. </member>
  15028. <member name="M:SharpDX.Direct3D10.D3DX10.CreateEffectFromMemory(System.IntPtr,SharpDX.PointerSize,System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,SharpDX.Direct3D10.EffectPool,System.IntPtr,SharpDX.Direct3D10.Effect@,SharpDX.Direct3D.Blob@,SharpDX.Result@)">
  15029. <summary>
  15030. <p>Create an effect from memory.</p>
  15031. </summary>
  15032. <param name="dataRef"><dd> <p>Pointer to the effect in memory.</p> </dd></param>
  15033. <param name="dataLength"><dd> <p>Size of the effect in memory.</p> </dd></param>
  15034. <param name="srcFileNameRef"><dd> <p>Name of the effect file in memory.</p> </dd></param>
  15035. <param name="definesRef"><dd> <p>A <c>null</c>-terminated array of shader macros (see <strong>D3D10_SHADER_MACRO</strong>); set this to <strong><c>null</c></strong> to specify no macros.</p> </dd></param>
  15036. <param name="includeRef"><dd> <p>A reference to an include interface (see <strong>ID3D10Include Interface</strong>). This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  15037. <param name="profileRef"><dd> <p>A string that specifies the shader profile, or shader model.</p> </dd></param>
  15038. <param name="hLSLFlags"><dd> <p>HLSL compile options (see D3D10_SHADER Constants).</p> </dd></param>
  15039. <param name="fXFlags"><dd> <p>Effect compile options (see D3D10_EFFECT Constants).</p> </dd></param>
  15040. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resources.</p> </dd></param>
  15041. <param name="effectPoolRef"><dd> <p>Pointer to an effect pool (see <strong><see cref="T:SharpDX.Direct3D10.EffectPool" /> Interface</strong>) for sharing variables between effects.</p> </dd></param>
  15042. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). Use <strong><c>null</c></strong> to specify that this function should not return until it is completed.</p> </dd></param>
  15043. <param name="effectOut"><dd> <p>Address of a reference to the effect (see <strong><see cref="T:SharpDX.Direct3D10.Effect" /> Interface</strong>) that is created.</p> </dd></param>
  15044. <param name="errorsOut"><dd> <p>The address of a reference to memory (see <strong><see cref="T:SharpDX.Direct3D.Blob" /> Interface</strong>) that contains effect compile errors, if there were any.</p> </dd></param>
  15045. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  15046. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  15047. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateEffectFromMemory']/*" />
  15048. <msdn-id>bb172659</msdn-id>
  15049. <unmanaged>HRESULT D3DX10CreateEffectFromMemory([In] const void* pData,[In] SIZE_T DataLength,[In] const char* pSrcFileName,[In, Buffer, Optional] const D3D_SHADER_MACRO* pDefines,[In] ID3DInclude* pInclude,[In] const char* pProfile,[In] unsigned int HLSLFlags,[In] unsigned int FXFlags,[In] ID3D10Device* pDevice,[In] ID3D10EffectPool* pEffectPool,[In] ID3DX10ThreadPump* pPump,[In] ID3D10Effect** ppEffect,[In] ID3D10Blob** ppErrors,[Out] HRESULT* pHResult)</unmanaged>
  15050. <unmanaged-short>D3DX10CreateEffectFromMemory</unmanaged-short>
  15051. </member>
  15052. <member name="M:SharpDX.Direct3D10.D3DX10.CreateEffectPoolFromMemory(System.IntPtr,SharpDX.PointerSize,System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,System.IntPtr,SharpDX.Direct3D10.EffectPool@,SharpDX.Direct3D.Blob@,SharpDX.Result@)">
  15053. <summary>
  15054. <p>Create an effect pool from an effect in memory.</p>
  15055. </summary>
  15056. <param name="dataRef"><dd> <p>A reference to the effect.</p> </dd></param>
  15057. <param name="dataLength"><dd> <p>The size of the effect.</p> </dd></param>
  15058. <param name="srcFileNameRef"><dd> <p>The name of the effect file.</p> </dd></param>
  15059. <param name="definesRef"><dd> <p>A <c>null</c>-terminated array of shader macros (see <strong>D3D10_SHADER_MACRO</strong>); set this to <strong><c>null</c></strong> to specify no macros.</p> </dd></param>
  15060. <param name="includeRef"><dd> <p>A reference to an include interface (see <strong>ID3D10Include Interface</strong>). This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  15061. <param name="profileRef"><dd> <p>A string that specifies the shader profile, or shader model.</p> </dd></param>
  15062. <param name="hLSLFlags"><dd> <p>HLSL compile options (see D3D10_SHADER Constants).</p> </dd></param>
  15063. <param name="fXFlags"><dd> <p>Effect compile options (see Compile and Effect Flags).</p> </dd></param>
  15064. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resources.</p> </dd></param>
  15065. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). Use <strong><c>null</c></strong> to specify that this function should not return until it is completed.</p> </dd></param>
  15066. <param name="effectPoolOut"><dd> <p>The address of a reference to the effect pool (see <strong><see cref="T:SharpDX.Direct3D10.EffectPool" /> Interface</strong>).</p> </dd></param>
  15067. <param name="errorsOut"><dd> <p>The address of a reference to memory (see <strong><see cref="T:SharpDX.Direct3D.Blob" /> Interface</strong>) that contains effect compile errors, if there were any.</p> </dd></param>
  15068. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  15069. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  15070. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateEffectPoolFromMemory']/*" />
  15071. <msdn-id>bb172662</msdn-id>
  15072. <unmanaged>HRESULT D3DX10CreateEffectPoolFromMemory([In] const void* pData,[In] SIZE_T DataLength,[In] const char* pSrcFileName,[In, Buffer, Optional] const D3D_SHADER_MACRO* pDefines,[In] ID3DInclude* pInclude,[In] const char* pProfile,[In] unsigned int HLSLFlags,[In] unsigned int FXFlags,[In] ID3D10Device* pDevice,[In] ID3DX10ThreadPump* pPump,[In] ID3D10EffectPool** ppEffectPool,[In] ID3D10Blob** ppErrors,[Out] HRESULT* pHResult)</unmanaged>
  15073. <unmanaged-short>D3DX10CreateEffectPoolFromMemory</unmanaged-short>
  15074. </member>
  15075. <member name="M:SharpDX.Direct3D10.D3DX10.CreateEffectFromResource(System.IntPtr,System.String,System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,System.String,System.Int32,System.Int32,SharpDX.Direct3D10.Device,SharpDX.Direct3D10.EffectPool,System.IntPtr,SharpDX.Direct3D10.Effect@,SharpDX.Direct3D.Blob@,SharpDX.Result@)">
  15076. <summary>
  15077. <p>Create an effect from a resource.</p>
  15078. </summary>
  15079. <param name="hModule"><dd> <p>A handle to the resource module containing the effect. HMODULE can be obtained with GetModuleHandle Function.</p> </dd></param>
  15080. <param name="resourceNameRef"><dd> <p>Name of the resource in hModule. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the data type resolves to LPCSTR.</p> </dd></param>
  15081. <param name="srcFileNameRef"><dd> <p>Optional. Effect file name, which is used for error messages only. Can be <strong><c>null</c></strong>.</p> </dd></param>
  15082. <param name="definesRef"><dd> <p>A <c>null</c>-terminated array of shader macros (see <strong>D3D10_SHADER_MACRO</strong>); set this to <strong><c>null</c></strong> to specify no macros.</p> </dd></param>
  15083. <param name="includeRef"><dd> <p>A reference to an include interface (see <strong>ID3D10Include Interface</strong>). This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  15084. <param name="profileRef"><dd> <p>A string that specifies the shader profile, or shader model.</p> </dd></param>
  15085. <param name="hLSLFlags"><dd> <p>HLSL compile options (see D3D10_SHADER Constants).</p> </dd></param>
  15086. <param name="fXFlags"><dd> <p>Effect compile options (see Compile and Effect Flags).</p> </dd></param>
  15087. <param name="deviceRef"><dd> <p>A reference to the device (see <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong>) that will use the resources.</p> </dd></param>
  15088. <param name="effectPoolRef"><dd> <p>Pointer to an effect pool (see <strong><see cref="T:SharpDX.Direct3D10.EffectPool" /> Interface</strong>) for sharing variables between effects.</p> </dd></param>
  15089. <param name="pumpRef"><dd> <p>A reference to a thread pump interface (see <strong><see cref="T:System.IntPtr" /> Interface</strong>). Use <strong><c>null</c></strong> to specify that this function should not return until it is completed.</p> </dd></param>
  15090. <param name="effectOut"><dd> <p>Address of a reference to the effect (see <strong><see cref="T:SharpDX.Direct3D10.Effect" /> Interface</strong>) that is created.</p> </dd></param>
  15091. <param name="errorsOut"><dd> <p>The address of a reference to memory (see <strong><see cref="T:SharpDX.Direct3D.Blob" /> Interface</strong>) that contains effect compile errors, if there were any.</p> </dd></param>
  15092. <param name="hResultRef"><dd> <p>A reference to the return value. May be <strong><c>null</c></strong>. If <em>pPump</em> is not <strong><c>null</c></strong>, then <em>pHResult</em> must be a valid memory location until the asynchronous execution completes.</p> </dd></param>
  15093. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  15094. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10CreateEffectFromResourceW']/*" />
  15095. <msdn-id>bb172660</msdn-id>
  15096. <unmanaged>HRESULT D3DX10CreateEffectFromResourceW([In] HINSTANCE hModule,[In] const wchar_t* pResourceName,[In] const wchar_t* pSrcFileName,[In, Buffer, Optional] const D3D_SHADER_MACRO* pDefines,[In] ID3DInclude* pInclude,[In] const char* pProfile,[In] unsigned int HLSLFlags,[In] unsigned int FXFlags,[In] ID3D10Device* pDevice,[In] ID3D10EffectPool* pEffectPool,[In] ID3DX10ThreadPump* pPump,[In] ID3D10Effect** ppEffect,[In] ID3D10Blob** ppErrors,[Out] HRESULT* pHResult)</unmanaged>
  15097. <unmanaged-short>D3DX10CreateEffectFromResourceW</unmanaged-short>
  15098. </member>
  15099. <member name="T:SharpDX.Direct3D10.EffectConstantBuffer">
  15100. <summary>
  15101. <p>A constant-buffer interface accesses constant buffers or texture buffers.</p>
  15102. </summary>
  15103. <remarks>
  15104. <p>Use constant buffers to store many effect constants; grouping constants into buffers based on their frequency of update. This allows you to minimize the number of state changes as well as make the fewest API calls to change state. Both of these factors lead to better performance.</p>
  15105. </remarks>
  15106. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectConstantBuffer']/*" />
  15107. <msdn-id>bb173634</msdn-id>
  15108. <unmanaged>ID3D10EffectConstantBuffer</unmanaged>
  15109. <unmanaged-short>ID3D10EffectConstantBuffer</unmanaged-short>
  15110. </member>
  15111. <member name="M:SharpDX.Direct3D10.EffectConstantBuffer.#ctor(System.IntPtr)">
  15112. <summary>
  15113. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectConstantBuffer"/> class.
  15114. </summary>
  15115. <param name="nativePtr">The native pointer.</param>
  15116. </member>
  15117. <member name="M:SharpDX.Direct3D10.EffectConstantBuffer.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectConstantBuffer">
  15118. <summary>
  15119. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectConstantBuffer"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  15120. </summary>
  15121. <param name="nativePointer">The native pointer.</param>
  15122. <returns>
  15123. The result of the conversion.
  15124. </returns>
  15125. </member>
  15126. <member name="M:SharpDX.Direct3D10.EffectConstantBuffer.SetConstantBuffer(SharpDX.Direct3D10.Buffer)">
  15127. <summary>
  15128. <p>Set a constant-buffer.</p>
  15129. </summary>
  15130. <param name="constantBufferRef"><dd> <p>A reference to a constant-buffer interface. See <strong><see cref="T:SharpDX.Direct3D10.Buffer" /> Interface</strong>.</p> </dd></param>
  15131. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  15132. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectConstantBuffer::SetConstantBuffer']/*" />
  15133. <msdn-id>bb173637</msdn-id>
  15134. <unmanaged>HRESULT ID3D10EffectConstantBuffer::SetConstantBuffer([In, Optional] ID3D10Buffer* pConstantBuffer)</unmanaged>
  15135. <unmanaged-short>ID3D10EffectConstantBuffer::SetConstantBuffer</unmanaged-short>
  15136. </member>
  15137. <member name="M:SharpDX.Direct3D10.EffectConstantBuffer.GetConstantBuffer">
  15138. <summary>
  15139. <p>Get a constant-buffer.</p>
  15140. </summary>
  15141. <returns><dd> <p>The address of a reference to a constant-buffer interface. See <strong><see cref="T:SharpDX.Direct3D10.Buffer" /> Interface</strong>.</p> </dd></returns>
  15142. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectConstantBuffer::GetConstantBuffer']/*" />
  15143. <msdn-id>bb173635</msdn-id>
  15144. <unmanaged>HRESULT ID3D10EffectConstantBuffer::GetConstantBuffer([Out] ID3D10Buffer** ppConstantBuffer)</unmanaged>
  15145. <unmanaged-short>ID3D10EffectConstantBuffer::GetConstantBuffer</unmanaged-short>
  15146. </member>
  15147. <member name="M:SharpDX.Direct3D10.EffectConstantBuffer.SetTextureBuffer(SharpDX.Direct3D10.ShaderResourceView)">
  15148. <summary>
  15149. <p>Set a texture-buffer.</p>
  15150. </summary>
  15151. <param name="textureBufferRef"><dd> <p>A reference to a shader-resource-view interface for accessing a texture buffer.</p> </dd></param>
  15152. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  15153. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectConstantBuffer::SetTextureBuffer']/*" />
  15154. <msdn-id>bb173638</msdn-id>
  15155. <unmanaged>HRESULT ID3D10EffectConstantBuffer::SetTextureBuffer([In, Optional] ID3D10ShaderResourceView* pTextureBuffer)</unmanaged>
  15156. <unmanaged-short>ID3D10EffectConstantBuffer::SetTextureBuffer</unmanaged-short>
  15157. </member>
  15158. <member name="M:SharpDX.Direct3D10.EffectConstantBuffer.GetTextureBuffer">
  15159. <summary>
  15160. <p>Get a texture-buffer.</p>
  15161. </summary>
  15162. <returns><dd> <p>The address of a reference to a shader-resource-view interface for accessing a texture buffer. See <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>.</p> </dd></returns>
  15163. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectConstantBuffer::GetTextureBuffer']/*" />
  15164. <msdn-id>bb173636</msdn-id>
  15165. <unmanaged>HRESULT ID3D10EffectConstantBuffer::GetTextureBuffer([Out] ID3D10ShaderResourceView** ppTextureBuffer)</unmanaged>
  15166. <unmanaged-short>ID3D10EffectConstantBuffer::GetTextureBuffer</unmanaged-short>
  15167. </member>
  15168. <member name="T:SharpDX.Direct3D10.EffectShaderVariable">
  15169. <summary>
  15170. <p>A shader-variable interface accesses a shader variable.</p>
  15171. </summary>
  15172. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderVariable']/*" />
  15173. <msdn-id>bb173698</msdn-id>
  15174. <unmanaged>ID3D10EffectShaderVariable</unmanaged>
  15175. <unmanaged-short>ID3D10EffectShaderVariable</unmanaged-short>
  15176. </member>
  15177. <member name="M:SharpDX.Direct3D10.EffectShaderVariable.#ctor(System.IntPtr)">
  15178. <summary>
  15179. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectShaderVariable"/> class.
  15180. </summary>
  15181. <param name="nativePtr">The native pointer.</param>
  15182. </member>
  15183. <member name="M:SharpDX.Direct3D10.EffectShaderVariable.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectShaderVariable">
  15184. <summary>
  15185. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectShaderVariable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  15186. </summary>
  15187. <param name="nativePointer">The native pointer.</param>
  15188. <returns>
  15189. The result of the conversion.
  15190. </returns>
  15191. </member>
  15192. <member name="M:SharpDX.Direct3D10.EffectShaderVariable.GetShaderDescription(System.Int32)">
  15193. <summary>
  15194. <p>Get a shader description.</p>
  15195. </summary>
  15196. <param name="shaderIndex"><dd> <p>A zero-based index.</p> </dd></param>
  15197. <returns><dd> <p>A reference to a shader description (see <strong><see cref="T:SharpDX.Direct3D10.EffectShaderDescription" /></strong>).</p> </dd></returns>
  15198. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderVariable::GetShaderDesc']/*" />
  15199. <msdn-id>bb173703</msdn-id>
  15200. <unmanaged>HRESULT ID3D10EffectShaderVariable::GetShaderDesc([In] unsigned int ShaderIndex,[Out] D3D10_EFFECT_SHADER_DESC* pDesc)</unmanaged>
  15201. <unmanaged-short>ID3D10EffectShaderVariable::GetShaderDesc</unmanaged-short>
  15202. </member>
  15203. <member name="M:SharpDX.Direct3D10.EffectShaderVariable.GetVertexShader(System.Int32)">
  15204. <summary>
  15205. <p>Get a vertex shader.</p>
  15206. </summary>
  15207. <param name="shaderIndex"><dd> <p>A zero-based index.</p> </dd></param>
  15208. <returns><dd> <p>A reference to a <strong><see cref="T:SharpDX.Direct3D10.VertexShader" /> Interface</strong>.</p> </dd></returns>
  15209. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderVariable::GetVertexShader']/*" />
  15210. <msdn-id>bb173704</msdn-id>
  15211. <unmanaged>HRESULT ID3D10EffectShaderVariable::GetVertexShader([In] unsigned int ShaderIndex,[Out] ID3D10VertexShader** ppVS)</unmanaged>
  15212. <unmanaged-short>ID3D10EffectShaderVariable::GetVertexShader</unmanaged-short>
  15213. </member>
  15214. <member name="M:SharpDX.Direct3D10.EffectShaderVariable.GetGeometryShader(System.Int32)">
  15215. <summary>
  15216. <p>Get a geometry shader.</p>
  15217. </summary>
  15218. <param name="shaderIndex"><dd> <p>A zero-based index.</p> </dd></param>
  15219. <returns><dd> <p>A reference to a <strong><see cref="T:SharpDX.Direct3D10.GeometryShader" /> Interface</strong>.</p> </dd></returns>
  15220. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderVariable::GetGeometryShader']/*" />
  15221. <msdn-id>bb173699</msdn-id>
  15222. <unmanaged>HRESULT ID3D10EffectShaderVariable::GetGeometryShader([In] unsigned int ShaderIndex,[Out] ID3D10GeometryShader** ppGS)</unmanaged>
  15223. <unmanaged-short>ID3D10EffectShaderVariable::GetGeometryShader</unmanaged-short>
  15224. </member>
  15225. <member name="M:SharpDX.Direct3D10.EffectShaderVariable.GetPixelShader(System.Int32)">
  15226. <summary>
  15227. <p>Get a pixel shader.</p>
  15228. </summary>
  15229. <param name="shaderIndex"><dd> <p>A zero-based index.</p> </dd></param>
  15230. <returns><dd> <p>A reference to a <strong><see cref="T:SharpDX.Direct3D10.PixelShader" /> Interface</strong>.</p> </dd></returns>
  15231. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderVariable::GetPixelShader']/*" />
  15232. <msdn-id>bb173702</msdn-id>
  15233. <unmanaged>HRESULT ID3D10EffectShaderVariable::GetPixelShader([In] unsigned int ShaderIndex,[Out] ID3D10PixelShader** ppPS)</unmanaged>
  15234. <unmanaged-short>ID3D10EffectShaderVariable::GetPixelShader</unmanaged-short>
  15235. </member>
  15236. <member name="M:SharpDX.Direct3D10.EffectShaderVariable.GetInputSignatureElementDescription(System.Int32,System.Int32)">
  15237. <summary>
  15238. <p>Get an input-signature description.</p>
  15239. </summary>
  15240. <param name="shaderIndex"><dd> <p>A zero-based shader index.</p> </dd></param>
  15241. <param name="element"><dd> <p>A zero-based shader-element index.</p> </dd></param>
  15242. <returns><dd> <p>A reference to a parameter description (see <strong><see cref="T:SharpDX.Direct3D10.ShaderParameterDescription" /></strong>).</p> </dd></returns>
  15243. <remarks>
  15244. <p>An effect contains one or more shaders; each shader has an input and output signature; each signature contains one or more elements (or parameters). The shader index identifies the shader and the element index identifies the element (or parameter) in the shader signature.</p>
  15245. </remarks>
  15246. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderVariable::GetInputSignatureElementDesc']/*" />
  15247. <msdn-id>bb173700</msdn-id>
  15248. <unmanaged>HRESULT ID3D10EffectShaderVariable::GetInputSignatureElementDesc([In] unsigned int ShaderIndex,[In] unsigned int Element,[Out] D3D10_SIGNATURE_PARAMETER_DESC* pDesc)</unmanaged>
  15249. <unmanaged-short>ID3D10EffectShaderVariable::GetInputSignatureElementDesc</unmanaged-short>
  15250. </member>
  15251. <member name="M:SharpDX.Direct3D10.EffectShaderVariable.GetOutputSignatureElementDescription(System.Int32,System.Int32)">
  15252. <summary>
  15253. <p>Get an output-signature description.</p>
  15254. </summary>
  15255. <param name="shaderIndex"><dd> <p>A zero-based shader index.</p> </dd></param>
  15256. <param name="element"><dd> <p>A zero-based element index.</p> </dd></param>
  15257. <returns><dd> <p>A reference to a parameter description (see <strong><see cref="T:SharpDX.Direct3D10.ShaderParameterDescription" /></strong>).</p> </dd></returns>
  15258. <remarks>
  15259. <p>An effect contains one or more shaders; each shader has an input and output signature; each signature contains one or more elements (or parameters). The shader index identifies the shader and the element index identifies the element (or parameter) in the shader signature.</p>
  15260. </remarks>
  15261. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectShaderVariable::GetOutputSignatureElementDesc']/*" />
  15262. <msdn-id>bb173701</msdn-id>
  15263. <unmanaged>HRESULT ID3D10EffectShaderVariable::GetOutputSignatureElementDesc([In] unsigned int ShaderIndex,[In] unsigned int Element,[Out] D3D10_SIGNATURE_PARAMETER_DESC* pDesc)</unmanaged>
  15264. <unmanaged-short>ID3D10EffectShaderVariable::GetOutputSignatureElementDesc</unmanaged-short>
  15265. </member>
  15266. <member name="T:SharpDX.Direct3D10.EffectTechnique">
  15267. <summary>
  15268. <p>An <strong><see cref="T:SharpDX.Direct3D10.EffectTechnique" /></strong> interface is a collection of passes.</p><p>The lifetime of an <strong><see cref="T:SharpDX.Direct3D10.EffectTechnique" /></strong> object is equal to the lifetime of its parent <strong><see cref="T:SharpDX.Direct3D10.Effect" /></strong> object.</p><ul> <li>Methods</li> </ul>
  15269. </summary>
  15270. <remarks>
  15271. <p>An effect contains one or more techniques; each technique contains one or more passes; each pass contains state assignments (see Organizing State in an Effect (Direct3D 10)). The syntax for creating a technique is shown in Effect Technique Syntax (Direct3D 10).</p><p>To get an effect-technique interface, call a method like <strong><see cref="M:SharpDX.Direct3D10.Effect.GetTechniqueByName(System.String)" /></strong>.</p>
  15272. </remarks>
  15273. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectTechnique']/*" />
  15274. <msdn-id>bb173708</msdn-id>
  15275. <unmanaged>ID3D10EffectTechnique</unmanaged>
  15276. <unmanaged-short>ID3D10EffectTechnique</unmanaged-short>
  15277. </member>
  15278. <member name="M:SharpDX.Direct3D10.EffectTechnique.#ctor(System.IntPtr)">
  15279. <summary>
  15280. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectTechnique"/> class.
  15281. </summary>
  15282. <param name="nativePtr">The native pointer.</param>
  15283. </member>
  15284. <member name="M:SharpDX.Direct3D10.EffectTechnique.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectTechnique">
  15285. <summary>
  15286. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectTechnique"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  15287. </summary>
  15288. <param name="nativePointer">The native pointer.</param>
  15289. <returns>
  15290. The result of the conversion.
  15291. </returns>
  15292. </member>
  15293. <member name="P:SharpDX.Direct3D10.EffectTechnique.IsValid">
  15294. <summary>
  15295. <p>Test a technique to see if it contains valid syntax.</p>
  15296. </summary>
  15297. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectTechnique::IsValid']/*" />
  15298. <msdn-id>bb173715</msdn-id>
  15299. <unmanaged>IsValid</unmanaged>
  15300. <unmanaged-short>IsValid</unmanaged-short>
  15301. <unmanaged>BOOL ID3D10EffectTechnique::IsValid()</unmanaged>
  15302. </member>
  15303. <member name="P:SharpDX.Direct3D10.EffectTechnique.Description">
  15304. <summary>
  15305. <p>Get a technique description.</p>
  15306. </summary>
  15307. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectTechnique::GetDesc']/*" />
  15308. <msdn-id>bb173712</msdn-id>
  15309. <unmanaged>GetDesc</unmanaged>
  15310. <unmanaged-short>GetDesc</unmanaged-short>
  15311. <unmanaged>HRESULT ID3D10EffectTechnique::GetDesc([Out] D3D10_TECHNIQUE_DESC* pDesc)</unmanaged>
  15312. </member>
  15313. <member name="M:SharpDX.Direct3D10.EffectTechnique.IsValid_">
  15314. <summary>
  15315. <p>Test a technique to see if it contains valid syntax.</p>
  15316. </summary>
  15317. <returns><p><strong>TRUE</strong> if the code syntax is valid; otherwise <strong><see cref="F:SharpDX.Result.False" /></strong>.</p></returns>
  15318. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectTechnique::IsValid']/*" />
  15319. <msdn-id>bb173715</msdn-id>
  15320. <unmanaged>BOOL ID3D10EffectTechnique::IsValid()</unmanaged>
  15321. <unmanaged-short>ID3D10EffectTechnique::IsValid</unmanaged-short>
  15322. </member>
  15323. <member name="M:SharpDX.Direct3D10.EffectTechnique.GetDescription(SharpDX.Direct3D10.EffectTechniqueDescription@)">
  15324. <summary>
  15325. <p>Get a technique description.</p>
  15326. </summary>
  15327. <param name="descRef"><dd> <p>A reference to a technique description (see <strong><see cref="T:SharpDX.Direct3D10.EffectTechniqueDescription" /></strong>).</p> </dd></param>
  15328. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  15329. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectTechnique::GetDesc']/*" />
  15330. <msdn-id>bb173712</msdn-id>
  15331. <unmanaged>HRESULT ID3D10EffectTechnique::GetDesc([Out] D3D10_TECHNIQUE_DESC* pDesc)</unmanaged>
  15332. <unmanaged-short>ID3D10EffectTechnique::GetDesc</unmanaged-short>
  15333. </member>
  15334. <member name="M:SharpDX.Direct3D10.EffectTechnique.GetAnnotationByIndex(System.Int32)">
  15335. <summary>
  15336. <p>Get an annotation by index.</p>
  15337. </summary>
  15338. <param name="index"><dd> <p>The zero-based index of the interface reference.</p> </dd></param>
  15339. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  15340. <remarks>
  15341. <p>Use an annotation to attach a piece of metadata to a technique.</p>
  15342. </remarks>
  15343. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectTechnique::GetAnnotationByIndex']/*" />
  15344. <msdn-id>bb173710</msdn-id>
  15345. <unmanaged>ID3D10EffectVariable* ID3D10EffectTechnique::GetAnnotationByIndex([In] unsigned int Index)</unmanaged>
  15346. <unmanaged-short>ID3D10EffectTechnique::GetAnnotationByIndex</unmanaged-short>
  15347. </member>
  15348. <member name="M:SharpDX.Direct3D10.EffectTechnique.GetAnnotationByName(System.String)">
  15349. <summary>
  15350. <p>Get an annotation by name.</p>
  15351. </summary>
  15352. <param name="name"><dd> <p>Name of the annotation.</p> </dd></param>
  15353. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectVariable" /> Interface</strong>.</p></returns>
  15354. <remarks>
  15355. <p>Use an annotation to attach a piece of metadata to a technique.</p>
  15356. </remarks>
  15357. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectTechnique::GetAnnotationByName']/*" />
  15358. <msdn-id>bb173711</msdn-id>
  15359. <unmanaged>ID3D10EffectVariable* ID3D10EffectTechnique::GetAnnotationByName([In] const char* Name)</unmanaged>
  15360. <unmanaged-short>ID3D10EffectTechnique::GetAnnotationByName</unmanaged-short>
  15361. </member>
  15362. <member name="M:SharpDX.Direct3D10.EffectTechnique.GetPassByIndex(System.Int32)">
  15363. <summary>
  15364. <p>Get a pass by index.</p>
  15365. </summary>
  15366. <param name="index"><dd> <p>A zero-based index.</p> </dd></param>
  15367. <returns><p>A reference to a <strong><see cref="T:SharpDX.Direct3D10.EffectPass" /> Interface</strong>.</p></returns>
  15368. <remarks>
  15369. <p>A technique contains one or more passes; get a pass using a name or an index.</p>
  15370. </remarks>
  15371. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectTechnique::GetPassByIndex']/*" />
  15372. <msdn-id>bb173713</msdn-id>
  15373. <unmanaged>ID3D10EffectPass* ID3D10EffectTechnique::GetPassByIndex([In] unsigned int Index)</unmanaged>
  15374. <unmanaged-short>ID3D10EffectTechnique::GetPassByIndex</unmanaged-short>
  15375. </member>
  15376. <member name="M:SharpDX.Direct3D10.EffectTechnique.GetPassByName(System.String)">
  15377. <summary>
  15378. <p>Get a pass by name.</p>
  15379. </summary>
  15380. <param name="name"><dd> <p>The name of the pass.</p> </dd></param>
  15381. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectPass" /> Interface</strong>.</p></returns>
  15382. <remarks>
  15383. <p>A technique contains one or more passes; get a pass using a name or an index.</p>
  15384. </remarks>
  15385. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectTechnique::GetPassByName']/*" />
  15386. <msdn-id>bb173714</msdn-id>
  15387. <unmanaged>ID3D10EffectPass* ID3D10EffectTechnique::GetPassByName([In] const char* Name)</unmanaged>
  15388. <unmanaged-short>ID3D10EffectTechnique::GetPassByName</unmanaged-short>
  15389. </member>
  15390. <member name="M:SharpDX.Direct3D10.EffectTechnique.ComputeStateBlockMask(SharpDX.Direct3D10.StateBlockMask@)">
  15391. <summary>
  15392. <p>Compute a state-block mask to allow/prevent state changes.</p>
  15393. </summary>
  15394. <param name="stateBlockMaskRef"><dd> <p>A reference to a state-block mask (see <strong><see cref="T:SharpDX.Direct3D10.StateBlockMask" /></strong>).</p> </dd></param>
  15395. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  15396. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectTechnique::ComputeStateBlockMask']/*" />
  15397. <msdn-id>bb173709</msdn-id>
  15398. <unmanaged>HRESULT ID3D10EffectTechnique::ComputeStateBlockMask([Out] D3D10_STATE_BLOCK_MASK* pStateBlockMask)</unmanaged>
  15399. <unmanaged-short>ID3D10EffectTechnique::ComputeStateBlockMask</unmanaged-short>
  15400. </member>
  15401. <member name="T:SharpDX.Direct3D10.EffectType">
  15402. <summary>
  15403. <p>Get an member type by name.</p>
  15404. </summary>
  15405. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectType']/*" />
  15406. <msdn-id>bb173721</msdn-id>
  15407. <unmanaged>ID3D10EffectType</unmanaged>
  15408. <unmanaged-short>ID3D10EffectType</unmanaged-short>
  15409. </member>
  15410. <member name="M:SharpDX.Direct3D10.EffectType.#ctor(System.IntPtr)">
  15411. <summary>
  15412. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.EffectType"/> class.
  15413. </summary>
  15414. <param name="nativePtr">The native pointer.</param>
  15415. </member>
  15416. <member name="M:SharpDX.Direct3D10.EffectType.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.EffectType">
  15417. <summary>
  15418. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.EffectType"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  15419. </summary>
  15420. <param name="nativePointer">The native pointer.</param>
  15421. <returns>
  15422. The result of the conversion.
  15423. </returns>
  15424. </member>
  15425. <member name="P:SharpDX.Direct3D10.EffectType.IsValid">
  15426. <summary>
  15427. <p>Tests that the effect type is valid.</p>
  15428. </summary>
  15429. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectType::IsValid']/*" />
  15430. <msdn-id>bb173723</msdn-id>
  15431. <unmanaged>IsValid</unmanaged>
  15432. <unmanaged-short>IsValid</unmanaged-short>
  15433. <unmanaged>BOOL ID3D10EffectType::IsValid()</unmanaged>
  15434. </member>
  15435. <member name="P:SharpDX.Direct3D10.EffectType.Description">
  15436. <summary>
  15437. <p>Get an effect-type description.</p>
  15438. </summary>
  15439. <remarks>
  15440. <p>The effect-variable description contains data about the name, annotations, semantic, flags and buffer offset of the effect type.</p>
  15441. </remarks>
  15442. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectType::GetDesc']/*" />
  15443. <msdn-id>bb173717</msdn-id>
  15444. <unmanaged>GetDesc</unmanaged>
  15445. <unmanaged-short>GetDesc</unmanaged-short>
  15446. <unmanaged>HRESULT ID3D10EffectType::GetDesc([Out] D3D10_EFFECT_TYPE_DESC* pDesc)</unmanaged>
  15447. </member>
  15448. <member name="M:SharpDX.Direct3D10.EffectType.IsValid_">
  15449. <summary>
  15450. <p>Tests that the effect type is valid.</p>
  15451. </summary>
  15452. <returns><p><strong>TRUE</strong> if it is valid; otherwise <strong><see cref="F:SharpDX.Result.False" /></strong>.</p></returns>
  15453. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectType::IsValid']/*" />
  15454. <msdn-id>bb173723</msdn-id>
  15455. <unmanaged>BOOL ID3D10EffectType::IsValid()</unmanaged>
  15456. <unmanaged-short>ID3D10EffectType::IsValid</unmanaged-short>
  15457. </member>
  15458. <member name="M:SharpDX.Direct3D10.EffectType.GetDescription(SharpDX.Direct3D10.EffectTypeDescription@)">
  15459. <summary>
  15460. <p>Get an effect-type description.</p>
  15461. </summary>
  15462. <param name="descRef"><dd> <p>A reference to an effect-type description. See <strong><see cref="T:SharpDX.Direct3D10.EffectTypeDescription" /></strong>.</p> </dd></param>
  15463. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  15464. <remarks>
  15465. <p>The effect-variable description contains data about the name, annotations, semantic, flags and buffer offset of the effect type.</p>
  15466. </remarks>
  15467. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectType::GetDesc']/*" />
  15468. <msdn-id>bb173717</msdn-id>
  15469. <unmanaged>HRESULT ID3D10EffectType::GetDesc([Out] D3D10_EFFECT_TYPE_DESC* pDesc)</unmanaged>
  15470. <unmanaged-short>ID3D10EffectType::GetDesc</unmanaged-short>
  15471. </member>
  15472. <member name="M:SharpDX.Direct3D10.EffectType.GetMemberTypeByIndex(System.Int32)">
  15473. <summary>
  15474. <p>Get a member type by index.</p>
  15475. </summary>
  15476. <param name="index"><dd> <p>A zero-based index.</p> </dd></param>
  15477. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectType" /> Interface</strong>.</p></returns>
  15478. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectType::GetMemberTypeByIndex']/*" />
  15479. <msdn-id>bb173720</msdn-id>
  15480. <unmanaged>ID3D10EffectType* ID3D10EffectType::GetMemberTypeByIndex([In] unsigned int Index)</unmanaged>
  15481. <unmanaged-short>ID3D10EffectType::GetMemberTypeByIndex</unmanaged-short>
  15482. </member>
  15483. <member name="M:SharpDX.Direct3D10.EffectType.GetMemberTypeByName(System.String)">
  15484. <summary>
  15485. <p>Get an member type by name.</p>
  15486. </summary>
  15487. <param name="name"><dd> <p>A member's name.</p> </dd></param>
  15488. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectType" /> Interface</strong>.</p></returns>
  15489. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectType::GetMemberTypeByName']/*" />
  15490. <msdn-id>bb173721</msdn-id>
  15491. <unmanaged>ID3D10EffectType* ID3D10EffectType::GetMemberTypeByName([In] const char* Name)</unmanaged>
  15492. <unmanaged-short>ID3D10EffectType::GetMemberTypeByName</unmanaged-short>
  15493. </member>
  15494. <member name="M:SharpDX.Direct3D10.EffectType.GetMemberTypeBySemantic(System.String)">
  15495. <summary>
  15496. <p>Get a member type by semantic.</p>
  15497. </summary>
  15498. <param name="semantic"><dd> <p>A semantic.</p> </dd></param>
  15499. <returns><p>A reference to an <strong><see cref="T:SharpDX.Direct3D10.EffectType" /> Interface</strong>.</p></returns>
  15500. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectType::GetMemberTypeBySemantic']/*" />
  15501. <msdn-id>bb173722</msdn-id>
  15502. <unmanaged>ID3D10EffectType* ID3D10EffectType::GetMemberTypeBySemantic([In] const char* Semantic)</unmanaged>
  15503. <unmanaged-short>ID3D10EffectType::GetMemberTypeBySemantic</unmanaged-short>
  15504. </member>
  15505. <member name="M:SharpDX.Direct3D10.EffectType.GetMemberName(System.Int32)">
  15506. <summary>
  15507. <p>Get the name of a member.</p>
  15508. </summary>
  15509. <param name="index"><dd> <p>A zero-based index.</p> </dd></param>
  15510. <returns><p>The name of the member.</p></returns>
  15511. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectType::GetMemberName']/*" />
  15512. <msdn-id>bb173718</msdn-id>
  15513. <unmanaged>const char* ID3D10EffectType::GetMemberName([In] unsigned int Index)</unmanaged>
  15514. <unmanaged-short>ID3D10EffectType::GetMemberName</unmanaged-short>
  15515. </member>
  15516. <member name="M:SharpDX.Direct3D10.EffectType.GetMemberSemantic(System.Int32)">
  15517. <summary>
  15518. <p>Get the semantic attached to a member.</p>
  15519. </summary>
  15520. <param name="index"><dd> <p>A zero-based index.</p> </dd></param>
  15521. <returns><p>A string that contains the semantic.</p></returns>
  15522. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10EffectType::GetMemberSemantic']/*" />
  15523. <msdn-id>bb173719</msdn-id>
  15524. <unmanaged>const char* ID3D10EffectType::GetMemberSemantic([In] unsigned int Index)</unmanaged>
  15525. <unmanaged-short>ID3D10EffectType::GetMemberSemantic</unmanaged-short>
  15526. </member>
  15527. <member name="T:SharpDX.Direct3D10.GeometryShader">
  15528. <summary>
  15529. <p>A geometry-shader interface manages an executable program (a geometry shader) that controls the geometry-shader stage.</p>
  15530. </summary>
  15531. <remarks>
  15532. <p>The geometry-shader interface has no methods; use HLSL to implement your shader functionality. All shaders in Direct3D 10 are implemented from a common set of features referred to as the common shader core.</p><p>To create a geometry shader interface, call either <strong><see cref="M:SharpDX.Direct3D10.Device.CreateGeometryShader(System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.GeometryShader)" /></strong> or <strong><see cref="M:SharpDX.Direct3D10.Device.CreateGeometryShaderWithStreamOutput(System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.StreamOutputElement[],System.Int32,System.Int32,SharpDX.Direct3D10.GeometryShader)" /></strong>. Before using a geometry shader you must bind it to the device by calling <strong><see cref="M:SharpDX.Direct3D10.GeometryShaderStage.Set(SharpDX.Direct3D10.GeometryShader)" /></strong>.</p><p>This interface is defined in D3D10.h.</p>
  15533. </remarks>
  15534. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10GeometryShader']/*" />
  15535. <msdn-id>bb173774</msdn-id>
  15536. <unmanaged>ID3D10GeometryShader</unmanaged>
  15537. <unmanaged-short>ID3D10GeometryShader</unmanaged-short>
  15538. </member>
  15539. <member name="M:SharpDX.Direct3D10.GeometryShader.#ctor(System.IntPtr)">
  15540. <summary>
  15541. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.GeometryShader"/> class.
  15542. </summary>
  15543. <param name="nativePtr">The native pointer.</param>
  15544. </member>
  15545. <member name="M:SharpDX.Direct3D10.GeometryShader.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.GeometryShader">
  15546. <summary>
  15547. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.GeometryShader"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  15548. </summary>
  15549. <param name="nativePointer">The native pointer.</param>
  15550. <returns>
  15551. The result of the conversion.
  15552. </returns>
  15553. </member>
  15554. <member name="M:SharpDX.Direct3D10.GeometryShader.#ctor(SharpDX.Direct3D10.Device,System.Byte[])">
  15555. <summary>
  15556. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.GeometryShader" /> class.
  15557. </summary>
  15558. <param name = "device">The device used to create the shader.</param>
  15559. <param name = "shaderBytecode">The compiled shader bytecode.</param>
  15560. </member>
  15561. <member name="M:SharpDX.Direct3D10.GeometryShader.#ctor(SharpDX.Direct3D10.Device,System.Byte[],SharpDX.Direct3D10.StreamOutputElement[],System.Int32)">
  15562. <summary>
  15563. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.GeometryShader" /> class.
  15564. </summary>
  15565. <param name = "device">The device used to create the shader.</param>
  15566. <param name = "shaderBytecode">The compiled shader bytecode.</param>
  15567. <param name = "elements">An array of <see cref = "T:SharpDX.Direct3D10.StreamOutputElement" /> instances describing the layout of the output buffers.</param>
  15568. <param name = "outputStreamStride">The size, in bytes, of each element in the array pointed to by pSODeclaration. This parameter is only used when the output slot is 0 for all entries in pSODeclaration.</param>
  15569. </member>
  15570. <member name="T:SharpDX.Direct3D10.GeometryShaderStage">
  15571. <summary>
  15572. <p>The device interface represents a virtual adapter for Direct3D 10.0; it is used to perform rendering and create Direct3D resources.</p>
  15573. </summary>
  15574. <remarks>
  15575. <p>A device is created using <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>.</p>
  15576. </remarks>
  15577. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device']/*" />
  15578. <msdn-id>bb173528</msdn-id>
  15579. <unmanaged>ID3D10Device</unmanaged>
  15580. <unmanaged-short>ID3D10Device</unmanaged-short>
  15581. </member>
  15582. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.#ctor(System.IntPtr)">
  15583. <summary>
  15584. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.GeometryShaderStage"/> class.
  15585. </summary>
  15586. <param name="nativePtr">The native pointer.</param>
  15587. </member>
  15588. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.GeometryShaderStage">
  15589. <summary>
  15590. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.GeometryShaderStage"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  15591. </summary>
  15592. <param name="nativePointer">The native pointer.</param>
  15593. <returns>
  15594. The result of the conversion.
  15595. </returns>
  15596. </member>
  15597. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.SetConstantBuffers(System.Int32,System.Int32,SharpDX.Direct3D10.Buffer[])">
  15598. <summary>
  15599. <p>Set the constant buffers used by the geometry shader pipeline stage.</p>
  15600. </summary>
  15601. <param name="startSlot">No documentation.</param>
  15602. <param name="numBuffers">No documentation.</param>
  15603. <param name="constantBuffersOut">No documentation.</param>
  15604. <remarks>
  15605. <p>The method will not hold references to the interfaces passed in. For that reason, applications should be careful not to release interfaces currently in use by the device.</p>
  15606. </remarks>
  15607. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSSetConstantBuffers']/*" />
  15608. <msdn-id>bb173580</msdn-id>
  15609. <unmanaged>void ID3D10Device::GSSetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  15610. <unmanaged-short>ID3D10Device::GSSetConstantBuffers</unmanaged-short>
  15611. </member>
  15612. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.SetConstantBuffers(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.Buffer})">
  15613. <summary>
  15614. <p>Set the constant buffers used by the geometry shader pipeline stage.</p>
  15615. </summary>
  15616. <param name="startSlot">No documentation.</param>
  15617. <param name="numBuffers">No documentation.</param>
  15618. <param name="constantBuffersOut">No documentation.</param>
  15619. <remarks>
  15620. <p>The method will not hold references to the interfaces passed in. For that reason, applications should be careful not to release interfaces currently in use by the device.</p>
  15621. </remarks>
  15622. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSSetConstantBuffers']/*" />
  15623. <msdn-id>bb173580</msdn-id>
  15624. <unmanaged>void ID3D10Device::GSSetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  15625. <unmanaged-short>ID3D10Device::GSSetConstantBuffers</unmanaged-short>
  15626. </member>
  15627. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.SetConstantBuffers(System.Int32,System.Int32,System.IntPtr)">
  15628. <summary>
  15629. <p>Set the constant buffers used by the geometry shader pipeline stage.</p>
  15630. </summary>
  15631. <param name="startSlot">No documentation.</param>
  15632. <param name="numBuffers">No documentation.</param>
  15633. <param name="constantBuffersOut">No documentation.</param>
  15634. <remarks>
  15635. <p>The method will not hold references to the interfaces passed in. For that reason, applications should be careful not to release interfaces currently in use by the device.</p>
  15636. </remarks>
  15637. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSSetConstantBuffers']/*" />
  15638. <msdn-id>bb173580</msdn-id>
  15639. <unmanaged>void ID3D10Device::GSSetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  15640. <unmanaged-short>ID3D10Device::GSSetConstantBuffers</unmanaged-short>
  15641. </member>
  15642. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.Set(SharpDX.Direct3D10.GeometryShader)">
  15643. <summary>
  15644. <p>Set a geometry shader to the device.</p>
  15645. </summary>
  15646. <param name="shaderRef"><dd> <p>Pointer to a geometry shader (see <strong><see cref="T:SharpDX.Direct3D10.GeometryShader" /></strong>). Passing in <strong><c>null</c></strong> disables the shader for this pipeline stage.</p> </dd></param>
  15647. <remarks>
  15648. <p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  15649. </remarks>
  15650. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSSetShader']/*" />
  15651. <msdn-id>bb173582</msdn-id>
  15652. <unmanaged>void ID3D10Device::GSSetShader([In, Optional] ID3D10GeometryShader* pShader)</unmanaged>
  15653. <unmanaged-short>ID3D10Device::GSSetShader</unmanaged-short>
  15654. </member>
  15655. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])">
  15656. <summary>
  15657. <p>Bind an array of shader resources to the geometry shader stage.</p>
  15658. </summary>
  15659. <param name="startSlot">No documentation.</param>
  15660. <param name="numViews">No documentation.</param>
  15661. <param name="shaderResourceViewsOut">No documentation.</param>
  15662. <remarks>
  15663. <p>If you bind a subresource as an input and an output, this API will fill the destination shader resource slot with <strong><c>null</c></strong>. The debug layer (when active) will alert you if this is true.</p><p>For information about creating shader-resource views, see <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  15664. </remarks>
  15665. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSSetShaderResources']/*" />
  15666. <msdn-id>bb173583</msdn-id>
  15667. <unmanaged>void ID3D10Device::GSSetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  15668. <unmanaged-short>ID3D10Device::GSSetShaderResources</unmanaged-short>
  15669. </member>
  15670. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.ShaderResourceView})">
  15671. <summary>
  15672. <p>Bind an array of shader resources to the geometry shader stage.</p>
  15673. </summary>
  15674. <param name="startSlot">No documentation.</param>
  15675. <param name="numViews">No documentation.</param>
  15676. <param name="shaderResourceViewsOut">No documentation.</param>
  15677. <remarks>
  15678. <p>If you bind a subresource as an input and an output, this API will fill the destination shader resource slot with <strong><c>null</c></strong>. The debug layer (when active) will alert you if this is true.</p><p>For information about creating shader-resource views, see <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  15679. </remarks>
  15680. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSSetShaderResources']/*" />
  15681. <msdn-id>bb173583</msdn-id>
  15682. <unmanaged>void ID3D10Device::GSSetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  15683. <unmanaged-short>ID3D10Device::GSSetShaderResources</unmanaged-short>
  15684. </member>
  15685. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.SetShaderResources(System.Int32,System.Int32,System.IntPtr)">
  15686. <summary>
  15687. <p>Bind an array of shader resources to the geometry shader stage.</p>
  15688. </summary>
  15689. <param name="startSlot">No documentation.</param>
  15690. <param name="numViews">No documentation.</param>
  15691. <param name="shaderResourceViewsOut">No documentation.</param>
  15692. <remarks>
  15693. <p>If you bind a subresource as an input and an output, this API will fill the destination shader resource slot with <strong><c>null</c></strong>. The debug layer (when active) will alert you if this is true.</p><p>For information about creating shader-resource views, see <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  15694. </remarks>
  15695. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSSetShaderResources']/*" />
  15696. <msdn-id>bb173583</msdn-id>
  15697. <unmanaged>void ID3D10Device::GSSetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  15698. <unmanaged-short>ID3D10Device::GSSetShaderResources</unmanaged-short>
  15699. </member>
  15700. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.SetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])">
  15701. <summary>
  15702. <p>Set an array of sampler states to the geometry shader pipeline stage.</p>
  15703. </summary>
  15704. <param name="startSlot">No documentation.</param>
  15705. <param name="numSamplers">No documentation.</param>
  15706. <param name="samplersOut">No documentation.</param>
  15707. <remarks>
  15708. <p>Any sampler may be set to <strong><c>null</c></strong>; this invokes the default state, which is defined to be the following.</p><pre> //Default sampler state:
  15709. <see cref="T:SharpDX.Direct3D10.SamplerStateDescription" /> SamplerDesc;
  15710. SamplerDesc.Filter = <see cref="F:SharpDX.Direct3D10.Filter.MinMagMipLinear" />;
  15711. SamplerDesc.AddressU = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  15712. SamplerDesc.AddressV = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  15713. SamplerDesc.AddressW = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  15714. SamplerDesc.MipLODBias = 0;
  15715. SamplerDesc.MaxAnisotropy = 1;
  15716. SamplerDesc.ComparisonFunc = <see cref="F:SharpDX.Direct3D10.Comparison.Never" />;
  15717. SamplerDesc.BorderColor[0] = 1.0f;
  15718. SamplerDesc.BorderColor[1] = 1.0f;
  15719. SamplerDesc.BorderColor[2] = 1.0f;
  15720. SamplerDesc.BorderColor[3] = 1.0f;
  15721. SamplerDesc.MinLOD = -FLT_MAX;
  15722. SamplerDesc.MaxLOD = FLT_MAX; </pre><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  15723. </remarks>
  15724. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSSetSamplers']/*" />
  15725. <msdn-id>bb173581</msdn-id>
  15726. <unmanaged>void ID3D10Device::GSSetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[In, Buffer, Optional] const ID3D10SamplerState** ppSamplers)</unmanaged>
  15727. <unmanaged-short>ID3D10Device::GSSetSamplers</unmanaged-short>
  15728. </member>
  15729. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.SetSamplers(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.SamplerState})">
  15730. <summary>
  15731. <p>Set an array of sampler states to the geometry shader pipeline stage.</p>
  15732. </summary>
  15733. <param name="startSlot">No documentation.</param>
  15734. <param name="numSamplers">No documentation.</param>
  15735. <param name="samplersOut">No documentation.</param>
  15736. <remarks>
  15737. <p>Any sampler may be set to <strong><c>null</c></strong>; this invokes the default state, which is defined to be the following.</p><pre> //Default sampler state:
  15738. <see cref="T:SharpDX.Direct3D10.SamplerStateDescription" /> SamplerDesc;
  15739. SamplerDesc.Filter = <see cref="F:SharpDX.Direct3D10.Filter.MinMagMipLinear" />;
  15740. SamplerDesc.AddressU = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  15741. SamplerDesc.AddressV = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  15742. SamplerDesc.AddressW = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  15743. SamplerDesc.MipLODBias = 0;
  15744. SamplerDesc.MaxAnisotropy = 1;
  15745. SamplerDesc.ComparisonFunc = <see cref="F:SharpDX.Direct3D10.Comparison.Never" />;
  15746. SamplerDesc.BorderColor[0] = 1.0f;
  15747. SamplerDesc.BorderColor[1] = 1.0f;
  15748. SamplerDesc.BorderColor[2] = 1.0f;
  15749. SamplerDesc.BorderColor[3] = 1.0f;
  15750. SamplerDesc.MinLOD = -FLT_MAX;
  15751. SamplerDesc.MaxLOD = FLT_MAX; </pre><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  15752. </remarks>
  15753. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSSetSamplers']/*" />
  15754. <msdn-id>bb173581</msdn-id>
  15755. <unmanaged>void ID3D10Device::GSSetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[In, Buffer, Optional] const ID3D10SamplerState** ppSamplers)</unmanaged>
  15756. <unmanaged-short>ID3D10Device::GSSetSamplers</unmanaged-short>
  15757. </member>
  15758. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.SetSamplers(System.Int32,System.Int32,System.IntPtr)">
  15759. <summary>
  15760. <p>Set an array of sampler states to the geometry shader pipeline stage.</p>
  15761. </summary>
  15762. <param name="startSlot">No documentation.</param>
  15763. <param name="numSamplers">No documentation.</param>
  15764. <param name="samplersOut">No documentation.</param>
  15765. <remarks>
  15766. <p>Any sampler may be set to <strong><c>null</c></strong>; this invokes the default state, which is defined to be the following.</p><pre> //Default sampler state:
  15767. <see cref="T:SharpDX.Direct3D10.SamplerStateDescription" /> SamplerDesc;
  15768. SamplerDesc.Filter = <see cref="F:SharpDX.Direct3D10.Filter.MinMagMipLinear" />;
  15769. SamplerDesc.AddressU = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  15770. SamplerDesc.AddressV = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  15771. SamplerDesc.AddressW = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  15772. SamplerDesc.MipLODBias = 0;
  15773. SamplerDesc.MaxAnisotropy = 1;
  15774. SamplerDesc.ComparisonFunc = <see cref="F:SharpDX.Direct3D10.Comparison.Never" />;
  15775. SamplerDesc.BorderColor[0] = 1.0f;
  15776. SamplerDesc.BorderColor[1] = 1.0f;
  15777. SamplerDesc.BorderColor[2] = 1.0f;
  15778. SamplerDesc.BorderColor[3] = 1.0f;
  15779. SamplerDesc.MinLOD = -FLT_MAX;
  15780. SamplerDesc.MaxLOD = FLT_MAX; </pre><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  15781. </remarks>
  15782. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSSetSamplers']/*" />
  15783. <msdn-id>bb173581</msdn-id>
  15784. <unmanaged>void ID3D10Device::GSSetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[In, Buffer, Optional] const ID3D10SamplerState** ppSamplers)</unmanaged>
  15785. <unmanaged-short>ID3D10Device::GSSetSamplers</unmanaged-short>
  15786. </member>
  15787. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.GetConstantBuffers(System.Int32,System.Int32,SharpDX.Direct3D10.Buffer[])">
  15788. <summary>
  15789. <p>Get the constant buffers used by the geometry shader pipeline stage.</p>
  15790. </summary>
  15791. <param name="startSlot">No documentation.</param>
  15792. <param name="numBuffers">No documentation.</param>
  15793. <param name="constantBuffersOut">No documentation.</param>
  15794. <remarks>
  15795. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  15796. </remarks>
  15797. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSGetConstantBuffers']/*" />
  15798. <msdn-id>bb173576</msdn-id>
  15799. <unmanaged>void ID3D10Device::GSGetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[Out, Buffer, Optional] ID3D10Buffer** ppConstantBuffers)</unmanaged>
  15800. <unmanaged-short>ID3D10Device::GSGetConstantBuffers</unmanaged-short>
  15801. </member>
  15802. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.Get(SharpDX.Direct3D10.GeometryShader@)">
  15803. <summary>
  15804. <p>Get the geometry shader currently set on the device.</p>
  15805. </summary>
  15806. <param name="geometryShaderOut"><dd> <p>Address of a reference to a geometry shader (see <strong><see cref="T:SharpDX.Direct3D10.GeometryShader" /></strong>) to be returned by the method.</p> </dd></param>
  15807. <remarks>
  15808. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  15809. </remarks>
  15810. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSGetShader']/*" />
  15811. <msdn-id>bb173578</msdn-id>
  15812. <unmanaged>void ID3D10Device::GSGetShader([Out] ID3D10GeometryShader** ppGeometryShader)</unmanaged>
  15813. <unmanaged-short>ID3D10Device::GSGetShader</unmanaged-short>
  15814. </member>
  15815. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.GetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])">
  15816. <summary>
  15817. <p>Get the geometry shader resources.</p>
  15818. </summary>
  15819. <param name="startSlot"><dd> <p>Index into the device's zero-based array to begin getting shader resources from.</p> </dd></param>
  15820. <param name="numViews"><dd> <p>The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources.</p> </dd></param>
  15821. <param name="shaderResourceViewsOut"><dd> <p>Array of <strong>shader resource view</strong> interfaces to be returned by the device.</p> </dd></param>
  15822. <remarks>
  15823. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  15824. </remarks>
  15825. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSGetShaderResources']/*" />
  15826. <msdn-id>bb173579</msdn-id>
  15827. <unmanaged>void ID3D10Device::GSGetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[Out, Buffer, Optional] ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  15828. <unmanaged-short>ID3D10Device::GSGetShaderResources</unmanaged-short>
  15829. </member>
  15830. <member name="M:SharpDX.Direct3D10.GeometryShaderStage.GetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])">
  15831. <summary>
  15832. <p>Get an array of sampler states from the geometry shader pipeline stage.</p>
  15833. </summary>
  15834. <param name="startSlot">No documentation.</param>
  15835. <param name="numSamplers">No documentation.</param>
  15836. <param name="samplersOut">No documentation.</param>
  15837. <remarks>
  15838. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  15839. </remarks>
  15840. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::GSGetSamplers']/*" />
  15841. <msdn-id>bb173577</msdn-id>
  15842. <unmanaged>void ID3D10Device::GSGetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[Out, Buffer, Optional] ID3D10SamplerState** ppSamplers)</unmanaged>
  15843. <unmanaged-short>ID3D10Device::GSGetSamplers</unmanaged-short>
  15844. </member>
  15845. <member name="T:SharpDX.Direct3D10.InfoQueue">
  15846. <summary>
  15847. <p>An information-queue interface stores, retrieves, and filters debug messages. The queue consists of a message queue, an optional storage filter stack, and a optional retrieval filter stack.</p>
  15848. </summary>
  15849. <remarks>
  15850. <p>This interface is obtained by turning on the debug layer and querying it from the <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong> using IUnknown::QueryInterface.</p><pre>hr = <see cref="M:SharpDX.Direct3D10.D3D10.CreateDeviceAndSwapChain(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.DXGI.SwapChainDescription@,SharpDX.DXGI.SwapChain@,SharpDX.Direct3D10.Device@)" />( <c>null</c>, g_driverType, <c>null</c>, <see cref="F:SharpDX.Direct3D10.DeviceCreationFlags.Debug" />, <see cref="F:SharpDX.Direct3D10.D3D10.SdkVersion" />, &amp;sd, &amp;g_pSwapChain, &amp;g_pd3dDevice );
  15851. ...
  15852. <see cref="T:SharpDX.Direct3D10.InfoQueue" /> * infoQueue;
  15853. g_pd3dDevice-&gt;QueryInterface(__uuidof(<see cref="T:SharpDX.Direct3D10.InfoQueue" />), (void **)&amp;infoQueue);
  15854. </pre>
  15855. </remarks>
  15856. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue']/*" />
  15857. <msdn-id>bb173779</msdn-id>
  15858. <unmanaged>ID3D10InfoQueue</unmanaged>
  15859. <unmanaged-short>ID3D10InfoQueue</unmanaged-short>
  15860. </member>
  15861. <member name="M:SharpDX.Direct3D10.InfoQueue.#ctor(System.IntPtr)">
  15862. <summary>
  15863. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.InfoQueue"/> class.
  15864. </summary>
  15865. <param name="nativePtr">The native pointer.</param>
  15866. </member>
  15867. <member name="M:SharpDX.Direct3D10.InfoQueue.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.InfoQueue">
  15868. <summary>
  15869. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.InfoQueue"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  15870. </summary>
  15871. <param name="nativePointer">The native pointer.</param>
  15872. <returns>
  15873. The result of the conversion.
  15874. </returns>
  15875. </member>
  15876. <member name="P:SharpDX.Direct3D10.InfoQueue.MessageCountLimit">
  15877. <summary>
  15878. <p>Get or sets the maximum number of messages that can be added to the message queue.</p>
  15879. </summary>
  15880. <remarks>
  15881. <p>When the number of messages in the message queue has reached the maximum limit, new messages coming in will push old messages out.</p>
  15882. </remarks>
  15883. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetMessageCountLimit']/*" />
  15884. <msdn-id>bb173791</msdn-id>
  15885. <unmanaged>GetMessageCountLimit / SetMessageCountLimit</unmanaged>
  15886. <unmanaged-short>GetMessageCountLimit</unmanaged-short>
  15887. <unmanaged>unsigned longlong ID3D10InfoQueue::GetMessageCountLimit()</unmanaged>
  15888. </member>
  15889. <member name="P:SharpDX.Direct3D10.InfoQueue.NumMessagesAllowedByStorageFilter">
  15890. <summary>
  15891. <p>Get the number of messages that were allowed to pass through a storage filter.</p>
  15892. </summary>
  15893. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetNumMessagesAllowedByStorageFilter']/*" />
  15894. <msdn-id>bb173793</msdn-id>
  15895. <unmanaged>GetNumMessagesAllowedByStorageFilter</unmanaged>
  15896. <unmanaged-short>GetNumMessagesAllowedByStorageFilter</unmanaged-short>
  15897. <unmanaged>unsigned longlong ID3D10InfoQueue::GetNumMessagesAllowedByStorageFilter()</unmanaged>
  15898. </member>
  15899. <member name="P:SharpDX.Direct3D10.InfoQueue.NumMessagesDeniedByStorageFilter">
  15900. <summary>
  15901. <p>Get the number of messages that were denied passage through a storage filter.</p>
  15902. </summary>
  15903. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetNumMessagesDeniedByStorageFilter']/*" />
  15904. <msdn-id>bb173794</msdn-id>
  15905. <unmanaged>GetNumMessagesDeniedByStorageFilter</unmanaged>
  15906. <unmanaged-short>GetNumMessagesDeniedByStorageFilter</unmanaged-short>
  15907. <unmanaged>unsigned longlong ID3D10InfoQueue::GetNumMessagesDeniedByStorageFilter()</unmanaged>
  15908. </member>
  15909. <member name="P:SharpDX.Direct3D10.InfoQueue.NumStoredMessages">
  15910. <summary>
  15911. <p>Get the number of messages currently stored in the message queue.</p>
  15912. </summary>
  15913. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetNumStoredMessages']/*" />
  15914. <msdn-id>bb173796</msdn-id>
  15915. <unmanaged>GetNumStoredMessages</unmanaged>
  15916. <unmanaged-short>GetNumStoredMessages</unmanaged-short>
  15917. <unmanaged>unsigned longlong ID3D10InfoQueue::GetNumStoredMessages()</unmanaged>
  15918. </member>
  15919. <member name="P:SharpDX.Direct3D10.InfoQueue.NumStoredMessagesAllowedByRetrievalFilter">
  15920. <summary>
  15921. <p>Get the number of messages that are able to pass through a retrieval filter.</p>
  15922. </summary>
  15923. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetNumStoredMessagesAllowedByRetrievalFilter']/*" />
  15924. <msdn-id>bb173797</msdn-id>
  15925. <unmanaged>GetNumStoredMessagesAllowedByRetrievalFilter</unmanaged>
  15926. <unmanaged-short>GetNumStoredMessagesAllowedByRetrievalFilter</unmanaged-short>
  15927. <unmanaged>unsigned longlong ID3D10InfoQueue::GetNumStoredMessagesAllowedByRetrievalFilter()</unmanaged>
  15928. </member>
  15929. <member name="P:SharpDX.Direct3D10.InfoQueue.NumMessagesDiscardedByMessageCountLimit">
  15930. <summary>
  15931. <p>Get the number of messages that were discarded due to the message count limit.</p>
  15932. </summary>
  15933. <remarks>
  15934. <p>Get and set the message count limit with <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.GetMessageCountLimit" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.SetMessageCountLimit(System.Int64)" /></strong>, respectively.</p>
  15935. </remarks>
  15936. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetNumMessagesDiscardedByMessageCountLimit']/*" />
  15937. <msdn-id>bb173795</msdn-id>
  15938. <unmanaged>GetNumMessagesDiscardedByMessageCountLimit</unmanaged>
  15939. <unmanaged-short>GetNumMessagesDiscardedByMessageCountLimit</unmanaged-short>
  15940. <unmanaged>unsigned longlong ID3D10InfoQueue::GetNumMessagesDiscardedByMessageCountLimit()</unmanaged>
  15941. </member>
  15942. <member name="P:SharpDX.Direct3D10.InfoQueue.StorageFilterStackSize">
  15943. <summary>
  15944. <p>Get the size of the storage-filter stack in bytes.</p>
  15945. </summary>
  15946. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetStorageFilterStackSize']/*" />
  15947. <msdn-id>bb173801</msdn-id>
  15948. <unmanaged>GetStorageFilterStackSize</unmanaged>
  15949. <unmanaged-short>GetStorageFilterStackSize</unmanaged-short>
  15950. <unmanaged>unsigned int ID3D10InfoQueue::GetStorageFilterStackSize()</unmanaged>
  15951. </member>
  15952. <member name="P:SharpDX.Direct3D10.InfoQueue.RetrievalFilterStackSize">
  15953. <summary>
  15954. <p>Get the size of the retrieval-filter stack in bytes.</p>
  15955. </summary>
  15956. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetRetrievalFilterStackSize']/*" />
  15957. <msdn-id>bb173799</msdn-id>
  15958. <unmanaged>GetRetrievalFilterStackSize</unmanaged>
  15959. <unmanaged-short>GetRetrievalFilterStackSize</unmanaged-short>
  15960. <unmanaged>unsigned int ID3D10InfoQueue::GetRetrievalFilterStackSize()</unmanaged>
  15961. </member>
  15962. <member name="P:SharpDX.Direct3D10.InfoQueue.MuteDebugOutput">
  15963. <summary>
  15964. <p>Get or sets a boolean that turns the debug output on or off.</p>
  15965. </summary>
  15966. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetMuteDebugOutput']/*" />
  15967. <msdn-id>bb173792</msdn-id>
  15968. <unmanaged>GetMuteDebugOutput / SetMuteDebugOutput</unmanaged>
  15969. <unmanaged-short>GetMuteDebugOutput</unmanaged-short>
  15970. <unmanaged>BOOL ID3D10InfoQueue::GetMuteDebugOutput()</unmanaged>
  15971. </member>
  15972. <member name="M:SharpDX.Direct3D10.InfoQueue.SetMessageCountLimit(System.Int64)">
  15973. <summary>
  15974. <p>Set the maximum number of messages that can be added to the message queue.</p>
  15975. </summary>
  15976. <param name="messageCountLimit"><dd> <p>Maximum number of messages that can be added to the message queue. -1 means no limit.</p> </dd></param>
  15977. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  15978. <remarks>
  15979. <p>When the number of messages in the message queue has reached the maximum limit, new messages coming in will push old messages out.</p>
  15980. </remarks>
  15981. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::SetMessageCountLimit']/*" />
  15982. <msdn-id>bb173813</msdn-id>
  15983. <unmanaged>HRESULT ID3D10InfoQueue::SetMessageCountLimit([In] unsigned longlong MessageCountLimit)</unmanaged>
  15984. <unmanaged-short>ID3D10InfoQueue::SetMessageCountLimit</unmanaged-short>
  15985. </member>
  15986. <member name="M:SharpDX.Direct3D10.InfoQueue.ClearStoredMessages">
  15987. <summary>
  15988. <p>Clear all messages from the message queue.</p>
  15989. </summary>
  15990. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::ClearStoredMessages']/*" />
  15991. <msdn-id>bb173786</msdn-id>
  15992. <unmanaged>void ID3D10InfoQueue::ClearStoredMessages()</unmanaged>
  15993. <unmanaged-short>ID3D10InfoQueue::ClearStoredMessages</unmanaged-short>
  15994. </member>
  15995. <member name="M:SharpDX.Direct3D10.InfoQueue.GetMessage(System.Int64,System.IntPtr,SharpDX.PointerSize@)">
  15996. <summary>
  15997. <p>Get a message from the message queue.</p>
  15998. </summary>
  15999. <param name="messageIndex"><dd> <p>Index into message queue after an optional retrieval filter has been applied. This can be between 0 and the number of messages in the message queue that pass through the retrieval filter (which can be obtained with <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.GetNumStoredMessagesAllowedByRetrievalFilter" /></strong>). 0 is the message at the front of the message queue.</p> </dd></param>
  16000. <param name="messageRef"><dd> <p>Returned message (see <strong><see cref="T:SharpDX.Direct3D10.Message" /></strong>).</p> </dd></param>
  16001. <param name="messageByteLengthRef"><dd> <p>Size of pMessage in bytes, including the size of the message string that the pMessage points to.</p> </dd></param>
  16002. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16003. <remarks>
  16004. <p>This method does not remove any messages from the message queue.</p><p>This method gets messages from the message queue after an optional retrieval filter has been applied.</p><p>Applications should call this method twice to retrieve a message - first to obtain the size of the message and second to get the message. Here is a typical example:</p><pre> // Get the size of the message
  16005. <see cref="T:SharpDX.PointerSize" /> messageLength = 0;
  16006. <see cref="T:SharpDX.Result" /> hr = pInfoQueue-&gt;GetMessage(0, <c>null</c>, &amp;messageLength); // Allocate space and get the message
  16007. <see cref="T:SharpDX.Direct3D10.Message" /> * pMessage = (<see cref="T:SharpDX.Direct3D10.Message" />*)malloc(messageLength);
  16008. hr = pInfoQueue-&gt;GetMessage(0, pMessage, &amp;messageLength);
  16009. </pre><p>For an overview see <strong>Information Queue Overview</strong>.</p>
  16010. </remarks>
  16011. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetMessage']/*" />
  16012. <msdn-id>bb173790</msdn-id>
  16013. <unmanaged>HRESULT ID3D10InfoQueue::GetMessage([In] unsigned longlong MessageIndex,[In] void* pMessage,[InOut] SIZE_T* pMessageByteLength)</unmanaged>
  16014. <unmanaged-short>ID3D10InfoQueue::GetMessage</unmanaged-short>
  16015. </member>
  16016. <member name="M:SharpDX.Direct3D10.InfoQueue.GetNumMessagesAllowedByStorageFilter">
  16017. <summary>
  16018. <p>Get the number of messages that were allowed to pass through a storage filter.</p>
  16019. </summary>
  16020. <returns><p>Number of messages allowed by a storage filter.</p></returns>
  16021. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetNumMessagesAllowedByStorageFilter']/*" />
  16022. <msdn-id>bb173793</msdn-id>
  16023. <unmanaged>unsigned longlong ID3D10InfoQueue::GetNumMessagesAllowedByStorageFilter()</unmanaged>
  16024. <unmanaged-short>ID3D10InfoQueue::GetNumMessagesAllowedByStorageFilter</unmanaged-short>
  16025. </member>
  16026. <member name="M:SharpDX.Direct3D10.InfoQueue.GetNumMessagesDeniedByStorageFilter">
  16027. <summary>
  16028. <p>Get the number of messages that were denied passage through a storage filter.</p>
  16029. </summary>
  16030. <returns><p>Number of messages denied by a storage filter.</p></returns>
  16031. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetNumMessagesDeniedByStorageFilter']/*" />
  16032. <msdn-id>bb173794</msdn-id>
  16033. <unmanaged>unsigned longlong ID3D10InfoQueue::GetNumMessagesDeniedByStorageFilter()</unmanaged>
  16034. <unmanaged-short>ID3D10InfoQueue::GetNumMessagesDeniedByStorageFilter</unmanaged-short>
  16035. </member>
  16036. <member name="M:SharpDX.Direct3D10.InfoQueue.GetNumStoredMessages">
  16037. <summary>
  16038. <p>Get the number of messages currently stored in the message queue.</p>
  16039. </summary>
  16040. <returns><p>Number of messages currently stored in the message queue.</p></returns>
  16041. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetNumStoredMessages']/*" />
  16042. <msdn-id>bb173796</msdn-id>
  16043. <unmanaged>unsigned longlong ID3D10InfoQueue::GetNumStoredMessages()</unmanaged>
  16044. <unmanaged-short>ID3D10InfoQueue::GetNumStoredMessages</unmanaged-short>
  16045. </member>
  16046. <member name="M:SharpDX.Direct3D10.InfoQueue.GetNumStoredMessagesAllowedByRetrievalFilter">
  16047. <summary>
  16048. <p>Get the number of messages that are able to pass through a retrieval filter.</p>
  16049. </summary>
  16050. <returns><p>Number of messages allowed by a retrieval filter.</p></returns>
  16051. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetNumStoredMessagesAllowedByRetrievalFilter']/*" />
  16052. <msdn-id>bb173797</msdn-id>
  16053. <unmanaged>unsigned longlong ID3D10InfoQueue::GetNumStoredMessagesAllowedByRetrievalFilter()</unmanaged>
  16054. <unmanaged-short>ID3D10InfoQueue::GetNumStoredMessagesAllowedByRetrievalFilter</unmanaged-short>
  16055. </member>
  16056. <member name="M:SharpDX.Direct3D10.InfoQueue.GetNumMessagesDiscardedByMessageCountLimit">
  16057. <summary>
  16058. <p>Get the number of messages that were discarded due to the message count limit.</p>
  16059. </summary>
  16060. <returns><p>Number of messages discarded.</p></returns>
  16061. <remarks>
  16062. <p>Get and set the message count limit with <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.GetMessageCountLimit" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.SetMessageCountLimit(System.Int64)" /></strong>, respectively.</p>
  16063. </remarks>
  16064. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetNumMessagesDiscardedByMessageCountLimit']/*" />
  16065. <msdn-id>bb173795</msdn-id>
  16066. <unmanaged>unsigned longlong ID3D10InfoQueue::GetNumMessagesDiscardedByMessageCountLimit()</unmanaged>
  16067. <unmanaged-short>ID3D10InfoQueue::GetNumMessagesDiscardedByMessageCountLimit</unmanaged-short>
  16068. </member>
  16069. <member name="M:SharpDX.Direct3D10.InfoQueue.GetMessageCountLimit">
  16070. <summary>
  16071. <p>Get the maximum number of messages that can be added to the message queue.</p>
  16072. </summary>
  16073. <returns><p>Maximum number of messages that can be added to the queue. -1 means no limit.</p></returns>
  16074. <remarks>
  16075. <p>When the number of messages in the message queue has reached the maximum limit, new messages coming in will push old messages out.</p>
  16076. </remarks>
  16077. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetMessageCountLimit']/*" />
  16078. <msdn-id>bb173791</msdn-id>
  16079. <unmanaged>unsigned longlong ID3D10InfoQueue::GetMessageCountLimit()</unmanaged>
  16080. <unmanaged-short>ID3D10InfoQueue::GetMessageCountLimit</unmanaged-short>
  16081. </member>
  16082. <member name="M:SharpDX.Direct3D10.InfoQueue.AddStorageFilterEntries(SharpDX.Direct3D10.InfoQueueFilter)">
  16083. <summary>
  16084. <p>Add storage filters to the top of the storage-filter stack.</p>
  16085. </summary>
  16086. <param name="filterRef"><dd> <p>Array of storage filters (see <strong><see cref="T:SharpDX.Direct3D10.InfoQueueFilter" /></strong>).</p> </dd></param>
  16087. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16088. <remarks>
  16089. <p>A storage filter defines a grouping of debug messages that should be allowed into the info queue.</p>
  16090. </remarks>
  16091. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::AddStorageFilterEntries']/*" />
  16092. <msdn-id>bb173783</msdn-id>
  16093. <unmanaged>HRESULT ID3D10InfoQueue::AddStorageFilterEntries([In] D3D10_INFO_QUEUE_FILTER* pFilter)</unmanaged>
  16094. <unmanaged-short>ID3D10InfoQueue::AddStorageFilterEntries</unmanaged-short>
  16095. </member>
  16096. <member name="M:SharpDX.Direct3D10.InfoQueue.GetStorageFilter(System.IntPtr,SharpDX.PointerSize@)">
  16097. <summary>
  16098. <p>Get the storage filter at the top of the storage-filter stack.</p>
  16099. </summary>
  16100. <param name="filterRef"><dd> <p>Storage filter at the top of the storage-filter stack.</p> </dd></param>
  16101. <param name="filterByteLengthRef"><dd> <p>Size of the storage filter in bytes. If pFilter is <strong><c>null</c></strong>, the size of the storage filter will be output to this parameter.</p> </dd></param>
  16102. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16103. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetStorageFilter']/*" />
  16104. <msdn-id>bb173800</msdn-id>
  16105. <unmanaged>HRESULT ID3D10InfoQueue::GetStorageFilter([In] void* pFilter,[InOut] SIZE_T* pFilterByteLength)</unmanaged>
  16106. <unmanaged-short>ID3D10InfoQueue::GetStorageFilter</unmanaged-short>
  16107. </member>
  16108. <member name="M:SharpDX.Direct3D10.InfoQueue.ClearStorageFilter">
  16109. <summary>
  16110. <p>Remove a storage filter from the top of the storage-filter stack.</p>
  16111. </summary>
  16112. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::ClearStorageFilter']/*" />
  16113. <msdn-id>bb173785</msdn-id>
  16114. <unmanaged>void ID3D10InfoQueue::ClearStorageFilter()</unmanaged>
  16115. <unmanaged-short>ID3D10InfoQueue::ClearStorageFilter</unmanaged-short>
  16116. </member>
  16117. <member name="M:SharpDX.Direct3D10.InfoQueue.PushEmptyStorageFilter">
  16118. <summary>
  16119. <p>Push an empty storage filter onto the storage-filter stack.</p>
  16120. </summary>
  16121. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16122. <remarks>
  16123. <p>An empty storage filter allows all messages to pass through.</p>
  16124. </remarks>
  16125. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::PushEmptyStorageFilter']/*" />
  16126. <msdn-id>bb173807</msdn-id>
  16127. <unmanaged>HRESULT ID3D10InfoQueue::PushEmptyStorageFilter()</unmanaged>
  16128. <unmanaged-short>ID3D10InfoQueue::PushEmptyStorageFilter</unmanaged-short>
  16129. </member>
  16130. <member name="M:SharpDX.Direct3D10.InfoQueue.PushCopyOfStorageFilter">
  16131. <summary>
  16132. <p>Push a copy of storage filter currently on the top of the storage-filter stack onto the storage-filter stack.</p>
  16133. </summary>
  16134. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16135. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::PushCopyOfStorageFilter']/*" />
  16136. <msdn-id>bb173805</msdn-id>
  16137. <unmanaged>HRESULT ID3D10InfoQueue::PushCopyOfStorageFilter()</unmanaged>
  16138. <unmanaged-short>ID3D10InfoQueue::PushCopyOfStorageFilter</unmanaged-short>
  16139. </member>
  16140. <member name="M:SharpDX.Direct3D10.InfoQueue.PushStorageFilter(SharpDX.Direct3D10.InfoQueueFilter)">
  16141. <summary>
  16142. <p>Push a storage filter onto the storage-filter stack.</p>
  16143. </summary>
  16144. <param name="filterRef"><dd> <p>Pointer to a storage filter (see <strong><see cref="T:SharpDX.Direct3D10.InfoQueueFilter" /></strong>).</p> </dd></param>
  16145. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16146. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::PushStorageFilter']/*" />
  16147. <msdn-id>bb173809</msdn-id>
  16148. <unmanaged>HRESULT ID3D10InfoQueue::PushStorageFilter([In] D3D10_INFO_QUEUE_FILTER* pFilter)</unmanaged>
  16149. <unmanaged-short>ID3D10InfoQueue::PushStorageFilter</unmanaged-short>
  16150. </member>
  16151. <member name="M:SharpDX.Direct3D10.InfoQueue.PopStorageFilter">
  16152. <summary>
  16153. <p>Pop a storage filter from the top of the storage-filter stack.</p>
  16154. </summary>
  16155. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::PopStorageFilter']/*" />
  16156. <msdn-id>bb173803</msdn-id>
  16157. <unmanaged>void ID3D10InfoQueue::PopStorageFilter()</unmanaged>
  16158. <unmanaged-short>ID3D10InfoQueue::PopStorageFilter</unmanaged-short>
  16159. </member>
  16160. <member name="M:SharpDX.Direct3D10.InfoQueue.GetStorageFilterStackSize">
  16161. <summary>
  16162. <p>Get the size of the storage-filter stack in bytes.</p>
  16163. </summary>
  16164. <returns><p>Size of the storage-filter stack in bytes.</p></returns>
  16165. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetStorageFilterStackSize']/*" />
  16166. <msdn-id>bb173801</msdn-id>
  16167. <unmanaged>unsigned int ID3D10InfoQueue::GetStorageFilterStackSize()</unmanaged>
  16168. <unmanaged-short>ID3D10InfoQueue::GetStorageFilterStackSize</unmanaged-short>
  16169. </member>
  16170. <member name="M:SharpDX.Direct3D10.InfoQueue.AddRetrievalFilterEntries(SharpDX.Direct3D10.InfoQueueFilter)">
  16171. <summary>
  16172. <p>Add storage filters to the top of the retrieval-filter stack.</p>
  16173. </summary>
  16174. <param name="filterRef"><dd> <p>Array of retrieval filters (see <strong><see cref="T:SharpDX.Direct3D10.InfoQueueFilter" /></strong>).</p> </dd></param>
  16175. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16176. <remarks>
  16177. <p>A retrieval filter is used to define a subgroup of the messages that are already in the info queue. Retrieval filters affect the messages that will be returned by <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.GetMessage(System.Int64,System.IntPtr,SharpDX.PointerSize@)" /></strong>.</p><p>The number of messages already in the info queue that will be allowed through the retrieval filter can be determined by calling <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.GetNumStoredMessagesAllowedByRetrievalFilter" /></strong>.</p>
  16178. </remarks>
  16179. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::AddRetrievalFilterEntries']/*" />
  16180. <msdn-id>bb173782</msdn-id>
  16181. <unmanaged>HRESULT ID3D10InfoQueue::AddRetrievalFilterEntries([In] D3D10_INFO_QUEUE_FILTER* pFilter)</unmanaged>
  16182. <unmanaged-short>ID3D10InfoQueue::AddRetrievalFilterEntries</unmanaged-short>
  16183. </member>
  16184. <member name="M:SharpDX.Direct3D10.InfoQueue.GetRetrievalFilter(System.IntPtr,SharpDX.PointerSize@)">
  16185. <summary>
  16186. <p>Get the retrieval filter at the top of the retrieval-filter stack.</p>
  16187. </summary>
  16188. <param name="filterRef"><dd> <p>Retrieval filter at the top of the retrieval-filter stack.</p> </dd></param>
  16189. <param name="filterByteLengthRef"><dd> <p>Size of the retrieval filter in bytes. If pFilter is <strong><c>null</c></strong>, the size of the retrieval filter will be output to this parameter.</p> </dd></param>
  16190. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16191. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetRetrievalFilter']/*" />
  16192. <msdn-id>bb173798</msdn-id>
  16193. <unmanaged>HRESULT ID3D10InfoQueue::GetRetrievalFilter([In] void* pFilter,[InOut] SIZE_T* pFilterByteLength)</unmanaged>
  16194. <unmanaged-short>ID3D10InfoQueue::GetRetrievalFilter</unmanaged-short>
  16195. </member>
  16196. <member name="M:SharpDX.Direct3D10.InfoQueue.ClearRetrievalFilter">
  16197. <summary>
  16198. <p>Remove a retrieval filter from the top of the retrieval-filter stack.</p>
  16199. </summary>
  16200. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::ClearRetrievalFilter']/*" />
  16201. <msdn-id>bb173784</msdn-id>
  16202. <unmanaged>void ID3D10InfoQueue::ClearRetrievalFilter()</unmanaged>
  16203. <unmanaged-short>ID3D10InfoQueue::ClearRetrievalFilter</unmanaged-short>
  16204. </member>
  16205. <member name="M:SharpDX.Direct3D10.InfoQueue.PushEmptyRetrievalFilter">
  16206. <summary>
  16207. <p>Push an empty retrieval filter onto the retrieval-filter stack.</p>
  16208. </summary>
  16209. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16210. <remarks>
  16211. <p>An empty retrieval filter allows all messages to pass through.</p>
  16212. </remarks>
  16213. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::PushEmptyRetrievalFilter']/*" />
  16214. <msdn-id>bb173806</msdn-id>
  16215. <unmanaged>HRESULT ID3D10InfoQueue::PushEmptyRetrievalFilter()</unmanaged>
  16216. <unmanaged-short>ID3D10InfoQueue::PushEmptyRetrievalFilter</unmanaged-short>
  16217. </member>
  16218. <member name="M:SharpDX.Direct3D10.InfoQueue.PushCopyOfRetrievalFilter">
  16219. <summary>
  16220. <p>Push a copy of retrieval filter currently on the top of the retrieval-filter stack onto the retrieval-filter stack.</p>
  16221. </summary>
  16222. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16223. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::PushCopyOfRetrievalFilter']/*" />
  16224. <msdn-id>bb173804</msdn-id>
  16225. <unmanaged>HRESULT ID3D10InfoQueue::PushCopyOfRetrievalFilter()</unmanaged>
  16226. <unmanaged-short>ID3D10InfoQueue::PushCopyOfRetrievalFilter</unmanaged-short>
  16227. </member>
  16228. <member name="M:SharpDX.Direct3D10.InfoQueue.PushRetrievalFilter(SharpDX.Direct3D10.InfoQueueFilter)">
  16229. <summary>
  16230. <p>Push a retrieval filter onto the retrieval-filter stack.</p>
  16231. </summary>
  16232. <param name="filterRef"><dd> <p>Pointer to a retrieval filter (see <strong><see cref="T:SharpDX.Direct3D10.InfoQueueFilter" /></strong>).</p> </dd></param>
  16233. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16234. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::PushRetrievalFilter']/*" />
  16235. <msdn-id>bb173808</msdn-id>
  16236. <unmanaged>HRESULT ID3D10InfoQueue::PushRetrievalFilter([In] D3D10_INFO_QUEUE_FILTER* pFilter)</unmanaged>
  16237. <unmanaged-short>ID3D10InfoQueue::PushRetrievalFilter</unmanaged-short>
  16238. </member>
  16239. <member name="M:SharpDX.Direct3D10.InfoQueue.PopRetrievalFilter">
  16240. <summary>
  16241. <p>Pop a retrieval filter from the top of the retrieval-filter stack.</p>
  16242. </summary>
  16243. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::PopRetrievalFilter']/*" />
  16244. <msdn-id>bb173802</msdn-id>
  16245. <unmanaged>void ID3D10InfoQueue::PopRetrievalFilter()</unmanaged>
  16246. <unmanaged-short>ID3D10InfoQueue::PopRetrievalFilter</unmanaged-short>
  16247. </member>
  16248. <member name="M:SharpDX.Direct3D10.InfoQueue.GetRetrievalFilterStackSize">
  16249. <summary>
  16250. <p>Get the size of the retrieval-filter stack in bytes.</p>
  16251. </summary>
  16252. <returns><p>Size of the retrieval-filter stack in bytes.</p></returns>
  16253. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetRetrievalFilterStackSize']/*" />
  16254. <msdn-id>bb173799</msdn-id>
  16255. <unmanaged>unsigned int ID3D10InfoQueue::GetRetrievalFilterStackSize()</unmanaged>
  16256. <unmanaged-short>ID3D10InfoQueue::GetRetrievalFilterStackSize</unmanaged-short>
  16257. </member>
  16258. <member name="M:SharpDX.Direct3D10.InfoQueue.AddMessage(SharpDX.Direct3D10.MessageCategory,SharpDX.Direct3D10.MessageSeverity,SharpDX.Direct3D10.MessageId,System.String)">
  16259. <summary>
  16260. <p>Add a Direct3D 10 debug message to the message queue and send that message to debug output.</p>
  16261. </summary>
  16262. <param name="category"><dd> <p>Category of a message (see <strong><see cref="T:SharpDX.Direct3D10.MessageCategory" /></strong>).</p> </dd></param>
  16263. <param name="severity"><dd> <p>Severity of a message (see <strong><see cref="T:SharpDX.Direct3D10.MessageSeverity" /></strong>).</p> </dd></param>
  16264. <param name="id"><dd> <p>Unique identifier of a message (see <strong><see cref="T:SharpDX.Direct3D10.MessageId" /></strong>).</p> </dd></param>
  16265. <param name="descriptionRef"><dd> <p>User-defined message.</p> </dd></param>
  16266. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16267. <remarks>
  16268. <p>This method is used by the runtime's internal mechanisms to add Direct3D 10 debug messages to the message queue and send them to debug output. For applications to add their own custom messages to the message queue and send them to debug output, call <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.AddApplicationMessage(SharpDX.Direct3D10.MessageSeverity,System.String)" /></strong>.</p>
  16269. </remarks>
  16270. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::AddMessage']/*" />
  16271. <msdn-id>bb173781</msdn-id>
  16272. <unmanaged>HRESULT ID3D10InfoQueue::AddMessage([In] D3D10_MESSAGE_CATEGORY Category,[In] D3D10_MESSAGE_SEVERITY Severity,[In] D3D10_MESSAGE_ID ID,[In] const char* pDescription)</unmanaged>
  16273. <unmanaged-short>ID3D10InfoQueue::AddMessage</unmanaged-short>
  16274. </member>
  16275. <member name="M:SharpDX.Direct3D10.InfoQueue.AddApplicationMessage(SharpDX.Direct3D10.MessageSeverity,System.String)">
  16276. <summary>
  16277. <p>Add a user-defined message to the message queue and send that message to debug output.</p>
  16278. </summary>
  16279. <param name="severity"><dd> <p>Severity of a message (see <strong><see cref="T:SharpDX.Direct3D10.MessageSeverity" /></strong>).</p> </dd></param>
  16280. <param name="descriptionRef"><dd> <p>Message string.</p> </dd></param>
  16281. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16282. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::AddApplicationMessage']/*" />
  16283. <msdn-id>bb173780</msdn-id>
  16284. <unmanaged>HRESULT ID3D10InfoQueue::AddApplicationMessage([In] D3D10_MESSAGE_SEVERITY Severity,[In] const char* pDescription)</unmanaged>
  16285. <unmanaged-short>ID3D10InfoQueue::AddApplicationMessage</unmanaged-short>
  16286. </member>
  16287. <member name="M:SharpDX.Direct3D10.InfoQueue.SetBreakOnCategory(SharpDX.Direct3D10.MessageCategory,SharpDX.Mathematics.Interop.RawBool)">
  16288. <summary>
  16289. <p>Set a message category to break on when a message with that category passes through the storage filter.</p>
  16290. </summary>
  16291. <param name="category"><dd> <p>Message category to break on (see <strong><see cref="T:SharpDX.Direct3D10.MessageCategory" /></strong>).</p> </dd></param>
  16292. <param name="bEnable"><dd> <p>Turns this breaking condition on or off (true for on, false for off).</p> </dd></param>
  16293. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16294. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::SetBreakOnCategory']/*" />
  16295. <msdn-id>bb173810</msdn-id>
  16296. <unmanaged>HRESULT ID3D10InfoQueue::SetBreakOnCategory([In] D3D10_MESSAGE_CATEGORY Category,[In] BOOL bEnable)</unmanaged>
  16297. <unmanaged-short>ID3D10InfoQueue::SetBreakOnCategory</unmanaged-short>
  16298. </member>
  16299. <member name="M:SharpDX.Direct3D10.InfoQueue.SetBreakOnSeverity(SharpDX.Direct3D10.MessageSeverity,SharpDX.Mathematics.Interop.RawBool)">
  16300. <summary>
  16301. <p>Set a message severity level to break on when a message with that severity level passes through the storage filter.</p>
  16302. </summary>
  16303. <param name="severity"><dd> <p>Message severity level to break on (see <strong><see cref="T:SharpDX.Direct3D10.MessageSeverity" /></strong>).</p> </dd></param>
  16304. <param name="bEnable"><dd> <p>Turns this breaking condition on or off (true for on, false for off).</p> </dd></param>
  16305. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16306. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::SetBreakOnSeverity']/*" />
  16307. <msdn-id>bb173812</msdn-id>
  16308. <unmanaged>HRESULT ID3D10InfoQueue::SetBreakOnSeverity([In] D3D10_MESSAGE_SEVERITY Severity,[In] BOOL bEnable)</unmanaged>
  16309. <unmanaged-short>ID3D10InfoQueue::SetBreakOnSeverity</unmanaged-short>
  16310. </member>
  16311. <member name="M:SharpDX.Direct3D10.InfoQueue.SetBreakOnID(SharpDX.Direct3D10.MessageId,SharpDX.Mathematics.Interop.RawBool)">
  16312. <summary>
  16313. <p>Set a message identifier to break on when a message with that identifier passes through the storage filter.</p>
  16314. </summary>
  16315. <param name="id"><dd> <p>Message identifier to break on (see <strong><see cref="T:SharpDX.Direct3D10.MessageId" /></strong>).</p> </dd></param>
  16316. <param name="bEnable"><dd> <p>Turns this breaking condition on or off (true for on, false for off).</p> </dd></param>
  16317. <returns><p>This method returns one of the following Direct3D 10 Return Codes.</p></returns>
  16318. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::SetBreakOnID']/*" />
  16319. <msdn-id>bb173811</msdn-id>
  16320. <unmanaged>HRESULT ID3D10InfoQueue::SetBreakOnID([In] D3D10_MESSAGE_ID ID,[In] BOOL bEnable)</unmanaged>
  16321. <unmanaged-short>ID3D10InfoQueue::SetBreakOnID</unmanaged-short>
  16322. </member>
  16323. <member name="M:SharpDX.Direct3D10.InfoQueue.GetBreakOnCategory(SharpDX.Direct3D10.MessageCategory)">
  16324. <summary>
  16325. <p>Get a message category to break on when a message with that category passes through the storage filter.</p>
  16326. </summary>
  16327. <param name="category"><dd> <p>Message category to break on (see <strong><see cref="T:SharpDX.Direct3D10.MessageCategory" /></strong>).</p> </dd></param>
  16328. <returns><p>Whether this breaking condition is turned on or off (true for on, false for off).</p></returns>
  16329. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetBreakOnCategory']/*" />
  16330. <msdn-id>bb173787</msdn-id>
  16331. <unmanaged>BOOL ID3D10InfoQueue::GetBreakOnCategory([In] D3D10_MESSAGE_CATEGORY Category)</unmanaged>
  16332. <unmanaged-short>ID3D10InfoQueue::GetBreakOnCategory</unmanaged-short>
  16333. </member>
  16334. <member name="M:SharpDX.Direct3D10.InfoQueue.GetBreakOnSeverity(SharpDX.Direct3D10.MessageSeverity)">
  16335. <summary>
  16336. <p>Get a message severity level to break on when a message with that severity level passes through the storage filter.</p>
  16337. </summary>
  16338. <param name="severity"><dd> <p>Message severity level to break on (see <strong><see cref="T:SharpDX.Direct3D10.MessageSeverity" /></strong>).</p> </dd></param>
  16339. <returns><p>Whether this breaking condition is turned on or off (true for on, false for off).</p></returns>
  16340. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetBreakOnSeverity']/*" />
  16341. <msdn-id>bb173789</msdn-id>
  16342. <unmanaged>BOOL ID3D10InfoQueue::GetBreakOnSeverity([In] D3D10_MESSAGE_SEVERITY Severity)</unmanaged>
  16343. <unmanaged-short>ID3D10InfoQueue::GetBreakOnSeverity</unmanaged-short>
  16344. </member>
  16345. <member name="M:SharpDX.Direct3D10.InfoQueue.GetBreakOnID(SharpDX.Direct3D10.MessageId)">
  16346. <summary>
  16347. <p>Get a message identifier to break on when a message with that identifier passes through the storage filter.</p>
  16348. </summary>
  16349. <param name="id"><dd> <p>Message identifier to break on (see <strong><see cref="T:SharpDX.Direct3D10.MessageId" /></strong>).</p> </dd></param>
  16350. <returns><p>Whether this breaking condition is turned on or off (true for on, false for off).</p></returns>
  16351. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetBreakOnID']/*" />
  16352. <msdn-id>bb173788</msdn-id>
  16353. <unmanaged>BOOL ID3D10InfoQueue::GetBreakOnID([In] D3D10_MESSAGE_ID ID)</unmanaged>
  16354. <unmanaged-short>ID3D10InfoQueue::GetBreakOnID</unmanaged-short>
  16355. </member>
  16356. <member name="M:SharpDX.Direct3D10.InfoQueue.SetMuteDebugOutput(SharpDX.Mathematics.Interop.RawBool)">
  16357. <summary>
  16358. <p>Set a boolean that turns the debug output on or off.</p>
  16359. </summary>
  16360. <param name="bMute"><dd> <p>Disable/Enable the debug output (<strong>TRUE</strong> to disable or mute the output, <strong><see cref="F:SharpDX.Result.False" /></strong> to enable the output).</p> </dd></param>
  16361. <remarks>
  16362. <p>This will stop messages that pass the storage filter from being printed out in the debug output, however those messages will still be added to the message queue.</p>
  16363. </remarks>
  16364. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::SetMuteDebugOutput']/*" />
  16365. <msdn-id>bb173814</msdn-id>
  16366. <unmanaged>void ID3D10InfoQueue::SetMuteDebugOutput([In] BOOL bMute)</unmanaged>
  16367. <unmanaged-short>ID3D10InfoQueue::SetMuteDebugOutput</unmanaged-short>
  16368. </member>
  16369. <member name="M:SharpDX.Direct3D10.InfoQueue.GetMuteDebugOutput">
  16370. <summary>
  16371. <p>Get a boolean that turns the debug output on or off.</p>
  16372. </summary>
  16373. <returns><p>Whether the debug output is on or off (true for on, false for off).</p></returns>
  16374. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetMuteDebugOutput']/*" />
  16375. <msdn-id>bb173792</msdn-id>
  16376. <unmanaged>BOOL ID3D10InfoQueue::GetMuteDebugOutput()</unmanaged>
  16377. <unmanaged-short>ID3D10InfoQueue::GetMuteDebugOutput</unmanaged-short>
  16378. </member>
  16379. <member name="M:SharpDX.Direct3D10.InfoQueue.GetMessage(System.Int64)">
  16380. <summary>
  16381. No documentation.
  16382. </summary>
  16383. <param name="messageIndex">No documentation.</param>
  16384. <returns>No documentation.</returns>
  16385. <!-- Failed to insert some or all of included XML --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetMessageW']/*" />
  16386. <unmanaged>HRESULT ID3D10InfoQueue::GetMessageW([In] unsigned longlong MessageIndex,[Out, Buffer, Optional] D3D10_MESSAGE* pMessage,[InOut] SIZE_T* pMessageByteLength)</unmanaged>
  16387. </member>
  16388. <member name="M:SharpDX.Direct3D10.InfoQueue.GetStorageFilter">
  16389. <summary>
  16390. No documentation.
  16391. </summary>
  16392. <returns>No documentation.</returns>
  16393. <!-- Failed to insert some or all of included XML --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetStorageFilter']/*" />
  16394. <unmanaged>HRESULT ID3D10InfoQueue::GetStorageFilter([Out, Buffer, Optional] D3D10_INFO_QUEUE_FILTER* pFilter,[InOut] SIZE_T* pFilterByteLength)</unmanaged>
  16395. </member>
  16396. <member name="M:SharpDX.Direct3D10.InfoQueue.GetRetrievalFilter">
  16397. <summary>
  16398. No documentation.
  16399. </summary>
  16400. <returns>No documentation.</returns>
  16401. <!-- Failed to insert some or all of included XML --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InfoQueue::GetRetrievalFilter']/*" />
  16402. <unmanaged>HRESULT ID3D10InfoQueue::GetRetrievalFilter([Out, Buffer, Optional] D3D10_INFO_QUEUE_FILTER* pFilter,[InOut] SIZE_T* pFilterByteLength)</unmanaged>
  16403. </member>
  16404. <member name="T:SharpDX.Direct3D10.InputLayout">
  16405. <summary>
  16406. <p>An input-layout interface accesses the input data for the input-assembler stage.</p>
  16407. </summary>
  16408. <remarks>
  16409. <p>This interface is created by calling <strong><see cref="M:SharpDX.Direct3D10.Device.CreateInputLayout(SharpDX.Direct3D10.InputElement[],System.Int32,System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.InputLayout)" /></strong>; use <strong><see cref="M:SharpDX.Direct3D10.InputAssemblerStage.SetInputLayout(SharpDX.Direct3D10.InputLayout)" /></strong> to bind it to the graphics pipeline.</p>
  16410. </remarks>
  16411. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10InputLayout']/*" />
  16412. <msdn-id>bb173815</msdn-id>
  16413. <unmanaged>ID3D10InputLayout</unmanaged>
  16414. <unmanaged-short>ID3D10InputLayout</unmanaged-short>
  16415. </member>
  16416. <member name="M:SharpDX.Direct3D10.InputLayout.#ctor(System.IntPtr)">
  16417. <summary>
  16418. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.InputLayout"/> class.
  16419. </summary>
  16420. <param name="nativePtr">The native pointer.</param>
  16421. </member>
  16422. <member name="M:SharpDX.Direct3D10.InputLayout.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.InputLayout">
  16423. <summary>
  16424. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.InputLayout"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  16425. </summary>
  16426. <param name="nativePointer">The native pointer.</param>
  16427. <returns>
  16428. The result of the conversion.
  16429. </returns>
  16430. </member>
  16431. <member name="M:SharpDX.Direct3D10.InputLayout.#ctor(SharpDX.Direct3D10.Device,System.Byte[],SharpDX.Direct3D10.InputElement[])">
  16432. <summary>
  16433. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.InputLayout" /> object to describe the
  16434. input-buffer data for the input-assembler stage.
  16435. </summary>
  16436. <unmanaged>ID3D10Device::CreateInputLayout</unmanaged>
  16437. <param name = "device">The device used to create the layout.</param>
  16438. <param name = "elements">An array of input elements describing the layout of the input data.</param>
  16439. <param name = "shaderBytecode">The compiled shader used to validate the input elements.</param>
  16440. </member>
  16441. <member name="T:SharpDX.Direct3D10.Mesh">
  16442. <summary>
  16443. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D10.Mesh" /> interface to manipulate mesh objects.</p>
  16444. </summary>
  16445. <remarks>
  16446. <p>To obtain the <see cref="T:SharpDX.Direct3D10.Mesh" /> interface, call <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateMesh(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.InputElement[],System.Int32,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D10.Mesh)" /></strong>.</p>
  16447. </remarks>
  16448. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh']/*" />
  16449. <msdn-id>bb173897</msdn-id>
  16450. <unmanaged>ID3DX10Mesh</unmanaged>
  16451. <unmanaged-short>ID3DX10Mesh</unmanaged-short>
  16452. </member>
  16453. <member name="M:SharpDX.Direct3D10.Mesh.#ctor(System.IntPtr)">
  16454. <summary>
  16455. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Mesh"/> class.
  16456. </summary>
  16457. <param name="nativePtr">The native pointer.</param>
  16458. </member>
  16459. <member name="M:SharpDX.Direct3D10.Mesh.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Mesh">
  16460. <summary>
  16461. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Mesh"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  16462. </summary>
  16463. <param name="nativePointer">The native pointer.</param>
  16464. <returns>
  16465. The result of the conversion.
  16466. </returns>
  16467. </member>
  16468. <member name="P:SharpDX.Direct3D10.Mesh.FaceCount">
  16469. <summary>
  16470. <p>Retrieves the number of faces in the mesh.</p>
  16471. </summary>
  16472. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetFaceCount']/*" />
  16473. <msdn-id>bb173915</msdn-id>
  16474. <unmanaged>GetFaceCount</unmanaged>
  16475. <unmanaged-short>GetFaceCount</unmanaged-short>
  16476. <unmanaged>unsigned int ID3DX10Mesh::GetFaceCount()</unmanaged>
  16477. </member>
  16478. <member name="P:SharpDX.Direct3D10.Mesh.VertexCount">
  16479. <summary>
  16480. <p>Get the number of vertices in the mesh. A mesh may contain multiple vertex buffers (i.e. one vertex buffer may contain all position data, another may contains all texture coordinate data, etc.), however each vertex buffer will contain the same number of elements.</p>
  16481. </summary>
  16482. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetVertexCount']/*" />
  16483. <msdn-id>bb173921</msdn-id>
  16484. <unmanaged>GetVertexCount</unmanaged>
  16485. <unmanaged-short>GetVertexCount</unmanaged-short>
  16486. <unmanaged>unsigned int ID3DX10Mesh::GetVertexCount()</unmanaged>
  16487. </member>
  16488. <member name="P:SharpDX.Direct3D10.Mesh.VertexBufferCount">
  16489. <summary>
  16490. <p>Get the number of vertex buffers in the mesh.</p>
  16491. </summary>
  16492. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetVertexBufferCount']/*" />
  16493. <msdn-id>bb173920</msdn-id>
  16494. <unmanaged>GetVertexBufferCount</unmanaged>
  16495. <unmanaged-short>GetVertexBufferCount</unmanaged-short>
  16496. <unmanaged>unsigned int ID3DX10Mesh::GetVertexBufferCount()</unmanaged>
  16497. </member>
  16498. <member name="M:SharpDX.Direct3D10.Mesh.GetFaceCount">
  16499. <summary>
  16500. <p>Retrieves the number of faces in the mesh.</p>
  16501. </summary>
  16502. <returns><p>Returns the number of faces in the mesh.</p></returns>
  16503. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetFaceCount']/*" />
  16504. <msdn-id>bb173915</msdn-id>
  16505. <unmanaged>unsigned int ID3DX10Mesh::GetFaceCount()</unmanaged>
  16506. <unmanaged-short>ID3DX10Mesh::GetFaceCount</unmanaged-short>
  16507. </member>
  16508. <member name="M:SharpDX.Direct3D10.Mesh.GetVertexCount">
  16509. <summary>
  16510. <p>Get the number of vertices in the mesh. A mesh may contain multiple vertex buffers (i.e. one vertex buffer may contain all position data, another may contains all texture coordinate data, etc.), however each vertex buffer will contain the same number of elements.</p>
  16511. </summary>
  16512. <returns><p>The number of vertices in the mesh.</p></returns>
  16513. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetVertexCount']/*" />
  16514. <msdn-id>bb173921</msdn-id>
  16515. <unmanaged>unsigned int ID3DX10Mesh::GetVertexCount()</unmanaged>
  16516. <unmanaged-short>ID3DX10Mesh::GetVertexCount</unmanaged-short>
  16517. </member>
  16518. <member name="M:SharpDX.Direct3D10.Mesh.GetVertexBufferCount">
  16519. <summary>
  16520. <p>Get the number of vertex buffers in the mesh.</p>
  16521. </summary>
  16522. <returns><p>The number of vertex buffers in the mesh.</p></returns>
  16523. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetVertexBufferCount']/*" />
  16524. <msdn-id>bb173920</msdn-id>
  16525. <unmanaged>unsigned int ID3DX10Mesh::GetVertexBufferCount()</unmanaged>
  16526. <unmanaged-short>ID3DX10Mesh::GetVertexBufferCount</unmanaged-short>
  16527. </member>
  16528. <member name="M:SharpDX.Direct3D10.Mesh.GetFlags">
  16529. <summary>
  16530. <p>Access the mesh's creation flags.</p>
  16531. </summary>
  16532. <returns><p>The creation flags passed into the <em>options</em> parameter of <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateMesh(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.InputElement[],System.Int32,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D10.Mesh)" /></strong> when the mesh was created. See <strong>D3DX10_MESH</strong>.</p></returns>
  16533. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetFlags']/*" />
  16534. <msdn-id>bb173916</msdn-id>
  16535. <unmanaged>unsigned int ID3DX10Mesh::GetFlags()</unmanaged>
  16536. <unmanaged-short>ID3DX10Mesh::GetFlags</unmanaged-short>
  16537. </member>
  16538. <member name="M:SharpDX.Direct3D10.Mesh.GetVertexDescription(SharpDX.Direct3D10.InputElement[],System.Int32)">
  16539. <summary>
  16540. <p>Access the vertex description passed into <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateMesh(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.InputElement[],System.Int32,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D10.Mesh)" /></strong>. The vertex description describes the layout of the mesh's vertex buffers.</p>
  16541. </summary>
  16542. <param name="descOut">No documentation.</param>
  16543. <param name="declCountRef">No documentation.</param>
  16544. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16545. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetVertexDescription']/*" />
  16546. <msdn-id>bb173922</msdn-id>
  16547. <unmanaged>HRESULT ID3DX10Mesh::GetVertexDescription([Out, Buffer] const D3D10_INPUT_ELEMENT_DESC** ppDesc,[In] unsigned int* pDeclCount)</unmanaged>
  16548. <unmanaged-short>ID3DX10Mesh::GetVertexDescription</unmanaged-short>
  16549. </member>
  16550. <member name="M:SharpDX.Direct3D10.Mesh.SetVertexData(System.Int32,System.IntPtr)">
  16551. <summary>
  16552. <p>Set vertex data into one of the mesh's vertex buffers.</p>
  16553. </summary>
  16554. <param name="iBuffer"><dd> <p>The vertex buffer to be filled with pData.</p> </dd></param>
  16555. <param name="dataRef"><dd> <p>The vertex data to set.</p> </dd></param>
  16556. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16557. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::SetVertexData']/*" />
  16558. <msdn-id>bb173931</msdn-id>
  16559. <unmanaged>HRESULT ID3DX10Mesh::SetVertexData([In] unsigned int iBuffer,[In] const void* pData)</unmanaged>
  16560. <unmanaged-short>ID3DX10Mesh::SetVertexData</unmanaged-short>
  16561. </member>
  16562. <member name="M:SharpDX.Direct3D10.Mesh.GetVertexBuffer(System.Int32)">
  16563. <summary>
  16564. <p>Retrieves the vertex buffer associated with the mesh.</p>
  16565. </summary>
  16566. <param name="iBuffer"><dd> <p>The vertex buffer to get. This is an index value.</p> </dd></param>
  16567. <returns><dd> <p>The vertex buffer. See <strong><see cref="T:SharpDX.Direct3D10.MeshBuffer" /></strong> </p> </dd></returns>
  16568. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetVertexBuffer']/*" />
  16569. <msdn-id>bb173919</msdn-id>
  16570. <unmanaged>HRESULT ID3DX10Mesh::GetVertexBuffer([In] unsigned int iBuffer,[In] ID3DX10MeshBuffer** ppVertexBuffer)</unmanaged>
  16571. <unmanaged-short>ID3DX10Mesh::GetVertexBuffer</unmanaged-short>
  16572. </member>
  16573. <member name="M:SharpDX.Direct3D10.Mesh.SetIndexData(System.IntPtr,System.Int32)">
  16574. <summary>
  16575. <p>Set the mesh's index data.</p>
  16576. </summary>
  16577. <param name="dataRef"><dd> <p>The index data.</p> </dd></param>
  16578. <param name="cIndices"><dd> <p>The number of indices in pData.</p> </dd></param>
  16579. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16580. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::SetIndexData']/*" />
  16581. <msdn-id>bb173929</msdn-id>
  16582. <unmanaged>HRESULT ID3DX10Mesh::SetIndexData([In] const void* pData,[In] unsigned int cIndices)</unmanaged>
  16583. <unmanaged-short>ID3DX10Mesh::SetIndexData</unmanaged-short>
  16584. </member>
  16585. <member name="M:SharpDX.Direct3D10.Mesh.GetIndexBuffer">
  16586. <summary>
  16587. <p>Retrieves the data in an index buffer.</p>
  16588. </summary>
  16589. <returns><dd> <p>Address of a reference to a <see cref="T:SharpDX.Direct3D10.MeshBuffer" /> interface, representing the index buffer associated with the mesh.</p> </dd></returns>
  16590. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetIndexBuffer']/*" />
  16591. <msdn-id>bb173917</msdn-id>
  16592. <unmanaged>HRESULT ID3DX10Mesh::GetIndexBuffer([In] ID3DX10MeshBuffer** ppIndexBuffer)</unmanaged>
  16593. <unmanaged-short>ID3DX10Mesh::GetIndexBuffer</unmanaged-short>
  16594. </member>
  16595. <member name="M:SharpDX.Direct3D10.Mesh.SetAttributeData(System.IntPtr)">
  16596. <summary>
  16597. <p>Set the mesh's attribute data.</p>
  16598. </summary>
  16599. <param name="dataRef"><dd> <p>The attribute data to set.</p> </dd></param>
  16600. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16601. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::SetAttributeData']/*" />
  16602. <msdn-id>bb173927</msdn-id>
  16603. <unmanaged>HRESULT ID3DX10Mesh::SetAttributeData([In] const void* pData)</unmanaged>
  16604. <unmanaged-short>ID3DX10Mesh::SetAttributeData</unmanaged-short>
  16605. </member>
  16606. <member name="M:SharpDX.Direct3D10.Mesh.GetAttributeBuffer(SharpDX.Direct3D10.MeshBuffer@)">
  16607. <summary>
  16608. <p>Access the mesh's attribute buffer.</p>
  16609. </summary>
  16610. <param name="attributeBufferOut"><dd> <p>The attribute buffer. See <strong><see cref="T:SharpDX.Direct3D10.MeshBuffer" /></strong>.</p> </dd></param>
  16611. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16612. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetAttributeBuffer']/*" />
  16613. <msdn-id>bb173911</msdn-id>
  16614. <unmanaged>HRESULT ID3DX10Mesh::GetAttributeBuffer([In] ID3DX10MeshBuffer** ppAttributeBuffer)</unmanaged>
  16615. <unmanaged-short>ID3DX10Mesh::GetAttributeBuffer</unmanaged-short>
  16616. </member>
  16617. <member name="M:SharpDX.Direct3D10.Mesh.SetAttributeTable(SharpDX.Direct3D10.MeshAttributeRange[],System.Int32)">
  16618. <summary>
  16619. <p>Sets the attribute table for a mesh and the number of entries stored in the table.</p>
  16620. </summary>
  16621. <param name="attribTableRef"><dd> <p>Pointer to an array of <see cref="T:SharpDX.Direct3D10.MeshAttributeRange" /> structures, representing the entries in the mesh attribute table.</p> </dd></param>
  16622. <param name="cAttribTableSize"><dd> <p>Number of attributes in the mesh attribute table.</p> </dd></param>
  16623. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16624. <remarks>
  16625. <p>If an application keeps track of the information in an attribute table, and rearranges the table as a result of changes to attributes or faces, this method allows the application to update the attribute tables instead of calling <see cref="M:SharpDX.Direct3D10.Mesh.Optimize(System.Int32,System.Int32[],System.IntPtr)" /> again.</p>
  16626. </remarks>
  16627. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::SetAttributeTable']/*" />
  16628. <msdn-id>bb173928</msdn-id>
  16629. <unmanaged>HRESULT ID3DX10Mesh::SetAttributeTable([In, Buffer] const D3DX10_ATTRIBUTE_RANGE* pAttribTable,[In] unsigned int cAttribTableSize)</unmanaged>
  16630. <unmanaged-short>ID3DX10Mesh::SetAttributeTable</unmanaged-short>
  16631. </member>
  16632. <member name="M:SharpDX.Direct3D10.Mesh.GetAttributeTable(SharpDX.Direct3D10.MeshAttributeRange[],System.Int32@)">
  16633. <summary>
  16634. <p>Retrieves either an attribute table for a mesh, or the number of entries stored in an attribute table for a mesh.</p>
  16635. </summary>
  16636. <param name="attribTableRef"><dd> <p>Pointer to an array of <see cref="T:SharpDX.Direct3D10.MeshAttributeRange" /> structures, representing the entries in the mesh's attribute table. Specify <strong><c>null</c></strong> to retrieve the value for pAttribTableSize.</p> </dd></param>
  16637. <param name="attribTableSizeRef"><dd> <p>Pointer to either the number of entries stored in pAttribTable or a value to be filled in with the number of entries stored in the attribute table for the mesh.</p> </dd></param>
  16638. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16639. <remarks>
  16640. <p>An attribute table is used to identify areas of the mesh that need to be drawn with different textures, render states, materials, and so on. In addition, the application can use the attribute table to hide portions of a mesh by not drawing a given attribute identifier when drawing the frame.</p>
  16641. </remarks>
  16642. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetAttributeTable']/*" />
  16643. <msdn-id>bb173912</msdn-id>
  16644. <unmanaged>HRESULT ID3DX10Mesh::GetAttributeTable([Out, Buffer, Optional] D3DX10_ATTRIBUTE_RANGE* pAttribTable,[InOut] unsigned int* pAttribTableSize)</unmanaged>
  16645. <unmanaged-short>ID3DX10Mesh::GetAttributeTable</unmanaged-short>
  16646. </member>
  16647. <member name="M:SharpDX.Direct3D10.Mesh.GenerateAdjacencyAndPointRepresentation(System.Single)">
  16648. <summary>
  16649. <p>Generate a list of mesh edges, as well as a list of faces that share each edge.</p>
  16650. </summary>
  16651. <param name="epsilon"><dd> <p>Specifies that vertices that differ in position by less than epsilon should be treated as coincident.</p> </dd></param>
  16652. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16653. <remarks>
  16654. <p>After an application generates adjacency information for a mesh, the mesh data can be optimized for better drawing performance.</p><p>The order of the entries in the adjacency buffer is determined by the order of the vertex indices in the index buffer. The adjacent triangle 0 always corresponds to the edge between the indices of the corners 0 and 1. The adjacent triangle 1 always corresponds to the edge between the indices of the corners 1 and 2 while the adjacent triangle 2 corresponds to the edge between the indices of the corners 2 and 0.</p>
  16655. </remarks>
  16656. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GenerateAdjacencyAndPointReps']/*" />
  16657. <msdn-id>bb173907</msdn-id>
  16658. <unmanaged>HRESULT ID3DX10Mesh::GenerateAdjacencyAndPointReps([In] float Epsilon)</unmanaged>
  16659. <unmanaged-short>ID3DX10Mesh::GenerateAdjacencyAndPointReps</unmanaged-short>
  16660. </member>
  16661. <member name="M:SharpDX.Direct3D10.Mesh.GenerateGeometryShaderAdjacency">
  16662. <summary>
  16663. <p>Adds adjacency data to the mesh's index buffer. When the mesh is to be sent to a geometry shader that takes adjacency data, it is neccessary for the mesh's index buffer to contain adjacency data.</p>
  16664. </summary>
  16665. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16666. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GenerateGSAdjacency']/*" />
  16667. <msdn-id>bb173909</msdn-id>
  16668. <unmanaged>HRESULT ID3DX10Mesh::GenerateGSAdjacency()</unmanaged>
  16669. <unmanaged-short>ID3DX10Mesh::GenerateGSAdjacency</unmanaged-short>
  16670. </member>
  16671. <member name="M:SharpDX.Direct3D10.Mesh.SetAdjacencyData(System.IntPtr)">
  16672. <summary>
  16673. <p>Set the mesh's adjacency data.</p>
  16674. </summary>
  16675. <param name="adjacencyRef"><dd> <p>The adjacency data to set.</p> </dd></param>
  16676. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16677. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::SetAdjacencyData']/*" />
  16678. <msdn-id>bb173926</msdn-id>
  16679. <unmanaged>HRESULT ID3DX10Mesh::SetAdjacencyData([In] const void* pAdjacency)</unmanaged>
  16680. <unmanaged-short>ID3DX10Mesh::SetAdjacencyData</unmanaged-short>
  16681. </member>
  16682. <member name="M:SharpDX.Direct3D10.Mesh.GetAdjacencyBuffer">
  16683. <summary>
  16684. <p>Access the mesh's adjacency buffer.</p>
  16685. </summary>
  16686. <returns><dd> <p>The adjacency buffer. See <strong><see cref="T:SharpDX.Direct3D10.MeshBuffer" /></strong>.</p> </dd></returns>
  16687. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetAdjacencyBuffer']/*" />
  16688. <msdn-id>bb173910</msdn-id>
  16689. <unmanaged>HRESULT ID3DX10Mesh::GetAdjacencyBuffer([In] ID3DX10MeshBuffer** ppAdjacency)</unmanaged>
  16690. <unmanaged-short>ID3DX10Mesh::GetAdjacencyBuffer</unmanaged-short>
  16691. </member>
  16692. <member name="M:SharpDX.Direct3D10.Mesh.SetPointRepData(System.IntPtr)">
  16693. <summary>
  16694. <p>Set the point rep data for the mesh.</p>
  16695. </summary>
  16696. <param name="pointRepsRef"><dd> <p>The point rep data to set.</p> </dd></param>
  16697. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16698. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::SetPointRepData']/*" />
  16699. <msdn-id>bb173930</msdn-id>
  16700. <unmanaged>HRESULT ID3DX10Mesh::SetPointRepData([In] const void* pPointReps)</unmanaged>
  16701. <unmanaged-short>ID3DX10Mesh::SetPointRepData</unmanaged-short>
  16702. </member>
  16703. <member name="M:SharpDX.Direct3D10.Mesh.GetPointRepBuffer(SharpDX.Direct3D10.MeshBuffer@)">
  16704. <summary>
  16705. <p>Get the mesh's point rep buffer.</p>
  16706. </summary>
  16707. <param name="pointRepsOut"><dd> <p>Pointer to a mesh buffer containing the mesh's point rep data. See <strong><see cref="T:SharpDX.Direct3D10.MeshBuffer" /></strong>.</p> </dd></param>
  16708. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16709. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetPointRepBuffer']/*" />
  16710. <msdn-id>bb173918</msdn-id>
  16711. <unmanaged>HRESULT ID3DX10Mesh::GetPointRepBuffer([In] ID3DX10MeshBuffer** ppPointReps)</unmanaged>
  16712. <unmanaged-short>ID3DX10Mesh::GetPointRepBuffer</unmanaged-short>
  16713. </member>
  16714. <member name="M:SharpDX.Direct3D10.Mesh.Discard(SharpDX.Direct3D10.MeshDiscardFlags)">
  16715. <summary>
  16716. <p>Removes mesh data from the device that has been committed to the device (with <strong><see cref="M:SharpDX.Direct3D10.Mesh.Commit" /></strong>).</p>
  16717. </summary>
  16718. <param name="dwDiscard">No documentation.</param>
  16719. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16720. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::Discard']/*" />
  16721. <msdn-id>bb173904</msdn-id>
  16722. <unmanaged>HRESULT ID3DX10Mesh::Discard([In] D3DX10_MESH_DISCARD_FLAGS dwDiscard)</unmanaged>
  16723. <unmanaged-short>ID3DX10Mesh::Discard</unmanaged-short>
  16724. </member>
  16725. <member name="M:SharpDX.Direct3D10.Mesh.CloneMesh(System.Int32,System.String,SharpDX.Direct3D10.InputElement[],System.Int32,SharpDX.Direct3D10.Mesh@)">
  16726. <summary>
  16727. <p>Creates a new mesh and fills it with the data of a previously loaded mesh.</p>
  16728. </summary>
  16729. <param name="flags"><dd> <p>Creation flags to be applied to the new mesh. See <strong>D3DX10_MESH</strong>.</p> </dd></param>
  16730. <param name="posSemanticRef"><dd> <p>The semantic name for the position data.</p> </dd></param>
  16731. <param name="descRef"><dd> <p>Array of <see cref="T:SharpDX.Direct3D10.InputElement" /> structures, describing the vertex format for the returned mesh. See <strong><see cref="T:SharpDX.Direct3D10.InputElement" /></strong>.</p> </dd></param>
  16732. <param name="declCount"><dd> <p>The number of elements in the pDesc array.</p> </dd></param>
  16733. <param name="cloneMeshOut"><dd> <p>The new mesh.</p> </dd></param>
  16734. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16735. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::CloneMesh']/*" />
  16736. <msdn-id>bb173902</msdn-id>
  16737. <unmanaged>HRESULT ID3DX10Mesh::CloneMesh([In] unsigned int Flags,[In] const char* pPosSemantic,[In, Buffer] const D3D10_INPUT_ELEMENT_DESC* pDesc,[In] unsigned int DeclCount,[In] ID3DX10Mesh** ppCloneMesh)</unmanaged>
  16738. <unmanaged-short>ID3DX10Mesh::CloneMesh</unmanaged-short>
  16739. </member>
  16740. <member name="M:SharpDX.Direct3D10.Mesh.Optimize(System.Int32,System.Int32[],System.IntPtr)">
  16741. <summary>
  16742. <p>Generates a new mesh with reordered faces and vertices to optimize drawing performance.</p>
  16743. </summary>
  16744. <param name="flags"><dd> <p>Specifies the type of optimization to perform. This parameter can be set to a combination of one or more flags from D3DXMESHOPT and D3DXMESH (except D3DXMESH_32BIT, D3DXMESH_IB_WRITEONLY, and D3DXMESH_WRITEONLY).</p> </dd></param>
  16745. <param name="faceRemapRef"><dd> <p>An array of UINTs, one per face, that identifies the original mesh face that corresponds to each face in the optimized mesh. If the value supplied for this argument is <strong><c>null</c></strong>, face remap data is not returned.</p> </dd></param>
  16746. <param name="vertexRemapOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /> Interface</strong>, which contains a DWORD for each vertex that specifies how the new vertices map to the old vertices. This remap is useful if you need to alter external data based on the new vertex mapping.</p> </dd></param>
  16747. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16748. <remarks>
  16749. <p>This method generates a new mesh. Before running Optimize, an application must generate an adjacency buffer by calling <strong><see cref="M:SharpDX.Direct3D10.Mesh.GenerateAdjacencyAndPointRepresentation(System.Single)" /></strong>. The adjacency buffer contains adjacency data, such as a list of edges and the faces that are adjacent to each other.</p><p>This method is very similar to the <strong><see cref="M:SharpDX.Direct3D10.Mesh.CloneMesh(System.Int32,System.String,SharpDX.Direct3D10.InputElement[],System.Int32,SharpDX.Direct3D10.Mesh@)" /></strong> method, except that it can perform optimization while generating the new clone of the mesh. The output mesh inherits all of the creation parameters of the input mesh.</p>
  16750. </remarks>
  16751. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::Optimize']/*" />
  16752. <msdn-id>bb173925</msdn-id>
  16753. <unmanaged>HRESULT ID3DX10Mesh::Optimize([In] unsigned int Flags,[Out, Buffer, Optional] unsigned int* pFaceRemap,[In] void** ppVertexRemap)</unmanaged>
  16754. <unmanaged-short>ID3DX10Mesh::Optimize</unmanaged-short>
  16755. </member>
  16756. <member name="M:SharpDX.Direct3D10.Mesh.GenerateAttributeBufferFromTable">
  16757. <summary>
  16758. <p>Generate an attribute buffer from the data in the mesh's attribute table. An attribute buffer is another format for storing the data in the attribute table. Both the attribute buffer and the attribute table are internal data structures in the mesh.</p>
  16759. </summary>
  16760. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16761. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GenerateAttributeBufferFromTable']/*" />
  16762. <msdn-id>bb173908</msdn-id>
  16763. <unmanaged>HRESULT ID3DX10Mesh::GenerateAttributeBufferFromTable()</unmanaged>
  16764. <unmanaged-short>ID3DX10Mesh::GenerateAttributeBufferFromTable</unmanaged-short>
  16765. </member>
  16766. <member name="M:SharpDX.Direct3D10.Mesh.Commit">
  16767. <summary>
  16768. <p>Commit any changes made to a mesh to the device so that the changes can be rendered. This should be called after a mesh's data is altered and before it is rendered. A mesh cannot be rendered unless it is committed to the device. See remarks.</p>
  16769. </summary>
  16770. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16771. <remarks>
  16772. <p>When a mesh is loaded, it's data is loaded into staging resources, meaning the data can be altered but not rendered. When CommitToDevice is called, the data from the staging resources are copied into device resources so that they can be rendered. Although the data is committed to the device, the staging resources remain and can be modified. If any modifications are made to the staging resources, the staging resources must be committed to the device again in order for those changes to be rendered on screen.</p>
  16773. </remarks>
  16774. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::CommitToDevice']/*" />
  16775. <msdn-id>bb173903</msdn-id>
  16776. <unmanaged>HRESULT ID3DX10Mesh::CommitToDevice()</unmanaged>
  16777. <unmanaged-short>ID3DX10Mesh::CommitToDevice</unmanaged-short>
  16778. </member>
  16779. <member name="M:SharpDX.Direct3D10.Mesh.DrawSubset(System.Int32)">
  16780. <summary>
  16781. <p>Draws a subset of a mesh.</p>
  16782. </summary>
  16783. <param name="attribId"><dd> <p>Specifies which subset of the mesh to draw. This value is used to differentiate faces in a mesh as belonging to one or more attribute groups.</p> </dd></param>
  16784. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16785. <remarks>
  16786. <p>An attribute table is used to identify areas of the mesh that need to be drawn with different textures, render states, materials, and so on. In addition, the application can use the attribute table to hide portions of a mesh by not drawing a given attribute identifier (AttribId) when drawing the frame.</p>
  16787. </remarks>
  16788. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::DrawSubset']/*" />
  16789. <msdn-id>bb173905</msdn-id>
  16790. <unmanaged>HRESULT ID3DX10Mesh::DrawSubset([In] unsigned int AttribId)</unmanaged>
  16791. <unmanaged-short>ID3DX10Mesh::DrawSubset</unmanaged-short>
  16792. </member>
  16793. <member name="M:SharpDX.Direct3D10.Mesh.DrawSubsetInstanced(System.Int32,System.Int32,System.Int32)">
  16794. <summary>
  16795. <p>Draw several instances of the same subset of a mesh.</p>
  16796. </summary>
  16797. <param name="attribId"><dd> <p>Specifies which subset of the mesh to draw. This value is used to differentiate faces in a mesh as belonging to one or more attribute groups. See remarks.</p> </dd></param>
  16798. <param name="instanceCount"><dd> <p>Number of instances to render.</p> </dd></param>
  16799. <param name="startInstanceLocation"><dd> <p>Which instance to start fetching from in each buffer marked as instance data.</p> </dd></param>
  16800. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  16801. <remarks>
  16802. <p>A mesh contains an attribute table. The attribute table can divide a mesh into subsets, where each subset is identified with an attribute ID. For example, a mesh with 200 faces, divided into three subsets, might have an attribute table that looks like this:</p><table> <tr><td>AttribID 0</td><td>Faces 0 ~ 50</td></tr> <tr><td>AttribID 1</td><td>Faces 51 ~ 125</td></tr> <tr><td>AttribID 2</td><td>Faces 126 ~ 200</td></tr> </table><p>?</p><p>Instancing may extend performance by reusing the same geometry to draw multiple objects in a scene. One example of instancing could be to draw the same object with different positions and colors. Indexing requires multiple vertex buffers: at least one for per-vertex data and a second buffer for per-instance data.</p><p>Drawing instances with DrawSubsetInstanced is very similar to the process used with <strong><see cref="M:SharpDX.Direct3D10.Device.DrawIndexedInstanced(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" /></strong> that is outlined in Instancing Sample. The key difference when using DrawSubsetInstanced is that vertex and index buffers must be extracted from the <strong><see cref="T:SharpDX.Direct3D10.Mesh" /> Interface</strong> object before the instancing data can be combined.</p><p>The following code illustrates extracting the vertex and index buffers from the mesh object.</p><pre> <see cref="T:SharpDX.Direct3D10.Buffer" />* vertexBuffer; pDeviceObj-&gt;pMesh-&gt;GetDeviceVertexBuffer(0, &amp;vertexBuffer); <see cref="T:SharpDX.Direct3D10.Buffer" />* indexBuffer; pDeviceObj-&gt;pMesh-&gt;GetDeviceIndexBuffer(&amp;indexBuffer); </pre>
  16803. </remarks>
  16804. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::DrawSubsetInstanced']/*" />
  16805. <msdn-id>bb173906</msdn-id>
  16806. <unmanaged>HRESULT ID3DX10Mesh::DrawSubsetInstanced([In] unsigned int AttribId,[In] unsigned int InstanceCount,[In] unsigned int StartInstanceLocation)</unmanaged>
  16807. <unmanaged-short>ID3DX10Mesh::DrawSubsetInstanced</unmanaged-short>
  16808. </member>
  16809. <member name="M:SharpDX.Direct3D10.Mesh.GetDeviceVertexBuffer(System.Int32)">
  16810. <summary>
  16811. <p>Access the mesh's vertex buffer after it has been committed to the device with <strong><see cref="M:SharpDX.Direct3D10.Mesh.Commit" /></strong>. This is different from <strong><see cref="M:SharpDX.Direct3D10.Mesh.GetVertexBuffer(System.Int32)" /></strong>, which returns the vertex buffer before it has been committed to the device.</p>
  16812. </summary>
  16813. <param name="iBuffer">No documentation.</param>
  16814. <returns>No documentation.</returns>
  16815. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetDeviceVertexBuffer']/*" />
  16816. <msdn-id>bb173914</msdn-id>
  16817. <unmanaged>HRESULT ID3DX10Mesh::GetDeviceVertexBuffer([In] unsigned int iBuffer,[In] ID3D10Buffer** ppVertexBuffer)</unmanaged>
  16818. <unmanaged-short>ID3DX10Mesh::GetDeviceVertexBuffer</unmanaged-short>
  16819. </member>
  16820. <member name="M:SharpDX.Direct3D10.Mesh.GetDeviceIndexBuffer">
  16821. <summary>
  16822. <p>Access the mesh's index buffer after it has been committed to the device with <strong><see cref="M:SharpDX.Direct3D10.Mesh.Commit" /></strong>. This is different from <strong><see cref="M:SharpDX.Direct3D10.Mesh.GetIndexBuffer" /></strong>, which returns the index buffer before it has been committed to the device.</p>
  16823. </summary>
  16824. <returns>No documentation.</returns>
  16825. <remarks>
  16826. <p>If the mesh's index buffer has not already been committed to the device, this API will automatically commit the index buffer before it returns a reference to the buffer.</p>
  16827. </remarks>
  16828. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Mesh::GetDeviceIndexBuffer']/*" />
  16829. <msdn-id>bb173913</msdn-id>
  16830. <unmanaged>HRESULT ID3DX10Mesh::GetDeviceIndexBuffer([In] ID3D10Buffer** ppIndexBuffer)</unmanaged>
  16831. <unmanaged-short>ID3DX10Mesh::GetDeviceIndexBuffer</unmanaged-short>
  16832. </member>
  16833. <member name="M:SharpDX.Direct3D10.Mesh.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.InputElement[],System.String,System.Int32,System.Int32,SharpDX.Direct3D10.MeshFlags)">
  16834. <summary>
  16835. Creates a mesh object using a declarator.
  16836. </summary>
  16837. <param name="device">Pointer to an <see cref="T:SharpDX.Direct3D10.Device"/>, the device object to be associated with the mesh. </param>
  16838. <param name="elements">Array of <see cref="T:SharpDX.Direct3D10.InputElement"/> elements, describing the vertex format for the returned mesh. This parameter must map directly to a flexible vertex format (FVF). </param>
  16839. <param name="positionElement">Semantic that identifies which part of the vertex declaration contains position information. </param>
  16840. <param name="vertexCount">Number of vertices for the mesh. This parameter must be greater than 0. </param>
  16841. <param name="faceCount">Number of faces for the mesh. The valid range for this number is greater than 0, and one less than the maximum DWORD (typically 65534), because the last index is reserved. </param>
  16842. <param name="flags">Combination of one or more flags from the <see cref="T:SharpDX.Direct3D10.MeshFlags"/>, specifying options for the mesh. </param>
  16843. <unmanaged>HRESULT D3DX10CreateMesh([None] ID3D10Device* pDevice,[In, Buffer] const D3D10_INPUT_ELEMENT_DESC* pDeclaration,[None] int DeclCount,[None] const char* pPositionSemantic,[None] int VertexCount,[None] int FaceCount,[None] int Options,[None] ID3DX10Mesh** ppMesh)</unmanaged>
  16844. </member>
  16845. <member name="M:SharpDX.Direct3D10.Mesh.Clone(SharpDX.Direct3D10.InputElement[],System.String,SharpDX.Direct3D10.MeshFlags)">
  16846. <summary>
  16847. Creates a new mesh and fills it with the data of a previously loaded mesh.
  16848. </summary>
  16849. <param name="positionElement">The semantic name for the position data. </param>
  16850. <param name="elements">Array of <see cref="T:SharpDX.Direct3D10.InputElement"/> structures, describing the vertex format for the returned mesh. See <see cref="T:SharpDX.Direct3D10.InputElement"/>. </param>
  16851. <param name="flags">Creation flags to be applied to the new mesh. See <see cref="T:SharpDX.Direct3D10.MeshFlags"/>.</param>
  16852. <returns>returns the Mesh cloned. </returns>
  16853. <unmanaged>HRESULT ID3DX10Mesh::CloneMesh([None] int Flags,[None] const char* pPosSemantic,[In, Buffer] const D3D10_INPUT_ELEMENT_DESC* pDesc,[None] int DeclCount,[None] ID3DX10Mesh** ppCloneMesh)</unmanaged>
  16854. </member>
  16855. <member name="P:SharpDX.Direct3D10.Mesh.Flags">
  16856. <summary>
  16857. Access the mesh's creation flags.
  16858. </summary>
  16859. <returns>The creation flags passed into the options parameter of <see cref="M:SharpDX.Direct3D10.D3DX10.CreateMesh(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.InputElement[],System.Int32,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D10.Mesh)"/> when the mesh was created. See {{D3DX10_MESH}}. </returns>
  16860. <unmanaged>int ID3DX10Mesh::GetFlags()</unmanaged>
  16861. </member>
  16862. <member name="M:SharpDX.Direct3D10.Mesh.GetAttributeBuffer">
  16863. <summary>
  16864. Access the mesh's attribute buffer.
  16865. </summary>
  16866. <returns>Returns the attribute buffer. See <see cref="T:SharpDX.Direct3D10.MeshBuffer"/>. </returns>
  16867. <unmanaged>HRESULT ID3DX10Mesh::GetAttributeBuffer([None] ID3DX10MeshBuffer** ppAttribute)</unmanaged>
  16868. </member>
  16869. <member name="M:SharpDX.Direct3D10.Mesh.GetAttributeTable">
  16870. <summary>
  16871. Retrieves either an attribute table for a mesh, or the number of entries stored in an attribute table for a mesh.
  16872. </summary>
  16873. <remarks>
  16874. An attribute table is used to identify areas of the mesh that need to be drawn with different textures, render states, materials, and so on. In addition, the application can use the attribute table to hide portions of a mesh by not drawing a given attribute identifier when drawing the frame.
  16875. </remarks>
  16876. <returns>Returns an array of <see cref="T:SharpDX.Direct3D10.MeshAttributeRange"/> structures, representing the entries in the mesh's attribute table. </returns>
  16877. <unmanaged>HRESULT ID3DX10Mesh::GetAttributeTable([Out, Buffer, Optional] D3DX10_ATTRIBUTE_RANGE* pAttribTable,[None] int* pAttribTableSize)</unmanaged>
  16878. </member>
  16879. <member name="M:SharpDX.Direct3D10.Mesh.GetPointRepresentationBuffer">
  16880. <summary>
  16881. Get the mesh's point rep buffer.
  16882. </summary>
  16883. <returns>Returns a mesh buffer containing the mesh's point rep data. See <see cref="T:SharpDX.Direct3D10.MeshBuffer"/>. </returns>
  16884. <unmanaged>HRESULT ID3DX10Mesh::GetPointRepBuffer([None] ID3DX10MeshBuffer** ppPointReps)</unmanaged>
  16885. </member>
  16886. <member name="M:SharpDX.Direct3D10.Mesh.Optimize(SharpDX.Direct3D10.MeshOptimizeFlags)">
  16887. <summary>
  16888. Optimizes the mesh data.
  16889. </summary>
  16890. <param name="flags">Flags indicating which optimizations to perform.</param>
  16891. <returns>A result code.</returns>
  16892. </member>
  16893. <member name="M:SharpDX.Direct3D10.Mesh.Optimize(SharpDX.Direct3D10.MeshOptimizeFlags,System.Int32[]@,System.Int32[]@)">
  16894. <summary>
  16895. Generates a new mesh with reordered faces and vertices to optimize drawing performance.
  16896. </summary>
  16897. <remarks>
  16898. This method generates a new mesh. Before running Optimize, an application must generate an adjacency buffer by calling <see cref="M:SharpDX.Direct3D10.Mesh.GenerateAdjacencyAndPointRepresentation(System.Single)"/>. The adjacency buffer contains adjacency data, such as a list of edges and the faces that are adjacent to each other. This method is very similar to the <see cref="M:SharpDX.Direct3D10.Mesh.CloneMesh(System.Int32,System.String,SharpDX.Direct3D10.InputElement[],System.Int32,SharpDX.Direct3D10.Mesh@)"/> method, except that it can perform optimization while generating the new clone of the mesh. The output mesh inherits all of the creation parameters of the input mesh.
  16899. </remarks>
  16900. <param name="flags">Specifies the type of optimization to perform. This parameter can be set to a combination of one or more flags from D3DXMESHOPT and D3DXMESH (except D3DXMESH_32BIT, D3DXMESH_IB_WRITEONLY, and D3DXMESH_WRITEONLY). </param>
  16901. <param name="faceRemap">An array of UINTs, one per face, that identifies the original mesh face that corresponds to each face in the optimized mesh.</param>
  16902. <param name="vertexRemap">An array of index for each vertex that specifies how the new vertices map to the old vertices. This remap is useful if you need to alter external data based on the new vertex mapping. </param>
  16903. <returns>The return value is one of the values listed in {{Direct3D 10 Return Codes}}. </returns>
  16904. <unmanaged>HRESULT ID3DX10Mesh::Optimize([None] int Flags,[Out, Buffer, Optional] int* pFaceRemap,[In] LPD3D10BLOB* ppVertexRemap)</unmanaged>
  16905. </member>
  16906. <member name="M:SharpDX.Direct3D10.Mesh.SetAdjacencyData(SharpDX.DataStream)">
  16907. <summary>
  16908. Set the mesh's adjacency data.
  16909. </summary>
  16910. <param name="data">The adjacency data to set </param>
  16911. <returns>The return value is one of the values listed in {{Direct3D 10 Return Codes}}. </returns>
  16912. <unmanaged>HRESULT ID3DX10Mesh::SetAdjacencyData([In] const int* pAdjacency)</unmanaged>
  16913. </member>
  16914. <member name="M:SharpDX.Direct3D10.Mesh.SetAttributeData(SharpDX.DataStream)">
  16915. <summary>
  16916. Set the mesh's attribute data.
  16917. </summary>
  16918. <param name="data">The attribute data to set. </param>
  16919. <returns>The return value is one of the values listed in {{Direct3D 10 Return Codes}}. </returns>
  16920. <unmanaged>HRESULT ID3DX10Mesh::SetAttributeData([In] const int* pData)</unmanaged>
  16921. </member>
  16922. <member name="M:SharpDX.Direct3D10.Mesh.SetAttributeTable(SharpDX.Direct3D10.MeshAttributeRange[])">
  16923. <summary>
  16924. Sets the attribute table for a mesh and the number of entries stored in the table.
  16925. </summary>
  16926. <remarks>
  16927. If an application keeps track of the information in an attribute table, and rearranges the table as a result of changes to attributes or faces, this method allows the application to update the attribute tables instead of calling ID3DX10Mesh::Optimize again.
  16928. </remarks>
  16929. <param name="data">an array of <see cref="T:SharpDX.Direct3D10.MeshAttributeRange"/> structures, representing the entries in the mesh attribute table. </param>
  16930. <returns>The return value is one of the values listed in {{Direct3D 10 Return Codes}}. </returns>
  16931. <unmanaged>HRESULT ID3DX10Mesh::SetAttributeTable([In, Buffer] const D3DX10_ATTRIBUTE_RANGE* pAttribTable,[None] int cAttribTableSize)</unmanaged>
  16932. </member>
  16933. <member name="M:SharpDX.Direct3D10.Mesh.SetIndexData(SharpDX.DataStream,System.Int32)">
  16934. <summary>
  16935. Set the mesh's index data.
  16936. </summary>
  16937. <param name="data">The index data. </param>
  16938. <param name="count">The number of indices in pData. </param>
  16939. <returns>The return value is one of the values listed in {{Direct3D 10 Return Codes}}. </returns>
  16940. <unmanaged>HRESULT ID3DX10Mesh::SetIndexData([None] const void* pData,[None] int cIndices)</unmanaged>
  16941. </member>
  16942. <member name="M:SharpDX.Direct3D10.Mesh.SetPointRepresentationData(SharpDX.DataStream)">
  16943. <summary>
  16944. Set the point rep data for the mesh.
  16945. </summary>
  16946. <param name="data">The point rep data to set. </param>
  16947. <returns>The return value is one of the values listed in {{Direct3D 10 Return Codes}}. </returns>
  16948. <unmanaged>HRESULT ID3DX10Mesh::SetPointRepData([None] const int* pPointReps)</unmanaged>
  16949. </member>
  16950. <member name="M:SharpDX.Direct3D10.Mesh.SetVertexData(System.Int32,SharpDX.DataStream)">
  16951. <summary>
  16952. Set vertex data into one of the mesh's vertex buffers.
  16953. </summary>
  16954. <param name="index">The vertex buffer to be filled with pData. </param>
  16955. <param name="data">The vertex data to set. </param>
  16956. <returns>The return value is one of the values listed in {{Direct3D 10 Return Codes}}. </returns>
  16957. <unmanaged>HRESULT ID3DX10Mesh::SetVertexData([None] int iBuffer,[None] const void* pData)</unmanaged>
  16958. </member>
  16959. <member name="T:SharpDX.Direct3D10.MeshBuffer">
  16960. <summary>
  16961. <p>A mesh buffer is a buffer that contains data about a mesh. It can contain one of five different types of data: vertex data, index data, adjacency data, attribute data, or point rep data. The structure is used to access these five pieces of data through the following five APIs: <strong><see cref="M:SharpDX.Direct3D10.Mesh.GetVertexBuffer(System.Int32)" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.Mesh.GetIndexBuffer" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.Mesh.GetAdjacencyBuffer" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.Mesh.GetAttributeBuffer(SharpDX.Direct3D10.MeshBuffer@)" /></strong>, or <strong><see cref="M:SharpDX.Direct3D10.Mesh.GetPointRepBuffer(SharpDX.Direct3D10.MeshBuffer@)" /></strong>.</p>
  16962. </summary>
  16963. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10MeshBuffer']/*" />
  16964. <msdn-id>bb173898</msdn-id>
  16965. <unmanaged>ID3DX10MeshBuffer</unmanaged>
  16966. <unmanaged-short>ID3DX10MeshBuffer</unmanaged-short>
  16967. </member>
  16968. <member name="M:SharpDX.Direct3D10.MeshBuffer.#ctor(System.IntPtr)">
  16969. <summary>
  16970. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.MeshBuffer"/> class.
  16971. </summary>
  16972. <param name="nativePtr">The native pointer.</param>
  16973. </member>
  16974. <member name="M:SharpDX.Direct3D10.MeshBuffer.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.MeshBuffer">
  16975. <summary>
  16976. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.MeshBuffer"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  16977. </summary>
  16978. <param name="nativePointer">The native pointer.</param>
  16979. <returns>
  16980. The result of the conversion.
  16981. </returns>
  16982. </member>
  16983. <member name="P:SharpDX.Direct3D10.MeshBuffer.SizeInBytes">
  16984. <summary>
  16985. <p>Get the size of the mesh buffer, in bytes.</p>
  16986. </summary>
  16987. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10MeshBuffer::GetSize']/*" />
  16988. <msdn-id>bb173899</msdn-id>
  16989. <unmanaged>GetSize</unmanaged>
  16990. <unmanaged-short>GetSize</unmanaged-short>
  16991. <unmanaged>SIZE_T ID3DX10MeshBuffer::GetSize()</unmanaged>
  16992. </member>
  16993. <member name="M:SharpDX.Direct3D10.MeshBuffer.Map(System.IntPtr@,SharpDX.PointerSize@)">
  16994. <summary>
  16995. <p>Get a reference to the mesh buffer memory to modify its contents.</p>
  16996. </summary>
  16997. <param name="dataOut"><dd> <p>Pointer to the buffer data.</p> </dd></param>
  16998. <param name="sizeRef"><dd> <p>Size of the buffer in bytes.</p> </dd></param>
  16999. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  17000. <remarks>
  17001. <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>Map() in Direct3D 10 is analogous to resource Map() in Direct3D 9.</p> </td></tr> </table><p>?</p>
  17002. </remarks>
  17003. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10MeshBuffer::Map']/*" />
  17004. <msdn-id>bb173900</msdn-id>
  17005. <unmanaged>HRESULT ID3DX10MeshBuffer::Map([Out] void** ppData,[Out] SIZE_T* pSize)</unmanaged>
  17006. <unmanaged-short>ID3DX10MeshBuffer::Map</unmanaged-short>
  17007. </member>
  17008. <member name="M:SharpDX.Direct3D10.MeshBuffer.Unmap">
  17009. <summary>
  17010. <p>Unmap a buffer.</p>
  17011. </summary>
  17012. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  17013. <remarks>
  17014. <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>Unmap() in Direct3D 10 is analogous to resource Unlock() in Direct3D 9.</p> </td></tr> </table><p>?</p>
  17015. </remarks>
  17016. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10MeshBuffer::Unmap']/*" />
  17017. <msdn-id>bb173901</msdn-id>
  17018. <unmanaged>HRESULT ID3DX10MeshBuffer::Unmap()</unmanaged>
  17019. <unmanaged-short>ID3DX10MeshBuffer::Unmap</unmanaged-short>
  17020. </member>
  17021. <member name="M:SharpDX.Direct3D10.MeshBuffer.GetSizeInBytes">
  17022. <summary>
  17023. <p>Get the size of the mesh buffer, in bytes.</p>
  17024. </summary>
  17025. <returns><p>The size of the mesh buffer, in bytes.</p></returns>
  17026. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10MeshBuffer::GetSize']/*" />
  17027. <msdn-id>bb173899</msdn-id>
  17028. <unmanaged>SIZE_T ID3DX10MeshBuffer::GetSize()</unmanaged>
  17029. <unmanaged-short>ID3DX10MeshBuffer::GetSize</unmanaged-short>
  17030. </member>
  17031. <member name="M:SharpDX.Direct3D10.MeshBuffer.Map">
  17032. <summary>
  17033. Get a reference to the mesh buffer memory to modify its contents.
  17034. </summary>
  17035. <remarks>
  17036. Differences between Direct3D 9 and Direct3D 10: Map() in Direct3D 10 is analogous to resource Map() in Direct3D 9. ?
  17037. </remarks>
  17038. <returns>Returns a reference to the mesh buffer memory to modify its contents</returns>
  17039. <unmanaged>HRESULT ID3DX10MeshBuffer::Map([Out] void** ppData,[Out] SIZE_T* pSize)</unmanaged>
  17040. </member>
  17041. <member name="T:SharpDX.Direct3D10.PixelShader">
  17042. <summary>
  17043. <p>A pixel-shader interface manages an executable program (a pixel shader) that controls the pixel-shader stage.</p>
  17044. </summary>
  17045. <remarks>
  17046. <p>The pixel-shader interface has no methods; use HLSL to implement your shader functionality. All shaders in Direct3D 10 are implemented from a common set of features referred to as the common shader core.</p><p>To create a pixel shader interface, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreatePixelShader(System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.PixelShader)" /></strong>. Before using a pixel shader you must bind it to the device by calling <strong><see cref="M:SharpDX.Direct3D10.PixelShaderStage.Set(SharpDX.Direct3D10.PixelShader)" /></strong>.</p><p>This interface is defined in D3D10.h.</p>
  17047. </remarks>
  17048. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10PixelShader']/*" />
  17049. <msdn-id>bb173821</msdn-id>
  17050. <unmanaged>ID3D10PixelShader</unmanaged>
  17051. <unmanaged-short>ID3D10PixelShader</unmanaged-short>
  17052. </member>
  17053. <member name="M:SharpDX.Direct3D10.PixelShader.#ctor(System.IntPtr)">
  17054. <summary>
  17055. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.PixelShader"/> class.
  17056. </summary>
  17057. <param name="nativePtr">The native pointer.</param>
  17058. </member>
  17059. <member name="M:SharpDX.Direct3D10.PixelShader.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.PixelShader">
  17060. <summary>
  17061. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.PixelShader"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  17062. </summary>
  17063. <param name="nativePointer">The native pointer.</param>
  17064. <returns>
  17065. The result of the conversion.
  17066. </returns>
  17067. </member>
  17068. <member name="M:SharpDX.Direct3D10.PixelShader.#ctor(SharpDX.Direct3D10.Device,System.Byte[])">
  17069. <summary>
  17070. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.PixelShader" /> class.
  17071. </summary>
  17072. <param name = "device">The device used to create the shader.</param>
  17073. <param name = "shaderBytecode">The compiled shader bytecode.</param>
  17074. </member>
  17075. <member name="T:SharpDX.Direct3D10.PixelShaderStage">
  17076. <summary>
  17077. <p>The device interface represents a virtual adapter for Direct3D 10.0; it is used to perform rendering and create Direct3D resources.</p>
  17078. </summary>
  17079. <remarks>
  17080. <p>A device is created using <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>.</p>
  17081. </remarks>
  17082. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device']/*" />
  17083. <msdn-id>bb173528</msdn-id>
  17084. <unmanaged>ID3D10Device</unmanaged>
  17085. <unmanaged-short>ID3D10Device</unmanaged-short>
  17086. </member>
  17087. <member name="M:SharpDX.Direct3D10.PixelShaderStage.#ctor(System.IntPtr)">
  17088. <summary>
  17089. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.PixelShaderStage"/> class.
  17090. </summary>
  17091. <param name="nativePtr">The native pointer.</param>
  17092. </member>
  17093. <member name="M:SharpDX.Direct3D10.PixelShaderStage.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.PixelShaderStage">
  17094. <summary>
  17095. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.PixelShaderStage"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  17096. </summary>
  17097. <param name="nativePointer">The native pointer.</param>
  17098. <returns>
  17099. The result of the conversion.
  17100. </returns>
  17101. </member>
  17102. <member name="M:SharpDX.Direct3D10.PixelShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])">
  17103. <summary>
  17104. <p>Bind an array of shader resources to the pixel shader stage.</p>
  17105. </summary>
  17106. <param name="startSlot">No documentation.</param>
  17107. <param name="numViews">No documentation.</param>
  17108. <param name="shaderResourceViewsOut">No documentation.</param>
  17109. <remarks>
  17110. <p>If you bind a subresource as an input and an output, this API will fill the destination shader resource slot with <strong><c>null</c></strong>. The debug layer (when active) will alert you if this is true.</p><p>For information about creating shader-resource views, see <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  17111. </remarks>
  17112. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSSetShaderResources']/*" />
  17113. <msdn-id>bb173606</msdn-id>
  17114. <unmanaged>void ID3D10Device::PSSetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  17115. <unmanaged-short>ID3D10Device::PSSetShaderResources</unmanaged-short>
  17116. </member>
  17117. <member name="M:SharpDX.Direct3D10.PixelShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.ShaderResourceView})">
  17118. <summary>
  17119. <p>Bind an array of shader resources to the pixel shader stage.</p>
  17120. </summary>
  17121. <param name="startSlot">No documentation.</param>
  17122. <param name="numViews">No documentation.</param>
  17123. <param name="shaderResourceViewsOut">No documentation.</param>
  17124. <remarks>
  17125. <p>If you bind a subresource as an input and an output, this API will fill the destination shader resource slot with <strong><c>null</c></strong>. The debug layer (when active) will alert you if this is true.</p><p>For information about creating shader-resource views, see <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  17126. </remarks>
  17127. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSSetShaderResources']/*" />
  17128. <msdn-id>bb173606</msdn-id>
  17129. <unmanaged>void ID3D10Device::PSSetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  17130. <unmanaged-short>ID3D10Device::PSSetShaderResources</unmanaged-short>
  17131. </member>
  17132. <member name="M:SharpDX.Direct3D10.PixelShaderStage.SetShaderResources(System.Int32,System.Int32,System.IntPtr)">
  17133. <summary>
  17134. <p>Bind an array of shader resources to the pixel shader stage.</p>
  17135. </summary>
  17136. <param name="startSlot">No documentation.</param>
  17137. <param name="numViews">No documentation.</param>
  17138. <param name="shaderResourceViewsOut">No documentation.</param>
  17139. <remarks>
  17140. <p>If you bind a subresource as an input and an output, this API will fill the destination shader resource slot with <strong><c>null</c></strong>. The debug layer (when active) will alert you if this is true.</p><p>For information about creating shader-resource views, see <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  17141. </remarks>
  17142. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSSetShaderResources']/*" />
  17143. <msdn-id>bb173606</msdn-id>
  17144. <unmanaged>void ID3D10Device::PSSetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  17145. <unmanaged-short>ID3D10Device::PSSetShaderResources</unmanaged-short>
  17146. </member>
  17147. <member name="M:SharpDX.Direct3D10.PixelShaderStage.Set(SharpDX.Direct3D10.PixelShader)">
  17148. <summary>
  17149. <p>Sets a pixel shader to the device.</p>
  17150. </summary>
  17151. <param name="pixelShaderRef"><dd> <p>Pointer to a pixel shader (see <strong><see cref="T:SharpDX.Direct3D10.PixelShader" /></strong>). Passing in <strong><c>null</c></strong> disables the shader for this pipeline stage.</p> </dd></param>
  17152. <remarks>
  17153. <p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  17154. </remarks>
  17155. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSSetShader']/*" />
  17156. <msdn-id>bb173605</msdn-id>
  17157. <unmanaged>void ID3D10Device::PSSetShader([In, Optional] ID3D10PixelShader* pPixelShader)</unmanaged>
  17158. <unmanaged-short>ID3D10Device::PSSetShader</unmanaged-short>
  17159. </member>
  17160. <member name="M:SharpDX.Direct3D10.PixelShaderStage.SetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])">
  17161. <summary>
  17162. <p>Set an array of sampler states to the pixel shader pipeline stage.</p>
  17163. </summary>
  17164. <param name="startSlot">No documentation.</param>
  17165. <param name="numSamplers">No documentation.</param>
  17166. <param name="samplersOut">No documentation.</param>
  17167. <remarks>
  17168. <p>Any sampler may be set to <strong><c>null</c></strong>; this invokes the default state, which is defined to be the following.</p><table> <tr><th>State</th><th>Default Value</th></tr> <tr><td>Filter</td><td><see cref="F:SharpDX.Direct3D10.Filter.MinMagMipLinear" /></td></tr> <tr><td>AddressU</td><td><see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" /></td></tr> <tr><td>AddressV</td><td><see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" /></td></tr> <tr><td>AddressW</td><td><see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" /></td></tr> <tr><td>MipLODBias</td><td>0</td></tr> <tr><td>MaxAnisotropy</td><td>1</td></tr> <tr><td>ComparisonFunc</td><td><see cref="F:SharpDX.Direct3D10.Comparison.Never" /></td></tr> <tr><td>BorderColor[0]</td><td>1.0f</td></tr> <tr><td>BorderColor[1]</td><td>1.0f</td></tr> <tr><td>BorderColor[2]</td><td>1.0f</td></tr> <tr><td>BorderColor[3]</td><td>1.0f</td></tr> <tr><td>MinLOD</td><td>-FLT_MAX</td></tr> <tr><td>MaxLOD</td><td>FLT_MAX</td></tr> </table><p>?</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  17169. </remarks>
  17170. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSSetSamplers']/*" />
  17171. <msdn-id>bb173604</msdn-id>
  17172. <unmanaged>void ID3D10Device::PSSetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[In, Buffer, Optional] const ID3D10SamplerState** ppSamplers)</unmanaged>
  17173. <unmanaged-short>ID3D10Device::PSSetSamplers</unmanaged-short>
  17174. </member>
  17175. <member name="M:SharpDX.Direct3D10.PixelShaderStage.SetSamplers(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.SamplerState})">
  17176. <summary>
  17177. <p>Set an array of sampler states to the pixel shader pipeline stage.</p>
  17178. </summary>
  17179. <param name="startSlot">No documentation.</param>
  17180. <param name="numSamplers">No documentation.</param>
  17181. <param name="samplersOut">No documentation.</param>
  17182. <remarks>
  17183. <p>Any sampler may be set to <strong><c>null</c></strong>; this invokes the default state, which is defined to be the following.</p><table> <tr><th>State</th><th>Default Value</th></tr> <tr><td>Filter</td><td><see cref="F:SharpDX.Direct3D10.Filter.MinMagMipLinear" /></td></tr> <tr><td>AddressU</td><td><see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" /></td></tr> <tr><td>AddressV</td><td><see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" /></td></tr> <tr><td>AddressW</td><td><see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" /></td></tr> <tr><td>MipLODBias</td><td>0</td></tr> <tr><td>MaxAnisotropy</td><td>1</td></tr> <tr><td>ComparisonFunc</td><td><see cref="F:SharpDX.Direct3D10.Comparison.Never" /></td></tr> <tr><td>BorderColor[0]</td><td>1.0f</td></tr> <tr><td>BorderColor[1]</td><td>1.0f</td></tr> <tr><td>BorderColor[2]</td><td>1.0f</td></tr> <tr><td>BorderColor[3]</td><td>1.0f</td></tr> <tr><td>MinLOD</td><td>-FLT_MAX</td></tr> <tr><td>MaxLOD</td><td>FLT_MAX</td></tr> </table><p>?</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  17184. </remarks>
  17185. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSSetSamplers']/*" />
  17186. <msdn-id>bb173604</msdn-id>
  17187. <unmanaged>void ID3D10Device::PSSetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[In, Buffer, Optional] const ID3D10SamplerState** ppSamplers)</unmanaged>
  17188. <unmanaged-short>ID3D10Device::PSSetSamplers</unmanaged-short>
  17189. </member>
  17190. <member name="M:SharpDX.Direct3D10.PixelShaderStage.SetSamplers(System.Int32,System.Int32,System.IntPtr)">
  17191. <summary>
  17192. <p>Set an array of sampler states to the pixel shader pipeline stage.</p>
  17193. </summary>
  17194. <param name="startSlot">No documentation.</param>
  17195. <param name="numSamplers">No documentation.</param>
  17196. <param name="samplersOut">No documentation.</param>
  17197. <remarks>
  17198. <p>Any sampler may be set to <strong><c>null</c></strong>; this invokes the default state, which is defined to be the following.</p><table> <tr><th>State</th><th>Default Value</th></tr> <tr><td>Filter</td><td><see cref="F:SharpDX.Direct3D10.Filter.MinMagMipLinear" /></td></tr> <tr><td>AddressU</td><td><see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" /></td></tr> <tr><td>AddressV</td><td><see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" /></td></tr> <tr><td>AddressW</td><td><see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" /></td></tr> <tr><td>MipLODBias</td><td>0</td></tr> <tr><td>MaxAnisotropy</td><td>1</td></tr> <tr><td>ComparisonFunc</td><td><see cref="F:SharpDX.Direct3D10.Comparison.Never" /></td></tr> <tr><td>BorderColor[0]</td><td>1.0f</td></tr> <tr><td>BorderColor[1]</td><td>1.0f</td></tr> <tr><td>BorderColor[2]</td><td>1.0f</td></tr> <tr><td>BorderColor[3]</td><td>1.0f</td></tr> <tr><td>MinLOD</td><td>-FLT_MAX</td></tr> <tr><td>MaxLOD</td><td>FLT_MAX</td></tr> </table><p>?</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  17199. </remarks>
  17200. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSSetSamplers']/*" />
  17201. <msdn-id>bb173604</msdn-id>
  17202. <unmanaged>void ID3D10Device::PSSetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[In, Buffer, Optional] const ID3D10SamplerState** ppSamplers)</unmanaged>
  17203. <unmanaged-short>ID3D10Device::PSSetSamplers</unmanaged-short>
  17204. </member>
  17205. <member name="M:SharpDX.Direct3D10.PixelShaderStage.SetConstantBuffers(System.Int32,System.Int32,SharpDX.Direct3D10.Buffer[])">
  17206. <summary>
  17207. <p>Set the constant buffers used by the pixel shader pipeline stage.</p>
  17208. </summary>
  17209. <param name="startSlot">No documentation.</param>
  17210. <param name="numBuffers">No documentation.</param>
  17211. <param name="constantBuffersOut">No documentation.</param>
  17212. <remarks>
  17213. <p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  17214. </remarks>
  17215. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSSetConstantBuffers']/*" />
  17216. <msdn-id>bb173603</msdn-id>
  17217. <unmanaged>void ID3D10Device::PSSetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  17218. <unmanaged-short>ID3D10Device::PSSetConstantBuffers</unmanaged-short>
  17219. </member>
  17220. <member name="M:SharpDX.Direct3D10.PixelShaderStage.SetConstantBuffers(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.Buffer})">
  17221. <summary>
  17222. <p>Set the constant buffers used by the pixel shader pipeline stage.</p>
  17223. </summary>
  17224. <param name="startSlot">No documentation.</param>
  17225. <param name="numBuffers">No documentation.</param>
  17226. <param name="constantBuffersOut">No documentation.</param>
  17227. <remarks>
  17228. <p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  17229. </remarks>
  17230. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSSetConstantBuffers']/*" />
  17231. <msdn-id>bb173603</msdn-id>
  17232. <unmanaged>void ID3D10Device::PSSetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  17233. <unmanaged-short>ID3D10Device::PSSetConstantBuffers</unmanaged-short>
  17234. </member>
  17235. <member name="M:SharpDX.Direct3D10.PixelShaderStage.SetConstantBuffers(System.Int32,System.Int32,System.IntPtr)">
  17236. <summary>
  17237. <p>Set the constant buffers used by the pixel shader pipeline stage.</p>
  17238. </summary>
  17239. <param name="startSlot">No documentation.</param>
  17240. <param name="numBuffers">No documentation.</param>
  17241. <param name="constantBuffersOut">No documentation.</param>
  17242. <remarks>
  17243. <p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  17244. </remarks>
  17245. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSSetConstantBuffers']/*" />
  17246. <msdn-id>bb173603</msdn-id>
  17247. <unmanaged>void ID3D10Device::PSSetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  17248. <unmanaged-short>ID3D10Device::PSSetConstantBuffers</unmanaged-short>
  17249. </member>
  17250. <member name="M:SharpDX.Direct3D10.PixelShaderStage.GetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])">
  17251. <summary>
  17252. <p>Get the pixel shader resources.</p>
  17253. </summary>
  17254. <param name="startSlot"><dd> <p>Index into the device's zero-based array to begin getting shader resources from.</p> </dd></param>
  17255. <param name="numViews"><dd> <p>The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources.</p> </dd></param>
  17256. <param name="shaderResourceViewsOut"><dd> <p>Array of <strong>shader resource view</strong> interfaces to be returned by the device.</p> </dd></param>
  17257. <remarks>
  17258. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  17259. </remarks>
  17260. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSGetShaderResources']/*" />
  17261. <msdn-id>bb173602</msdn-id>
  17262. <unmanaged>void ID3D10Device::PSGetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[Out, Buffer, Optional] ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  17263. <unmanaged-short>ID3D10Device::PSGetShaderResources</unmanaged-short>
  17264. </member>
  17265. <member name="M:SharpDX.Direct3D10.PixelShaderStage.Get(SharpDX.Direct3D10.PixelShader@)">
  17266. <summary>
  17267. <p>Get the pixel shader currently set on the device.</p>
  17268. </summary>
  17269. <param name="pixelShaderOut"><dd> <p>Address of a reference to a pixel shader (see <strong><see cref="T:SharpDX.Direct3D10.PixelShader" /></strong>) to be returned by the method.</p> </dd></param>
  17270. <remarks>
  17271. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  17272. </remarks>
  17273. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSGetShader']/*" />
  17274. <msdn-id>bb173601</msdn-id>
  17275. <unmanaged>void ID3D10Device::PSGetShader([Out] ID3D10PixelShader** ppPixelShader)</unmanaged>
  17276. <unmanaged-short>ID3D10Device::PSGetShader</unmanaged-short>
  17277. </member>
  17278. <member name="M:SharpDX.Direct3D10.PixelShaderStage.GetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])">
  17279. <summary>
  17280. <p>Get an array of sampler states from the pixel shader pipeline stage.</p>
  17281. </summary>
  17282. <param name="startSlot">No documentation.</param>
  17283. <param name="numSamplers">No documentation.</param>
  17284. <param name="samplersOut">No documentation.</param>
  17285. <remarks>
  17286. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  17287. </remarks>
  17288. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSGetSamplers']/*" />
  17289. <msdn-id>bb173600</msdn-id>
  17290. <unmanaged>void ID3D10Device::PSGetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[Out, Buffer, Optional] ID3D10SamplerState** ppSamplers)</unmanaged>
  17291. <unmanaged-short>ID3D10Device::PSGetSamplers</unmanaged-short>
  17292. </member>
  17293. <member name="M:SharpDX.Direct3D10.PixelShaderStage.GetConstantBuffers(System.Int32,System.Int32,SharpDX.Direct3D10.Buffer[])">
  17294. <summary>
  17295. <p>Get the constant buffers used by the pixel shader pipeline stage.</p>
  17296. </summary>
  17297. <param name="startSlot">No documentation.</param>
  17298. <param name="numBuffers">No documentation.</param>
  17299. <param name="constantBuffersOut">No documentation.</param>
  17300. <remarks>
  17301. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  17302. </remarks>
  17303. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::PSGetConstantBuffers']/*" />
  17304. <msdn-id>bb173599</msdn-id>
  17305. <unmanaged>void ID3D10Device::PSGetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[Out, Buffer, Optional] ID3D10Buffer** ppConstantBuffers)</unmanaged>
  17306. <unmanaged-short>ID3D10Device::PSGetConstantBuffers</unmanaged-short>
  17307. </member>
  17308. <member name="T:SharpDX.Direct3D10.Predicate">
  17309. <summary>
  17310. <p>A predicate interface determines whether geometry should be processed depending on the results of a previous draw call.</p>
  17311. </summary>
  17312. <remarks>
  17313. <p>A predicate can be created with <strong><see cref="M:SharpDX.Direct3D10.Device.CreatePredicate(SharpDX.Direct3D10.QueryDescription,SharpDX.Direct3D10.Predicate)" /></strong>, and used with <strong><see cref="M:SharpDX.Direct3D10.Device.SetPredication(SharpDX.Direct3D10.Predicate,SharpDX.Mathematics.Interop.RawBool)" /></strong>.</p><p>There are two types of predicates in Direct3D 10: stream-output-overflow predicates and occlusion predicates. Stream-output-overflow predicates will cause any geometry residing in stream-output buffers that were overflowed to not be processed. Occlusion predicates will cause any geometry that did not have a single sample pass the depth/stencil tests to not be processed.</p><p>For an example of occlusion-predicated rendering, see Draw Predicated Sample. </p>
  17314. </remarks>
  17315. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Predicate']/*" />
  17316. <msdn-id>bb173822</msdn-id>
  17317. <unmanaged>ID3D10Predicate</unmanaged>
  17318. <unmanaged-short>ID3D10Predicate</unmanaged-short>
  17319. </member>
  17320. <member name="M:SharpDX.Direct3D10.Predicate.#ctor(System.IntPtr)">
  17321. <summary>
  17322. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Predicate"/> class.
  17323. </summary>
  17324. <param name="nativePtr">The native pointer.</param>
  17325. </member>
  17326. <member name="M:SharpDX.Direct3D10.Predicate.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Predicate">
  17327. <summary>
  17328. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Predicate"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  17329. </summary>
  17330. <param name="nativePointer">The native pointer.</param>
  17331. <returns>
  17332. The result of the conversion.
  17333. </returns>
  17334. </member>
  17335. <member name="M:SharpDX.Direct3D10.Predicate.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.QueryDescription)">
  17336. <summary>
  17337. Constructs a new <see cref = "T:SharpDX.Direct3D10.Predicate" /> based on the specified description.
  17338. </summary>
  17339. <param name = "device">The device with which to associate the state object.</param>
  17340. <param name = "description">The query description.</param>
  17341. <returns>The newly created object.</returns>
  17342. </member>
  17343. <member name="T:SharpDX.Direct3D10.Query">
  17344. <summary>
  17345. <p>A query interface queries information from the GPU.</p>
  17346. </summary>
  17347. <remarks>
  17348. <p>A query can be created with <strong><see cref="M:SharpDX.Direct3D10.Device.CreateQuery(SharpDX.Direct3D10.QueryDescription,SharpDX.Direct3D10.Query)" /></strong>.</p><p>This interface inherits the functionality of an <strong><see cref="T:SharpDX.Direct3D10.Asynchronous" /> Interface</strong>.</p><p>Query data is typically gathered by issuing an <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.Begin" /></strong> command, issuing some graphics commands, issuing an <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong> command, and then calling <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> to get data about what happened in between the Begin and End calls. The data returned by GetData will be different depending on the type of query.</p><p>There are, however, some queries that do not require calls to Begin. For a list of possible queries see <strong><see cref="T:SharpDX.Direct3D10.QueryType" /></strong>.</p><p>A query is typically executed as shown in the following code:</p><pre><see cref="T:SharpDX.Direct3D10.QueryDescription" /> queryDesc; ... // Fill out queryDesc structure <see cref="T:SharpDX.Direct3D10.Query" /> * pQuery;
  17349. pDevice-&gt;CreateQuery(&amp;queryDesc, &amp;pQuery); pQuery-&gt;Begin(); ... // Issue graphis commands, do whatever pQuery-&gt;End(); UINT64 queryData; // This data type is different depending on the query type while( <see cref="F:SharpDX.Result.Ok" /> != pQuery-&gt;GetData(&amp;queryData, sizeof(UINT64), 0) )
  17350. {
  17351. }
  17352. </pre><p>When using a query that does not require a call to Begin, it still requires a call to End. The call to End causes the data returned by GetData to be accurate up until the last call to End.</p>
  17353. </remarks>
  17354. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Query']/*" />
  17355. <msdn-id>bb173823</msdn-id>
  17356. <unmanaged>ID3D10Query</unmanaged>
  17357. <unmanaged-short>ID3D10Query</unmanaged-short>
  17358. </member>
  17359. <member name="M:SharpDX.Direct3D10.Query.#ctor(System.IntPtr)">
  17360. <summary>
  17361. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Query"/> class.
  17362. </summary>
  17363. <param name="nativePtr">The native pointer.</param>
  17364. </member>
  17365. <member name="M:SharpDX.Direct3D10.Query.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Query">
  17366. <summary>
  17367. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Query"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  17368. </summary>
  17369. <param name="nativePointer">The native pointer.</param>
  17370. <returns>
  17371. The result of the conversion.
  17372. </returns>
  17373. </member>
  17374. <member name="P:SharpDX.Direct3D10.Query.Description">
  17375. <summary>
  17376. <p>Get a query description.</p>
  17377. </summary>
  17378. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Query::GetDesc']/*" />
  17379. <msdn-id>bb173824</msdn-id>
  17380. <unmanaged>GetDesc</unmanaged>
  17381. <unmanaged-short>GetDesc</unmanaged-short>
  17382. <unmanaged>void ID3D10Query::GetDesc([Out] D3D10_QUERY_DESC* pDesc)</unmanaged>
  17383. </member>
  17384. <member name="M:SharpDX.Direct3D10.Query.GetDescription(SharpDX.Direct3D10.QueryDescription@)">
  17385. <summary>
  17386. <p>Get a query description.</p>
  17387. </summary>
  17388. <param name="descRef"><dd> <p>Pointer to a query description (see <strong><see cref="T:SharpDX.Direct3D10.QueryDescription" /></strong>).</p> </dd></param>
  17389. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Query::GetDesc']/*" />
  17390. <msdn-id>bb173824</msdn-id>
  17391. <unmanaged>void ID3D10Query::GetDesc([Out] D3D10_QUERY_DESC* pDesc)</unmanaged>
  17392. <unmanaged-short>ID3D10Query::GetDesc</unmanaged-short>
  17393. </member>
  17394. <member name="M:SharpDX.Direct3D10.Query.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.QueryDescription)">
  17395. <summary>
  17396. Constructs a new <see cref = "T:SharpDX.Direct3D10.Query" /> based on the specified description.
  17397. </summary>
  17398. <param name = "device">The device with which to associate the state object.</param>
  17399. <param name = "description">The query description.</param>
  17400. <returns>The newly created object.</returns>
  17401. </member>
  17402. <member name="T:SharpDX.Direct3D10.RasterizerState">
  17403. <summary>
  17404. <p>A rasterizer-state interface accesses rasterizer state for the rasterizer stage.</p>
  17405. </summary>
  17406. <remarks>
  17407. <p>A rasterizer-state object is created with <strong><see cref="M:SharpDX.Direct3D10.Device.CreateRasterizerState(SharpDX.Direct3D10.RasterizerStateDescription@,SharpDX.Direct3D10.RasterizerState)" /></strong> and bound to the pipeline with <strong><see cref="M:SharpDX.Direct3D10.RasterizerStage.SetState(SharpDX.Direct3D10.RasterizerState)" /></strong>.</p>
  17408. </remarks>
  17409. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10RasterizerState']/*" />
  17410. <msdn-id>bb173825</msdn-id>
  17411. <unmanaged>ID3D10RasterizerState</unmanaged>
  17412. <unmanaged-short>ID3D10RasterizerState</unmanaged-short>
  17413. </member>
  17414. <member name="M:SharpDX.Direct3D10.RasterizerState.#ctor(System.IntPtr)">
  17415. <summary>
  17416. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.RasterizerState"/> class.
  17417. </summary>
  17418. <param name="nativePtr">The native pointer.</param>
  17419. </member>
  17420. <member name="M:SharpDX.Direct3D10.RasterizerState.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.RasterizerState">
  17421. <summary>
  17422. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.RasterizerState"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  17423. </summary>
  17424. <param name="nativePointer">The native pointer.</param>
  17425. <returns>
  17426. The result of the conversion.
  17427. </returns>
  17428. </member>
  17429. <member name="P:SharpDX.Direct3D10.RasterizerState.Description">
  17430. <summary>
  17431. <p>Get the properties of a rasterizer-state object.</p>
  17432. </summary>
  17433. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10RasterizerState::GetDesc']/*" />
  17434. <msdn-id>bb173826</msdn-id>
  17435. <unmanaged>GetDesc</unmanaged>
  17436. <unmanaged-short>GetDesc</unmanaged-short>
  17437. <unmanaged>void ID3D10RasterizerState::GetDesc([Out] D3D10_RASTERIZER_DESC* pDesc)</unmanaged>
  17438. </member>
  17439. <member name="M:SharpDX.Direct3D10.RasterizerState.GetDescription(SharpDX.Direct3D10.RasterizerStateDescription@)">
  17440. <summary>
  17441. <p>Get the properties of a rasterizer-state object.</p>
  17442. </summary>
  17443. <param name="descRef"><dd> <p>Pointer to a rasterizer-state description (see <strong><see cref="T:SharpDX.Direct3D10.RasterizerStateDescription" /></strong>).</p> </dd></param>
  17444. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10RasterizerState::GetDesc']/*" />
  17445. <msdn-id>bb173826</msdn-id>
  17446. <unmanaged>void ID3D10RasterizerState::GetDesc([Out] D3D10_RASTERIZER_DESC* pDesc)</unmanaged>
  17447. <unmanaged-short>ID3D10RasterizerState::GetDesc</unmanaged-short>
  17448. </member>
  17449. <member name="M:SharpDX.Direct3D10.RasterizerState.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.RasterizerStateDescription)">
  17450. <summary>
  17451. Constructs a new <see cref = "T:SharpDX.Direct3D10.RasterizerState" /> based on the specified description.
  17452. </summary>
  17453. <param name = "device">The device with which to associate the state object.</param>
  17454. <param name = "description">The state description.</param>
  17455. <returns>The newly created object.</returns>
  17456. </member>
  17457. <member name="M:SharpDX.Direct3D10.RasterizerState.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.RasterizerStateDescription@)">
  17458. <summary>
  17459. Constructs a new <see cref = "T:SharpDX.Direct3D10.RasterizerState" /> based on the specified description.
  17460. </summary>
  17461. <param name = "device">The device with which to associate the state object.</param>
  17462. <param name = "description">The state description.</param>
  17463. <returns>The newly created object.</returns>
  17464. </member>
  17465. <member name="T:SharpDX.Direct3D10.RenderTargetView">
  17466. <summary>
  17467. <p>A render-target-view interface identifies the render-target subresources that can be accessed during rendering.</p>
  17468. </summary>
  17469. <remarks>
  17470. <p>To create a render-target view, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateRenderTargetView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.RenderTargetViewDescription},SharpDX.Direct3D10.RenderTargetView)" /></strong>. To bind a render-target view to the pipeline, call <strong><see cref="M:SharpDX.Direct3D10.OutputMergerStage.SetRenderTargets(System.Int32,SharpDX.Direct3D10.RenderTargetView[],SharpDX.Direct3D10.DepthStencilView)" /></strong>.</p><p>A rendertarget is a resource that can be written by the output-merger stage at the end of a render pass. Each render-target should also have a corresponding depth-stencil view.</p>
  17471. </remarks>
  17472. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10RenderTargetView']/*" />
  17473. <msdn-id>bb173827</msdn-id>
  17474. <unmanaged>ID3D10RenderTargetView</unmanaged>
  17475. <unmanaged-short>ID3D10RenderTargetView</unmanaged-short>
  17476. </member>
  17477. <member name="M:SharpDX.Direct3D10.RenderTargetView.#ctor(System.IntPtr)">
  17478. <summary>
  17479. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.RenderTargetView"/> class.
  17480. </summary>
  17481. <param name="nativePtr">The native pointer.</param>
  17482. </member>
  17483. <member name="M:SharpDX.Direct3D10.RenderTargetView.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.RenderTargetView">
  17484. <summary>
  17485. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.RenderTargetView"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  17486. </summary>
  17487. <param name="nativePointer">The native pointer.</param>
  17488. <returns>
  17489. The result of the conversion.
  17490. </returns>
  17491. </member>
  17492. <member name="P:SharpDX.Direct3D10.RenderTargetView.Description">
  17493. <summary>
  17494. <p>Get the properties of a render target view.</p>
  17495. </summary>
  17496. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10RenderTargetView::GetDesc']/*" />
  17497. <msdn-id>bb173828</msdn-id>
  17498. <unmanaged>GetDesc</unmanaged>
  17499. <unmanaged-short>GetDesc</unmanaged-short>
  17500. <unmanaged>void ID3D10RenderTargetView::GetDesc([Out] D3D10_RENDER_TARGET_VIEW_DESC* pDesc)</unmanaged>
  17501. </member>
  17502. <member name="M:SharpDX.Direct3D10.RenderTargetView.GetDescription(SharpDX.Direct3D10.RenderTargetViewDescription@)">
  17503. <summary>
  17504. <p>Get the properties of a render target view.</p>
  17505. </summary>
  17506. <param name="descRef"><dd> <p>Pointer to the description of a render target view (see <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription" /></strong>).</p> </dd></param>
  17507. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10RenderTargetView::GetDesc']/*" />
  17508. <msdn-id>bb173828</msdn-id>
  17509. <unmanaged>void ID3D10RenderTargetView::GetDesc([Out] D3D10_RENDER_TARGET_VIEW_DESC* pDesc)</unmanaged>
  17510. <unmanaged-short>ID3D10RenderTargetView::GetDesc</unmanaged-short>
  17511. </member>
  17512. <member name="M:SharpDX.Direct3D10.RenderTargetView.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Resource)">
  17513. <summary>
  17514. Creates a <see cref = "T:SharpDX.Direct3D10.RenderTargetView" /> for accessing resource data.
  17515. </summary>
  17516. <param name = "device">The device to use when creating this <see cref = "T:SharpDX.Direct3D10.RenderTargetView" />.</param>
  17517. <param name = "resource">The resource that represents the render-target surface. This surface must have been created with the <see cref = "T:SharpDX.Direct3D10.BindFlags">RenderTarget</see> flag.</param>
  17518. <unmanaged>ID3D10Device::CreateRenderTargetView</unmanaged>
  17519. </member>
  17520. <member name="M:SharpDX.Direct3D10.RenderTargetView.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.RenderTargetViewDescription)">
  17521. <summary>
  17522. Creates a <see cref = "T:SharpDX.Direct3D10.RenderTargetView" /> for accessing resource data.
  17523. </summary>
  17524. <param name = "device">The device to use when creating this <see cref = "T:SharpDX.Direct3D10.RenderTargetView" />.</param>
  17525. <param name = "resource">The resource that represents the render-target surface. This surface must have been created with the <see cref = "T:SharpDX.Direct3D10.BindFlags">RenderTarget</see> flag.</param>
  17526. <param name = "description">A structure describing the <see cref = "T:SharpDX.Direct3D10.RenderTargetView" /> to be created.</param>
  17527. <unmanaged>ID3D10Device::CreateRenderTargetView</unmanaged>
  17528. </member>
  17529. <member name="T:SharpDX.Direct3D10.Resource">
  17530. <summary>
  17531. <p>A resource interface provides common actions on all resources.</p>
  17532. </summary>
  17533. <remarks>
  17534. <p>A resource interface cannot be created directly; instead, buffers and textures are created that inherit from a resource interface (see Creating Buffer Resources or Creating Texture Resources).</p>
  17535. </remarks>
  17536. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Resource']/*" />
  17537. <msdn-id>bb173829</msdn-id>
  17538. <unmanaged>ID3D10Resource</unmanaged>
  17539. <unmanaged-short>ID3D10Resource</unmanaged-short>
  17540. </member>
  17541. <member name="M:SharpDX.Direct3D10.Resource.#ctor(System.IntPtr)">
  17542. <summary>
  17543. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Resource"/> class.
  17544. </summary>
  17545. <param name="nativePtr">The native pointer.</param>
  17546. </member>
  17547. <member name="M:SharpDX.Direct3D10.Resource.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Resource">
  17548. <summary>
  17549. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Resource"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  17550. </summary>
  17551. <param name="nativePointer">The native pointer.</param>
  17552. <returns>
  17553. The result of the conversion.
  17554. </returns>
  17555. </member>
  17556. <member name="F:SharpDX.Direct3D10.Resource.MaximumMipLevels">
  17557. <summary>Constant MaximumMipLevels.</summary>
  17558. <unmanaged>D3D10_REQ_MIP_LEVELS</unmanaged>
  17559. </member>
  17560. <member name="F:SharpDX.Direct3D10.Resource.ResourceSizeInMegabytes">
  17561. <summary>Constant ResourceSizeInMegabytes.</summary>
  17562. <unmanaged>D3D10_REQ_RESOURCE_SIZE_IN_MEGABYTES</unmanaged>
  17563. </member>
  17564. <member name="F:SharpDX.Direct3D10.Resource.MaximumTexture1DArraySize">
  17565. <summary>Constant MaximumTexture1DArraySize.</summary>
  17566. <unmanaged>D3D10_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION</unmanaged>
  17567. </member>
  17568. <member name="F:SharpDX.Direct3D10.Resource.MaximumTexture2DArraySize">
  17569. <summary>Constant MaximumTexture2DArraySize.</summary>
  17570. <unmanaged>D3D10_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION</unmanaged>
  17571. </member>
  17572. <member name="F:SharpDX.Direct3D10.Resource.MaximumTexture1DSize">
  17573. <summary>Constant MaximumTexture1DSize.</summary>
  17574. <unmanaged>D3D10_REQ_TEXTURE1D_U_DIMENSION</unmanaged>
  17575. </member>
  17576. <member name="F:SharpDX.Direct3D10.Resource.MaximumTexture2DSize">
  17577. <summary>Constant MaximumTexture2DSize.</summary>
  17578. <unmanaged>D3D10_REQ_TEXTURE2D_U_OR_V_DIMENSION</unmanaged>
  17579. </member>
  17580. <member name="F:SharpDX.Direct3D10.Resource.MaximumTexture3DSize">
  17581. <summary>Constant MaximumTexture3DSize.</summary>
  17582. <unmanaged>D3D10_REQ_TEXTURE3D_U_V_OR_W_DIMENSION</unmanaged>
  17583. </member>
  17584. <member name="F:SharpDX.Direct3D10.Resource.MaximumTextureCubeSize">
  17585. <summary>Constant MaximumTextureCubeSize.</summary>
  17586. <unmanaged>D3D10_REQ_TEXTURECUBE_DIMENSION</unmanaged>
  17587. </member>
  17588. <member name="P:SharpDX.Direct3D10.Resource.TypeInfo">
  17589. <summary>
  17590. <p>Get the type of the resource.</p>
  17591. </summary>
  17592. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Resource::GetType']/*" />
  17593. <msdn-id>bb173831</msdn-id>
  17594. <unmanaged>GetType</unmanaged>
  17595. <unmanaged-short>GetType</unmanaged-short>
  17596. <unmanaged>void ID3D10Resource::GetType([Out] D3D10_RESOURCE_DIMENSION* rType)</unmanaged>
  17597. </member>
  17598. <member name="P:SharpDX.Direct3D10.Resource.EvictionPriority">
  17599. <summary>
  17600. <p>Get or sets the eviction priority of a resource.</p>
  17601. </summary>
  17602. <remarks>
  17603. <p>This method is a wrapper for <strong>GetEvictionPriority</strong> and is provided in the <strong><see cref="T:SharpDX.Direct3D10.Resource" /> Interface</strong> interface for convenience.</p>
  17604. </remarks>
  17605. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Resource::GetEvictionPriority']/*" />
  17606. <msdn-id>bb173830</msdn-id>
  17607. <unmanaged>GetEvictionPriority / SetEvictionPriority</unmanaged>
  17608. <unmanaged-short>GetEvictionPriority</unmanaged-short>
  17609. <unmanaged>unsigned int ID3D10Resource::GetEvictionPriority()</unmanaged>
  17610. </member>
  17611. <member name="M:SharpDX.Direct3D10.Resource.GetTypeInfo(SharpDX.Direct3D10.ResourceDimension@)">
  17612. <summary>
  17613. <p>Get the type of the resource.</p>
  17614. </summary>
  17615. <param name="rType"><dd> <p>Pointer to the resource type (see <strong><see cref="T:SharpDX.Direct3D10.ResourceDimension" /></strong>).</p> </dd></param>
  17616. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Resource::GetType']/*" />
  17617. <msdn-id>bb173831</msdn-id>
  17618. <unmanaged>void ID3D10Resource::GetType([Out] D3D10_RESOURCE_DIMENSION* rType)</unmanaged>
  17619. <unmanaged-short>ID3D10Resource::GetType</unmanaged-short>
  17620. </member>
  17621. <member name="M:SharpDX.Direct3D10.Resource.SetEvictionPriority(System.Int32)">
  17622. <summary>
  17623. <p>Set the eviction priority of a resource.</p>
  17624. </summary>
  17625. <param name="evictionPriority"><dd> <p>Eviction priority for the resource, which is one of the following values:</p> <ul> <li><see cref="F:SharpDX.DXGI.ResourcePriority.Minimum" /></li> <li><see cref="F:SharpDX.DXGI.ResourcePriority.Low" /></li> <li><see cref="F:SharpDX.DXGI.ResourcePriority.Normal" /></li> <li><see cref="F:SharpDX.DXGI.ResourcePriority.High" /></li> <li><see cref="F:SharpDX.DXGI.ResourcePriority.Maximum" /></li> </ul> </dd></param>
  17626. <remarks>
  17627. <p>Resource priorities determine which resource to evict from video memory when the system has run out of video memory. The resource will not be lost; it will be removed from video memory and placed into system memory, or possibly placed onto the hard drive. The resource will be loaded back into video memory when it is required.</p><p>A resource that is set to the maximum priority, <see cref="F:SharpDX.DXGI.ResourcePriority.Maximum" />, is only evicted if there is no other way of resolving the incoming memory request. The Windows Display Driver Model (WDDM) tries to split an incoming memory request to its minimum size and evict lower-priority resources before evicting a resource with maximum priority.</p><p>Changing the priorities of resources should be done carefully. The wrong eviction priorities could be a detriment to performance rather than an improvement. See <strong>QueryResourceResidency</strong> for additional information.</p><p>This method is a wrapper for <strong>SetEvictionPriority</strong> and is provided in the <strong><see cref="T:SharpDX.Direct3D10.Resource" /> Interface</strong> interface for convenience.</p>
  17628. </remarks>
  17629. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Resource::SetEvictionPriority']/*" />
  17630. <msdn-id>bb173832</msdn-id>
  17631. <unmanaged>void ID3D10Resource::SetEvictionPriority([In] unsigned int EvictionPriority)</unmanaged>
  17632. <unmanaged-short>ID3D10Resource::SetEvictionPriority</unmanaged-short>
  17633. </member>
  17634. <member name="M:SharpDX.Direct3D10.Resource.GetEvictionPriority">
  17635. <summary>
  17636. <p>Get the eviction priority of a resource.</p>
  17637. </summary>
  17638. <returns><p>One of the following values, which specifies the eviction priority for the resource:</p><ul> <li><see cref="F:SharpDX.DXGI.ResourcePriority.Minimum" /></li> <li><see cref="F:SharpDX.DXGI.ResourcePriority.Low" /></li> <li><see cref="F:SharpDX.DXGI.ResourcePriority.Normal" /></li> <li><see cref="F:SharpDX.DXGI.ResourcePriority.High" /></li> <li><see cref="F:SharpDX.DXGI.ResourcePriority.Maximum" /></li> </ul></returns>
  17639. <remarks>
  17640. <p>This method is a wrapper for <strong>GetEvictionPriority</strong> and is provided in the <strong><see cref="T:SharpDX.Direct3D10.Resource" /> Interface</strong> interface for convenience.</p>
  17641. </remarks>
  17642. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Resource::GetEvictionPriority']/*" />
  17643. <msdn-id>bb173830</msdn-id>
  17644. <unmanaged>unsigned int ID3D10Resource::GetEvictionPriority()</unmanaged>
  17645. <unmanaged-short>ID3D10Resource::GetEvictionPriority</unmanaged-short>
  17646. </member>
  17647. <member name="M:SharpDX.Direct3D10.Resource.FromSwapChain``1(SharpDX.DXGI.SwapChain,System.Int32)">
  17648. <summary>
  17649. Gets a swap chain back buffer.
  17650. </summary>
  17651. <typeparam name = "T">The type of the buffer.</typeparam>
  17652. <param name = "swapChain">The swap chain to get the buffer from.</param>
  17653. <param name = "index">The index of the desired buffer.</param>
  17654. <returns>The buffer interface, or <c>null</c> on failure.</returns>
  17655. </member>
  17656. <member name="M:SharpDX.Direct3D10.Resource.FromFile``1(SharpDX.Direct3D10.Device,System.String)">
  17657. <summary>
  17658. Loads a texture from an image file.
  17659. </summary>
  17660. <param name = "device">The device used to load the texture.</param>
  17661. <param name = "fileName">Path to the file on disk.</param>
  17662. <returns>The loaded texture object.</returns>
  17663. </member>
  17664. <member name="M:SharpDX.Direct3D10.Resource.FromFile``1(SharpDX.Direct3D10.Device,System.String,SharpDX.Direct3D10.ImageLoadInformation)">
  17665. <summary>
  17666. Loads a texture from an image file.
  17667. </summary>
  17668. <param name = "device">The device used to load the texture.</param>
  17669. <param name = "fileName">Path to the file on disk.</param>
  17670. <param name = "loadInfo">Specifies information used to load the texture.</param>
  17671. <returns>The loaded texture object.</returns>
  17672. </member>
  17673. <member name="M:SharpDX.Direct3D10.Resource.FromMemory``1(SharpDX.Direct3D10.Device,System.Byte[])">
  17674. <summary>
  17675. Loads a texture from an image in memory.
  17676. </summary>
  17677. <param name = "device">The device used to load the texture.</param>
  17678. <param name = "memory">Array of memory containing the image data to load.</param>
  17679. <returns>The loaded texture object.</returns>
  17680. </member>
  17681. <member name="M:SharpDX.Direct3D10.Resource.FromMemory``1(SharpDX.Direct3D10.Device,System.Byte[],SharpDX.Direct3D10.ImageLoadInformation)">
  17682. <summary>
  17683. Loads a texture from an image in memory.
  17684. </summary>
  17685. <param name = "device">The device used to load the texture.</param>
  17686. <param name = "memory">Array of memory containing the image data to load.</param>
  17687. <param name = "loadInfo">Specifies information used to load the texture.</param>
  17688. <returns>The loaded texture object.</returns>
  17689. </member>
  17690. <member name="M:SharpDX.Direct3D10.Resource.FromStream``1(SharpDX.Direct3D10.Device,System.IO.Stream,System.Int32)">
  17691. <summary>
  17692. Loads a texture from a stream of data.
  17693. </summary>
  17694. <param name = "device">The device used to load the texture.</param>
  17695. <param name = "stream">A stream containing the image data to load.</param>
  17696. <param name = "sizeInBytes">Size of the image to load.</param>
  17697. <returns>The loaded texture object.</returns>
  17698. </member>
  17699. <member name="M:SharpDX.Direct3D10.Resource.FromStream``1(SharpDX.Direct3D10.Device,System.IO.Stream,System.Int32,SharpDX.Direct3D10.ImageLoadInformation)">
  17700. <summary>
  17701. Loads a texture from a stream of data.
  17702. </summary>
  17703. <param name = "device">The device used to load the texture.</param>
  17704. <param name = "stream">A stream containing the image data to load.</param>
  17705. <param name = "sizeInBytes">Size of the image to load.</param>
  17706. <param name = "loadInfo">Specifies information used to load the texture.</param>
  17707. <returns>The loaded texture object.</returns>
  17708. </member>
  17709. <member name="M:SharpDX.Direct3D10.Resource.ToFile``1(``0,SharpDX.Direct3D10.ImageFileFormat,System.String)">
  17710. <summary>
  17711. Saves a texture to file.
  17712. </summary>
  17713. <param name = "texture">The texture to save.</param>
  17714. <param name = "format">The format the texture will be saved as.</param>
  17715. <param name = "fileName">Name of the destination output file where the texture will be saved.</param>
  17716. <returns>A <see cref = "T:SharpDX.Result" /> object describing the result of the operation.</returns>
  17717. </member>
  17718. <member name="M:SharpDX.Direct3D10.Resource.ToStream``1(``0,SharpDX.Direct3D10.ImageFileFormat,System.IO.Stream)">
  17719. <summary>
  17720. Saves a texture to a stream.
  17721. </summary>
  17722. <param name = "texture">The texture to save.</param>
  17723. <param name = "format">The format the texture will be saved as.</param>
  17724. <param name = "stream">Destination memory stream where the image will be saved.</param>
  17725. <returns>A <see cref = "T:SharpDX.Result" /> object describing the result of the operation.</returns>
  17726. </member>
  17727. <member name="M:SharpDX.Direct3D10.Resource.LoadTextureFromTexture(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.TextureLoadInformation)">
  17728. <summary>
  17729. Load a texture from a texture.
  17730. </summary>
  17731. <param name="source">Pointer to the source texture. See <see cref="T:SharpDX.Direct3D10.Resource"/>. </param>
  17732. <param name="destination">Pointer to the destination texture. See <see cref="T:SharpDX.Direct3D10.Resource"/>. </param>
  17733. <param name="loadInformation">Pointer to texture loading parameters. See <see cref="T:SharpDX.Direct3D10.TextureLoadInformation"/>. </param>
  17734. <returns>The return value is one of the values listed in {{Direct3D 10 Return Codes}}. </returns>
  17735. <unmanaged>HRESULT D3DX10LoadTextureFromTexture([None] ID3D10Resource* pSrcTexture,[None] D3DX10_TEXTURE_LOAD_INFO* pLoadInfo,[None] ID3D10Resource* pDstTexture)</unmanaged>
  17736. </member>
  17737. <member name="M:SharpDX.Direct3D10.Resource.FilterTexture(System.Int32,SharpDX.Direct3D10.FilterFlags)">
  17738. <summary>
  17739. Generates mipmap chain using a particular texture filter.
  17740. </summary>
  17741. <param name="sourceLevel">The mipmap level whose data is used to generate the rest of the mipmap chain. </param>
  17742. <param name="mipFilter">Flags controlling how each miplevel is filtered (or D3DX10_DEFAULT for D3DX10_FILTER_BOX). See <see cref="T:SharpDX.Direct3D10.FilterFlags"/>. </param>
  17743. <returns>The return value is one of the values listed in {{Direct3D 10 Return Codes}}. </returns>
  17744. <unmanaged>HRESULT D3DX10FilterTexture([None] ID3D10Resource* pTexture,[None] int SrcLevel,[None] int MipFilter)</unmanaged>
  17745. </member>
  17746. <member name="M:SharpDX.Direct3D10.Resource.AsSurface">
  17747. <summary>
  17748. Returns a DXGI Surface for this resource.
  17749. </summary>
  17750. <returns>The buffer interface, or <c>null</c> on failure.</returns>
  17751. </member>
  17752. <member name="M:SharpDX.Direct3D10.Resource.CalculateSubResourceIndex(System.Int32,System.Int32,System.Int32)">
  17753. <summary>
  17754. Calculates a subresource index.
  17755. </summary>
  17756. <param name="mipSlice">The index of the desired mip slice.</param>
  17757. <param name="arraySlice">The index of the desired array slice.</param>
  17758. <param name="mipLevels">The total number of mip levels.</param>
  17759. <returns>The subresource index (equivalent to mipSlice + (arraySlice * mipLevels)).</returns>
  17760. </member>
  17761. <member name="M:SharpDX.Direct3D10.Resource.GetMipSize(System.Int32,System.Int32)">
  17762. <summary>
  17763. Calculate the MipSize
  17764. </summary>
  17765. <param name="mipSlice"></param>
  17766. <param name="baseSliceSize"></param>
  17767. <returns></returns>
  17768. </member>
  17769. <member name="T:SharpDX.Direct3D10.ResourceView">
  17770. <summary>
  17771. <p>A view interface specifies the parts of a resource the pipeline can access during rendering (see view).</p>
  17772. </summary>
  17773. <remarks>
  17774. <p>A view interface is the base interface for all views. There are three types of views; a depth-stencil view, a render-target view, and a shader-resource view.</p><ul> <li>To create a render-target view, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateRenderTargetView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.RenderTargetViewDescription},SharpDX.Direct3D10.RenderTargetView)" /></strong>.</li> <li>To create a depth-stencil view, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateDepthStencilView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.DepthStencilViewDescription},SharpDX.Direct3D10.DepthStencilView)" /></strong>.</li> <li>To create a shader-resource view, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</li> </ul><p>All resources must be bound to the pipeline before they can be accessed.</p><ul> <li>To bind a render-target view or a depth-stencil view, call <strong><see cref="M:SharpDX.Direct3D10.OutputMergerStage.SetRenderTargets(System.Int32,SharpDX.Direct3D10.RenderTargetView[],SharpDX.Direct3D10.DepthStencilView)" /></strong>.</li> <li>To bind a shader-resource view, call <strong><see cref="M:SharpDX.Direct3D10.VertexShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])" /></strong>.</li> </ul><p>A view can also be used to access a typeless resource.</p>
  17775. </remarks>
  17776. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10View']/*" />
  17777. <msdn-id>bb173876</msdn-id>
  17778. <unmanaged>ID3D10View</unmanaged>
  17779. <unmanaged-short>ID3D10View</unmanaged-short>
  17780. </member>
  17781. <member name="M:SharpDX.Direct3D10.ResourceView.#ctor(System.IntPtr)">
  17782. <summary>
  17783. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.ResourceView"/> class.
  17784. </summary>
  17785. <param name="nativePtr">The native pointer.</param>
  17786. </member>
  17787. <member name="M:SharpDX.Direct3D10.ResourceView.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.ResourceView">
  17788. <summary>
  17789. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.ResourceView"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  17790. </summary>
  17791. <param name="nativePointer">The native pointer.</param>
  17792. <returns>
  17793. The result of the conversion.
  17794. </returns>
  17795. </member>
  17796. <member name="P:SharpDX.Direct3D10.ResourceView.Resource">
  17797. <summary>
  17798. <p>Get the resource that is accessed through this view.</p>
  17799. </summary>
  17800. <remarks>
  17801. <p>This function increments the reference count of the resource by one, so it is necessary to call Release on the returned reference when the application is done with it. Destroying (or losing) the returned reference before Release is called will result in a memory leak.</p>
  17802. </remarks>
  17803. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10View::GetResource']/*" />
  17804. <msdn-id>bb173877</msdn-id>
  17805. <unmanaged>GetResource</unmanaged>
  17806. <unmanaged-short>GetResource</unmanaged-short>
  17807. <unmanaged>void ID3D10View::GetResource([Out] ID3D10Resource** ppResource)</unmanaged>
  17808. </member>
  17809. <member name="M:SharpDX.Direct3D10.ResourceView.GetResource(SharpDX.Direct3D10.Resource@)">
  17810. <summary>
  17811. <p>Get the resource that is accessed through this view.</p>
  17812. </summary>
  17813. <param name="resourceOut"><dd> <p>Address of a reference to the resource that is accessed through this view. (See <strong><see cref="T:SharpDX.Direct3D10.Resource" /></strong>.)</p> </dd></param>
  17814. <remarks>
  17815. <p>This function increments the reference count of the resource by one, so it is necessary to call Release on the returned reference when the application is done with it. Destroying (or losing) the returned reference before Release is called will result in a memory leak.</p>
  17816. </remarks>
  17817. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10View::GetResource']/*" />
  17818. <msdn-id>bb173877</msdn-id>
  17819. <unmanaged>void ID3D10View::GetResource([Out] ID3D10Resource** ppResource)</unmanaged>
  17820. <unmanaged-short>ID3D10View::GetResource</unmanaged-short>
  17821. </member>
  17822. <member name="T:SharpDX.Direct3D10.SamplerState">
  17823. <summary>
  17824. <p>A sampler-state interface accesses sampler state for a texture.</p>
  17825. </summary>
  17826. <remarks>
  17827. <p>Create a sampler-state object by calling <strong><see cref="M:SharpDX.Direct3D10.Device.CreateSamplerState(SharpDX.Direct3D10.SamplerStateDescription@,SharpDX.Direct3D10.SamplerState)" /></strong>.</p><p>To initialize sampler state, bind the sampler-state object to the pipeline by calling <strong><see cref="M:SharpDX.Direct3D10.VertexShaderStage.SetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.GeometryShaderStage.SetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])" /></strong>, or <strong><see cref="M:SharpDX.Direct3D10.PixelShaderStage.SetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])" /></strong>.</p>
  17828. </remarks>
  17829. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10SamplerState']/*" />
  17830. <msdn-id>bb173833</msdn-id>
  17831. <unmanaged>ID3D10SamplerState</unmanaged>
  17832. <unmanaged-short>ID3D10SamplerState</unmanaged-short>
  17833. </member>
  17834. <member name="M:SharpDX.Direct3D10.SamplerState.#ctor(System.IntPtr)">
  17835. <summary>
  17836. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.SamplerState"/> class.
  17837. </summary>
  17838. <param name="nativePtr">The native pointer.</param>
  17839. </member>
  17840. <member name="M:SharpDX.Direct3D10.SamplerState.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.SamplerState">
  17841. <summary>
  17842. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.SamplerState"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  17843. </summary>
  17844. <param name="nativePointer">The native pointer.</param>
  17845. <returns>
  17846. The result of the conversion.
  17847. </returns>
  17848. </member>
  17849. <member name="P:SharpDX.Direct3D10.SamplerState.Description">
  17850. <summary>
  17851. <p>Get the sampler state.</p>
  17852. </summary>
  17853. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10SamplerState::GetDesc']/*" />
  17854. <msdn-id>bb173834</msdn-id>
  17855. <unmanaged>GetDesc</unmanaged>
  17856. <unmanaged-short>GetDesc</unmanaged-short>
  17857. <unmanaged>void ID3D10SamplerState::GetDesc([Out] D3D10_SAMPLER_DESC* pDesc)</unmanaged>
  17858. </member>
  17859. <member name="M:SharpDX.Direct3D10.SamplerState.GetDescription(SharpDX.Direct3D10.SamplerStateDescription@)">
  17860. <summary>
  17861. <p>Get the sampler state.</p>
  17862. </summary>
  17863. <param name="descRef"><dd> <p>A reference to the sampler state (see <strong><see cref="T:SharpDX.Direct3D10.SamplerStateDescription" /></strong>).</p> </dd></param>
  17864. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10SamplerState::GetDesc']/*" />
  17865. <msdn-id>bb173834</msdn-id>
  17866. <unmanaged>void ID3D10SamplerState::GetDesc([Out] D3D10_SAMPLER_DESC* pDesc)</unmanaged>
  17867. <unmanaged-short>ID3D10SamplerState::GetDesc</unmanaged-short>
  17868. </member>
  17869. <member name="M:SharpDX.Direct3D10.SamplerState.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.SamplerStateDescription)">
  17870. <summary>
  17871. Constructs a new <see cref = "T:SharpDX.Direct3D10.SamplerState" /> based on the specified description.
  17872. </summary>
  17873. <param name = "device">The device with which to associate the state object.</param>
  17874. <param name = "description">The state description.</param>
  17875. <returns>The newly created object.</returns>
  17876. </member>
  17877. <member name="M:SharpDX.Direct3D10.SamplerState.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.SamplerStateDescription@)">
  17878. <summary>
  17879. Constructs a new <see cref = "T:SharpDX.Direct3D10.SamplerState" /> based on the specified description.
  17880. </summary>
  17881. <param name = "device">The device with which to associate the state object.</param>
  17882. <param name = "description">The state description.</param>
  17883. <returns>The newly created object.</returns>
  17884. </member>
  17885. <member name="T:SharpDX.Direct3D10.ShaderResourceView">
  17886. <summary>
  17887. <p>A shader-resource-view interface specifies the subresources a shader can access during rendering. Examples of shader resources include a constant buffer, a texture buffer, a texture or a sampler.</p>
  17888. </summary>
  17889. <remarks>
  17890. <p>To create a shader-resource view, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p><p>A shader-resource view is required when binding a resource to a shader stage; the binding occurs by calling <strong><see cref="M:SharpDX.Direct3D10.GeometryShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.VertexShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])" /></strong> or <strong><see cref="M:SharpDX.Direct3D10.PixelShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])" /></strong>.</p>
  17891. </remarks>
  17892. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10ShaderResourceView']/*" />
  17893. <msdn-id>bb173854</msdn-id>
  17894. <unmanaged>ID3D10ShaderResourceView</unmanaged>
  17895. <unmanaged-short>ID3D10ShaderResourceView</unmanaged-short>
  17896. </member>
  17897. <member name="M:SharpDX.Direct3D10.ShaderResourceView.#ctor(System.IntPtr)">
  17898. <summary>
  17899. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/> class.
  17900. </summary>
  17901. <param name="nativePtr">The native pointer.</param>
  17902. </member>
  17903. <member name="M:SharpDX.Direct3D10.ShaderResourceView.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.ShaderResourceView">
  17904. <summary>
  17905. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  17906. </summary>
  17907. <param name="nativePointer">The native pointer.</param>
  17908. <returns>
  17909. The result of the conversion.
  17910. </returns>
  17911. </member>
  17912. <member name="P:SharpDX.Direct3D10.ShaderResourceView.Description">
  17913. <summary>
  17914. <p>Get the shader resource view's description.</p>
  17915. </summary>
  17916. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10ShaderResourceView::GetDesc']/*" />
  17917. <msdn-id>bb173855</msdn-id>
  17918. <unmanaged>GetDesc</unmanaged>
  17919. <unmanaged-short>GetDesc</unmanaged-short>
  17920. <unmanaged>void ID3D10ShaderResourceView::GetDesc([Out] D3D10_SHADER_RESOURCE_VIEW_DESC* pDesc)</unmanaged>
  17921. </member>
  17922. <member name="M:SharpDX.Direct3D10.ShaderResourceView.GetDescription(SharpDX.Direct3D10.ShaderResourceViewDescription@)">
  17923. <summary>
  17924. <p>Get the shader resource view's description.</p>
  17925. </summary>
  17926. <param name="descRef"><dd> <p>A reference to a <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription" /></strong> structure to be filled with data about the shader resource view.</p> </dd></param>
  17927. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10ShaderResourceView::GetDesc']/*" />
  17928. <msdn-id>bb173855</msdn-id>
  17929. <unmanaged>void ID3D10ShaderResourceView::GetDesc([Out] D3D10_SHADER_RESOURCE_VIEW_DESC* pDesc)</unmanaged>
  17930. <unmanaged-short>ID3D10ShaderResourceView::GetDesc</unmanaged-short>
  17931. </member>
  17932. <member name="M:SharpDX.Direct3D10.ShaderResourceView.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Resource)">
  17933. <summary>
  17934. Creates a <see cref = "T:SharpDX.Direct3D10.ShaderResourceView" /> for accessing resource data.
  17935. </summary>
  17936. <param name = "device">The device to use when creating this <see cref = "T:SharpDX.Direct3D10.ShaderResourceView" />.</param>
  17937. <param name = "resource">The resource that represents the render-target surface. This surface must have been created with the <see cref = "T:SharpDX.Direct3D10.BindFlags">ShaderResource</see> flag.</param>
  17938. <unmanaged>ID3D10Device::CreateShaderResourceView</unmanaged>
  17939. </member>
  17940. <member name="M:SharpDX.Direct3D10.ShaderResourceView.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.ShaderResourceViewDescription)">
  17941. <summary>
  17942. Creates a <see cref = "T:SharpDX.Direct3D10.ShaderResourceView" /> for accessing resource data.
  17943. </summary>
  17944. <param name = "device">The device to use when creating this <see cref = "T:SharpDX.Direct3D10.ShaderResourceView" />.</param>
  17945. <param name = "resource">The resource that represents the render-target surface. This surface must have been created with the <see cref = "T:SharpDX.Direct3D10.BindFlags">ShaderResource</see> flag.</param>
  17946. <param name = "description">A structure describing the <see cref = "T:SharpDX.Direct3D10.ShaderResourceView" /> to be created.</param>
  17947. <unmanaged>ID3D10Device::CreateShaderResourceView</unmanaged>
  17948. </member>
  17949. <member name="M:SharpDX.Direct3D10.ShaderResourceView.FromFile(SharpDX.Direct3D10.Device,System.String)">
  17950. <summary>
  17951. Create a shader-resource view from a file. Read the characteristics of a texture when the texture is loaded.
  17952. </summary>
  17953. <param name="device">A reference to the device (see <see cref="T:SharpDX.Direct3D10.Device"/>) that will use the resource. </param>
  17954. <param name="fileName">Name of the file that contains the shader-resource view.</param>
  17955. <returns>Returns a reference to the shader-resource view (see <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>). </returns>
  17956. <unmanaged>HRESULT D3DX10CreateShaderResourceViewFromFileW([None] ID3D10Device* pDevice,[None] const wchar_t* pSrcFile,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[None] ID3DX10ThreadPump* pPump,[None] ID3D10ShaderResourceView** ppShaderResourceView,[None] HRESULT* pHResult)</unmanaged>
  17957. </member>
  17958. <member name="M:SharpDX.Direct3D10.ShaderResourceView.FromFile(SharpDX.Direct3D10.Device,System.String,SharpDX.Direct3D10.ImageLoadInformation)">
  17959. <summary>
  17960. Create a shader-resource view from a file.
  17961. </summary>
  17962. <param name="device">A reference to the device (see <see cref="T:SharpDX.Direct3D10.Device"/>) that will use the resource. </param>
  17963. <param name="fileName">Name of the file that contains the shader-resource view.</param>
  17964. <param name="loadInformation">Identifies the characteristics of a texture (see <see cref="T:SharpDX.Direct3D10.ImageLoadInformation"/>) when the data processor is created. </param>
  17965. <returns>Returns a reference to the shader-resource view (see <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>). </returns>
  17966. <unmanaged>HRESULT D3DX10CreateShaderResourceViewFromFileW([None] ID3D10Device* pDevice,[None] const wchar_t* pSrcFile,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[None] ID3DX10ThreadPump* pPump,[None] ID3D10ShaderResourceView** ppShaderResourceView,[None] HRESULT* pHResult)</unmanaged>
  17967. </member>
  17968. <member name="M:SharpDX.Direct3D10.ShaderResourceView.FromMemory(SharpDX.Direct3D10.Device,System.Byte[])">
  17969. <summary>
  17970. Create a shader-resource view from a file in memory.
  17971. </summary>
  17972. <param name="device">A reference to the device (see <see cref="T:SharpDX.Direct3D10.Device"/>) that will use the resource. </param>
  17973. <param name="memory">Pointer to a memory location that contains the shader-resource view. </param>
  17974. <returns>Returns a reference to the shader-resource view (see <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>). </returns>
  17975. <unmanaged>HRESULT D3DX10CreateShaderResourceViewFromMemory([None] ID3D10Device* pDevice,[None] const void* pSrcData,[None] SIZE_T SrcDataSize,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[None] ID3DX10ThreadPump* pPump,[None] ID3D10ShaderResourceView** ppShaderResourceView,[None] HRESULT* pHResult)</unmanaged>
  17976. </member>
  17977. <member name="M:SharpDX.Direct3D10.ShaderResourceView.FromMemory(SharpDX.Direct3D10.Device,System.Byte[],SharpDX.Direct3D10.ImageLoadInformation)">
  17978. <summary>
  17979. Create a shader-resource view from a file in memory.
  17980. </summary>
  17981. <param name="device">A reference to the device (see <see cref="T:SharpDX.Direct3D10.Device"/>) that will use the resource. </param>
  17982. <param name="memory">Pointer to a memory location that contains the shader-resource view. </param>
  17983. <param name="loadInformation">Identifies the characteristics of a texture (see <see cref="T:SharpDX.Direct3D10.ImageLoadInformation"/>) when the data processor is created. </param>
  17984. <returns>Returns a reference to the shader-resource view (see <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>). </returns>
  17985. <unmanaged>HRESULT D3DX10CreateShaderResourceViewFromMemory([None] ID3D10Device* pDevice,[None] const void* pSrcData,[None] SIZE_T SrcDataSize,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[None] ID3DX10ThreadPump* pPump,[None] ID3D10ShaderResourceView** ppShaderResourceView,[None] HRESULT* pHResult)</unmanaged>
  17986. </member>
  17987. <member name="M:SharpDX.Direct3D10.ShaderResourceView.FromStream(SharpDX.Direct3D10.Device,System.IO.Stream,System.Int32)">
  17988. <summary>
  17989. Create a shader-resource view from a file in a stream..
  17990. </summary>
  17991. <param name="device">A reference to the device (see <see cref="T:SharpDX.Direct3D10.Device"/>) that will use the resource. </param>
  17992. <param name="stream">Pointer to the file in memory that contains the shader-resource view. </param>
  17993. <param name="sizeInBytes">Size of the file to read from the stream</param>
  17994. <returns>Returns a reference to the shader-resource view (see <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>). </returns>
  17995. <unmanaged>HRESULT D3DX10CreateShaderResourceViewFromMemory([None] ID3D10Device* pDevice,[None] const void* pSrcData,[None] SIZE_T SrcDataSize,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[None] ID3DX10ThreadPump* pPump,[None] ID3D10ShaderResourceView** ppShaderResourceView,[None] HRESULT* pHResult)</unmanaged>
  17996. </member>
  17997. <member name="M:SharpDX.Direct3D10.ShaderResourceView.FromStream(SharpDX.Direct3D10.Device,System.IO.Stream,System.Int32,SharpDX.Direct3D10.ImageLoadInformation)">
  17998. <summary>
  17999. Create a shader-resource view from a file in a stream..
  18000. </summary>
  18001. <param name="device">A reference to the device (see <see cref="T:SharpDX.Direct3D10.Device"/>) that will use the resource. </param>
  18002. <param name="stream">Pointer to the file in memory that contains the shader-resource view. </param>
  18003. <param name="sizeInBytes">Size of the file to read from the stream</param>
  18004. <param name="loadInformation">Identifies the characteristics of a texture (see <see cref="T:SharpDX.Direct3D10.ImageLoadInformation"/>) when the data processor is created. </param>
  18005. <returns>Returns a reference to the shader-resource view (see <see cref="T:SharpDX.Direct3D10.ShaderResourceView"/>). </returns>
  18006. <unmanaged>HRESULT D3DX10CreateShaderResourceViewFromMemory([None] ID3D10Device* pDevice,[None] const void* pSrcData,[None] SIZE_T SrcDataSize,[In, Optional] D3DX10_IMAGE_LOAD_INFO* pLoadInfo,[None] ID3DX10ThreadPump* pPump,[None] ID3D10ShaderResourceView** ppShaderResourceView,[None] HRESULT* pHResult)</unmanaged>
  18007. </member>
  18008. <member name="T:SharpDX.Direct3D10.ShaderResourceView1">
  18009. <summary>
  18010. <p>A shader-resource-view interface specifies the subresources a shader can access during rendering. Examples of shader resources include a constant buffer, a texture buffer, a texture or a sampler.</p>
  18011. </summary>
  18012. <remarks>
  18013. <p>To create a shader-resource view, call <strong><see cref="M:SharpDX.Direct3D10.Device1.CreateShaderResourceView1(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription1},SharpDX.Direct3D10.ShaderResourceView1)" /></strong>.</p><p>A shader-resource view is required when binding a resource to a shader stage; the binding occurs by calling <strong><see cref="M:SharpDX.Direct3D10.GeometryShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.VertexShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])" /></strong> or <strong><see cref="M:SharpDX.Direct3D10.PixelShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])" /></strong>.</p><p>This method requires Windows Vista Service Pack 1.</p>
  18014. </remarks>
  18015. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10ShaderResourceView1']/*" />
  18016. <msdn-id>bb694557</msdn-id>
  18017. <unmanaged>ID3D10ShaderResourceView1</unmanaged>
  18018. <unmanaged-short>ID3D10ShaderResourceView1</unmanaged-short>
  18019. </member>
  18020. <member name="M:SharpDX.Direct3D10.ShaderResourceView1.#ctor(System.IntPtr)">
  18021. <summary>
  18022. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.ShaderResourceView1"/> class.
  18023. </summary>
  18024. <param name="nativePtr">The native pointer.</param>
  18025. </member>
  18026. <member name="M:SharpDX.Direct3D10.ShaderResourceView1.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.ShaderResourceView1">
  18027. <summary>
  18028. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.ShaderResourceView1"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  18029. </summary>
  18030. <param name="nativePointer">The native pointer.</param>
  18031. <returns>
  18032. The result of the conversion.
  18033. </returns>
  18034. </member>
  18035. <member name="P:SharpDX.Direct3D10.ShaderResourceView1.Description1">
  18036. <summary>
  18037. <p>Get the shader resource view's description.</p>
  18038. </summary>
  18039. <remarks>
  18040. <p>This method requires Windows Vista Service Pack 1.</p>
  18041. </remarks>
  18042. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10ShaderResourceView1::GetDesc1']/*" />
  18043. <msdn-id>bb694558</msdn-id>
  18044. <unmanaged>GetDesc1</unmanaged>
  18045. <unmanaged-short>GetDesc1</unmanaged-short>
  18046. <unmanaged>void ID3D10ShaderResourceView1::GetDesc1([Out] D3D10_SHADER_RESOURCE_VIEW_DESC1* pDesc)</unmanaged>
  18047. </member>
  18048. <member name="M:SharpDX.Direct3D10.ShaderResourceView1.GetDescription1(SharpDX.Direct3D10.ShaderResourceViewDescription1@)">
  18049. <summary>
  18050. <p>Get the shader resource view's description.</p>
  18051. </summary>
  18052. <param name="descRef"><dd> <p>A reference to a <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription1" /></strong> structure to be filled with data about the shader resource view.</p> </dd></param>
  18053. <remarks>
  18054. <p>This method requires Windows Vista Service Pack 1.</p>
  18055. </remarks>
  18056. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10ShaderResourceView1::GetDesc1']/*" />
  18057. <msdn-id>bb694558</msdn-id>
  18058. <unmanaged>void ID3D10ShaderResourceView1::GetDesc1([Out] D3D10_SHADER_RESOURCE_VIEW_DESC1* pDesc)</unmanaged>
  18059. <unmanaged-short>ID3D10ShaderResourceView1::GetDesc1</unmanaged-short>
  18060. </member>
  18061. <member name="M:SharpDX.Direct3D10.ShaderResourceView1.#ctor(SharpDX.Direct3D10.Device1,SharpDX.Direct3D10.Resource)">
  18062. <summary>
  18063. Creates a <see cref = "T:SharpDX.Direct3D10.ShaderResourceView1" /> for accessing resource data.
  18064. </summary>
  18065. <param name = "device">The device to use when creating this <see cref = "T:SharpDX.Direct3D10.ShaderResourceView" />.</param>
  18066. <param name = "resource">The resource that represents the render-target surface. This surface must have been created with the <see cref = "T:SharpDX.Direct3D10.BindFlags">ShaderResource</see> flag.</param>
  18067. <unmanaged>ID3D10Device1::CreateShaderResourceView1</unmanaged>
  18068. </member>
  18069. <member name="M:SharpDX.Direct3D10.ShaderResourceView1.#ctor(SharpDX.Direct3D10.Device1,SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.ShaderResourceViewDescription1)">
  18070. <summary>
  18071. Creates a <see cref = "T:SharpDX.Direct3D10.ShaderResourceView1" /> for accessing resource data.
  18072. </summary>
  18073. <param name = "device">The device to use when creating this <see cref = "T:SharpDX.Direct3D10.ShaderResourceView1" />.</param>
  18074. <param name = "resource">The resource that represents the render-target surface. This surface must have been created with the <see cref = "T:SharpDX.Direct3D10.BindFlags">ShaderResource</see> flag.</param>
  18075. <param name = "description">A structure describing the <see cref = "T:SharpDX.Direct3D10.ShaderResourceView1" /> to be created.</param>
  18076. <unmanaged>ID3D10Device1::CreateShaderResourceView1</unmanaged>
  18077. </member>
  18078. <member name="T:SharpDX.Direct3D10.SkinInfo">
  18079. <summary>
  18080. <p><see cref="T:SharpDX.Direct3D10.SkinInfo" /> allows you to optimize, process, and manually set the relationship between bones and vertices in your meshes (see Skeletal Animation on Wikipedia). It is most useful for making .x files exported by DCC Apps (such as 3DS Max and Maya) more hardware-friendly, and for improving the render speed of your skinned meshes in software render mode.</p>
  18081. </summary>
  18082. <remarks>
  18083. <p>Create a <see cref="T:SharpDX.Direct3D10.SkinInfo" /> interface with <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateSkinInfo(SharpDX.Direct3D10.SkinInfo@)" /></strong>, <strong>D3DX10CreateSkinInfoFromBlendedMesh</strong>, or <strong>D3DX10CreateSkinInfoFVF</strong>.</p><p>The LPD3DX10SKININFO type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D10.SkinInfo" /></strong> interface. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D10.SkinInfo" /> *LPD3DX10SKININFO;
  18084. </pre>
  18085. </remarks>
  18086. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo']/*" />
  18087. <msdn-id>bb173932</msdn-id>
  18088. <unmanaged>ID3DX10SkinInfo</unmanaged>
  18089. <unmanaged-short>ID3DX10SkinInfo</unmanaged-short>
  18090. </member>
  18091. <member name="M:SharpDX.Direct3D10.SkinInfo.#ctor(System.IntPtr)">
  18092. <summary>
  18093. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.SkinInfo"/> class.
  18094. </summary>
  18095. <param name="nativePtr">The native pointer.</param>
  18096. </member>
  18097. <member name="M:SharpDX.Direct3D10.SkinInfo.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.SkinInfo">
  18098. <summary>
  18099. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.SkinInfo"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  18100. </summary>
  18101. <param name="nativePointer">The native pointer.</param>
  18102. <returns>
  18103. The result of the conversion.
  18104. </returns>
  18105. </member>
  18106. <member name="P:SharpDX.Direct3D10.SkinInfo.NumVertices">
  18107. <summary>
  18108. <p>Get the number of vertices in <see cref="T:SharpDX.Direct3D10.SkinInfo" />.</p>
  18109. </summary>
  18110. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::GetNumVertices']/*" />
  18111. <msdn-id>bb173945</msdn-id>
  18112. <unmanaged>GetNumVertices</unmanaged>
  18113. <unmanaged-short>GetNumVertices</unmanaged-short>
  18114. <unmanaged>unsigned int ID3DX10SkinInfo::GetNumVertices()</unmanaged>
  18115. </member>
  18116. <member name="P:SharpDX.Direct3D10.SkinInfo.NumBones">
  18117. <summary>
  18118. <p>Get the number of bones in <see cref="T:SharpDX.Direct3D10.SkinInfo" />.</p>
  18119. </summary>
  18120. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::GetNumBones']/*" />
  18121. <msdn-id>bb173944</msdn-id>
  18122. <unmanaged>GetNumBones</unmanaged>
  18123. <unmanaged-short>GetNumBones</unmanaged-short>
  18124. <unmanaged>unsigned int ID3DX10SkinInfo::GetNumBones()</unmanaged>
  18125. </member>
  18126. <member name="P:SharpDX.Direct3D10.SkinInfo.MaxBoneInfluences">
  18127. <summary>
  18128. <p>Get the number of vertices a bone can maximally influence.</p>
  18129. </summary>
  18130. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::GetMaxBoneInfluences']/*" />
  18131. <msdn-id>bb173943</msdn-id>
  18132. <unmanaged>GetMaxBoneInfluences</unmanaged>
  18133. <unmanaged-short>GetMaxBoneInfluences</unmanaged-short>
  18134. <unmanaged>unsigned int ID3DX10SkinInfo::GetMaxBoneInfluences()</unmanaged>
  18135. </member>
  18136. <member name="M:SharpDX.Direct3D10.SkinInfo.GetNumVertices">
  18137. <summary>
  18138. <p>Get the number of vertices in <see cref="T:SharpDX.Direct3D10.SkinInfo" />.</p>
  18139. </summary>
  18140. <returns><p>The number of vertices in <see cref="T:SharpDX.Direct3D10.SkinInfo" />.</p></returns>
  18141. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::GetNumVertices']/*" />
  18142. <msdn-id>bb173945</msdn-id>
  18143. <unmanaged>unsigned int ID3DX10SkinInfo::GetNumVertices()</unmanaged>
  18144. <unmanaged-short>ID3DX10SkinInfo::GetNumVertices</unmanaged-short>
  18145. </member>
  18146. <member name="M:SharpDX.Direct3D10.SkinInfo.GetNumBones">
  18147. <summary>
  18148. <p>Get the number of bones in <see cref="T:SharpDX.Direct3D10.SkinInfo" />.</p>
  18149. </summary>
  18150. <returns><p>The number of bones in <see cref="T:SharpDX.Direct3D10.SkinInfo" />.</p></returns>
  18151. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::GetNumBones']/*" />
  18152. <msdn-id>bb173944</msdn-id>
  18153. <unmanaged>unsigned int ID3DX10SkinInfo::GetNumBones()</unmanaged>
  18154. <unmanaged-short>ID3DX10SkinInfo::GetNumBones</unmanaged-short>
  18155. </member>
  18156. <member name="M:SharpDX.Direct3D10.SkinInfo.GetMaxBoneInfluences">
  18157. <summary>
  18158. <p>Get the number of vertices a bone can maximally influence.</p>
  18159. </summary>
  18160. <returns><p>The number of vertices a bone can maximally influence.</p></returns>
  18161. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::GetMaxBoneInfluences']/*" />
  18162. <msdn-id>bb173943</msdn-id>
  18163. <unmanaged>unsigned int ID3DX10SkinInfo::GetMaxBoneInfluences()</unmanaged>
  18164. <unmanaged-short>ID3DX10SkinInfo::GetMaxBoneInfluences</unmanaged-short>
  18165. </member>
  18166. <member name="M:SharpDX.Direct3D10.SkinInfo.AddVertices(System.Int32)">
  18167. <summary>
  18168. <p>Allocate space for additional vertices.</p>
  18169. </summary>
  18170. <param name="count"><dd> <p>The number of vertices to add.</p> </dd></param>
  18171. <returns><p>If this method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_OUTOFMEMORY.</p></returns>
  18172. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::AddVertices']/*" />
  18173. <msdn-id>bb173935</msdn-id>
  18174. <unmanaged>HRESULT ID3DX10SkinInfo::AddVertices([In] unsigned int Count)</unmanaged>
  18175. <unmanaged-short>ID3DX10SkinInfo::AddVertices</unmanaged-short>
  18176. </member>
  18177. <member name="M:SharpDX.Direct3D10.SkinInfo.RemapVertices(System.Int32,System.Int32[])">
  18178. <summary>
  18179. <p>Change which vertices are influenced by which bones.</p>
  18180. </summary>
  18181. <param name="newVertexCount"><dd> <p>The new number of vertices.</p> </dd></param>
  18182. <param name="vertexRemapRef"><dd> <p>A reference to an array of vertex indices, which describe the remapping. For example, say SkinInfo contains some vertices such that bone0 is mapped to v0, bone1 to v1, and bone2 to v2, and array with 2,1,0 is specified for pBoneRemap. This will cause bone0 to be mapped to v2, bone1 to v1, and bone2 to v0.</p> </dd></param>
  18183. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_OUTOFMEMORY or E_INVALIDARG.</p></returns>
  18184. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::RemapVertices']/*" />
  18185. <msdn-id>bb173947</msdn-id>
  18186. <unmanaged>HRESULT ID3DX10SkinInfo::RemapVertices([In] unsigned int NewVertexCount,[In, Buffer] unsigned int* pVertexRemap)</unmanaged>
  18187. <unmanaged-short>ID3DX10SkinInfo::RemapVertices</unmanaged-short>
  18188. </member>
  18189. <member name="M:SharpDX.Direct3D10.SkinInfo.AddBones(System.Int32)">
  18190. <summary>
  18191. <p>Allocate space for more bones.</p>
  18192. </summary>
  18193. <param name="count"><dd> <p>The number of bones to add.</p> </dd></param>
  18194. <returns><p>If this method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_OUTOFMEMORY.</p></returns>
  18195. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::AddBones']/*" />
  18196. <msdn-id>bb173934</msdn-id>
  18197. <unmanaged>HRESULT ID3DX10SkinInfo::AddBones([In] unsigned int Count)</unmanaged>
  18198. <unmanaged-short>ID3DX10SkinInfo::AddBones</unmanaged-short>
  18199. </member>
  18200. <member name="M:SharpDX.Direct3D10.SkinInfo.RemoveBone(System.Int32)">
  18201. <summary>
  18202. <p>Remove a bone.</p>
  18203. </summary>
  18204. <param name="index"><dd> <p>An index that specifies which bone to remove. Must be between 0 and the value returned by <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.GetNumBones" /></strong>.</p> </dd></param>
  18205. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_INVALIDARG.</p></returns>
  18206. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::RemoveBone']/*" />
  18207. <msdn-id>bb173948</msdn-id>
  18208. <unmanaged>HRESULT ID3DX10SkinInfo::RemoveBone([In] unsigned int Index)</unmanaged>
  18209. <unmanaged-short>ID3DX10SkinInfo::RemoveBone</unmanaged-short>
  18210. </member>
  18211. <member name="M:SharpDX.Direct3D10.SkinInfo.RemapBones(System.Int32,System.Int32[])">
  18212. <summary>
  18213. <p>Change which bones influence which vertices.</p>
  18214. </summary>
  18215. <param name="newBoneCount"><dd> <p>The new number of bones.</p> </dd></param>
  18216. <param name="boneRemapRef"><dd> <p>A reference to an array of bone indices, which describe the remapping. For example, say SkinInfo contains some bones such that bone0 is mapped to v0, bone1 to v1, and bone2 to v2, and array with 2,1,0 is specified for pBoneRemap. This will cause bone0 to be mapped to v2, bone1 to v1, and bone2 to v0.</p> </dd></param>
  18217. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_OUTOFMEMORY or E_INVALIDARG.</p></returns>
  18218. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::RemapBones']/*" />
  18219. <msdn-id>bb173946</msdn-id>
  18220. <unmanaged>HRESULT ID3DX10SkinInfo::RemapBones([In] unsigned int NewBoneCount,[In, Buffer] unsigned int* pBoneRemap)</unmanaged>
  18221. <unmanaged-short>ID3DX10SkinInfo::RemapBones</unmanaged-short>
  18222. </member>
  18223. <member name="M:SharpDX.Direct3D10.SkinInfo.AddBoneInfluences(System.Int32,System.Int32,System.Int32[],System.Single[])">
  18224. <summary>
  18225. <p>Enable an existing bone to influence a group of vertices and define how much influence the bone has on each vertex.</p>
  18226. </summary>
  18227. <param name="boneIndex"><dd> <p>An index that specifies an existing bone. Must be between 0 and the value returned by <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.GetNumBones" /></strong>.</p> </dd></param>
  18228. <param name="influenceCount"><dd> <p>Number of vertices to add to the bone's influence.</p> </dd></param>
  18229. <param name="indicesRef"><dd> <p>Pointer to an array of vertex indices. Each member of this array has a corresponding member in pWeights, such that pIndices[i] corresponds to pWeights[i]. The corresponding value in pWeights[i] determines how much influence BoneIndex will have on the vertex indexed by pIndices[i]. The size of the pIndices array must be equal to or greater than InfluenceCount.</p> </dd></param>
  18230. <param name="weightsRef"><dd> <p>Pointer to an array of bone weights. Each member of this array has a corresponding member in pIndices, such that pWeights[i] corresponds to pIndices[i]. Each value in pWeights is between 0 and 1 and defines the amount of influence the bone has over each vertex. The size of pWeights must be equal to or greater than InfluenceCount.</p> </dd></param>
  18231. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_INVALIDARG or E_OUTOFMEMORY.</p></returns>
  18232. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::AddBoneInfluences']/*" />
  18233. <msdn-id>bb173933</msdn-id>
  18234. <unmanaged>HRESULT ID3DX10SkinInfo::AddBoneInfluences([In] unsigned int BoneIndex,[In] unsigned int InfluenceCount,[In, Buffer] unsigned int* pIndices,[In, Buffer] float* pWeights)</unmanaged>
  18235. <unmanaged-short>ID3DX10SkinInfo::AddBoneInfluences</unmanaged-short>
  18236. </member>
  18237. <member name="M:SharpDX.Direct3D10.SkinInfo.ClearBoneInfluences(System.Int32)">
  18238. <summary>
  18239. <p>Clear a bone's list of vertices that it influences.</p>
  18240. </summary>
  18241. <param name="boneIndex"><dd> <p>An index that specifies an existing bone. Must be between 0 and the value returned by <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.GetNumBones" /></strong>.</p> </dd></param>
  18242. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_INVALIDARG.</p></returns>
  18243. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::ClearBoneInfluences']/*" />
  18244. <msdn-id>bb173936</msdn-id>
  18245. <unmanaged>HRESULT ID3DX10SkinInfo::ClearBoneInfluences([In] unsigned int BoneIndex)</unmanaged>
  18246. <unmanaged-short>ID3DX10SkinInfo::ClearBoneInfluences</unmanaged-short>
  18247. </member>
  18248. <member name="M:SharpDX.Direct3D10.SkinInfo.GetBoneInfluenceCount(System.Int32)">
  18249. <summary>
  18250. <p>Get the number of vertices that a given bone influences.</p>
  18251. </summary>
  18252. <param name="boneIndex"><dd> <p>An index that specifies an existing bone. Must be between 0 and the value returned by <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.GetNumBones" /></strong>.</p> </dd></param>
  18253. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_INVALIDARG.</p></returns>
  18254. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::GetBoneInfluenceCount']/*" />
  18255. <msdn-id>bb173941</msdn-id>
  18256. <unmanaged>unsigned int ID3DX10SkinInfo::GetBoneInfluenceCount([In] unsigned int BoneIndex)</unmanaged>
  18257. <unmanaged-short>ID3DX10SkinInfo::GetBoneInfluenceCount</unmanaged-short>
  18258. </member>
  18259. <member name="M:SharpDX.Direct3D10.SkinInfo.GetBoneInfluences(System.Int32,System.Int32,System.Int32,System.Int32[],System.Single[])">
  18260. <summary>
  18261. <p>Get a list of vertices that a given bone influences and a list of the amount of influence that bone has on each vertex.</p>
  18262. </summary>
  18263. <param name="boneIndex"><dd> <p>An index that specifies an existing bone. Must be between 0 and the value returned by <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.GetNumBones" /></strong>.</p> </dd></param>
  18264. <param name="offset"><dd> <p>An offset from the top of the bone's list of influenced vertices. This must be between 0 and the value returned by <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.GetBoneInfluenceCount(System.Int32)" /></strong>.</p> </dd></param>
  18265. <param name="count"><dd> <p>The number of indices and weights to retrieve. Must be between 0 and the value returned by <see cref="M:SharpDX.Direct3D10.SkinInfo.GetBoneInfluenceCount(System.Int32)" />.</p> </dd></param>
  18266. <param name="destIndicesRef"><dd> <p>A list of indices into the vertex buffer, each one representing a vertex influenced by the bone. These values correspond to the values in pDestWeights, such that pDestIndices[i] corresponds to pDestWeights[i].</p> </dd></param>
  18267. <param name="destWeightsRef"><dd> <p>A list of the amount of influence the bone has on each vertex. These values correspond to the values in pDestIndices, such that pDestWeights[i] corresponds to pDestIndices[i].f</p> </dd></param>
  18268. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_INVALIDARG or E_OUTOFMEMORY.</p></returns>
  18269. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::GetBoneInfluences']/*" />
  18270. <msdn-id>bb173942</msdn-id>
  18271. <unmanaged>HRESULT ID3DX10SkinInfo::GetBoneInfluences([In] unsigned int BoneIndex,[In] unsigned int Offset,[In] unsigned int Count,[Out, Buffer] unsigned int* pDestIndices,[Out, Buffer] float* pDestWeights)</unmanaged>
  18272. <unmanaged-short>ID3DX10SkinInfo::GetBoneInfluences</unmanaged-short>
  18273. </member>
  18274. <member name="M:SharpDX.Direct3D10.SkinInfo.FindBoneInfluenceIndex(System.Int32,System.Int32,System.Int32)">
  18275. <summary>
  18276. <p>Find the index that indicates where a given vertex is in a given bone's list of influenced vertices.</p>
  18277. </summary>
  18278. <param name="boneIndex"><dd> <p>An index that specifies an existing bone. Must be between 0 and the value returned by <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.GetNumBones" /></strong>.</p> </dd></param>
  18279. <param name="vertexIndex"><dd> <p>The index of the vertex in the vertex buffer.</p> </dd></param>
  18280. <param name="influenceIndexRef"><dd> <p>The index of the vertex in the bone's list of influenced vertices.</p> </dd></param>
  18281. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_INVALIDARG.</p></returns>
  18282. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::FindBoneInfluenceIndex']/*" />
  18283. <msdn-id>bb173939</msdn-id>
  18284. <unmanaged>HRESULT ID3DX10SkinInfo::FindBoneInfluenceIndex([In] unsigned int BoneIndex,[In] unsigned int VertexIndex,[In] unsigned int* pInfluenceIndex)</unmanaged>
  18285. <unmanaged-short>ID3DX10SkinInfo::FindBoneInfluenceIndex</unmanaged-short>
  18286. </member>
  18287. <member name="M:SharpDX.Direct3D10.SkinInfo.SetBoneInfluence(System.Int32,System.Int32,System.Single)">
  18288. <summary>
  18289. <p>Set the amount of influence a given bone has over a given vertex.</p>
  18290. </summary>
  18291. <param name="boneIndex"><dd> <p>An index that specifies an existing bone. Must be between 0 and the value returned by <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.GetNumBones" /></strong>.</p> </dd></param>
  18292. <param name="influenceIndex"><dd> <p>An index into the bone's list of vertices that it influences.</p> </dd></param>
  18293. <param name="weight"><dd> <p>The amount of influence, between 0 and 1, that the bone has over the vertex.</p> </dd></param>
  18294. <returns><p>If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be E_INVALIDARG.</p></returns>
  18295. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::SetBoneInfluence']/*" />
  18296. <msdn-id>bb173949</msdn-id>
  18297. <unmanaged>HRESULT ID3DX10SkinInfo::SetBoneInfluence([In] unsigned int BoneIndex,[In] unsigned int InfluenceIndex,[In] float Weight)</unmanaged>
  18298. <unmanaged-short>ID3DX10SkinInfo::SetBoneInfluence</unmanaged-short>
  18299. </member>
  18300. <member name="M:SharpDX.Direct3D10.SkinInfo.GetBoneInfluence(System.Int32,System.Int32,System.Single)">
  18301. <summary>
  18302. <p>Get the amount of influence a given bone has over a given vertex.</p>
  18303. </summary>
  18304. <param name="boneIndex"><dd> <p>An index that specifies an existing bone. Must be between 0 and the value returned by <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.GetNumBones" /></strong>.</p> </dd></param>
  18305. <param name="influenceIndex"><dd> <p>An index into the bone's list of vertices that it influences.</p> </dd></param>
  18306. <param name="weightRef"><dd> <p>The amount of influence, between 0 and 1, that the bone has over the vertex.</p> </dd></param>
  18307. <returns><p>If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be E_INVALIDARG.</p></returns>
  18308. <remarks>
  18309. <p>Use <see cref="M:SharpDX.Direct3D10.SkinInfo.GetBoneInfluenceCount(System.Int32)" /> to find out how many vertices the bone influences.</p>
  18310. </remarks>
  18311. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::GetBoneInfluence']/*" />
  18312. <msdn-id>bb173940</msdn-id>
  18313. <unmanaged>HRESULT ID3DX10SkinInfo::GetBoneInfluence([In] unsigned int BoneIndex,[In] unsigned int InfluenceIndex,[In] float* pWeight)</unmanaged>
  18314. <unmanaged-short>ID3DX10SkinInfo::GetBoneInfluence</unmanaged-short>
  18315. </member>
  18316. <member name="M:SharpDX.Direct3D10.SkinInfo.Compact(System.Int32,System.Int32,System.Single)">
  18317. <summary>
  18318. <p>Limit the number of bones that can influence a vertex and/or limit the amount of influence a bone can have on a vertex.</p>
  18319. </summary>
  18320. <param name="maxPerVertexInfluences"><dd> <p>The maximum number of bones that can influence any given vertex. This value is ignored if it is greater than the value returned by <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.GetMaxBoneInfluences" /></strong>.</p> </dd></param>
  18321. <param name="scaleMode"><dd> <p>A flag describing how to scale the remaining weights on a given vertex after some have been chopped off by MinWeight. If D3DX10_SKININFO_NO_SCALING is specified, the weights will not be scaled at all. If D3DX10_SKININFO_SCALE_TO_1 is specified, the weights greater than MinWeight will be scaled up so that they add up to 1.0. If D3DX10_SKININFO_SCALE_TO_TOTAL is specified, the weights greater than MinWeight will be scaled up so that they add up to the original total.</p> </dd></param>
  18322. <param name="minWeight"><dd> <p>The minimum percentage of influence, or weight, that any bone can have on any vertex. This value must be between 0 and 1.</p> </dd></param>
  18323. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_OUTOFMEMORY or E_INVALIDARG.</p></returns>
  18324. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::Compact']/*" />
  18325. <msdn-id>bb173937</msdn-id>
  18326. <unmanaged>HRESULT ID3DX10SkinInfo::Compact([In] unsigned int MaxPerVertexInfluences,[In] unsigned int ScaleMode,[In] float MinWeight)</unmanaged>
  18327. <unmanaged-short>ID3DX10SkinInfo::Compact</unmanaged-short>
  18328. </member>
  18329. <member name="M:SharpDX.Direct3D10.SkinInfo.DoSoftwareSkinning(System.Int32,System.Int32,System.IntPtr,System.Int32,System.IntPtr,System.Int32,SharpDX.Mathematics.Interop.RawMatrix@,System.Nullable{SharpDX.Mathematics.Interop.RawMatrix},SharpDX.Direct3D10.SkinningChannel,System.Int32)">
  18330. <summary>
  18331. <p>Do software skinning on an array of vertices.</p>
  18332. </summary>
  18333. <param name="startVertex"><dd> <p>A 0-based index into pSrcVertices.</p> </dd></param>
  18334. <param name="vertexCount"><dd> <p>Number of vertices to transform.</p> </dd></param>
  18335. <param name="srcVerticesRef"><dd> <p>Pointer to an array of vertices to transform.</p> </dd></param>
  18336. <param name="srcStride"><dd> <p>The size, in bytes, of a vertex in pSrcVertices.</p> </dd></param>
  18337. <param name="destVerticesRef"><dd> <p>Pointer to an array of vertices, which will be filled with the transformed vertices.</p> </dd></param>
  18338. <param name="destStride"><dd> <p>The size, in bytes, of a vertex in pDestVertices.</p> </dd></param>
  18339. <param name="boneMatricesRef"><dd> <p>An array of matrices that will be used to transform the points mapped to each bone, such that the vertices mapped to bone[i] will be transformed by pBoneMatrices[i]. This array will be used to transform the matrices only if the IsNormal value in pChannelDescs is set to <strong><see cref="F:SharpDX.Result.False" /></strong>, otherwise pInverseTransposeBoneMatrices will be used.</p> </dd></param>
  18340. <param name="inverseTransposeBoneMatricesRef"><dd> <p>If this value is <strong><c>null</c></strong>, it will be set equal to pBoneMatrices. This array of matrices will be used to transform the vertices only if the IsNormal value in pChannelDescs is set to <strong>TRUE</strong>, otherwise pBoneMatrices will be used.</p> </dd></param>
  18341. <param name="channelDescsRef"><dd> <p>Pointer to a <see cref="T:SharpDX.Direct3D10.SkinningChannel" /> structure, which determines the member of the vertex decl the software skinning will be done on.</p> </dd></param>
  18342. <param name="numChannels"><dd> <p>The number of <see cref="T:SharpDX.Direct3D10.SkinningChannel" /> structures in pChannelDescs.</p> </dd></param>
  18343. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be: E_INVALIDARG.</p></returns>
  18344. <remarks>
  18345. <p>Here is an example of how to use software skinning:</p><pre> //vertex definition
  18346. struct MyVertex
  18347. { <see cref="T:SharpDX.Mathematics.Interop.RawVector3" /> Position; <see cref="T:SharpDX.Mathematics.Interop.RawVector2" /> Weight; <see cref="T:SharpDX.Mathematics.Interop.RawVector2" /> TexCoord;
  18348. }; //create vertex data
  18349. const UINT numVertices = 16;
  18350. MyVertex vertices[numVertices] = {...};
  18351. MyVertex destVertices[numVertices]; //create bone matrices
  18352. <see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /> boneMatrices[2];
  18353. D3DXMatrixIdentity(&amp;boneMatrices[0]);
  18354. D3DXMatrixRotationX(&amp;boneMatrices[1], 3.14159f / 180.0f); //create bone indices and weights
  18355. UINT boneIndices[numVertices] = {...};
  18356. float boneWeights[2][numVertices] = {...}; //create skin info, populate it with bones and vertices, and then map them to each other
  18357. <see cref="T:SharpDX.Direct3D10.SkinInfo" /> *pSkinInfo = <c>null</c>;
  18358. <see cref="M:SharpDX.Direct3D10.D3DX10.CreateSkinInfo(SharpDX.Direct3D10.SkinInfo@)" />(&amp;pSkinInfo);
  18359. pSkinInfo-&gt;AddBones(2);
  18360. pSkinInfo-&gt;AddVertices(numVertices);
  18361. pSkinInfo-&gt;AddBoneInfluences(0, numVertices, boneIndices, boneWeights[0]);
  18362. pSkinInfo-&gt;AddBoneInfluences(1, numVertices, boneIndices, boneWeights[1]); //create channel desc
  18363. <see cref="T:SharpDX.Direct3D10.SkinningChannel" /> channelDesc;
  18364. channelDesc.SrcOffset = 0;
  18365. channelDesc.DestOffset = 0;
  18366. channelDesc.IsNormal = <see cref="F:SharpDX.Result.False" />; //do the skinning
  18367. pSkinInfo-&gt;DoSoftwareSkinning(0, numVertices, vertices, sizeof(MyVertex), destVertices, sizeof(MyVertex), boneMatrices, <c>null</c>, &amp;channelDesc, 1);
  18368. </pre>
  18369. </remarks>
  18370. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10SkinInfo::DoSoftwareSkinning']/*" />
  18371. <msdn-id>bb173938</msdn-id>
  18372. <unmanaged>HRESULT ID3DX10SkinInfo::DoSoftwareSkinning([In] unsigned int StartVertex,[In] unsigned int VertexCount,[In] void* pSrcVertices,[In] unsigned int SrcStride,[In] void* pDestVertices,[In] unsigned int DestStride,[In] D3DXMATRIX* pBoneMatrices,[In, Optional] D3DXMATRIX* pInverseTransposeBoneMatrices,[In] D3DX10_SKINNING_CHANNEL* pChannelDescs,[In] unsigned int NumChannels)</unmanaged>
  18373. <unmanaged-short>ID3DX10SkinInfo::DoSoftwareSkinning</unmanaged-short>
  18374. </member>
  18375. <member name="M:SharpDX.Direct3D10.SkinInfo.GetBoneInfluences(System.Int32,System.Int32,System.Int32,System.Int32[]@,System.Single[]@)">
  18376. <summary>
  18377. Get a list of vertices that a given bone influences and a list of the amount of influence that bone has on each vertex.
  18378. </summary>
  18379. <param name="boneIndex">An index that specifies an existing bone. Must be between 0 and the value returned by <see cref="M:SharpDX.Direct3D10.SkinInfo.GetNumBones" />. </param>
  18380. <param name="offset">An offset from the top of the bone's list of influenced vertices. This must be between 0 and the value returned by <see cref="M:SharpDX.Direct3D10.SkinInfo.GetBoneInfluenceCount(System.Int32)" />. </param>
  18381. <param name="count">The number of indices and weights to retrieve. Must be between 0 and the value returned by ID3DX10SkinInfo::GetBoneInfluenceCount. </param>
  18382. <param name="destIndicesRef">A list of indices into the vertex buffer, each one representing a vertex influenced by the bone. These values correspond to the values in pDestWeights, such that pDestIndices[i] corresponds to pDestWeights[i]. </param>
  18383. <param name="destWeightsRef">A list of the amount of influence the bone has on each vertex. These values correspond to the values in pDestIndices, such that pDestWeights[i] corresponds to pDestIndices[i].f </param>
  18384. <returns>If the method succeeds, the return value is S_OK. If the method fails, the return value can be: E_INVALIDARG or E_OUTOFMEMORY. </returns>
  18385. <unmanaged>HRESULT ID3DX10SkinInfo::GetBoneInfluences([None] int BoneIndex,[None] int Offset,[None] int Count,[Out, Buffer] int* pDestIndices,[Out, Buffer] float* pDestWeights)</unmanaged>
  18386. </member>
  18387. <member name="T:SharpDX.Direct3D10.Sprite">
  18388. <summary>
  18389. <p>The <see cref="T:SharpDX.Direct3D10.Sprite" /> interface provides a set of methods that simplify the process of drawing sprites using Microsoft Direct3D. This interface can operate on a set of many sprites.</p>
  18390. </summary>
  18391. <remarks>
  18392. <p>The <see cref="T:SharpDX.Direct3D10.Sprite" /> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateSprite(SharpDX.Direct3D10.Device,System.Int32,SharpDX.Direct3D10.Sprite)" /></strong> function.</p>
  18393. </remarks>
  18394. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite']/*" />
  18395. <msdn-id>bb205601</msdn-id>
  18396. <unmanaged>ID3DX10Sprite</unmanaged>
  18397. <unmanaged-short>ID3DX10Sprite</unmanaged-short>
  18398. </member>
  18399. <member name="M:SharpDX.Direct3D10.Sprite.#ctor(System.IntPtr)">
  18400. <summary>
  18401. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Sprite"/> class.
  18402. </summary>
  18403. <param name="nativePtr">The native pointer.</param>
  18404. </member>
  18405. <member name="M:SharpDX.Direct3D10.Sprite.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Sprite">
  18406. <summary>
  18407. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Sprite"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  18408. </summary>
  18409. <param name="nativePointer">The native pointer.</param>
  18410. <returns>
  18411. The result of the conversion.
  18412. </returns>
  18413. </member>
  18414. <member name="P:SharpDX.Direct3D10.Sprite.ViewTransform">
  18415. <summary>
  18416. <p>Get or sets the view transform that applies to all sprites.</p>
  18417. </summary>
  18418. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::GetViewTransform']/*" />
  18419. <msdn-id>bb205609</msdn-id>
  18420. <unmanaged>GetViewTransform / SetViewTransform</unmanaged>
  18421. <unmanaged-short>GetViewTransform</unmanaged-short>
  18422. <unmanaged>HRESULT ID3DX10Sprite::GetViewTransform([Out] D3DXMATRIX* pViewTransform)</unmanaged>
  18423. </member>
  18424. <member name="P:SharpDX.Direct3D10.Sprite.ProjectionTransform">
  18425. <summary>
  18426. <p>Get or sets the sprite projection matrix that is applied to all sprites.</p>
  18427. </summary>
  18428. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::GetProjectionTransform']/*" />
  18429. <msdn-id>bb205608</msdn-id>
  18430. <unmanaged>GetProjectionTransform / SetProjectionTransform</unmanaged>
  18431. <unmanaged-short>GetProjectionTransform</unmanaged-short>
  18432. <unmanaged>HRESULT ID3DX10Sprite::GetProjectionTransform([Out] D3DXMATRIX* pProjectionTransform)</unmanaged>
  18433. </member>
  18434. <member name="P:SharpDX.Direct3D10.Sprite.Device">
  18435. <summary>
  18436. <p>Retrieve the device associated with the sprite object.</p>
  18437. </summary>
  18438. <remarks>
  18439. <p>Calling this method will increase the internal reference count on the <see cref="T:SharpDX.Direct3D10.Device" /> interface.</p>
  18440. </remarks>
  18441. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::GetDevice']/*" />
  18442. <msdn-id>bb205607</msdn-id>
  18443. <unmanaged>GetDevice</unmanaged>
  18444. <unmanaged-short>GetDevice</unmanaged-short>
  18445. <unmanaged>HRESULT ID3DX10Sprite::GetDevice([Out] ID3D10Device** ppDevice)</unmanaged>
  18446. </member>
  18447. <member name="M:SharpDX.Direct3D10.Sprite.Begin(SharpDX.Direct3D10.SpriteFlags)">
  18448. <summary>
  18449. <p>Prepare a device for drawing sprites.</p>
  18450. </summary>
  18451. <param name="flags"><dd> <p>Flags that control how the sprites will be drawn. See <strong><see cref="T:SharpDX.Direct3D10.SpriteFlags" /></strong>.</p> </dd></param>
  18452. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DERR_OUTOFVIDEOMEMORY, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  18453. <remarks>
  18454. <p>Every call to Begin must be matched with a call to <strong><see cref="M:SharpDX.Direct3D10.Sprite.End" /></strong>.</p>
  18455. </remarks>
  18456. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::Begin']/*" />
  18457. <msdn-id>bb205602</msdn-id>
  18458. <unmanaged>HRESULT ID3DX10Sprite::Begin([In] D3DX10_SPRITE_FLAG flags)</unmanaged>
  18459. <unmanaged-short>ID3DX10Sprite::Begin</unmanaged-short>
  18460. </member>
  18461. <member name="M:SharpDX.Direct3D10.Sprite.DrawSpritesBuffered(SharpDX.Direct3D10.SpriteInstance[],System.Int32)">
  18462. <summary>
  18463. <p>Add an array of sprites to the batch of sprites to be rendered. This must be called in between calls to <strong><see cref="M:SharpDX.Direct3D10.Sprite.Begin(SharpDX.Direct3D10.SpriteFlags)" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.Sprite.End" /></strong>, and <strong><see cref="M:SharpDX.Direct3D10.Sprite.Flush" /></strong> must be called before End to send all of the batched sprites to the device for rendering. This draw method is most useful when drawing a small number of sprites that you want buffered into a large batch, such as fonts.</p>
  18464. </summary>
  18465. <param name="spritesRef">No documentation.</param>
  18466. <param name="cSprites">No documentation.</param>
  18467. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA.</p></returns>
  18468. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::DrawSpritesBuffered']/*" />
  18469. <msdn-id>bb205603</msdn-id>
  18470. <unmanaged>HRESULT ID3DX10Sprite::DrawSpritesBuffered([In, Buffer] D3DX10_SPRITE* pSprites,[In] unsigned int cSprites)</unmanaged>
  18471. <unmanaged-short>ID3DX10Sprite::DrawSpritesBuffered</unmanaged-short>
  18472. </member>
  18473. <member name="M:SharpDX.Direct3D10.Sprite.Flush">
  18474. <summary>
  18475. <p>Force all batched sprites to be submitted to the device. Device states remain as they were after the last call to <see cref="M:SharpDX.Direct3D10.Sprite.Begin(SharpDX.Direct3D10.SpriteFlags)" />. The list of batched sprites is then cleared.</p>
  18476. </summary>
  18477. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the following value will be returned: D3DERR_INVALIDCALL.</p></returns>
  18478. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::Flush']/*" />
  18479. <msdn-id>bb205606</msdn-id>
  18480. <unmanaged>HRESULT ID3DX10Sprite::Flush()</unmanaged>
  18481. <unmanaged-short>ID3DX10Sprite::Flush</unmanaged-short>
  18482. </member>
  18483. <member name="M:SharpDX.Direct3D10.Sprite.DrawSpritesImmediate(SharpDX.Direct3D10.SpriteInstance[],System.Int32,System.Int32,System.Int32)">
  18484. <summary>
  18485. <p>Draw an array of sprites. This will immediately send the sprites to the device for rendering, which is different from <strong><see cref="M:SharpDX.Direct3D10.Sprite.DrawSpritesBuffered(SharpDX.Direct3D10.SpriteInstance[],System.Int32)" /></strong> which only adds an array of sprites to a batch of sprites to be rendered when <strong><see cref="M:SharpDX.Direct3D10.Sprite.Flush" /></strong> is called. This draw method is most useful when drawing a large number of sprites that have already been sorted on the CPU (or do not need to be sorted), such as in a particle system. This must be called in between calls to <strong><see cref="M:SharpDX.Direct3D10.Sprite.Begin(SharpDX.Direct3D10.SpriteFlags)" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.Sprite.End" /></strong>.</p>
  18486. </summary>
  18487. <param name="spritesRef">No documentation.</param>
  18488. <param name="cSprites">No documentation.</param>
  18489. <param name="cbSprite">No documentation.</param>
  18490. <param name="flags">No documentation.</param>
  18491. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA.</p></returns>
  18492. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::DrawSpritesImmediate']/*" />
  18493. <msdn-id>bb205604</msdn-id>
  18494. <unmanaged>HRESULT ID3DX10Sprite::DrawSpritesImmediate([In, Buffer] D3DX10_SPRITE* pSprites,[In] unsigned int cSprites,[In] unsigned int cbSprite,[In] unsigned int flags)</unmanaged>
  18495. <unmanaged-short>ID3DX10Sprite::DrawSpritesImmediate</unmanaged-short>
  18496. </member>
  18497. <member name="M:SharpDX.Direct3D10.Sprite.End">
  18498. <summary>
  18499. <p>Call this after <see cref="M:SharpDX.Direct3D10.Sprite.Flush" />. If <see cref="F:SharpDX.Direct3D10.SpriteFlags.SaveState" /> was specified when <see cref="M:SharpDX.Direct3D10.Sprite.Begin(SharpDX.Direct3D10.SpriteFlags)" /> was called, this API will restore the device state to how it was before <see cref="M:SharpDX.Direct3D10.Sprite.Begin(SharpDX.Direct3D10.SpriteFlags)" /> was called.</p>
  18500. </summary>
  18501. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the following value will be returned: D3DERR_INVALIDCALL.</p></returns>
  18502. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::End']/*" />
  18503. <msdn-id>bb205605</msdn-id>
  18504. <unmanaged>HRESULT ID3DX10Sprite::End()</unmanaged>
  18505. <unmanaged-short>ID3DX10Sprite::End</unmanaged-short>
  18506. </member>
  18507. <member name="M:SharpDX.Direct3D10.Sprite.GetViewTransform(SharpDX.Mathematics.Interop.RawMatrix@)">
  18508. <summary>
  18509. <p>Get the view transform that applies to all sprites.</p>
  18510. </summary>
  18511. <param name="viewTransformRef"><dd> <p>Pointer to a <strong>D3DX10MATRIX</strong> that will be set to the transform of the sprite from the original world space.</p> </dd></param>
  18512. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the following value will be returned: D3DERR_INVALIDCALL.</p></returns>
  18513. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::GetViewTransform']/*" />
  18514. <msdn-id>bb205609</msdn-id>
  18515. <unmanaged>HRESULT ID3DX10Sprite::GetViewTransform([Out] D3DXMATRIX* pViewTransform)</unmanaged>
  18516. <unmanaged-short>ID3DX10Sprite::GetViewTransform</unmanaged-short>
  18517. </member>
  18518. <member name="M:SharpDX.Direct3D10.Sprite.SetViewTransform(SharpDX.Mathematics.Interop.RawMatrix@)">
  18519. <summary>
  18520. <p>Set the view transform that applies to all sprites.</p>
  18521. </summary>
  18522. <param name="viewTransformRef"><dd> <p>Pointer to a <see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /> that contains a transform of the sprite from the original world space. Use this transform to scale, rotate, or transform the sprite.</p> </dd></param>
  18523. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the following value will be returned: D3DERR_INVALIDCALL.</p></returns>
  18524. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::SetViewTransform']/*" />
  18525. <msdn-id>bb205611</msdn-id>
  18526. <unmanaged>HRESULT ID3DX10Sprite::SetViewTransform([In] D3DXMATRIX* pViewTransform)</unmanaged>
  18527. <unmanaged-short>ID3DX10Sprite::SetViewTransform</unmanaged-short>
  18528. </member>
  18529. <member name="M:SharpDX.Direct3D10.Sprite.GetProjectionTransform(SharpDX.Mathematics.Interop.RawMatrix@)">
  18530. <summary>
  18531. <p>Get the sprite projection matrix that is applied to all sprites.</p>
  18532. </summary>
  18533. <param name="projectionTransformRef"><dd> <p>Pointer to a <strong>D3DX10MATRIX</strong> that will be set to the sprite's projection matrix.</p> </dd></param>
  18534. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  18535. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::GetProjectionTransform']/*" />
  18536. <msdn-id>bb205608</msdn-id>
  18537. <unmanaged>HRESULT ID3DX10Sprite::GetProjectionTransform([Out] D3DXMATRIX* pProjectionTransform)</unmanaged>
  18538. <unmanaged-short>ID3DX10Sprite::GetProjectionTransform</unmanaged-short>
  18539. </member>
  18540. <member name="M:SharpDX.Direct3D10.Sprite.SetProjectionTransform(SharpDX.Mathematics.Interop.RawMatrix@)">
  18541. <summary>
  18542. <p>Set the projection matrix for all sprites.</p>
  18543. </summary>
  18544. <param name="projectionTransformRef"><dd> <p>The projection matrix to be used on all sprites.</p> </dd></param>
  18545. <returns><p>The return value is one of the values listed in Direct3D 10 Return Codes.</p></returns>
  18546. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::SetProjectionTransform']/*" />
  18547. <msdn-id>bb205610</msdn-id>
  18548. <unmanaged>HRESULT ID3DX10Sprite::SetProjectionTransform([In] D3DXMATRIX* pProjectionTransform)</unmanaged>
  18549. <unmanaged-short>ID3DX10Sprite::SetProjectionTransform</unmanaged-short>
  18550. </member>
  18551. <member name="M:SharpDX.Direct3D10.Sprite.GetDevice(SharpDX.Direct3D10.Device@)">
  18552. <summary>
  18553. <p>Retrieve the device associated with the sprite object.</p>
  18554. </summary>
  18555. <param name="deviceOut"><dd> <p>Address of a reference to an <see cref="T:SharpDX.Direct3D10.Device" /> interface, representing the Direct3D device object associated with the sprite object.</p> </dd></param>
  18556. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the method fails, the following value will be returned: D3DERR_INVALIDCALL.</p></returns>
  18557. <remarks>
  18558. <p>Calling this method will increase the internal reference count on the <see cref="T:SharpDX.Direct3D10.Device" /> interface.</p>
  18559. </remarks>
  18560. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DX10Sprite::GetDevice']/*" />
  18561. <msdn-id>bb205607</msdn-id>
  18562. <unmanaged>HRESULT ID3DX10Sprite::GetDevice([Out] ID3D10Device** ppDevice)</unmanaged>
  18563. <unmanaged-short>ID3DX10Sprite::GetDevice</unmanaged-short>
  18564. </member>
  18565. <member name="M:SharpDX.Direct3D10.Sprite.#ctor(SharpDX.Direct3D10.Device,System.Int32)">
  18566. <summary>
  18567. Create a sprite for drawing a 2D texture.
  18568. </summary>
  18569. <param name="device">A reference to the device (see <see cref="T:SharpDX.Direct3D10.Device"/>) that will draw the sprite. </param>
  18570. <param name="bufferSize">The size of the vertex buffer, in number of sprites, that will be sent to the device when <see cref="M:SharpDX.Direct3D10.Sprite.Flush"/> or <see cref="M:SharpDX.Direct3D10.Sprite.DrawSpritesBuffered(SharpDX.Direct3D10.SpriteInstance[])"/> is called. This should be a small number if you know you will be rendering a small number of sprites at a time (to save memory) and a large number if you know you will be rendering a large number of sprites at a time. The maximum value is 4096. If 0 is specified, the vertex buffer size will automatically be set to 4096. </param>
  18571. <unmanaged>HRESULT D3DX10CreateSprite([None] ID3D10Device* pDevice,[None] int cDeviceBufferSize,[None] LPD3DX10SPRITE* ppSprite)</unmanaged>
  18572. </member>
  18573. <member name="M:SharpDX.Direct3D10.Sprite.DrawSpritesBuffered(SharpDX.Direct3D10.SpriteInstance[])">
  18574. <summary>
  18575. Add an array of sprites to the batch of sprites to be rendered. This must be called in between calls to <see cref="M:SharpDX.Direct3D10.Sprite.Begin(SharpDX.Direct3D10.SpriteFlags)"/> and <see cref="M:SharpDX.Direct3D10.Sprite.End"/>, and <see cref="M:SharpDX.Direct3D10.Sprite.Flush"/> must be called before End to send all of the batched sprites to the device for rendering. This draw method is most useful when drawing a small number of sprites that you want buffered into a large batch, such as fonts.
  18576. </summary>
  18577. <param name="sprites">The array of sprites to draw. See <see cref="T:SharpDX.Direct3D10.SpriteInstance"/>. </param>
  18578. <returns>If the method succeeds, the return value is S_OK. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA. </returns>
  18579. <unmanaged>HRESULT ID3DX10Sprite::DrawSpritesBuffered([None] D3DX10_SPRITE* pSprites,[None] int cSprites)</unmanaged>
  18580. </member>
  18581. <member name="M:SharpDX.Direct3D10.Sprite.DrawSpritesImmediate(SharpDX.Direct3D10.SpriteInstance[])">
  18582. <summary>
  18583. Draw an array of sprites. This will immediately send the sprites to the device for rendering, which is different from <see cref="M:SharpDX.Direct3D10.Sprite.DrawSpritesBuffered(SharpDX.Direct3D10.SpriteInstance[])"/> which only adds an array of sprites to a batch of sprites to be rendered when <see cref="M:SharpDX.Direct3D10.Sprite.Flush"/> is called. This draw method is most useful when drawing a large number of sprites that have already been sorted on the CPU (or do not need to be sorted), such as in a particle system. This must be called in between calls to <see cref="M:SharpDX.Direct3D10.Sprite.Begin(SharpDX.Direct3D10.SpriteFlags)"/> and <see cref="M:SharpDX.Direct3D10.Sprite.End"/>.
  18584. </summary>
  18585. <param name="sprites">The array of sprites to draw. See <see cref="T:SharpDX.Direct3D10.SpriteInstance"/>. </param>
  18586. <returns>If the method succeeds, the return value is S_OK. If the method fails, the return value can be one of the following: D3DERR_INVALIDCALL, D3DXERR_INVALIDDATA. </returns>
  18587. <unmanaged>HRESULT ID3DX10Sprite::DrawSpritesImmediate([In, Buffer] D3DX10_SPRITE* pSprites,[None] int cSprites,[None] int cbSprite,[None] int flags)</unmanaged>
  18588. </member>
  18589. <member name="T:SharpDX.Direct3D10.StateBlock">
  18590. <summary>
  18591. <p>A state-block interface encapsulates render states.</p>
  18592. </summary>
  18593. <remarks>
  18594. <p>To create a state-block interface, call <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateStateBlock(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.StateBlockMask@,SharpDX.Direct3D10.StateBlock)" /></strong>.</p><p>This interface can be used to save and restore pipeline state. It can also be used to capture the current state.</p>
  18595. </remarks>
  18596. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10StateBlock']/*" />
  18597. <msdn-id>bb173856</msdn-id>
  18598. <unmanaged>ID3D10StateBlock</unmanaged>
  18599. <unmanaged-short>ID3D10StateBlock</unmanaged-short>
  18600. </member>
  18601. <member name="M:SharpDX.Direct3D10.StateBlock.#ctor(System.IntPtr)">
  18602. <summary>
  18603. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.StateBlock"/> class.
  18604. </summary>
  18605. <param name="nativePtr">The native pointer.</param>
  18606. </member>
  18607. <member name="M:SharpDX.Direct3D10.StateBlock.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.StateBlock">
  18608. <summary>
  18609. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.StateBlock"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  18610. </summary>
  18611. <param name="nativePointer">The native pointer.</param>
  18612. <returns>
  18613. The result of the conversion.
  18614. </returns>
  18615. </member>
  18616. <member name="P:SharpDX.Direct3D10.StateBlock.Device">
  18617. <summary>
  18618. <p>Get the device.</p>
  18619. </summary>
  18620. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10StateBlock::GetDevice']/*" />
  18621. <msdn-id>bb173859</msdn-id>
  18622. <unmanaged>GetDevice</unmanaged>
  18623. <unmanaged-short>GetDevice</unmanaged-short>
  18624. <unmanaged>HRESULT ID3D10StateBlock::GetDevice([Out] ID3D10Device** ppDevice)</unmanaged>
  18625. </member>
  18626. <member name="M:SharpDX.Direct3D10.StateBlock.Capture">
  18627. <summary>
  18628. <p>Capture the current value of states that are included in a stateblock.</p>
  18629. </summary>
  18630. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  18631. <remarks>
  18632. <p>Capture captures current values for states within an existing state block. It does not capture the entire state of the device. Creating an empty stateblock and calling Capture does nothing if no states have been set.</p>
  18633. </remarks>
  18634. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10StateBlock::Capture']/*" />
  18635. <msdn-id>bb173858</msdn-id>
  18636. <unmanaged>HRESULT ID3D10StateBlock::Capture()</unmanaged>
  18637. <unmanaged-short>ID3D10StateBlock::Capture</unmanaged-short>
  18638. </member>
  18639. <member name="M:SharpDX.Direct3D10.StateBlock.Apply">
  18640. <summary>
  18641. <p>Apply the state block to the current device state.</p>
  18642. </summary>
  18643. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  18644. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10StateBlock::Apply']/*" />
  18645. <msdn-id>bb173857</msdn-id>
  18646. <unmanaged>HRESULT ID3D10StateBlock::Apply()</unmanaged>
  18647. <unmanaged-short>ID3D10StateBlock::Apply</unmanaged-short>
  18648. </member>
  18649. <member name="M:SharpDX.Direct3D10.StateBlock.ReleaseAllDeviceObjects">
  18650. <summary>
  18651. <p>Release all references to device objects.</p>
  18652. </summary>
  18653. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  18654. <remarks>
  18655. <p>Each time you return a reference to an interface (by calling <strong><see cref="M:SharpDX.Direct3D10.StateBlock.GetDevice(SharpDX.Direct3D10.Device@)" /></strong>), the internal reference count is incremented; when you are finished using a stateblock, call this method to release all references and avoid a memory leak.</p>
  18656. </remarks>
  18657. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10StateBlock::ReleaseAllDeviceObjects']/*" />
  18658. <msdn-id>cc627127</msdn-id>
  18659. <unmanaged>HRESULT ID3D10StateBlock::ReleaseAllDeviceObjects()</unmanaged>
  18660. <unmanaged-short>ID3D10StateBlock::ReleaseAllDeviceObjects</unmanaged-short>
  18661. </member>
  18662. <member name="M:SharpDX.Direct3D10.StateBlock.GetDevice(SharpDX.Direct3D10.Device@)">
  18663. <summary>
  18664. <p>Get the device.</p>
  18665. </summary>
  18666. <param name="deviceOut"><dd> <p>Pointer to the <see cref="T:SharpDX.Direct3D10.Device" /> interface that is returned.</p> </dd></param>
  18667. <returns><p>Returns one of the following Direct3D 10 Return Codes.</p></returns>
  18668. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10StateBlock::GetDevice']/*" />
  18669. <msdn-id>bb173859</msdn-id>
  18670. <unmanaged>HRESULT ID3D10StateBlock::GetDevice([Out] ID3D10Device** ppDevice)</unmanaged>
  18671. <unmanaged-short>ID3D10StateBlock::GetDevice</unmanaged-short>
  18672. </member>
  18673. <member name="M:SharpDX.Direct3D10.StateBlock.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.StateBlockMask)">
  18674. <summary>
  18675. Create a state block.
  18676. </summary>
  18677. <remarks>
  18678. A state block is a collection of device state, and is used for saving and restoring device state. Use a state-block mask to enable subsets of state for saving and restoring. The <see cref="T:SharpDX.Direct3D10.StateBlockMask"/> structure can be filled manually or by using any of the D3D10StateBlockMaskXXX APIs. A state block mask can also be obtained by calling <see cref="M:SharpDX.Direct3D10.EffectTechnique.ComputeStateBlockMask(SharpDX.Direct3D10.StateBlockMask@)"/> or <see cref="M:SharpDX.Direct3D10.EffectPass.ComputeStateBlockMask(SharpDX.Direct3D10.StateBlockMask@)"/>. Differences between Direct3D 9 and Direct3D 10: In Direct3D 10, a state block object does not contain any valid information about the state of the device until <see cref="M:SharpDX.Direct3D10.StateBlock.Capture"/> is called. In Direct3D 9, state is saved in a state block object, when it is created. ?
  18679. </remarks>
  18680. <param name="device">The device for which the state block will be created. </param>
  18681. <param name="mask">Indicates which parts of the device state will be captured when calling <see cref="M:SharpDX.Direct3D10.StateBlock.Capture"/> and reapplied when calling <see cref="M:SharpDX.Direct3D10.StateBlock.Apply"/>. See remarks. </param>
  18682. <unmanaged>HRESULT D3D10CreateStateBlock([None] ID3D10Device* pDevice,[None] D3D10_STATE_BLOCK_MASK* pStateBlockMask,[None] ID3D10StateBlock** ppStateBlock)</unmanaged>
  18683. </member>
  18684. <member name="T:SharpDX.Direct3D10.SwitchToRef">
  18685. <summary>
  18686. <p>A switch-to-reference interface (see the switch-to-reference layer) enables an application to switch between a hardware and software device.</p>
  18687. </summary>
  18688. <remarks>
  18689. <p>This interface is obtained by calling <strong>QueryInterface</strong> on a <strong><see cref="T:SharpDX.Direct3D10.Device" /> Interface</strong> created with the <strong><see cref="F:SharpDX.Direct3D10.DeviceCreationFlags.SwitchToRef" /></strong> flag.</p>
  18690. </remarks>
  18691. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10SwitchToRef']/*" />
  18692. <msdn-id>bb173860</msdn-id>
  18693. <unmanaged>ID3D10SwitchToRef</unmanaged>
  18694. <unmanaged-short>ID3D10SwitchToRef</unmanaged-short>
  18695. </member>
  18696. <member name="M:SharpDX.Direct3D10.SwitchToRef.#ctor(System.IntPtr)">
  18697. <summary>
  18698. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.SwitchToRef"/> class.
  18699. </summary>
  18700. <param name="nativePtr">The native pointer.</param>
  18701. </member>
  18702. <member name="M:SharpDX.Direct3D10.SwitchToRef.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.SwitchToRef">
  18703. <summary>
  18704. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.SwitchToRef"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  18705. </summary>
  18706. <param name="nativePointer">The native pointer.</param>
  18707. <returns>
  18708. The result of the conversion.
  18709. </returns>
  18710. </member>
  18711. <member name="P:SharpDX.Direct3D10.SwitchToRef.UseRef">
  18712. <summary>
  18713. <p>Get a boolean value that indicates the type of device being used.</p>
  18714. </summary>
  18715. <remarks>
  18716. <p>A hardware device is commonly referred to as a HAL device, which stands for a hardware accelerated device. This means that the pipeline is rendering all of the pipeline commands in hardware, using the GPU. Operating the pipeline with a HAL device gives the best performance generally, but it can be more difficult to debug since resources exist on the GPU instead of the CPU.</p><p>A software device implements rendering in software using the CPU with no hardware acceleration. A software device is commonly referred to as a reference device or REF device. Because a REF device implements rendering on the CPU, it is generally slower, but is easier to debug since it allows access to resources.</p>
  18717. </remarks>
  18718. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10SwitchToRef::GetUseRef']/*" />
  18719. <msdn-id>bb173861</msdn-id>
  18720. <unmanaged>GetUseRef</unmanaged>
  18721. <unmanaged-short>GetUseRef</unmanaged-short>
  18722. <unmanaged>BOOL ID3D10SwitchToRef::GetUseRef()</unmanaged>
  18723. </member>
  18724. <member name="M:SharpDX.Direct3D10.SwitchToRef.SetUseRef(SharpDX.Mathematics.Interop.RawBool)">
  18725. <summary>
  18726. <p>Switch between a hardware and a software device.</p>
  18727. </summary>
  18728. <param name="useRef"><dd> <p>A boolean value. Set this to <strong>TRUE</strong> to change to a software device, set this to <strong><see cref="F:SharpDX.Result.False" /></strong> to change to a hardware device.</p> </dd></param>
  18729. <returns><p>The previous value of <em>UseRef</em>.</p></returns>
  18730. <remarks>
  18731. <p>This API will fail if the device is not switchable; you must have created a device that is switchable by specifying the <see cref="F:SharpDX.Direct3D10.DeviceCreationFlags.SwitchToRef" /> flag during device creation (when calling <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>).</p><p>Switching from a software device to a hardware device clears all cached objects from system memory. Switching from a hardware device to a software device causes resources to be downloaded to system memory.</p>
  18732. </remarks>
  18733. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10SwitchToRef::SetUseRef']/*" />
  18734. <msdn-id>bb173862</msdn-id>
  18735. <unmanaged>BOOL ID3D10SwitchToRef::SetUseRef([In] BOOL UseRef)</unmanaged>
  18736. <unmanaged-short>ID3D10SwitchToRef::SetUseRef</unmanaged-short>
  18737. </member>
  18738. <member name="M:SharpDX.Direct3D10.SwitchToRef.GetUseRef">
  18739. <summary>
  18740. <p>Get a boolean value that indicates the type of device being used.</p>
  18741. </summary>
  18742. <returns><p><strong>TRUE</strong> if the device is a software device, <strong><see cref="F:SharpDX.Result.False" /></strong> if the device is a hardware device. See remarks.</p></returns>
  18743. <remarks>
  18744. <p>A hardware device is commonly referred to as a HAL device, which stands for a hardware accelerated device. This means that the pipeline is rendering all of the pipeline commands in hardware, using the GPU. Operating the pipeline with a HAL device gives the best performance generally, but it can be more difficult to debug since resources exist on the GPU instead of the CPU.</p><p>A software device implements rendering in software using the CPU with no hardware acceleration. A software device is commonly referred to as a reference device or REF device. Because a REF device implements rendering on the CPU, it is generally slower, but is easier to debug since it allows access to resources.</p>
  18745. </remarks>
  18746. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10SwitchToRef::GetUseRef']/*" />
  18747. <msdn-id>bb173861</msdn-id>
  18748. <unmanaged>BOOL ID3D10SwitchToRef::GetUseRef()</unmanaged>
  18749. <unmanaged-short>ID3D10SwitchToRef::GetUseRef</unmanaged-short>
  18750. </member>
  18751. <member name="T:SharpDX.Direct3D10.Texture1D">
  18752. <summary>
  18753. <p>A 1D texture interface accesses texel data, which is structured memory.</p>
  18754. </summary>
  18755. <remarks>
  18756. <p>To create an empty 1D texture, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateTexture1D(SharpDX.Direct3D10.Texture1DDescription@,SharpDX.DataBox[],SharpDX.Direct3D10.Texture1D)" /></strong>. For more details on creating and loading textures, see Creating Texture Resources.</p><p>Textures cannot be bound directly to the pipeline; instead, a view must be created and bound. Using a view, texture data can be interpreted at run time within certain restrictions. To use the texture as a render target or depth-stencil resource, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateRenderTargetView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.RenderTargetViewDescription},SharpDX.Direct3D10.RenderTargetView)" /></strong>, and <strong><see cref="M:SharpDX.Direct3D10.Device.CreateDepthStencilView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.DepthStencilViewDescription},SharpDX.Direct3D10.DepthStencilView)" /></strong>, respectively. To use the texture as an input to a shader, create a by calling <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p>
  18757. </remarks>
  18758. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture1D']/*" />
  18759. <msdn-id>bb173863</msdn-id>
  18760. <unmanaged>ID3D10Texture1D</unmanaged>
  18761. <unmanaged-short>ID3D10Texture1D</unmanaged-short>
  18762. </member>
  18763. <member name="M:SharpDX.Direct3D10.Texture1D.#ctor(System.IntPtr)">
  18764. <summary>
  18765. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Texture1D"/> class.
  18766. </summary>
  18767. <param name="nativePtr">The native pointer.</param>
  18768. </member>
  18769. <member name="M:SharpDX.Direct3D10.Texture1D.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Texture1D">
  18770. <summary>
  18771. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Texture1D"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  18772. </summary>
  18773. <param name="nativePointer">The native pointer.</param>
  18774. <returns>
  18775. The result of the conversion.
  18776. </returns>
  18777. </member>
  18778. <member name="P:SharpDX.Direct3D10.Texture1D.Description">
  18779. <summary>
  18780. <p>Get the properties of the texture resource.</p>
  18781. </summary>
  18782. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture1D::GetDesc']/*" />
  18783. <msdn-id>bb173864</msdn-id>
  18784. <unmanaged>GetDesc</unmanaged>
  18785. <unmanaged-short>GetDesc</unmanaged-short>
  18786. <unmanaged>void ID3D10Texture1D::GetDesc([Out] D3D10_TEXTURE1D_DESC* pDesc)</unmanaged>
  18787. </member>
  18788. <member name="M:SharpDX.Direct3D10.Texture1D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,System.IntPtr@)">
  18789. <summary>
  18790. <p>Get a reference to the data contained in a subresource, and deny the GPU access to that subresource.</p>
  18791. </summary>
  18792. <param name="subresource"><dd> <p>Index number of the subresource. See <strong>D3D10CalcSubresource</strong> for more details.</p> </dd></param>
  18793. <param name="mapType"><dd> <p>Specifies the CPU's read and write permissions for a resource. For possible values, see <strong><see cref="T:SharpDX.Direct3D10.MapMode" /></strong>.</p> </dd></param>
  18794. <param name="mapFlags"><dd> <p> <strong>Flag</strong> that specifies what the CPU should do when the GPU is busy. This flag is optional.</p> </dd></param>
  18795. <param name="dataOut"><dd> <p>Pointer to the texture resource data.</p> </dd></param>
  18796. <returns><p>If this function succeeds, it returns <see cref="F:SharpDX.Result.Ok" />. For other restrictions, and a listing of error values that can be returned by any of the <strong>Map</strong> methods, see Remarks.</p></returns>
  18797. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture1D::Map']/*" />
  18798. <msdn-id>bb173865</msdn-id>
  18799. <unmanaged>HRESULT ID3D10Texture1D::Map([In] unsigned int Subresource,[In] D3D10_MAP MapType,[In] D3D10_MAP_FLAG MapFlags,[Out] void** ppData)</unmanaged>
  18800. <unmanaged-short>ID3D10Texture1D::Map</unmanaged-short>
  18801. </member>
  18802. <member name="M:SharpDX.Direct3D10.Texture1D.Unmap(System.Int32)">
  18803. <summary>
  18804. <p>Invalidate the reference to a resource that was retrieved by <strong><see cref="M:SharpDX.Direct3D10.Texture1D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,System.IntPtr@)" /></strong>, and re-enable the GPU's access to that resource.</p>
  18805. </summary>
  18806. <param name="subresource">No documentation.</param>
  18807. <remarks>
  18808. <p>A subresource must be mapped before Unmap is called.</p><table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>Unmap in Direct3D 10 is analogous to resource Unlock in Direct3D 9.</p> </td></tr> </table><p>?</p>
  18809. </remarks>
  18810. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture1D::Unmap']/*" />
  18811. <msdn-id>bb173866</msdn-id>
  18812. <unmanaged>void ID3D10Texture1D::Unmap([In] unsigned int Subresource)</unmanaged>
  18813. <unmanaged-short>ID3D10Texture1D::Unmap</unmanaged-short>
  18814. </member>
  18815. <member name="M:SharpDX.Direct3D10.Texture1D.GetDescription(SharpDX.Direct3D10.Texture1DDescription@)">
  18816. <summary>
  18817. <p>Get the properties of the texture resource.</p>
  18818. </summary>
  18819. <param name="descRef"><dd> <p>Pointer to a resource description (see <strong><see cref="T:SharpDX.Direct3D10.Texture1DDescription" /></strong>).</p> </dd></param>
  18820. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture1D::GetDesc']/*" />
  18821. <msdn-id>bb173864</msdn-id>
  18822. <unmanaged>void ID3D10Texture1D::GetDesc([Out] D3D10_TEXTURE1D_DESC* pDesc)</unmanaged>
  18823. <unmanaged-short>ID3D10Texture1D::GetDesc</unmanaged-short>
  18824. </member>
  18825. <member name="M:SharpDX.Direct3D10.Texture1D.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Texture1DDescription)">
  18826. <summary>
  18827. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Texture1D" /> class.
  18828. </summary>
  18829. <param name = "device">The device with which to associate the texture.</param>
  18830. <param name = "description">The description of the texture.</param>
  18831. </member>
  18832. <member name="M:SharpDX.Direct3D10.Texture1D.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Texture1DDescription,SharpDX.DataStream)">
  18833. <summary>
  18834. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Texture1D" /> class.
  18835. </summary>
  18836. <param name = "device">The device with which to associate the texture.</param>
  18837. <param name = "description">The description of the texture.</param>
  18838. <param name = "data">The initial texture data.</param>
  18839. </member>
  18840. <member name="M:SharpDX.Direct3D10.Texture1D.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Texture1DDescription,SharpDX.DataStream[])">
  18841. <summary>
  18842. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Texture1D" /> class.
  18843. </summary>
  18844. <param name = "device">The device with which to associate the texture.</param>
  18845. <param name = "description">The description of the texture.</param>
  18846. <param name = "data">An array of initial texture data for each subresource.</param>
  18847. </member>
  18848. <member name="M:SharpDX.Direct3D10.Texture1D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags)">
  18849. <summary>
  18850. Maps the texture, providing CPU access to its contents.
  18851. </summary>
  18852. <param name="mipSlice">The mip slice to map.</param>
  18853. <param name="mode">The IO operations to enable on the CPU.</param>
  18854. <param name="flags">Flags indicating how the CPU should respond when the GPU is busy.</param>
  18855. <returns>A data stream containing the mapped data. This data stream is invalidated
  18856. when the buffer is unmapped.</returns>
  18857. </member>
  18858. <member name="T:SharpDX.Direct3D10.Texture2D">
  18859. <summary>
  18860. <p>A 2D texture interface manages texel data, which is structured memory.</p>
  18861. </summary>
  18862. <remarks>
  18863. <p>To create an empty Texture2D resource, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateTexture2D(SharpDX.Direct3D10.Texture2DDescription@,SharpDX.DataBox[],SharpDX.Direct3D10.Texture2D)" /></strong>. For more details on creating and loading textures, see Creating Texture Resources.</p><p>Textures cannot be bound directly to the pipeline; instead, a view must be created and bound. Using a view, texture data can be interpreted at run time within certain restrictions. To use the texture as a render target or depth-stencil resource, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateRenderTargetView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.RenderTargetViewDescription},SharpDX.Direct3D10.RenderTargetView)" /></strong>, and <strong><see cref="M:SharpDX.Direct3D10.Device.CreateDepthStencilView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.DepthStencilViewDescription},SharpDX.Direct3D10.DepthStencilView)" /></strong>, respectively. To use the texture as an input to a shader, create a by calling <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p>
  18864. </remarks>
  18865. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture2D']/*" />
  18866. <msdn-id>bb173867</msdn-id>
  18867. <unmanaged>ID3D10Texture2D</unmanaged>
  18868. <unmanaged-short>ID3D10Texture2D</unmanaged-short>
  18869. </member>
  18870. <member name="M:SharpDX.Direct3D10.Texture2D.#ctor(System.IntPtr)">
  18871. <summary>
  18872. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Texture2D"/> class.
  18873. </summary>
  18874. <param name="nativePtr">The native pointer.</param>
  18875. </member>
  18876. <member name="M:SharpDX.Direct3D10.Texture2D.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Texture2D">
  18877. <summary>
  18878. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Texture2D"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  18879. </summary>
  18880. <param name="nativePointer">The native pointer.</param>
  18881. <returns>
  18882. The result of the conversion.
  18883. </returns>
  18884. </member>
  18885. <member name="P:SharpDX.Direct3D10.Texture2D.Description">
  18886. <summary>
  18887. <p>Get the properties of the texture resource.</p>
  18888. </summary>
  18889. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture2D::GetDesc']/*" />
  18890. <msdn-id>bb173868</msdn-id>
  18891. <unmanaged>GetDesc</unmanaged>
  18892. <unmanaged-short>GetDesc</unmanaged-short>
  18893. <unmanaged>void ID3D10Texture2D::GetDesc([Out] D3D10_TEXTURE2D_DESC* pDesc)</unmanaged>
  18894. </member>
  18895. <member name="M:SharpDX.Direct3D10.Texture2D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,SharpDX.DataRectangle@)">
  18896. <summary>
  18897. <p>Get a reference to the data contained in a subresource, and deny GPU access to that subresource.</p>
  18898. </summary>
  18899. <param name="subresource"><dd> <p>Index number of the subresource. See <strong>D3D10CalcSubresource</strong> for more details.</p> </dd></param>
  18900. <param name="mapType"><dd> <p>Integer that specifies the CPU's read and write permissions for a resource. For possible values, see <strong><see cref="T:SharpDX.Direct3D10.MapMode" /></strong>.</p> </dd></param>
  18901. <param name="mapFlags"><dd> <p> <strong>Flag</strong> that specifies what the CPU should do when the GPU is busy. This flag is optional.</p> </dd></param>
  18902. <param name="mappedTex2DRef"><dd> <p>Pointer to a structure (<strong><see cref="T:SharpDX.DataRectangle" /></strong>) that is filled in by the function and contains a reference to the resource data.</p> </dd></param>
  18903. <returns><p>If this function succeeds, it returns <see cref="F:SharpDX.Result.Ok" />.</p><p>All of the Map methods have identical return values and operating restrictions. These are listed in the remarks section of <strong><see cref="M:SharpDX.Direct3D10.Texture1D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,System.IntPtr@)" /></strong>.</p></returns>
  18904. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture2D::Map']/*" />
  18905. <msdn-id>bb173869</msdn-id>
  18906. <unmanaged>HRESULT ID3D10Texture2D::Map([In] unsigned int Subresource,[In] D3D10_MAP MapType,[In] D3D10_MAP_FLAG MapFlags,[Out] D3D10_MAPPED_TEXTURE2D* pMappedTex2D)</unmanaged>
  18907. <unmanaged-short>ID3D10Texture2D::Map</unmanaged-short>
  18908. </member>
  18909. <member name="M:SharpDX.Direct3D10.Texture2D.Unmap(System.Int32)">
  18910. <summary>
  18911. <p>Invalidate the reference to the resource that was retrieved by <strong><see cref="M:SharpDX.Direct3D10.Texture2D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,SharpDX.DataRectangle@)" /></strong>, and re-enable GPU access to the resource.</p>
  18912. </summary>
  18913. <param name="subresource">No documentation.</param>
  18914. <remarks>
  18915. <p>A subresource must be mapped before Unmap is called.</p><table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>Unmap in Direct3D 10 is analogous to resource Unlock in Direct3D 9.</p> </td></tr> </table><p>?</p>
  18916. </remarks>
  18917. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture2D::Unmap']/*" />
  18918. <msdn-id>bb173870</msdn-id>
  18919. <unmanaged>void ID3D10Texture2D::Unmap([In] unsigned int Subresource)</unmanaged>
  18920. <unmanaged-short>ID3D10Texture2D::Unmap</unmanaged-short>
  18921. </member>
  18922. <member name="M:SharpDX.Direct3D10.Texture2D.GetDescription(SharpDX.Direct3D10.Texture2DDescription@)">
  18923. <summary>
  18924. <p>Get the properties of the texture resource.</p>
  18925. </summary>
  18926. <param name="descRef"><dd> <p>Pointer to a resource description (see <strong><see cref="T:SharpDX.Direct3D10.Texture2DDescription" /></strong>).</p> </dd></param>
  18927. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture2D::GetDesc']/*" />
  18928. <msdn-id>bb173868</msdn-id>
  18929. <unmanaged>void ID3D10Texture2D::GetDesc([Out] D3D10_TEXTURE2D_DESC* pDesc)</unmanaged>
  18930. <unmanaged-short>ID3D10Texture2D::GetDesc</unmanaged-short>
  18931. </member>
  18932. <member name="M:SharpDX.Direct3D10.Texture2D.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Texture2DDescription)">
  18933. <summary>
  18934. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Texture2D" /> class.
  18935. </summary>
  18936. <param name = "device">The device with which to associate the texture.</param>
  18937. <param name = "description">The description of the texture.</param>
  18938. </member>
  18939. <member name="M:SharpDX.Direct3D10.Texture2D.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Texture2DDescription,SharpDX.DataRectangle)">
  18940. <summary>
  18941. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Texture2D" /> class.
  18942. </summary>
  18943. <param name = "device">The device with which to associate the texture.</param>
  18944. <param name = "description">The description of the texture.</param>
  18945. <param name = "data">The initial texture data.</param>
  18946. </member>
  18947. <member name="M:SharpDX.Direct3D10.Texture2D.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Texture2DDescription,SharpDX.DataRectangle[])">
  18948. <summary>
  18949. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Texture2D" /> class.
  18950. </summary>
  18951. <param name = "device">The device with which to associate the texture.</param>
  18952. <param name = "description">The description of the texture.</param>
  18953. <param name = "data">An array of initial texture data for each subresource.</param>
  18954. </member>
  18955. <member name="M:SharpDX.Direct3D10.Texture2D.ComputeNormalMap(SharpDX.Direct3D10.Texture2D,SharpDX.Direct3D10.Texture2D,SharpDX.Direct3D10.NormalMapFlags,SharpDX.Direct3D10.Channel,System.Single)">
  18956. <summary>
  18957. Converts a height map into a normal map. The (x,y,z) components of each normal are mapped to the (r,g,b) channels of the output texture.
  18958. </summary>
  18959. <param name = "source">The source height map texture.</param>
  18960. <param name = "destination">The destination texture.</param>
  18961. <param name = "flags">One or more flags that control generation of normal maps.</param>
  18962. <param name = "channel">One or more flag specifying the source of height information.</param>
  18963. <param name = "amplitude">Constant value multiplier that increases (or decreases) the values in the normal map. Higher values usually make bumps more visible, lower values usually make bumps less visible.</param>
  18964. <returns>A <see cref = "T:SharpDX.Result" /> object describing the result of the operation.</returns>
  18965. </member>
  18966. <member name="M:SharpDX.Direct3D10.Texture2D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags)">
  18967. <summary>
  18968. Maps the texture, providing CPU access to its contents.
  18969. </summary>
  18970. <param name="mipSlice">The mip slice to map.</param>
  18971. <param name="mode">The IO operations to enable on the CPU.</param>
  18972. <param name="flags">Flags indicating how the CPU should respond when the GPU is busy.</param>
  18973. <returns>A data rectangle containing the mapped data. This data stream is invalidated when the buffer is unmapped.</returns>
  18974. </member>
  18975. <member name="M:SharpDX.Direct3D10.Texture2D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,SharpDX.DataStream@)">
  18976. <summary>
  18977. Maps the texture, providing CPU access to its contents.
  18978. </summary>
  18979. <param name="mipSlice">The mip slice to map.</param>
  18980. <param name="mode">The IO operations to enable on the CPU.</param>
  18981. <param name="flags">Flags indicating how the CPU should respond when the GPU is busy.</param>
  18982. <param name="dataStream">The data stream.</param>
  18983. <returns>
  18984. A data rectangle containing the mapped data. This data stream is invalidated when the buffer is unmapped.
  18985. </returns>
  18986. </member>
  18987. <member name="T:SharpDX.Direct3D10.Texture3D">
  18988. <summary>
  18989. <p>A 3D texture interface accesses texel data, which is structured memory.</p>
  18990. </summary>
  18991. <remarks>
  18992. <p>To create an empty Texture3D resource, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateTexture3D(SharpDX.Direct3D10.Texture3DDescription@,SharpDX.DataBox[],SharpDX.Direct3D10.Texture3D)" /></strong>. For more details on creating and loading textures, see Creating Texture Resources.</p><p>Textures cannot be bound directly to the pipeline; instead, a view must be created and bound. Using a view, texture data can be interpreted at run time within certain restrictions. To use the texture as a render target or depth-stencil resource, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateRenderTargetView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.RenderTargetViewDescription},SharpDX.Direct3D10.RenderTargetView)" /></strong>, and <strong><see cref="M:SharpDX.Direct3D10.Device.CreateDepthStencilView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.DepthStencilViewDescription},SharpDX.Direct3D10.DepthStencilView)" /></strong>, respectively. To use the texture as an input to a shader, create a by calling <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p>
  18993. </remarks>
  18994. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture3D']/*" />
  18995. <msdn-id>bb173871</msdn-id>
  18996. <unmanaged>ID3D10Texture3D</unmanaged>
  18997. <unmanaged-short>ID3D10Texture3D</unmanaged-short>
  18998. </member>
  18999. <member name="M:SharpDX.Direct3D10.Texture3D.#ctor(System.IntPtr)">
  19000. <summary>
  19001. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.Texture3D"/> class.
  19002. </summary>
  19003. <param name="nativePtr">The native pointer.</param>
  19004. </member>
  19005. <member name="M:SharpDX.Direct3D10.Texture3D.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.Texture3D">
  19006. <summary>
  19007. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.Texture3D"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  19008. </summary>
  19009. <param name="nativePointer">The native pointer.</param>
  19010. <returns>
  19011. The result of the conversion.
  19012. </returns>
  19013. </member>
  19014. <member name="P:SharpDX.Direct3D10.Texture3D.Description">
  19015. <summary>
  19016. <p>Get the properties of the texture resource.</p>
  19017. </summary>
  19018. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture3D::GetDesc']/*" />
  19019. <msdn-id>bb173872</msdn-id>
  19020. <unmanaged>GetDesc</unmanaged>
  19021. <unmanaged-short>GetDesc</unmanaged-short>
  19022. <unmanaged>void ID3D10Texture3D::GetDesc([Out] D3D10_TEXTURE3D_DESC* pDesc)</unmanaged>
  19023. </member>
  19024. <member name="M:SharpDX.Direct3D10.Texture3D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,SharpDX.DataBox@)">
  19025. <summary>
  19026. <p>Get a reference to the data contained in a subresource, and deny GPU access to that subresource.</p>
  19027. </summary>
  19028. <param name="subresource"><dd> <p>Index number of the subresource. See <strong>D3D10CalcSubresource</strong>for more details.</p> </dd></param>
  19029. <param name="mapType"><dd> <p>Specifies the CPU's read and write permissions for a resource. For possible values, see <strong><see cref="T:SharpDX.Direct3D10.MapMode" /></strong>.</p> </dd></param>
  19030. <param name="mapFlags"><dd> <p> <strong>Flag</strong> that specifies what the CPU should do when the GPU is busy. This flag is optional.</p> </dd></param>
  19031. <param name="mappedTex3DRef"><dd> <p>Pointer to a structure (<strong><see cref="T:SharpDX.DataBox" /></strong>) that is filled in by the function and contains a reference to the resource data.</p> </dd></param>
  19032. <returns><p>If this function succeeds, it returns <see cref="F:SharpDX.Result.Ok" />. All of the Map methods have identical return values and operating restrictions. These are listed in the remarks section of <strong><see cref="M:SharpDX.Direct3D10.Texture1D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,System.IntPtr@)" /></strong>.</p></returns>
  19033. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture3D::Map']/*" />
  19034. <msdn-id>bb173873</msdn-id>
  19035. <unmanaged>HRESULT ID3D10Texture3D::Map([In] unsigned int Subresource,[In] D3D10_MAP MapType,[In] D3D10_MAP_FLAG MapFlags,[Out] D3D10_MAPPED_TEXTURE3D* pMappedTex3D)</unmanaged>
  19036. <unmanaged-short>ID3D10Texture3D::Map</unmanaged-short>
  19037. </member>
  19038. <member name="M:SharpDX.Direct3D10.Texture3D.Unmap(System.Int32)">
  19039. <summary>
  19040. <p>Invalidate the reference to the resource retrieved by <strong><see cref="M:SharpDX.Direct3D10.Texture3D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,SharpDX.DataBox@)" /></strong>, and re-enable the GPU's access to the resource.</p>
  19041. </summary>
  19042. <param name="subresource">No documentation.</param>
  19043. <remarks>
  19044. <p>A subresource must be mapped before Unmap is called.</p><table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>Unmap() in Direct3D 10 is analogous to resource Unlock() in Direct3D 9.</p> </td></tr> </table><p>?</p>
  19045. </remarks>
  19046. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture3D::Unmap']/*" />
  19047. <msdn-id>bb173874</msdn-id>
  19048. <unmanaged>void ID3D10Texture3D::Unmap([In] unsigned int Subresource)</unmanaged>
  19049. <unmanaged-short>ID3D10Texture3D::Unmap</unmanaged-short>
  19050. </member>
  19051. <member name="M:SharpDX.Direct3D10.Texture3D.GetDescription(SharpDX.Direct3D10.Texture3DDescription@)">
  19052. <summary>
  19053. <p>Get the properties of the texture resource.</p>
  19054. </summary>
  19055. <param name="descRef"><dd> <p>Pointer to a resource description (see <strong><see cref="T:SharpDX.Direct3D10.Texture3DDescription" /></strong>).</p> </dd></param>
  19056. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Texture3D::GetDesc']/*" />
  19057. <msdn-id>bb173872</msdn-id>
  19058. <unmanaged>void ID3D10Texture3D::GetDesc([Out] D3D10_TEXTURE3D_DESC* pDesc)</unmanaged>
  19059. <unmanaged-short>ID3D10Texture3D::GetDesc</unmanaged-short>
  19060. </member>
  19061. <member name="M:SharpDX.Direct3D10.Texture3D.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Texture3DDescription)">
  19062. <summary>
  19063. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Texture3D" /> class.
  19064. </summary>
  19065. <param name = "device">The device with which to associate the texture.</param>
  19066. <param name = "description">The description of the texture.</param>
  19067. </member>
  19068. <member name="M:SharpDX.Direct3D10.Texture3D.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Texture3DDescription,SharpDX.DataBox)">
  19069. <summary>
  19070. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Texture3D" /> class.
  19071. </summary>
  19072. <param name = "device">The device with which to associate the texture.</param>
  19073. <param name = "description">The description of the texture.</param>
  19074. <param name = "data">The initial texture data.</param>
  19075. </member>
  19076. <member name="M:SharpDX.Direct3D10.Texture3D.#ctor(SharpDX.Direct3D10.Device,SharpDX.Direct3D10.Texture3DDescription,SharpDX.DataBox[])">
  19077. <summary>
  19078. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.Texture3D" /> class.
  19079. </summary>
  19080. <param name = "device">The device with which to associate the texture.</param>
  19081. <param name = "description">The description of the texture.</param>
  19082. <param name = "data">An array of initial texture data for each subresource.</param>
  19083. </member>
  19084. <member name="M:SharpDX.Direct3D10.Texture3D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags)">
  19085. <summary>
  19086. Maps the texture, providing CPU access to its contents.
  19087. </summary>
  19088. <param name="mipSlice">The mip slice to map.</param>
  19089. <param name="mode">The IO operations to enable on the CPU.</param>
  19090. <param name="flags">Flags indicating how the CPU should respond when the GPU is busy.</param>
  19091. <returns>
  19092. A databox containing the mapped data. This data stream is invalidated when the buffer is unmapped.
  19093. </returns>
  19094. </member>
  19095. <member name="M:SharpDX.Direct3D10.Texture3D.Map(System.Int32,SharpDX.Direct3D10.MapMode,SharpDX.Direct3D10.MapFlags,SharpDX.DataStream@)">
  19096. <summary>
  19097. Maps the texture, providing CPU access to its contents.
  19098. </summary>
  19099. <param name="mipSlice">The mip slice to map.</param>
  19100. <param name="mode">The IO operations to enable on the CPU.</param>
  19101. <param name="flags">Flags indicating how the CPU should respond when the GPU is busy.</param>
  19102. <param name="dataStream">The data stream.</param>
  19103. <returns>
  19104. A databox containing the mapped data. This data stream is invalidated when the buffer is unmapped.
  19105. </returns>
  19106. </member>
  19107. <member name="T:SharpDX.Direct3D10.VertexShader">
  19108. <summary>
  19109. <p>A vertex-shader interface manages an executable program (a vertex shader) that controls the vertex-shader stage.</p>
  19110. </summary>
  19111. <remarks>
  19112. <p>The vertex-shader interface has no methods; use HLSL to implement your shader functionality. All shaders in Direct3D 10 are implemented from a common set of features referred to as the common shader core.</p><p>To create a vertex shader interface, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateVertexShader(System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.VertexShader)" /></strong>. Before using a vertex shader you must bind it to the device by calling <strong><see cref="M:SharpDX.Direct3D10.VertexShaderStage.Set(SharpDX.Direct3D10.VertexShader)" /></strong>.</p><p>This interface is defined in D3D10.h.</p>
  19113. </remarks>
  19114. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10VertexShader']/*" />
  19115. <msdn-id>bb173875</msdn-id>
  19116. <unmanaged>ID3D10VertexShader</unmanaged>
  19117. <unmanaged-short>ID3D10VertexShader</unmanaged-short>
  19118. </member>
  19119. <member name="M:SharpDX.Direct3D10.VertexShader.#ctor(System.IntPtr)">
  19120. <summary>
  19121. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.VertexShader"/> class.
  19122. </summary>
  19123. <param name="nativePtr">The native pointer.</param>
  19124. </member>
  19125. <member name="M:SharpDX.Direct3D10.VertexShader.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.VertexShader">
  19126. <summary>
  19127. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.VertexShader"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  19128. </summary>
  19129. <param name="nativePointer">The native pointer.</param>
  19130. <returns>
  19131. The result of the conversion.
  19132. </returns>
  19133. </member>
  19134. <member name="M:SharpDX.Direct3D10.VertexShader.#ctor(SharpDX.Direct3D10.Device,System.Byte[])">
  19135. <summary>
  19136. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.VertexShader" /> class.
  19137. </summary>
  19138. <param name = "device">The device used to create the shader.</param>
  19139. <param name = "shaderBytecode">The compiled shader bytecode.</param>
  19140. </member>
  19141. <member name="T:SharpDX.Direct3D10.VertexShaderStage">
  19142. <summary>
  19143. <p>The device interface represents a virtual adapter for Direct3D 10.0; it is used to perform rendering and create Direct3D resources.</p>
  19144. </summary>
  19145. <remarks>
  19146. <p>A device is created using <strong><see cref="M:SharpDX.Direct3D10.D3D10.CreateDevice(SharpDX.DXGI.Adapter,SharpDX.Direct3D10.DriverType,System.IntPtr,SharpDX.Direct3D10.DeviceCreationFlags,System.Int32,SharpDX.Direct3D10.Device)" /></strong>.</p>
  19147. </remarks>
  19148. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device']/*" />
  19149. <msdn-id>bb173528</msdn-id>
  19150. <unmanaged>ID3D10Device</unmanaged>
  19151. <unmanaged-short>ID3D10Device</unmanaged-short>
  19152. </member>
  19153. <member name="M:SharpDX.Direct3D10.VertexShaderStage.#ctor(System.IntPtr)">
  19154. <summary>
  19155. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.VertexShaderStage"/> class.
  19156. </summary>
  19157. <param name="nativePtr">The native pointer.</param>
  19158. </member>
  19159. <member name="M:SharpDX.Direct3D10.VertexShaderStage.op_Explicit(System.IntPtr)~SharpDX.Direct3D10.VertexShaderStage">
  19160. <summary>
  19161. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D10.VertexShaderStage"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  19162. </summary>
  19163. <param name="nativePointer">The native pointer.</param>
  19164. <returns>
  19165. The result of the conversion.
  19166. </returns>
  19167. </member>
  19168. <member name="M:SharpDX.Direct3D10.VertexShaderStage.SetConstantBuffers(System.Int32,System.Int32,SharpDX.Direct3D10.Buffer[])">
  19169. <summary>
  19170. <p>Set the constant buffers used by the vertex shader pipeline stage.</p>
  19171. </summary>
  19172. <param name="startSlot">No documentation.</param>
  19173. <param name="numBuffers">No documentation.</param>
  19174. <param name="constantBuffersOut">No documentation.</param>
  19175. <remarks>
  19176. <p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  19177. </remarks>
  19178. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSSetConstantBuffers']/*" />
  19179. <msdn-id>bb173626</msdn-id>
  19180. <unmanaged>void ID3D10Device::VSSetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  19181. <unmanaged-short>ID3D10Device::VSSetConstantBuffers</unmanaged-short>
  19182. </member>
  19183. <member name="M:SharpDX.Direct3D10.VertexShaderStage.SetConstantBuffers(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.Buffer})">
  19184. <summary>
  19185. <p>Set the constant buffers used by the vertex shader pipeline stage.</p>
  19186. </summary>
  19187. <param name="startSlot">No documentation.</param>
  19188. <param name="numBuffers">No documentation.</param>
  19189. <param name="constantBuffersOut">No documentation.</param>
  19190. <remarks>
  19191. <p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  19192. </remarks>
  19193. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSSetConstantBuffers']/*" />
  19194. <msdn-id>bb173626</msdn-id>
  19195. <unmanaged>void ID3D10Device::VSSetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  19196. <unmanaged-short>ID3D10Device::VSSetConstantBuffers</unmanaged-short>
  19197. </member>
  19198. <member name="M:SharpDX.Direct3D10.VertexShaderStage.SetConstantBuffers(System.Int32,System.Int32,System.IntPtr)">
  19199. <summary>
  19200. <p>Set the constant buffers used by the vertex shader pipeline stage.</p>
  19201. </summary>
  19202. <param name="startSlot">No documentation.</param>
  19203. <param name="numBuffers">No documentation.</param>
  19204. <param name="constantBuffersOut">No documentation.</param>
  19205. <remarks>
  19206. <p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  19207. </remarks>
  19208. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSSetConstantBuffers']/*" />
  19209. <msdn-id>bb173626</msdn-id>
  19210. <unmanaged>void ID3D10Device::VSSetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[In, Buffer, Optional] const ID3D10Buffer** ppConstantBuffers)</unmanaged>
  19211. <unmanaged-short>ID3D10Device::VSSetConstantBuffers</unmanaged-short>
  19212. </member>
  19213. <member name="M:SharpDX.Direct3D10.VertexShaderStage.Set(SharpDX.Direct3D10.VertexShader)">
  19214. <summary>
  19215. <p>Set a vertex shader to the device.</p>
  19216. </summary>
  19217. <param name="vertexShaderRef"><dd> <p>Pointer to a vertex shader (see <strong><see cref="T:SharpDX.Direct3D10.VertexShader" /></strong>). Passing in <strong><c>null</c></strong> disables the shader for this pipeline stage.</p> </dd></param>
  19218. <remarks>
  19219. <p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  19220. </remarks>
  19221. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSSetShader']/*" />
  19222. <msdn-id>bb173628</msdn-id>
  19223. <unmanaged>void ID3D10Device::VSSetShader([In, Optional] ID3D10VertexShader* pVertexShader)</unmanaged>
  19224. <unmanaged-short>ID3D10Device::VSSetShader</unmanaged-short>
  19225. </member>
  19226. <member name="M:SharpDX.Direct3D10.VertexShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])">
  19227. <summary>
  19228. <p>Bind an array of shader resources to the vertex shader stage.</p>
  19229. </summary>
  19230. <param name="startSlot">No documentation.</param>
  19231. <param name="numViews">No documentation.</param>
  19232. <param name="shaderResourceViewsOut">No documentation.</param>
  19233. <remarks>
  19234. <p>If you bind a subresource as an input and an output, this API will fill the destination shader resource slot with <strong><c>null</c></strong>. The debug layer (when active) will alert you if this is true.</p><p>For information about creating shader-resource views, see <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  19235. </remarks>
  19236. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSSetShaderResources']/*" />
  19237. <msdn-id>bb173629</msdn-id>
  19238. <unmanaged>void ID3D10Device::VSSetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  19239. <unmanaged-short>ID3D10Device::VSSetShaderResources</unmanaged-short>
  19240. </member>
  19241. <member name="M:SharpDX.Direct3D10.VertexShaderStage.SetShaderResources(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.ShaderResourceView})">
  19242. <summary>
  19243. <p>Bind an array of shader resources to the vertex shader stage.</p>
  19244. </summary>
  19245. <param name="startSlot">No documentation.</param>
  19246. <param name="numViews">No documentation.</param>
  19247. <param name="shaderResourceViewsOut">No documentation.</param>
  19248. <remarks>
  19249. <p>If you bind a subresource as an input and an output, this API will fill the destination shader resource slot with <strong><c>null</c></strong>. The debug layer (when active) will alert you if this is true.</p><p>For information about creating shader-resource views, see <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  19250. </remarks>
  19251. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSSetShaderResources']/*" />
  19252. <msdn-id>bb173629</msdn-id>
  19253. <unmanaged>void ID3D10Device::VSSetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  19254. <unmanaged-short>ID3D10Device::VSSetShaderResources</unmanaged-short>
  19255. </member>
  19256. <member name="M:SharpDX.Direct3D10.VertexShaderStage.SetShaderResources(System.Int32,System.Int32,System.IntPtr)">
  19257. <summary>
  19258. <p>Bind an array of shader resources to the vertex shader stage.</p>
  19259. </summary>
  19260. <param name="startSlot">No documentation.</param>
  19261. <param name="numViews">No documentation.</param>
  19262. <param name="shaderResourceViewsOut">No documentation.</param>
  19263. <remarks>
  19264. <p>If you bind a subresource as an input and an output, this API will fill the destination shader resource slot with <strong><c>null</c></strong>. The debug layer (when active) will alert you if this is true.</p><p>For information about creating shader-resource views, see <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>.</p><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  19265. </remarks>
  19266. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSSetShaderResources']/*" />
  19267. <msdn-id>bb173629</msdn-id>
  19268. <unmanaged>void ID3D10Device::VSSetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[In, Buffer, Optional] const ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  19269. <unmanaged-short>ID3D10Device::VSSetShaderResources</unmanaged-short>
  19270. </member>
  19271. <member name="M:SharpDX.Direct3D10.VertexShaderStage.SetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])">
  19272. <summary>
  19273. <p>Set an array of sampler states to the vertex shader pipeline stage.</p>
  19274. </summary>
  19275. <param name="startSlot">No documentation.</param>
  19276. <param name="numSamplers">No documentation.</param>
  19277. <param name="samplersOut">No documentation.</param>
  19278. <remarks>
  19279. <p>Any sampler may be set to <strong><c>null</c></strong>; this invokes the default state, which is defined to be the following.</p><pre> //Default sampler state:
  19280. <see cref="T:SharpDX.Direct3D10.SamplerStateDescription" /> SamplerDesc;
  19281. SamplerDesc.Filter = <see cref="F:SharpDX.Direct3D10.Filter.MinMagMipLinear" />;
  19282. SamplerDesc.AddressU = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  19283. SamplerDesc.AddressV = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  19284. SamplerDesc.AddressW = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  19285. SamplerDesc.MipLODBias = 0;
  19286. SamplerDesc.MaxAnisotropy = 1;
  19287. SamplerDesc.ComparisonFunc = <see cref="F:SharpDX.Direct3D10.Comparison.Never" />;
  19288. SamplerDesc.BorderColor[0] = 1.0f;
  19289. SamplerDesc.BorderColor[1] = 1.0f;
  19290. SamplerDesc.BorderColor[2] = 1.0f;
  19291. SamplerDesc.BorderColor[3] = 1.0f;
  19292. SamplerDesc.MinLOD = -FLT_MAX;
  19293. SamplerDesc.MaxLOD = FLT_MAX; </pre><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  19294. </remarks>
  19295. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSSetSamplers']/*" />
  19296. <msdn-id>bb173627</msdn-id>
  19297. <unmanaged>void ID3D10Device::VSSetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[In, Buffer, Optional] const ID3D10SamplerState** ppSamplers)</unmanaged>
  19298. <unmanaged-short>ID3D10Device::VSSetSamplers</unmanaged-short>
  19299. </member>
  19300. <member name="M:SharpDX.Direct3D10.VertexShaderStage.SetSamplers(System.Int32,System.Int32,SharpDX.ComArray{SharpDX.Direct3D10.SamplerState})">
  19301. <summary>
  19302. <p>Set an array of sampler states to the vertex shader pipeline stage.</p>
  19303. </summary>
  19304. <param name="startSlot">No documentation.</param>
  19305. <param name="numSamplers">No documentation.</param>
  19306. <param name="samplersOut">No documentation.</param>
  19307. <remarks>
  19308. <p>Any sampler may be set to <strong><c>null</c></strong>; this invokes the default state, which is defined to be the following.</p><pre> //Default sampler state:
  19309. <see cref="T:SharpDX.Direct3D10.SamplerStateDescription" /> SamplerDesc;
  19310. SamplerDesc.Filter = <see cref="F:SharpDX.Direct3D10.Filter.MinMagMipLinear" />;
  19311. SamplerDesc.AddressU = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  19312. SamplerDesc.AddressV = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  19313. SamplerDesc.AddressW = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  19314. SamplerDesc.MipLODBias = 0;
  19315. SamplerDesc.MaxAnisotropy = 1;
  19316. SamplerDesc.ComparisonFunc = <see cref="F:SharpDX.Direct3D10.Comparison.Never" />;
  19317. SamplerDesc.BorderColor[0] = 1.0f;
  19318. SamplerDesc.BorderColor[1] = 1.0f;
  19319. SamplerDesc.BorderColor[2] = 1.0f;
  19320. SamplerDesc.BorderColor[3] = 1.0f;
  19321. SamplerDesc.MinLOD = -FLT_MAX;
  19322. SamplerDesc.MaxLOD = FLT_MAX; </pre><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  19323. </remarks>
  19324. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSSetSamplers']/*" />
  19325. <msdn-id>bb173627</msdn-id>
  19326. <unmanaged>void ID3D10Device::VSSetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[In, Buffer, Optional] const ID3D10SamplerState** ppSamplers)</unmanaged>
  19327. <unmanaged-short>ID3D10Device::VSSetSamplers</unmanaged-short>
  19328. </member>
  19329. <member name="M:SharpDX.Direct3D10.VertexShaderStage.SetSamplers(System.Int32,System.Int32,System.IntPtr)">
  19330. <summary>
  19331. <p>Set an array of sampler states to the vertex shader pipeline stage.</p>
  19332. </summary>
  19333. <param name="startSlot">No documentation.</param>
  19334. <param name="numSamplers">No documentation.</param>
  19335. <param name="samplersOut">No documentation.</param>
  19336. <remarks>
  19337. <p>Any sampler may be set to <strong><c>null</c></strong>; this invokes the default state, which is defined to be the following.</p><pre> //Default sampler state:
  19338. <see cref="T:SharpDX.Direct3D10.SamplerStateDescription" /> SamplerDesc;
  19339. SamplerDesc.Filter = <see cref="F:SharpDX.Direct3D10.Filter.MinMagMipLinear" />;
  19340. SamplerDesc.AddressU = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  19341. SamplerDesc.AddressV = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  19342. SamplerDesc.AddressW = <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Clamp" />;
  19343. SamplerDesc.MipLODBias = 0;
  19344. SamplerDesc.MaxAnisotropy = 1;
  19345. SamplerDesc.ComparisonFunc = <see cref="F:SharpDX.Direct3D10.Comparison.Never" />;
  19346. SamplerDesc.BorderColor[0] = 1.0f;
  19347. SamplerDesc.BorderColor[1] = 1.0f;
  19348. SamplerDesc.BorderColor[2] = 1.0f;
  19349. SamplerDesc.BorderColor[3] = 1.0f;
  19350. SamplerDesc.MinLOD = -FLT_MAX;
  19351. SamplerDesc.MaxLOD = FLT_MAX; </pre><p>The method will not hold a reference to the interfaces passed in. For that reason, applications should be careful not to release an interface currently in use by the device.</p>
  19352. </remarks>
  19353. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSSetSamplers']/*" />
  19354. <msdn-id>bb173627</msdn-id>
  19355. <unmanaged>void ID3D10Device::VSSetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[In, Buffer, Optional] const ID3D10SamplerState** ppSamplers)</unmanaged>
  19356. <unmanaged-short>ID3D10Device::VSSetSamplers</unmanaged-short>
  19357. </member>
  19358. <member name="M:SharpDX.Direct3D10.VertexShaderStage.GetConstantBuffers(System.Int32,System.Int32,SharpDX.Direct3D10.Buffer[])">
  19359. <summary>
  19360. <p>Get the constant buffers used by the vertex shader pipeline stage.</p>
  19361. </summary>
  19362. <param name="startSlot">No documentation.</param>
  19363. <param name="numBuffers">No documentation.</param>
  19364. <param name="constantBuffersOut">No documentation.</param>
  19365. <remarks>
  19366. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  19367. </remarks>
  19368. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSGetConstantBuffers']/*" />
  19369. <msdn-id>bb173622</msdn-id>
  19370. <unmanaged>void ID3D10Device::VSGetConstantBuffers([In] unsigned int StartSlot,[In] unsigned int NumBuffers,[Out, Buffer, Optional] ID3D10Buffer** ppConstantBuffers)</unmanaged>
  19371. <unmanaged-short>ID3D10Device::VSGetConstantBuffers</unmanaged-short>
  19372. </member>
  19373. <member name="M:SharpDX.Direct3D10.VertexShaderStage.Get(SharpDX.Direct3D10.VertexShader@)">
  19374. <summary>
  19375. <p>Get the vertex shader currently set on the device.</p>
  19376. </summary>
  19377. <param name="vertexShaderOut"><dd> <p>Address of a reference to a vertex shader (see <strong><see cref="T:SharpDX.Direct3D10.VertexShader" /></strong>) to be returned by the method.</p> </dd></param>
  19378. <remarks>
  19379. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  19380. </remarks>
  19381. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSGetShader']/*" />
  19382. <msdn-id>bb173624</msdn-id>
  19383. <unmanaged>void ID3D10Device::VSGetShader([Out] ID3D10VertexShader** ppVertexShader)</unmanaged>
  19384. <unmanaged-short>ID3D10Device::VSGetShader</unmanaged-short>
  19385. </member>
  19386. <member name="M:SharpDX.Direct3D10.VertexShaderStage.GetShaderResources(System.Int32,System.Int32,SharpDX.Direct3D10.ShaderResourceView[])">
  19387. <summary>
  19388. <p>Get the vertex shader resources.</p>
  19389. </summary>
  19390. <param name="startSlot"><dd> <p>Index into the device's zero-based array to begin getting shader resources from.</p> </dd></param>
  19391. <param name="numViews"><dd> <p>The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources.</p> </dd></param>
  19392. <param name="shaderResourceViewsOut"><dd> <p>Array of <strong>shader resource view</strong> interfaces to be returned by the device.</p> </dd></param>
  19393. <remarks>
  19394. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  19395. </remarks>
  19396. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSGetShaderResources']/*" />
  19397. <msdn-id>bb173625</msdn-id>
  19398. <unmanaged>void ID3D10Device::VSGetShaderResources([In] unsigned int StartSlot,[In] unsigned int NumViews,[Out, Buffer, Optional] ID3D10ShaderResourceView** ppShaderResourceViews)</unmanaged>
  19399. <unmanaged-short>ID3D10Device::VSGetShaderResources</unmanaged-short>
  19400. </member>
  19401. <member name="M:SharpDX.Direct3D10.VertexShaderStage.GetSamplers(System.Int32,System.Int32,SharpDX.Direct3D10.SamplerState[])">
  19402. <summary>
  19403. <p>Get an array of sampler states from the vertex shader pipeline stage.</p>
  19404. </summary>
  19405. <param name="startSlot">No documentation.</param>
  19406. <param name="numSamplers">No documentation.</param>
  19407. <param name="samplersOut">No documentation.</param>
  19408. <remarks>
  19409. <p>Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.</p>
  19410. </remarks>
  19411. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3D10Device::VSGetSamplers']/*" />
  19412. <msdn-id>bb173623</msdn-id>
  19413. <unmanaged>void ID3D10Device::VSGetSamplers([In] unsigned int StartSlot,[In] unsigned int NumSamplers,[Out, Buffer, Optional] ID3D10SamplerState** ppSamplers)</unmanaged>
  19414. <unmanaged-short>ID3D10Device::VSGetSamplers</unmanaged-short>
  19415. </member>
  19416. <member name="T:SharpDX.Direct3D10.BlendStateDescription">
  19417. <summary>
  19418. <p>Describes the blend state.</p>
  19419. </summary>
  19420. <remarks>
  19421. <p>To see how blending is done, see Output-Merger Stage (Direct3D 10).</p><p>These are the default values for blend state.</p><table> <tr><th>State</th><th>Default Value</th></tr> <tr><td>AlphaToCoverageEnable</td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td>BlendEnable[8]</td><td><see cref="F:SharpDX.Result.False" /> (for all 8)</td></tr> <tr><td>SrcBlend</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.One" /></td></tr> <tr><td>DestBlend</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.Zero" /></td></tr> <tr><td>BlendOp</td><td><see cref="F:SharpDX.Direct3D10.BlendOperation.Add" /></td></tr> <tr><td>SrcBlendAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.One" /></td></tr> <tr><td>DestBlendAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.Zero" /></td></tr> <tr><td>BlendOpAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOperation.Add" /></td></tr> <tr><td>RenderTargetWriteMask[8]</td><td><see cref="F:SharpDX.Direct3D10.ColorWriteMaskFlags.All" /> (for all 8)</td></tr> </table><p>?</p>
  19422. </remarks>
  19423. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC']/*" />
  19424. <msdn-id>bb204893</msdn-id>
  19425. <unmanaged>D3D10_BLEND_DESC</unmanaged>
  19426. <unmanaged-short>D3D10_BLEND_DESC</unmanaged-short>
  19427. </member>
  19428. <member name="F:SharpDX.Direct3D10.BlendStateDescription.IsAlphaToCoverageEnabled">
  19429. <summary>
  19430. <dd> <p>Determines whether or not to use alpha-to-coverage as a multisampling technique when setting a pixel to a rendertarget.</p> </dd>
  19431. </summary>
  19432. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC::AlphaToCoverageEnable']/*" />
  19433. <msdn-id>bb204893</msdn-id>
  19434. <unmanaged>BOOL AlphaToCoverageEnable</unmanaged>
  19435. <unmanaged-short>BOOL AlphaToCoverageEnable</unmanaged-short>
  19436. </member>
  19437. <member name="P:SharpDX.Direct3D10.BlendStateDescription.IsBlendEnabled">
  19438. <summary>
  19439. <dd> <p>Enable (or disable) blending. There are eight elements in this array; these correspond to the eight rendertargets that can be set to output-merger stage at one time.</p> </dd>
  19440. </summary>
  19441. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC::BlendEnable']/*" />
  19442. <msdn-id>bb204893</msdn-id>
  19443. <unmanaged>BOOL BlendEnable[8]</unmanaged>
  19444. <unmanaged-short>BOOL BlendEnable</unmanaged-short>
  19445. </member>
  19446. <member name="F:SharpDX.Direct3D10.BlendStateDescription.SourceBlend">
  19447. <summary>
  19448. <dd> <p>This <strong>blend option</strong> specifies the first RGB data source and includes an optional pre-blend operation.</p> </dd>
  19449. </summary>
  19450. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC::SrcBlend']/*" />
  19451. <msdn-id>bb204893</msdn-id>
  19452. <unmanaged>D3D10_BLEND SrcBlend</unmanaged>
  19453. <unmanaged-short>D3D10_BLEND SrcBlend</unmanaged-short>
  19454. </member>
  19455. <member name="F:SharpDX.Direct3D10.BlendStateDescription.DestinationBlend">
  19456. <summary>
  19457. <dd> <p>This <strong>blend option</strong> specifies the second RGB data source and includes an optional pre-blend operation.</p> </dd>
  19458. </summary>
  19459. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC::DestBlend']/*" />
  19460. <msdn-id>bb204893</msdn-id>
  19461. <unmanaged>D3D10_BLEND DestBlend</unmanaged>
  19462. <unmanaged-short>D3D10_BLEND DestBlend</unmanaged-short>
  19463. </member>
  19464. <member name="F:SharpDX.Direct3D10.BlendStateDescription.BlendOperation">
  19465. <summary>
  19466. <dd> <p>This <strong>blend operation</strong> defines how to combine the RGB data sources.</p> </dd>
  19467. </summary>
  19468. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC::BlendOp']/*" />
  19469. <msdn-id>bb204893</msdn-id>
  19470. <unmanaged>D3D10_BLEND_OP BlendOp</unmanaged>
  19471. <unmanaged-short>D3D10_BLEND_OP BlendOp</unmanaged-short>
  19472. </member>
  19473. <member name="F:SharpDX.Direct3D10.BlendStateDescription.SourceAlphaBlend">
  19474. <summary>
  19475. <dd> <p>This <strong>blend option</strong> specifies the first alpha data source and includes an optional pre-blend operation. Blend options that end in _COLOR are not allowed.</p> </dd>
  19476. </summary>
  19477. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC::SrcBlendAlpha']/*" />
  19478. <msdn-id>bb204893</msdn-id>
  19479. <unmanaged>D3D10_BLEND SrcBlendAlpha</unmanaged>
  19480. <unmanaged-short>D3D10_BLEND SrcBlendAlpha</unmanaged-short>
  19481. </member>
  19482. <member name="F:SharpDX.Direct3D10.BlendStateDescription.DestinationAlphaBlend">
  19483. <summary>
  19484. <dd> <p>This <strong>blend option</strong> specifies the second alpha data source and includes an optional pre-blend operation. Blend options that end in _COLOR are not allowed.</p> </dd>
  19485. </summary>
  19486. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC::DestBlendAlpha']/*" />
  19487. <msdn-id>bb204893</msdn-id>
  19488. <unmanaged>D3D10_BLEND DestBlendAlpha</unmanaged>
  19489. <unmanaged-short>D3D10_BLEND DestBlendAlpha</unmanaged-short>
  19490. </member>
  19491. <member name="F:SharpDX.Direct3D10.BlendStateDescription.AlphaBlendOperation">
  19492. <summary>
  19493. <dd> <p>This <strong>blend operation</strong> defines how to combine the alpha data sources.</p> </dd>
  19494. </summary>
  19495. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC::BlendOpAlpha']/*" />
  19496. <msdn-id>bb204893</msdn-id>
  19497. <unmanaged>D3D10_BLEND_OP BlendOpAlpha</unmanaged>
  19498. <unmanaged-short>D3D10_BLEND_OP BlendOpAlpha</unmanaged-short>
  19499. </member>
  19500. <member name="P:SharpDX.Direct3D10.BlendStateDescription.RenderTargetWriteMask">
  19501. <summary>
  19502. <dd> <p>A per-pixel write mask that allows control over which components can be written (see <strong><see cref="T:SharpDX.Direct3D10.ColorWriteMaskFlags" /></strong>).</p> </dd>
  19503. </summary>
  19504. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC::RenderTargetWriteMask']/*" />
  19505. <msdn-id>bb204893</msdn-id>
  19506. <unmanaged>D3D10_COLOR_WRITE_ENABLE RenderTargetWriteMask[8]</unmanaged>
  19507. <unmanaged-short>D3D10_COLOR_WRITE_ENABLE RenderTargetWriteMask</unmanaged-short>
  19508. </member>
  19509. <member name="T:SharpDX.Direct3D10.BlendStateDescription1">
  19510. <summary>
  19511. <p>Describes the blend state for a Direct3D 10.1 device.</p>
  19512. </summary>
  19513. <remarks>
  19514. <p>To see how blending is done, see Output-Merger Stage (Direct3D 10).</p><p>These are the default values for the blend description.</p><table> <tr><th>State</th><th>Default Value</th></tr> <tr><td>AlphaToCoverageEnable</td><td><strong><see cref="F:SharpDX.Result.False" /></strong></td></tr> <tr><td>IndependentBlendEnable</td><td><strong><see cref="F:SharpDX.Result.False" /></strong></td></tr> <tr><td>RenderTarget[0].BlendEnable</td><td><strong><see cref="F:SharpDX.Result.False" /></strong></td></tr> <tr><td>RenderTarget[0].SrcBlend</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.One" /></td></tr> <tr><td>RenderTarget[0].DestBlend</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.Zero" /></td></tr> <tr><td>RenderTarget[0].BlendOp</td><td><see cref="F:SharpDX.Direct3D10.BlendOperation.Add" /></td></tr> <tr><td>RenderTarget[0].SrcBlendAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.One" /></td></tr> <tr><td>RenderTarget[0].DestBlendAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.Zero" /></td></tr> <tr><td>RenderTarget[0].BlendOpAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOperation.Add" /></td></tr> <tr><td>RenderTarget[0].RenderTargetWriteMask</td><td><see cref="F:SharpDX.Direct3D10.ColorWriteMaskFlags.All" /></td></tr> </table><p>?</p><p>This structure requires Windows Vista Service Pack 1.</p><p>If the driver type is set to <strong><see cref="F:SharpDX.Direct3D.DriverType.Hardware" /></strong>, the feature level is set to less than or equal to <strong><see cref="F:SharpDX.Direct3D.FeatureLevel.Level_9_3" /></strong>, and the pixel format of the render target is set to <strong><see cref="F:SharpDX.DXGI.Format.R8G8B8A8_UNorm_SRgb" /></strong>, <strong><see cref="F:SharpDX.DXGI.Format.B8G8R8A8_UNorm_SRgb" /></strong>, or <strong><see cref="F:SharpDX.DXGI.Format.B8G8R8X8_UNorm_SRgb" /></strong>, the device performs the blend in standard RGB (sRGB) space and not in linear space. However, if the feature level is set to greater than <strong><see cref="F:SharpDX.Direct3D.FeatureLevel.Level_9_3" /></strong>, the device performs the blend in linear space.</p>
  19515. </remarks>
  19516. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC1']/*" />
  19517. <msdn-id>bb694528</msdn-id>
  19518. <unmanaged>D3D10_BLEND_DESC1</unmanaged>
  19519. <unmanaged-short>D3D10_BLEND_DESC1</unmanaged-short>
  19520. </member>
  19521. <member name="F:SharpDX.Direct3D10.BlendStateDescription1.IsAlphaToCoverageEnabled">
  19522. <summary>
  19523. <dd> <p>Determines whether or not to use the alpha-to-coverage multisampling technique when setting a render-target pixel.</p> </dd>
  19524. </summary>
  19525. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC1::AlphaToCoverageEnable']/*" />
  19526. <msdn-id>bb694528</msdn-id>
  19527. <unmanaged>BOOL AlphaToCoverageEnable</unmanaged>
  19528. <unmanaged-short>BOOL AlphaToCoverageEnable</unmanaged-short>
  19529. </member>
  19530. <member name="F:SharpDX.Direct3D10.BlendStateDescription1.IndependentBlendEnable">
  19531. <summary>
  19532. <dd> <p>Set to <strong>TRUE</strong> to enable independent blending in simultaneous render targets. If set to <strong><see cref="F:SharpDX.Result.False" /></strong>, only the RenderTarget[0] members are used. RenderTarget[1..7] are ignored.</p> </dd>
  19533. </summary>
  19534. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC1::IndependentBlendEnable']/*" />
  19535. <msdn-id>bb694528</msdn-id>
  19536. <unmanaged>BOOL IndependentBlendEnable</unmanaged>
  19537. <unmanaged-short>BOOL IndependentBlendEnable</unmanaged-short>
  19538. </member>
  19539. <member name="P:SharpDX.Direct3D10.BlendStateDescription1.RenderTarget">
  19540. <summary>
  19541. <dd> <p>An array of render-target-blend descriptions (see <strong><see cref="T:SharpDX.Direct3D10.RenderTargetBlendDescription1" /></strong>); these correspond to the eight rendertargets that can be set to the output-merger stage at one time.</p> </dd>
  19542. </summary>
  19543. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BLEND_DESC1::RenderTarget']/*" />
  19544. <msdn-id>bb694528</msdn-id>
  19545. <unmanaged>D3D10_RENDER_TARGET_BLEND_DESC1 RenderTarget[8]</unmanaged>
  19546. <unmanaged-short>D3D10_RENDER_TARGET_BLEND_DESC1 RenderTarget</unmanaged-short>
  19547. </member>
  19548. <member name="T:SharpDX.Direct3D10.CounterCapabilities">
  19549. <summary>
  19550. <p>Information about the video card's performance counter capabilities.</p>
  19551. </summary>
  19552. <remarks>
  19553. <p>This structure is returned by <strong><see cref="M:SharpDX.Direct3D10.Device.GetCounterCapabilities" /></strong>.</p>
  19554. </remarks>
  19555. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_INFO']/*" />
  19556. <msdn-id>bb204906</msdn-id>
  19557. <unmanaged>D3D10_COUNTER_INFO</unmanaged>
  19558. <unmanaged-short>D3D10_COUNTER_INFO</unmanaged-short>
  19559. </member>
  19560. <member name="F:SharpDX.Direct3D10.CounterCapabilities.LastDeviceDependentCounter">
  19561. <summary>
  19562. <dd> <p>Largest device-dependent counter ID that the device supports. If none are supported, this value will be 0. Otherwise it will be greater than or equal to <see cref="F:SharpDX.Direct3D10.CounterKind.DeviceDependent0" />. See <strong><see cref="T:SharpDX.Direct3D10.CounterKind" /></strong>.</p> </dd>
  19563. </summary>
  19564. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_INFO::LastDeviceDependentCounter']/*" />
  19565. <msdn-id>bb204906</msdn-id>
  19566. <unmanaged>D3D10_COUNTER LastDeviceDependentCounter</unmanaged>
  19567. <unmanaged-short>D3D10_COUNTER LastDeviceDependentCounter</unmanaged-short>
  19568. </member>
  19569. <member name="F:SharpDX.Direct3D10.CounterCapabilities.SimultaneousCounterCount">
  19570. <summary>
  19571. <dd> <p>Number of counters that can be simultaneously supported.</p> </dd>
  19572. </summary>
  19573. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_INFO::NumSimultaneousCounters']/*" />
  19574. <msdn-id>bb204906</msdn-id>
  19575. <unmanaged>unsigned int NumSimultaneousCounters</unmanaged>
  19576. <unmanaged-short>unsigned int NumSimultaneousCounters</unmanaged-short>
  19577. </member>
  19578. <member name="F:SharpDX.Direct3D10.CounterCapabilities.DetectableParallelUnitCount">
  19579. <summary>
  19580. <dd> <p>Number of detectable parallel units that the counter is able to discern. Values are 1 ~ 4. Use NumDetectableParallelUnits to interpret the values of the VERTEX_PROCESSING, GEOMETRY_PROCESSING, PIXEL_PROCESSING, and OTHER_GPU_PROCESSING counters. See <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> for an equation.</p> </dd>
  19581. </summary>
  19582. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_INFO::NumDetectableParallelUnits']/*" />
  19583. <msdn-id>bb204906</msdn-id>
  19584. <unmanaged>unsigned char NumDetectableParallelUnits</unmanaged>
  19585. <unmanaged-short>unsigned char NumDetectableParallelUnits</unmanaged-short>
  19586. </member>
  19587. <member name="T:SharpDX.Direct3D10.CounterDescription">
  19588. <summary>
  19589. <p>Describes a counter.</p>
  19590. </summary>
  19591. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_DESC']/*" />
  19592. <msdn-id>bb204905</msdn-id>
  19593. <unmanaged>D3D10_COUNTER_DESC</unmanaged>
  19594. <unmanaged-short>D3D10_COUNTER_DESC</unmanaged-short>
  19595. </member>
  19596. <member name="F:SharpDX.Direct3D10.CounterDescription.Counter">
  19597. <summary>
  19598. <dd> <p>Type of counter (see <strong><see cref="T:SharpDX.Direct3D10.CounterKind" /></strong>).</p> </dd>
  19599. </summary>
  19600. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_DESC::Counter']/*" />
  19601. <msdn-id>bb204905</msdn-id>
  19602. <unmanaged>D3D10_COUNTER Counter</unmanaged>
  19603. <unmanaged-short>D3D10_COUNTER Counter</unmanaged-short>
  19604. </member>
  19605. <member name="F:SharpDX.Direct3D10.CounterDescription.MiscFlags">
  19606. <summary>
  19607. <dd> <p>Reserved.</p> </dd>
  19608. </summary>
  19609. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_COUNTER_DESC::MiscFlags']/*" />
  19610. <msdn-id>bb204905</msdn-id>
  19611. <unmanaged>unsigned int MiscFlags</unmanaged>
  19612. <unmanaged-short>unsigned int MiscFlags</unmanaged-short>
  19613. </member>
  19614. <member name="T:SharpDX.Direct3D10.DepthStencilOperationDescription">
  19615. <summary>
  19616. <p>Describes the stencil operations that can be performed based on the results of stencil test.</p>
  19617. </summary>
  19618. <remarks>
  19619. <p>The stencil operation can be set differently based on the outcome of the stencil test by using the <strong>StencilFunc</strong> member. This can be done for the stencil test portion of depth-stencil testing.</p><p>The <see cref="T:SharpDX.Direct3D10.DepthStencilOperationDescription" /> structure is a member of the <strong><see cref="T:SharpDX.Direct3D10.DepthStencilStateDescription" /></strong> structure. </p>
  19620. </remarks>
  19621. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCILOP_DESC']/*" />
  19622. <msdn-id>bb205035</msdn-id>
  19623. <unmanaged>D3D10_DEPTH_STENCILOP_DESC</unmanaged>
  19624. <unmanaged-short>D3D10_DEPTH_STENCILOP_DESC</unmanaged-short>
  19625. </member>
  19626. <member name="F:SharpDX.Direct3D10.DepthStencilOperationDescription.FailOperation">
  19627. <summary>
  19628. No documentation.
  19629. </summary>
  19630. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCILOP_DESC::StencilFailOp']/*" />
  19631. <msdn-id>bb205035</msdn-id>
  19632. <unmanaged>D3D10_STENCIL_OP StencilFailOp</unmanaged>
  19633. <unmanaged-short>D3D10_STENCIL_OP StencilFailOp</unmanaged-short>
  19634. </member>
  19635. <member name="F:SharpDX.Direct3D10.DepthStencilOperationDescription.DepthFailOperation">
  19636. <summary>
  19637. No documentation.
  19638. </summary>
  19639. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCILOP_DESC::StencilDepthFailOp']/*" />
  19640. <msdn-id>bb205035</msdn-id>
  19641. <unmanaged>D3D10_STENCIL_OP StencilDepthFailOp</unmanaged>
  19642. <unmanaged-short>D3D10_STENCIL_OP StencilDepthFailOp</unmanaged-short>
  19643. </member>
  19644. <member name="F:SharpDX.Direct3D10.DepthStencilOperationDescription.PassOperation">
  19645. <summary>
  19646. No documentation.
  19647. </summary>
  19648. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCILOP_DESC::StencilPassOp']/*" />
  19649. <msdn-id>bb205035</msdn-id>
  19650. <unmanaged>D3D10_STENCIL_OP StencilPassOp</unmanaged>
  19651. <unmanaged-short>D3D10_STENCIL_OP StencilPassOp</unmanaged-short>
  19652. </member>
  19653. <member name="F:SharpDX.Direct3D10.DepthStencilOperationDescription.Comparison">
  19654. <summary>
  19655. No documentation.
  19656. </summary>
  19657. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCILOP_DESC::StencilFunc']/*" />
  19658. <msdn-id>bb205035</msdn-id>
  19659. <unmanaged>D3D10_COMPARISON_FUNC StencilFunc</unmanaged>
  19660. <unmanaged-short>D3D10_COMPARISON_FUNC StencilFunc</unmanaged-short>
  19661. </member>
  19662. <member name="T:SharpDX.Direct3D10.DepthStencilStateDescription">
  19663. <summary>
  19664. <p>Describes depth-stencil state.</p>
  19665. </summary>
  19666. <remarks>
  19667. <p>Depth-stencil state controls how depth-stencil testing is performed by the output-merger stage.</p><p>The formats that support stenciling are <see cref="F:SharpDX.DXGI.Format.D24_UNorm_S8_UInt" /> and <see cref="F:SharpDX.DXGI.Format.D32_Float_S8X24_UInt" />.</p>
  19668. </remarks>
  19669. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_DESC']/*" />
  19670. <msdn-id>bb205036</msdn-id>
  19671. <unmanaged>D3D10_DEPTH_STENCIL_DESC</unmanaged>
  19672. <unmanaged-short>D3D10_DEPTH_STENCIL_DESC</unmanaged-short>
  19673. </member>
  19674. <member name="F:SharpDX.Direct3D10.DepthStencilStateDescription.IsDepthEnabled">
  19675. <summary>
  19676. <dd> <p>A Boolean value that enables depth testing. The default value is <strong>TRUE</strong>.</p> </dd>
  19677. </summary>
  19678. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_DESC::DepthEnable']/*" />
  19679. <msdn-id>bb205036</msdn-id>
  19680. <unmanaged>BOOL DepthEnable</unmanaged>
  19681. <unmanaged-short>BOOL DepthEnable</unmanaged-short>
  19682. </member>
  19683. <member name="F:SharpDX.Direct3D10.DepthStencilStateDescription.DepthWriteMask">
  19684. <summary>
  19685. <dd> <p>A member of the <strong><see cref="T:SharpDX.Direct3D10.DepthWriteMask" /></strong> enumerated type that identifies a portion of the depth-stencil buffer that can be modified by depth data. The default value is <strong><see cref="F:SharpDX.Direct3D10.DepthWriteMask.All" /></strong>.</p> </dd>
  19686. </summary>
  19687. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_DESC::DepthWriteMask']/*" />
  19688. <msdn-id>bb205036</msdn-id>
  19689. <unmanaged>D3D10_DEPTH_WRITE_MASK DepthWriteMask</unmanaged>
  19690. <unmanaged-short>D3D10_DEPTH_WRITE_MASK DepthWriteMask</unmanaged-short>
  19691. </member>
  19692. <member name="F:SharpDX.Direct3D10.DepthStencilStateDescription.DepthComparison">
  19693. <summary>
  19694. <dd> <p>A member of the <strong><see cref="T:SharpDX.Direct3D10.Comparison" /></strong> enumerated type that defines how depth data is compared against existing depth data. The default value is <strong><see cref="F:SharpDX.Direct3D10.Comparison.Less" /></strong></p> </dd>
  19695. </summary>
  19696. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_DESC::DepthFunc']/*" />
  19697. <msdn-id>bb205036</msdn-id>
  19698. <unmanaged>D3D10_COMPARISON_FUNC DepthFunc</unmanaged>
  19699. <unmanaged-short>D3D10_COMPARISON_FUNC DepthFunc</unmanaged-short>
  19700. </member>
  19701. <member name="F:SharpDX.Direct3D10.DepthStencilStateDescription.IsStencilEnabled">
  19702. <summary>
  19703. <dd> <p>A Boolean value that enables stencil testing. The default value is <strong><see cref="F:SharpDX.Result.False" /></strong>.</p> </dd>
  19704. </summary>
  19705. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_DESC::StencilEnable']/*" />
  19706. <msdn-id>bb205036</msdn-id>
  19707. <unmanaged>BOOL StencilEnable</unmanaged>
  19708. <unmanaged-short>BOOL StencilEnable</unmanaged-short>
  19709. </member>
  19710. <member name="F:SharpDX.Direct3D10.DepthStencilStateDescription.StencilReadMask">
  19711. <summary>
  19712. <dd> <p>A value that identifies a portion of the depth-stencil buffer for reading stencil data. The default value is <strong>D3D10_DEFAULT_STENCIL_READ_MASK</strong>.</p> </dd>
  19713. </summary>
  19714. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_DESC::StencilReadMask']/*" />
  19715. <msdn-id>bb205036</msdn-id>
  19716. <unmanaged>unsigned char StencilReadMask</unmanaged>
  19717. <unmanaged-short>unsigned char StencilReadMask</unmanaged-short>
  19718. </member>
  19719. <member name="F:SharpDX.Direct3D10.DepthStencilStateDescription.StencilWriteMask">
  19720. <summary>
  19721. <dd> <p>A value that identifies a portion of the depth-stencil buffer for writing stencil data. The default value is <strong>D3D10_DEFAULT_STENCIL_WRITE_MASK</strong>.</p> </dd>
  19722. </summary>
  19723. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_DESC::StencilWriteMask']/*" />
  19724. <msdn-id>bb205036</msdn-id>
  19725. <unmanaged>unsigned char StencilWriteMask</unmanaged>
  19726. <unmanaged-short>unsigned char StencilWriteMask</unmanaged-short>
  19727. </member>
  19728. <member name="F:SharpDX.Direct3D10.DepthStencilStateDescription.FrontFace">
  19729. <summary>
  19730. <dd> <p>A <strong><see cref="T:SharpDX.Direct3D10.DepthStencilOperationDescription" /></strong> structure that identifies how to use the results of the depth test and the stencil test for pixels whose surface normal is facing toward the camera.</p> </dd>
  19731. </summary>
  19732. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_DESC::FrontFace']/*" />
  19733. <msdn-id>bb205036</msdn-id>
  19734. <unmanaged>D3D10_DEPTH_STENCILOP_DESC FrontFace</unmanaged>
  19735. <unmanaged-short>D3D10_DEPTH_STENCILOP_DESC FrontFace</unmanaged-short>
  19736. </member>
  19737. <member name="F:SharpDX.Direct3D10.DepthStencilStateDescription.BackFace">
  19738. <summary>
  19739. <dd> <p>A <strong><see cref="T:SharpDX.Direct3D10.DepthStencilOperationDescription" /></strong> structure that identifies how to use the results of the depth test and the stencil test for pixels whose surface normal is facing away from the camera.</p> </dd>
  19740. </summary>
  19741. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_DESC::BackFace']/*" />
  19742. <msdn-id>bb205036</msdn-id>
  19743. <unmanaged>D3D10_DEPTH_STENCILOP_DESC BackFace</unmanaged>
  19744. <unmanaged-short>D3D10_DEPTH_STENCILOP_DESC BackFace</unmanaged-short>
  19745. </member>
  19746. <member name="T:SharpDX.Direct3D10.DepthStencilViewDescription">
  19747. <summary>
  19748. <p>Specifies the subresource(s) from a texture that are accessible using a depth-stencil view.</p>
  19749. </summary>
  19750. <remarks>
  19751. <p>These are valid formats for a depth-stencil view:</p><ul> <li><see cref="F:SharpDX.DXGI.Format.D16_UNorm" /></li> <li><see cref="F:SharpDX.DXGI.Format.D24_UNorm_S8_UInt" /></li> <li><see cref="F:SharpDX.DXGI.Format.D32_Float" /></li> <li><see cref="F:SharpDX.DXGI.Format.D32_Float_S8X24_UInt" /></li> <li><see cref="F:SharpDX.DXGI.Format.Unknown" /></li> </ul><p>A depth-stencil view cannot use a typeless format. If the format chosen is <see cref="F:SharpDX.DXGI.Format.Unknown" />, then the format of the parent resource is used.</p><p>A depth-stencil-view description is needed when calling <strong><see cref="M:SharpDX.Direct3D10.Device.CreateDepthStencilView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.DepthStencilViewDescription},SharpDX.Direct3D10.DepthStencilView)" /></strong>.</p>
  19752. </remarks>
  19753. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_VIEW_DESC']/*" />
  19754. <msdn-id>bb205037</msdn-id>
  19755. <unmanaged>D3D10_DEPTH_STENCIL_VIEW_DESC</unmanaged>
  19756. <unmanaged-short>D3D10_DEPTH_STENCIL_VIEW_DESC</unmanaged-short>
  19757. </member>
  19758. <member name="T:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DArrayResource">
  19759. <summary>
  19760. <p>Specifies the subresource(s) from an array 2D textures that are accessible to a depth-stencil view.</p>
  19761. </summary>
  19762. <remarks>
  19763. <p>This structure is one member of a depth-stencil-view description (see <strong><see cref="T:SharpDX.Direct3D10.DepthStencilViewDescription" /></strong>).</p>
  19764. </remarks>
  19765. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_DSV']/*" />
  19766. <msdn-id>bb172470</msdn-id>
  19767. <unmanaged>D3D10_TEX2D_ARRAY_DSV</unmanaged>
  19768. <unmanaged-short>D3D10_TEX2D_ARRAY_DSV</unmanaged-short>
  19769. </member>
  19770. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DArrayResource.MipSlice">
  19771. <summary>
  19772. No documentation.
  19773. </summary>
  19774. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_DSV::MipSlice']/*" />
  19775. <msdn-id>bb172470</msdn-id>
  19776. <unmanaged>unsigned int MipSlice</unmanaged>
  19777. <unmanaged-short>unsigned int MipSlice</unmanaged-short>
  19778. </member>
  19779. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DArrayResource.FirstArraySlice">
  19780. <summary>
  19781. No documentation.
  19782. </summary>
  19783. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_DSV::FirstArraySlice']/*" />
  19784. <msdn-id>bb172470</msdn-id>
  19785. <unmanaged>unsigned int FirstArraySlice</unmanaged>
  19786. <unmanaged-short>unsigned int FirstArraySlice</unmanaged-short>
  19787. </member>
  19788. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DArrayResource.ArraySize">
  19789. <summary>
  19790. No documentation.
  19791. </summary>
  19792. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_DSV::ArraySize']/*" />
  19793. <msdn-id>bb172470</msdn-id>
  19794. <unmanaged>unsigned int ArraySize</unmanaged>
  19795. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  19796. </member>
  19797. <member name="T:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DMultisampledArrayResource">
  19798. <summary>
  19799. <p>Specifies the subresource(s) from an array of multisampled 2D textures for a depth-stencil view.</p>
  19800. </summary>
  19801. <remarks>
  19802. <p>This structure is one member of a depth-stencil-view description (see <strong><see cref="T:SharpDX.Direct3D10.DepthStencilViewDescription" /></strong>).</p>
  19803. </remarks>
  19804. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_ARRAY_DSV']/*" />
  19805. <msdn-id>bb172464</msdn-id>
  19806. <unmanaged>D3D10_TEX2DMS_ARRAY_DSV</unmanaged>
  19807. <unmanaged-short>D3D10_TEX2DMS_ARRAY_DSV</unmanaged-short>
  19808. </member>
  19809. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DMultisampledArrayResource.FirstArraySlice">
  19810. <summary>
  19811. No documentation.
  19812. </summary>
  19813. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_ARRAY_DSV::FirstArraySlice']/*" />
  19814. <msdn-id>bb172464</msdn-id>
  19815. <unmanaged>unsigned int FirstArraySlice</unmanaged>
  19816. <unmanaged-short>unsigned int FirstArraySlice</unmanaged-short>
  19817. </member>
  19818. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DMultisampledArrayResource.ArraySize">
  19819. <summary>
  19820. No documentation.
  19821. </summary>
  19822. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_ARRAY_DSV::ArraySize']/*" />
  19823. <msdn-id>bb172464</msdn-id>
  19824. <unmanaged>unsigned int ArraySize</unmanaged>
  19825. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  19826. </member>
  19827. <member name="T:SharpDX.Direct3D10.DepthStencilViewDescription.Texture1DArrayResource">
  19828. <summary>
  19829. <p>Specifies the subresource(s) from an array of 1D textures to use in a depth-stencil view.</p>
  19830. </summary>
  19831. <remarks>
  19832. <p>This structure is one member of a depth-stencil-view description (see <strong><see cref="T:SharpDX.Direct3D10.DepthStencilViewDescription" /></strong>).</p>
  19833. </remarks>
  19834. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_DSV']/*" />
  19835. <msdn-id>bb172458</msdn-id>
  19836. <unmanaged>D3D10_TEX1D_ARRAY_DSV</unmanaged>
  19837. <unmanaged-short>D3D10_TEX1D_ARRAY_DSV</unmanaged-short>
  19838. </member>
  19839. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture1DArrayResource.MipSlice">
  19840. <summary>
  19841. No documentation.
  19842. </summary>
  19843. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_DSV::MipSlice']/*" />
  19844. <msdn-id>bb172458</msdn-id>
  19845. <unmanaged>unsigned int MipSlice</unmanaged>
  19846. <unmanaged-short>unsigned int MipSlice</unmanaged-short>
  19847. </member>
  19848. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture1DArrayResource.FirstArraySlice">
  19849. <summary>
  19850. No documentation.
  19851. </summary>
  19852. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_DSV::FirstArraySlice']/*" />
  19853. <msdn-id>bb172458</msdn-id>
  19854. <unmanaged>unsigned int FirstArraySlice</unmanaged>
  19855. <unmanaged-short>unsigned int FirstArraySlice</unmanaged-short>
  19856. </member>
  19857. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture1DArrayResource.ArraySize">
  19858. <summary>
  19859. No documentation.
  19860. </summary>
  19861. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_DSV::ArraySize']/*" />
  19862. <msdn-id>bb172458</msdn-id>
  19863. <unmanaged>unsigned int ArraySize</unmanaged>
  19864. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  19865. </member>
  19866. <member name="T:SharpDX.Direct3D10.DepthStencilViewDescription.Texture1DResource">
  19867. <summary>
  19868. <p>Specifies the subresource from a 1D texture that is accessible to a depth-stencil view.</p>
  19869. </summary>
  19870. <remarks>
  19871. <p>This structure is one member of a depth-stencil-view description (see <strong><see cref="T:SharpDX.Direct3D10.DepthStencilViewDescription" /></strong>).</p>
  19872. </remarks>
  19873. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_DSV']/*" />
  19874. <msdn-id>bb172461</msdn-id>
  19875. <unmanaged>D3D10_TEX1D_DSV</unmanaged>
  19876. <unmanaged-short>D3D10_TEX1D_DSV</unmanaged-short>
  19877. </member>
  19878. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture1DResource.MipSlice">
  19879. <summary>
  19880. No documentation.
  19881. </summary>
  19882. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_DSV::MipSlice']/*" />
  19883. <msdn-id>bb172461</msdn-id>
  19884. <unmanaged>unsigned int MipSlice</unmanaged>
  19885. <unmanaged-short>unsigned int MipSlice</unmanaged-short>
  19886. </member>
  19887. <member name="T:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DResource">
  19888. <summary>
  19889. <p>Specifies the subresource from a 2D texture that is accessible to a depth-stencil view.</p>
  19890. </summary>
  19891. <remarks>
  19892. <p>This structure is one member of a depth-stencil-view description (see <strong><see cref="T:SharpDX.Direct3D10.DepthStencilViewDescription" /></strong>).</p>
  19893. </remarks>
  19894. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_DSV']/*" />
  19895. <msdn-id>bb172473</msdn-id>
  19896. <unmanaged>D3D10_TEX2D_DSV</unmanaged>
  19897. <unmanaged-short>D3D10_TEX2D_DSV</unmanaged-short>
  19898. </member>
  19899. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DResource.MipSlice">
  19900. <summary>
  19901. No documentation.
  19902. </summary>
  19903. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_DSV::MipSlice']/*" />
  19904. <msdn-id>bb172473</msdn-id>
  19905. <unmanaged>unsigned int MipSlice</unmanaged>
  19906. <unmanaged-short>unsigned int MipSlice</unmanaged-short>
  19907. </member>
  19908. <member name="T:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DMultisampledResource">
  19909. <summary>
  19910. <p>Specifies the subresource from a multisampled 2D texture that is accessible to a depth-stencil view.</p>
  19911. </summary>
  19912. <remarks>
  19913. <p>Since a multisampled 2D texture contains a single subtexture, there is nothing to specify; this unused member is included so that this structure will compile in C.</p>
  19914. </remarks>
  19915. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_DSV']/*" />
  19916. <msdn-id>bb172467</msdn-id>
  19917. <unmanaged>D3D10_TEX2DMS_DSV</unmanaged>
  19918. <unmanaged-short>D3D10_TEX2DMS_DSV</unmanaged-short>
  19919. </member>
  19920. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DMultisampledResource.UnusedFieldNothingToDefine">
  19921. <summary>
  19922. No documentation.
  19923. </summary>
  19924. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_DSV::UnusedField_NothingToDefine']/*" />
  19925. <msdn-id>bb172467</msdn-id>
  19926. <unmanaged>unsigned int UnusedField_NothingToDefine</unmanaged>
  19927. <unmanaged-short>unsigned int UnusedField_NothingToDefine</unmanaged-short>
  19928. </member>
  19929. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Format">
  19930. <summary>
  19931. No documentation.
  19932. </summary>
  19933. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_VIEW_DESC::Format']/*" />
  19934. <msdn-id>bb205037</msdn-id>
  19935. <unmanaged>DXGI_FORMAT Format</unmanaged>
  19936. <unmanaged-short>DXGI_FORMAT Format</unmanaged-short>
  19937. </member>
  19938. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Dimension">
  19939. <summary>
  19940. No documentation.
  19941. </summary>
  19942. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_VIEW_DESC::ViewDimension']/*" />
  19943. <msdn-id>bb205037</msdn-id>
  19944. <unmanaged>D3D10_DSV_DIMENSION ViewDimension</unmanaged>
  19945. <unmanaged-short>D3D10_DSV_DIMENSION ViewDimension</unmanaged-short>
  19946. </member>
  19947. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture1D">
  19948. <summary>
  19949. No documentation.
  19950. </summary>
  19951. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_VIEW_DESC::Texture1D']/*" />
  19952. <msdn-id>bb205037</msdn-id>
  19953. <unmanaged>D3D10_TEX1D_DSV Texture1D</unmanaged>
  19954. <unmanaged-short>D3D10_TEX1D_DSV Texture1D</unmanaged-short>
  19955. </member>
  19956. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture1DArray">
  19957. <summary>
  19958. No documentation.
  19959. </summary>
  19960. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_VIEW_DESC::Texture1DArray']/*" />
  19961. <msdn-id>bb205037</msdn-id>
  19962. <unmanaged>D3D10_TEX1D_ARRAY_DSV Texture1DArray</unmanaged>
  19963. <unmanaged-short>D3D10_TEX1D_ARRAY_DSV Texture1DArray</unmanaged-short>
  19964. </member>
  19965. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2D">
  19966. <summary>
  19967. No documentation.
  19968. </summary>
  19969. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_VIEW_DESC::Texture2D']/*" />
  19970. <msdn-id>bb205037</msdn-id>
  19971. <unmanaged>D3D10_TEX2D_DSV Texture2D</unmanaged>
  19972. <unmanaged-short>D3D10_TEX2D_DSV Texture2D</unmanaged-short>
  19973. </member>
  19974. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DArray">
  19975. <summary>
  19976. No documentation.
  19977. </summary>
  19978. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_VIEW_DESC::Texture2DArray']/*" />
  19979. <msdn-id>bb205037</msdn-id>
  19980. <unmanaged>D3D10_TEX2D_ARRAY_DSV Texture2DArray</unmanaged>
  19981. <unmanaged-short>D3D10_TEX2D_ARRAY_DSV Texture2DArray</unmanaged-short>
  19982. </member>
  19983. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DMS">
  19984. <summary>
  19985. No documentation.
  19986. </summary>
  19987. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_VIEW_DESC::Texture2DMS']/*" />
  19988. <msdn-id>bb205037</msdn-id>
  19989. <unmanaged>D3D10_TEX2DMS_DSV Texture2DMS</unmanaged>
  19990. <unmanaged-short>D3D10_TEX2DMS_DSV Texture2DMS</unmanaged-short>
  19991. </member>
  19992. <member name="F:SharpDX.Direct3D10.DepthStencilViewDescription.Texture2DMSArray">
  19993. <summary>
  19994. No documentation.
  19995. </summary>
  19996. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_DEPTH_STENCIL_VIEW_DESC::Texture2DMSArray']/*" />
  19997. <msdn-id>bb205037</msdn-id>
  19998. <unmanaged>D3D10_TEX2DMS_ARRAY_DSV Texture2DMSArray</unmanaged>
  19999. <unmanaged-short>D3D10_TEX2DMS_ARRAY_DSV Texture2DMSArray</unmanaged-short>
  20000. </member>
  20001. <member name="T:SharpDX.Direct3D10.EffectDescription">
  20002. <summary>
  20003. <p>Describes an effect.</p>
  20004. </summary>
  20005. <remarks>
  20006. <p>To get an effect description, call <strong><see cref="M:SharpDX.Direct3D10.Effect.GetDescription(SharpDX.Direct3D10.EffectDescription@)" /></strong>.</p>
  20007. </remarks>
  20008. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_DESC']/*" />
  20009. <msdn-id>bb205047</msdn-id>
  20010. <unmanaged>D3D10_EFFECT_DESC</unmanaged>
  20011. <unmanaged-short>D3D10_EFFECT_DESC</unmanaged-short>
  20012. </member>
  20013. <member name="F:SharpDX.Direct3D10.EffectDescription.IsChildEffect">
  20014. <summary>
  20015. <dd> <p><strong>TRUE</strong> if the effect is a child effect; otherwise <strong><see cref="F:SharpDX.Result.False" /></strong>.</p> </dd>
  20016. </summary>
  20017. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_DESC::IsChildEffect']/*" />
  20018. <msdn-id>bb205047</msdn-id>
  20019. <unmanaged>BOOL IsChildEffect</unmanaged>
  20020. <unmanaged-short>BOOL IsChildEffect</unmanaged-short>
  20021. </member>
  20022. <member name="F:SharpDX.Direct3D10.EffectDescription.ConstantBufferCount">
  20023. <summary>
  20024. <dd> <p>The number of constant buffers.</p> </dd>
  20025. </summary>
  20026. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_DESC::ConstantBuffers']/*" />
  20027. <msdn-id>bb205047</msdn-id>
  20028. <unmanaged>unsigned int ConstantBuffers</unmanaged>
  20029. <unmanaged-short>unsigned int ConstantBuffers</unmanaged-short>
  20030. </member>
  20031. <member name="F:SharpDX.Direct3D10.EffectDescription.SharedConstantBufferCount">
  20032. <summary>
  20033. <dd> <p>The number of constant buffers shared in an effect pool.</p> </dd>
  20034. </summary>
  20035. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_DESC::SharedConstantBuffers']/*" />
  20036. <msdn-id>bb205047</msdn-id>
  20037. <unmanaged>unsigned int SharedConstantBuffers</unmanaged>
  20038. <unmanaged-short>unsigned int SharedConstantBuffers</unmanaged-short>
  20039. </member>
  20040. <member name="F:SharpDX.Direct3D10.EffectDescription.GlobalVariableCount">
  20041. <summary>
  20042. <dd> <p>The number of global variables.</p> </dd>
  20043. </summary>
  20044. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_DESC::GlobalVariables']/*" />
  20045. <msdn-id>bb205047</msdn-id>
  20046. <unmanaged>unsigned int GlobalVariables</unmanaged>
  20047. <unmanaged-short>unsigned int GlobalVariables</unmanaged-short>
  20048. </member>
  20049. <member name="F:SharpDX.Direct3D10.EffectDescription.SharedGlobalVariableCount">
  20050. <summary>
  20051. <dd> <p>The number of global variables shared in an effect pool.</p> </dd>
  20052. </summary>
  20053. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_DESC::SharedGlobalVariables']/*" />
  20054. <msdn-id>bb205047</msdn-id>
  20055. <unmanaged>unsigned int SharedGlobalVariables</unmanaged>
  20056. <unmanaged-short>unsigned int SharedGlobalVariables</unmanaged-short>
  20057. </member>
  20058. <member name="F:SharpDX.Direct3D10.EffectDescription.TechniqueCount">
  20059. <summary>
  20060. <dd> <p>The number of techniques.</p> </dd>
  20061. </summary>
  20062. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_DESC::Techniques']/*" />
  20063. <msdn-id>bb205047</msdn-id>
  20064. <unmanaged>unsigned int Techniques</unmanaged>
  20065. <unmanaged-short>unsigned int Techniques</unmanaged-short>
  20066. </member>
  20067. <member name="T:SharpDX.Direct3D10.EffectTechniqueDescription">
  20068. <summary>
  20069. <p>Describes an effect technique.</p>
  20070. </summary>
  20071. <remarks>
  20072. <p>To get a technique, call <strong><see cref="M:SharpDX.Direct3D10.EffectTechnique.GetDescription(SharpDX.Direct3D10.EffectTechniqueDescription@)" /></strong>.</p>
  20073. </remarks>
  20074. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TECHNIQUE_DESC']/*" />
  20075. <msdn-id>bb172457</msdn-id>
  20076. <unmanaged>D3D10_TECHNIQUE_DESC</unmanaged>
  20077. <unmanaged-short>D3D10_TECHNIQUE_DESC</unmanaged-short>
  20078. </member>
  20079. <member name="F:SharpDX.Direct3D10.EffectTechniqueDescription.Name">
  20080. <summary>
  20081. <dd> <p>A string that contains the technique name; otherwise <strong><c>null</c></strong>.</p> </dd>
  20082. </summary>
  20083. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TECHNIQUE_DESC::Name']/*" />
  20084. <msdn-id>bb172457</msdn-id>
  20085. <unmanaged>const char* Name</unmanaged>
  20086. <unmanaged-short>char Name</unmanaged-short>
  20087. </member>
  20088. <member name="F:SharpDX.Direct3D10.EffectTechniqueDescription.PassCount">
  20089. <summary>
  20090. <dd> <p>The number of passes in the technique.</p> </dd>
  20091. </summary>
  20092. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TECHNIQUE_DESC::Passes']/*" />
  20093. <msdn-id>bb172457</msdn-id>
  20094. <unmanaged>unsigned int Passes</unmanaged>
  20095. <unmanaged-short>unsigned int Passes</unmanaged-short>
  20096. </member>
  20097. <member name="F:SharpDX.Direct3D10.EffectTechniqueDescription.AnnotationCount">
  20098. <summary>
  20099. <dd> <p>The number of annotations.</p> </dd>
  20100. </summary>
  20101. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TECHNIQUE_DESC::Annotations']/*" />
  20102. <msdn-id>bb172457</msdn-id>
  20103. <unmanaged>unsigned int Annotations</unmanaged>
  20104. <unmanaged-short>unsigned int Annotations</unmanaged-short>
  20105. </member>
  20106. <member name="T:SharpDX.Direct3D10.EffectTypeDescription">
  20107. <summary>
  20108. <p>Describes an effect-variable type.</p>
  20109. </summary>
  20110. <remarks>
  20111. <p>To get an effect-variable type, call <strong><see cref="M:SharpDX.Direct3D10.EffectType.GetDescription(SharpDX.Direct3D10.EffectTypeDescription@)" /></strong>.</p>
  20112. </remarks>
  20113. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC']/*" />
  20114. <msdn-id>bb205054</msdn-id>
  20115. <unmanaged>D3D10_EFFECT_TYPE_DESC</unmanaged>
  20116. <unmanaged-short>D3D10_EFFECT_TYPE_DESC</unmanaged-short>
  20117. </member>
  20118. <member name="F:SharpDX.Direct3D10.EffectTypeDescription.TypeName">
  20119. <summary>
  20120. <dd> <p>A string that contains the variable name.</p> </dd>
  20121. </summary>
  20122. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC::TypeName']/*" />
  20123. <msdn-id>bb205054</msdn-id>
  20124. <unmanaged>const char* TypeName</unmanaged>
  20125. <unmanaged-short>char TypeName</unmanaged-short>
  20126. </member>
  20127. <member name="F:SharpDX.Direct3D10.EffectTypeDescription.Class">
  20128. <summary>
  20129. <dd> <p>The variable class (see <strong>D3D10_SHADER_VARIABLE_CLASS</strong>).</p> </dd>
  20130. </summary>
  20131. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC::Class']/*" />
  20132. <msdn-id>bb205054</msdn-id>
  20133. <unmanaged>D3D_SHADER_VARIABLE_CLASS Class</unmanaged>
  20134. <unmanaged-short>D3D_SHADER_VARIABLE_CLASS Class</unmanaged-short>
  20135. </member>
  20136. <member name="F:SharpDX.Direct3D10.EffectTypeDescription.Type">
  20137. <summary>
  20138. <dd> <p>The variable type (see <strong>D3D10_SHADER_VARIABLE_TYPE</strong>).</p> </dd>
  20139. </summary>
  20140. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC::Type']/*" />
  20141. <msdn-id>bb205054</msdn-id>
  20142. <unmanaged>D3D_SHADER_VARIABLE_TYPE Type</unmanaged>
  20143. <unmanaged-short>D3D_SHADER_VARIABLE_TYPE Type</unmanaged-short>
  20144. </member>
  20145. <member name="F:SharpDX.Direct3D10.EffectTypeDescription.Elements">
  20146. <summary>
  20147. <dd> <p>The number of elements if the variable is an array; otherwise 0.</p> </dd>
  20148. </summary>
  20149. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC::Elements']/*" />
  20150. <msdn-id>bb205054</msdn-id>
  20151. <unmanaged>unsigned int Elements</unmanaged>
  20152. <unmanaged-short>unsigned int Elements</unmanaged-short>
  20153. </member>
  20154. <member name="F:SharpDX.Direct3D10.EffectTypeDescription.Members">
  20155. <summary>
  20156. <dd> <p>The number of members if the variable is a structure; otherwise 0.</p> </dd>
  20157. </summary>
  20158. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC::Members']/*" />
  20159. <msdn-id>bb205054</msdn-id>
  20160. <unmanaged>unsigned int Members</unmanaged>
  20161. <unmanaged-short>unsigned int Members</unmanaged-short>
  20162. </member>
  20163. <member name="F:SharpDX.Direct3D10.EffectTypeDescription.Rows">
  20164. <summary>
  20165. <dd> <p>The number of rows if the variable is a matrix; otherwise 0.</p> </dd>
  20166. </summary>
  20167. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC::Rows']/*" />
  20168. <msdn-id>bb205054</msdn-id>
  20169. <unmanaged>unsigned int Rows</unmanaged>
  20170. <unmanaged-short>unsigned int Rows</unmanaged-short>
  20171. </member>
  20172. <member name="F:SharpDX.Direct3D10.EffectTypeDescription.Columns">
  20173. <summary>
  20174. <dd> <p>The number of columns if the variable is a matrix; otherwise 0.</p> </dd>
  20175. </summary>
  20176. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC::Columns']/*" />
  20177. <msdn-id>bb205054</msdn-id>
  20178. <unmanaged>unsigned int Columns</unmanaged>
  20179. <unmanaged-short>unsigned int Columns</unmanaged-short>
  20180. </member>
  20181. <member name="F:SharpDX.Direct3D10.EffectTypeDescription.PackedSize">
  20182. <summary>
  20183. <dd> <p>The number of bytes that the variable consumes when it is packed tightly by the compiler.</p> </dd>
  20184. </summary>
  20185. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC::PackedSize']/*" />
  20186. <msdn-id>bb205054</msdn-id>
  20187. <unmanaged>unsigned int PackedSize</unmanaged>
  20188. <unmanaged-short>unsigned int PackedSize</unmanaged-short>
  20189. </member>
  20190. <member name="F:SharpDX.Direct3D10.EffectTypeDescription.UnpackedSize">
  20191. <summary>
  20192. <dd> <p>The number of bytes that the variable consumes before it is packed by the compiler.</p> </dd>
  20193. </summary>
  20194. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC::UnpackedSize']/*" />
  20195. <msdn-id>bb205054</msdn-id>
  20196. <unmanaged>unsigned int UnpackedSize</unmanaged>
  20197. <unmanaged-short>unsigned int UnpackedSize</unmanaged-short>
  20198. </member>
  20199. <member name="F:SharpDX.Direct3D10.EffectTypeDescription.Stride">
  20200. <summary>
  20201. <dd> <p>The number of bytes between elements.</p> </dd>
  20202. </summary>
  20203. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_TYPE_DESC::Stride']/*" />
  20204. <msdn-id>bb205054</msdn-id>
  20205. <unmanaged>unsigned int Stride</unmanaged>
  20206. <unmanaged-short>unsigned int Stride</unmanaged-short>
  20207. </member>
  20208. <member name="T:SharpDX.Direct3D10.EffectVariableDescription">
  20209. <summary>
  20210. <p>Describes an effect variable.</p>
  20211. </summary>
  20212. <remarks>
  20213. <p>To get an effect-variable description, call <strong><see cref="M:SharpDX.Direct3D10.EffectVariable.GetDescription(SharpDX.Direct3D10.EffectVariableDescription@)" /></strong>.</p>
  20214. </remarks>
  20215. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_DESC']/*" />
  20216. <msdn-id>bb205056</msdn-id>
  20217. <unmanaged>D3D10_EFFECT_VARIABLE_DESC</unmanaged>
  20218. <unmanaged-short>D3D10_EFFECT_VARIABLE_DESC</unmanaged-short>
  20219. </member>
  20220. <member name="F:SharpDX.Direct3D10.EffectVariableDescription.Name">
  20221. <summary>
  20222. <dd> <p>A string that contains the variable name.</p> </dd>
  20223. </summary>
  20224. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_DESC::Name']/*" />
  20225. <msdn-id>bb205056</msdn-id>
  20226. <unmanaged>const char* Name</unmanaged>
  20227. <unmanaged-short>char Name</unmanaged-short>
  20228. </member>
  20229. <member name="F:SharpDX.Direct3D10.EffectVariableDescription.Semantic">
  20230. <summary>
  20231. <dd> <p>The semantic attached to the variable; otherwise <strong><c>null</c></strong>.</p> </dd>
  20232. </summary>
  20233. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_DESC::Semantic']/*" />
  20234. <msdn-id>bb205056</msdn-id>
  20235. <unmanaged>const char* Semantic</unmanaged>
  20236. <unmanaged-short>char Semantic</unmanaged-short>
  20237. </member>
  20238. <member name="F:SharpDX.Direct3D10.EffectVariableDescription.Flags">
  20239. <summary>
  20240. <dd> <p>Optional flags for effect variables. </p> </dd>
  20241. </summary>
  20242. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_DESC::Flags']/*" />
  20243. <msdn-id>bb205056</msdn-id>
  20244. <unmanaged>D3D10_EFFECT_VARIABLE_FLAGS Flags</unmanaged>
  20245. <unmanaged-short>D3D10_EFFECT_VARIABLE_FLAGS Flags</unmanaged-short>
  20246. </member>
  20247. <member name="F:SharpDX.Direct3D10.EffectVariableDescription.AnnotationCount">
  20248. <summary>
  20249. <dd> <p>The number of annotations; otherwise 0.</p> </dd>
  20250. </summary>
  20251. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_DESC::Annotations']/*" />
  20252. <msdn-id>bb205056</msdn-id>
  20253. <unmanaged>unsigned int Annotations</unmanaged>
  20254. <unmanaged-short>unsigned int Annotations</unmanaged-short>
  20255. </member>
  20256. <member name="F:SharpDX.Direct3D10.EffectVariableDescription.BufferOffset">
  20257. <summary>
  20258. <dd> <p>The offset between the beginning of the constant buffer and this variable; otherwise 0.</p> </dd>
  20259. </summary>
  20260. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_DESC::BufferOffset']/*" />
  20261. <msdn-id>bb205056</msdn-id>
  20262. <unmanaged>unsigned int BufferOffset</unmanaged>
  20263. <unmanaged-short>unsigned int BufferOffset</unmanaged-short>
  20264. </member>
  20265. <member name="F:SharpDX.Direct3D10.EffectVariableDescription.ExplicitBindPoint">
  20266. <summary>
  20267. <dd> <p>The register that this variable is bound to. To bind a variable explicitly use the <see cref="F:SharpDX.Direct3D10.EffectVariableFlags.ExplicitBindPoint" /> flag.</p> </dd>
  20268. </summary>
  20269. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_EFFECT_VARIABLE_DESC::ExplicitBindPoint']/*" />
  20270. <msdn-id>bb205056</msdn-id>
  20271. <unmanaged>unsigned int ExplicitBindPoint</unmanaged>
  20272. <unmanaged-short>unsigned int ExplicitBindPoint</unmanaged-short>
  20273. </member>
  20274. <member name="T:SharpDX.Direct3D10.FontDescription">
  20275. <summary>
  20276. <p>Defines font attributes.</p>
  20277. </summary>
  20278. <remarks>
  20279. <p>The compiler setting also determines the structure type. If Unicode is defined, the <see cref="T:SharpDX.Direct3D10.FontDescription" /> structure type resolves to a <see cref="T:SharpDX.Direct3D10.FontDescription" />; otherwise the structure type resolves to a D3DX10_FONT_DESCA.</p><p>Possible values of the above members are given in the GDI <see cref="!:SharpDX.DirectWrite.GdiInterop.LogFont" /> structure.</p>
  20280. </remarks>
  20281. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW']/*" />
  20282. <msdn-id>bb172693</msdn-id>
  20283. <unmanaged>D3DX10_FONT_DESCW</unmanaged>
  20284. <unmanaged-short>D3DX10_FONT_DESCW</unmanaged-short>
  20285. </member>
  20286. <member name="F:SharpDX.Direct3D10.FontDescription.Height">
  20287. <summary>
  20288. <dd> <p>Height, in logical units, of the font's character cell or character.</p> </dd>
  20289. </summary>
  20290. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW::Height']/*" />
  20291. <msdn-id>bb172693</msdn-id>
  20292. <unmanaged>int Height</unmanaged>
  20293. <unmanaged-short>int Height</unmanaged-short>
  20294. </member>
  20295. <member name="F:SharpDX.Direct3D10.FontDescription.Width">
  20296. <summary>
  20297. <dd> <p>Width, in logical units, of characters in the font.</p> </dd>
  20298. </summary>
  20299. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW::Width']/*" />
  20300. <msdn-id>bb172693</msdn-id>
  20301. <unmanaged>unsigned int Width</unmanaged>
  20302. <unmanaged-short>unsigned int Width</unmanaged-short>
  20303. </member>
  20304. <member name="F:SharpDX.Direct3D10.FontDescription.Weight">
  20305. <summary>
  20306. <dd> <p>Weight of the font in the range from 0 through 1000.</p> </dd>
  20307. </summary>
  20308. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW::Weight']/*" />
  20309. <msdn-id>bb172693</msdn-id>
  20310. <unmanaged>D3DX10_FONT_WEIGHT Weight</unmanaged>
  20311. <unmanaged-short>D3DX10_FONT_WEIGHT Weight</unmanaged-short>
  20312. </member>
  20313. <member name="F:SharpDX.Direct3D10.FontDescription.MipLevels">
  20314. <summary>
  20315. <dd> <p>Number of mipmap levels requested. If this value is zero or D3DX_DEFAULT, a complete mipmap chain is created. If the value is 1, the texture space is mapped identically to the screen space.</p> </dd>
  20316. </summary>
  20317. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW::MipLevels']/*" />
  20318. <msdn-id>bb172693</msdn-id>
  20319. <unmanaged>unsigned int MipLevels</unmanaged>
  20320. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  20321. </member>
  20322. <member name="F:SharpDX.Direct3D10.FontDescription.Italic">
  20323. <summary>
  20324. <dd> <p>Set to <strong>TRUE</strong> for an Italic font.</p> </dd>
  20325. </summary>
  20326. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW::Italic']/*" />
  20327. <msdn-id>bb172693</msdn-id>
  20328. <unmanaged>BOOL Italic</unmanaged>
  20329. <unmanaged-short>BOOL Italic</unmanaged-short>
  20330. </member>
  20331. <member name="F:SharpDX.Direct3D10.FontDescription.CharacterSet">
  20332. <summary>
  20333. <dd> <p>Character set.</p> </dd>
  20334. </summary>
  20335. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW::CharSet']/*" />
  20336. <msdn-id>bb172693</msdn-id>
  20337. <unmanaged>D3DX10_FONT_CHARSET CharSet</unmanaged>
  20338. <unmanaged-short>D3DX10_FONT_CHARSET CharSet</unmanaged-short>
  20339. </member>
  20340. <member name="F:SharpDX.Direct3D10.FontDescription.OutputPrecision">
  20341. <summary>
  20342. <dd> <p>Output precision. The output precision defines how closely the output must match the requested font height, width, character orientation, escapement, pitch, and font type.</p> </dd>
  20343. </summary>
  20344. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW::OutputPrecision']/*" />
  20345. <msdn-id>bb172693</msdn-id>
  20346. <unmanaged>D3DX10_FONT_PRECISION OutputPrecision</unmanaged>
  20347. <unmanaged-short>D3DX10_FONT_PRECISION OutputPrecision</unmanaged-short>
  20348. </member>
  20349. <member name="F:SharpDX.Direct3D10.FontDescription.Quality">
  20350. <summary>
  20351. <dd> <p>Output quality.</p> </dd>
  20352. </summary>
  20353. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW::Quality']/*" />
  20354. <msdn-id>bb172693</msdn-id>
  20355. <unmanaged>D3DX10_FONT_QUALITY Quality</unmanaged>
  20356. <unmanaged-short>D3DX10_FONT_QUALITY Quality</unmanaged-short>
  20357. </member>
  20358. <member name="F:SharpDX.Direct3D10.FontDescription.PitchAndFamily">
  20359. <summary>
  20360. <dd> <p>Pitch and family of the font.</p> </dd>
  20361. </summary>
  20362. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW::PitchAndFamily']/*" />
  20363. <msdn-id>bb172693</msdn-id>
  20364. <unmanaged>D3DX10_FONT_PITCHFAMILY PitchAndFamily</unmanaged>
  20365. <unmanaged-short>D3DX10_FONT_PITCHFAMILY PitchAndFamily</unmanaged-short>
  20366. </member>
  20367. <member name="F:SharpDX.Direct3D10.FontDescription.FaceName">
  20368. <summary>
  20369. <dd> <p>A <c>null</c>-terminated string that specifies the typeface name of the font. The length of the string must not exceed 32 characters, including the terminating <strong><c>null</c></strong> character. If FaceName is an empty string, the first font that matches the other specified attributes will be used. If the compiler settings require Unicode, the data type TCHAR resolves to WCHAR; otherwise, the data type resolves to CHAR. See Remarks.</p> </dd>
  20370. </summary>
  20371. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_FONT_DESCW::FaceName']/*" />
  20372. <msdn-id>bb172693</msdn-id>
  20373. <unmanaged>wchar_t FaceName[32]</unmanaged>
  20374. <unmanaged-short>wchar_t FaceName</unmanaged-short>
  20375. </member>
  20376. <member name="T:SharpDX.Direct3D10.ImageInformation">
  20377. <summary>
  20378. <p>Returns a description of the original contents of an image file.</p>
  20379. </summary>
  20380. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_INFO']/*" />
  20381. <msdn-id>bb172695</msdn-id>
  20382. <unmanaged>D3DX10_IMAGE_INFO</unmanaged>
  20383. <unmanaged-short>D3DX10_IMAGE_INFO</unmanaged-short>
  20384. </member>
  20385. <member name="F:SharpDX.Direct3D10.ImageInformation.Width">
  20386. <summary>
  20387. <dd> <p>Width of original image in pixels.</p> </dd>
  20388. </summary>
  20389. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_INFO::Width']/*" />
  20390. <msdn-id>bb172695</msdn-id>
  20391. <unmanaged>unsigned int Width</unmanaged>
  20392. <unmanaged-short>unsigned int Width</unmanaged-short>
  20393. </member>
  20394. <member name="F:SharpDX.Direct3D10.ImageInformation.Height">
  20395. <summary>
  20396. <dd> <p>Height of original image in pixels.</p> </dd>
  20397. </summary>
  20398. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_INFO::Height']/*" />
  20399. <msdn-id>bb172695</msdn-id>
  20400. <unmanaged>unsigned int Height</unmanaged>
  20401. <unmanaged-short>unsigned int Height</unmanaged-short>
  20402. </member>
  20403. <member name="F:SharpDX.Direct3D10.ImageInformation.Depth">
  20404. <summary>
  20405. <dd> <p>Depth of original image in pixels.</p> </dd>
  20406. </summary>
  20407. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_INFO::Depth']/*" />
  20408. <msdn-id>bb172695</msdn-id>
  20409. <unmanaged>unsigned int Depth</unmanaged>
  20410. <unmanaged-short>unsigned int Depth</unmanaged-short>
  20411. </member>
  20412. <member name="F:SharpDX.Direct3D10.ImageInformation.ArraySize">
  20413. <summary>
  20414. <dd> <p>Size of the texture array. <em>ArraySize</em> will be 1 for a single image.</p> </dd>
  20415. </summary>
  20416. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_INFO::ArraySize']/*" />
  20417. <msdn-id>bb172695</msdn-id>
  20418. <unmanaged>unsigned int ArraySize</unmanaged>
  20419. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  20420. </member>
  20421. <member name="F:SharpDX.Direct3D10.ImageInformation.MipLevels">
  20422. <summary>
  20423. <dd> <p>Number of mipmap levels in original image.</p> </dd>
  20424. </summary>
  20425. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_INFO::MipLevels']/*" />
  20426. <msdn-id>bb172695</msdn-id>
  20427. <unmanaged>unsigned int MipLevels</unmanaged>
  20428. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  20429. </member>
  20430. <member name="F:SharpDX.Direct3D10.ImageInformation.OptionFlags">
  20431. <summary>
  20432. <dd> <p>Miscellaneous resource properties (see <strong><see cref="T:SharpDX.Direct3D10.ResourceOptionFlags" /></strong>).</p> </dd>
  20433. </summary>
  20434. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_INFO::MiscFlags']/*" />
  20435. <msdn-id>bb172695</msdn-id>
  20436. <unmanaged>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged>
  20437. <unmanaged-short>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged-short>
  20438. </member>
  20439. <member name="F:SharpDX.Direct3D10.ImageInformation.Format">
  20440. <summary>
  20441. <dd> <p>A value from the <strong><see cref="T:SharpDX.DXGI.Format" /></strong> enumerated type that most closely describes the data in the original image.</p> </dd>
  20442. </summary>
  20443. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_INFO::Format']/*" />
  20444. <msdn-id>bb172695</msdn-id>
  20445. <unmanaged>DXGI_FORMAT Format</unmanaged>
  20446. <unmanaged-short>DXGI_FORMAT Format</unmanaged-short>
  20447. </member>
  20448. <member name="F:SharpDX.Direct3D10.ImageInformation.ResourceDimension">
  20449. <summary>
  20450. <dd> <p>Represents the type of the texture stored in the file. See <strong><see cref="T:SharpDX.Direct3D10.ResourceDimension" /></strong>.</p> </dd>
  20451. </summary>
  20452. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_INFO::ResourceDimension']/*" />
  20453. <msdn-id>bb172695</msdn-id>
  20454. <unmanaged>D3D10_RESOURCE_DIMENSION ResourceDimension</unmanaged>
  20455. <unmanaged-short>D3D10_RESOURCE_DIMENSION ResourceDimension</unmanaged-short>
  20456. </member>
  20457. <member name="F:SharpDX.Direct3D10.ImageInformation.ImageFileFormat">
  20458. <summary>
  20459. <dd> <p>Represents the format of the image file. See <strong><see cref="T:SharpDX.Direct3D10.ImageFileFormat" /></strong>.</p> </dd>
  20460. </summary>
  20461. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_INFO::ImageFileFormat']/*" />
  20462. <msdn-id>bb172695</msdn-id>
  20463. <unmanaged>D3DX10_IMAGE_FILE_FORMAT ImageFileFormat</unmanaged>
  20464. <unmanaged-short>D3DX10_IMAGE_FILE_FORMAT ImageFileFormat</unmanaged-short>
  20465. </member>
  20466. <member name="M:SharpDX.Direct3D10.ImageInformation.FromFile(System.String)">
  20467. <summary>
  20468. Retrieves information about a given image file.
  20469. </summary>
  20470. <param name="fileName">File name of image to retrieve information about.</param>
  20471. <returns>If the function succeeds, returns a <see cref="T:SharpDX.Direct3D10.ImageInformation"/> filled with the description of the data in the source file. else returns null </returns>
  20472. <unmanaged>HRESULT D3DX11GetImageInfoFromFileW([None] const wchar_t* pSrcFile,[None] ID3DX11ThreadPump* pPump,[None] D3DX11_IMAGE_INFO* pSrcInfo,[None] HRESULT* pHResult)</unmanaged>
  20473. </member>
  20474. <member name="M:SharpDX.Direct3D10.ImageInformation.FromMemory(System.Byte[])">
  20475. <summary>
  20476. Retrieves information about a given image file from a memory location.
  20477. </summary>
  20478. <param name="memory">an array to the image in memory</param>
  20479. <returns>If the function succeeds, returns a <see cref="T:SharpDX.Direct3D10.ImageInformation"/> filled with the description of the data from the image memory. else returns null </returns>
  20480. <unmanaged>HRESULT D3DX11GetImageInfoFromFileW([None] const wchar_t* pSrcFile,[None] ID3DX11ThreadPump* pPump,[None] D3DX11_IMAGE_INFO* pSrcInfo,[None] HRESULT* pHResult)</unmanaged>
  20481. </member>
  20482. <member name="T:SharpDX.Direct3D10.ImageLoadInformation">
  20483. <summary>
  20484. <p>Optionally provide information to texture loader APIs to control how textures get loaded. A value of D3DX10_DEFAULT for any of these parameters will cause D3DX to automatically use the value from the source file.</p>
  20485. </summary>
  20486. <remarks>
  20487. <p>When initializing the structure, you may set any member to D3DX10_DEFAULT and D3DX will initialize it with a default value from the source texture when the texture is loaded.</p><p>This structure can be used by APIs that:</p><ul> <li>Create resources, such as <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateTextureFromFile(SharpDX.Direct3D10.Device,System.String,System.Nullable{SharpDX.Direct3D10.ImageLoadInformation},System.IntPtr,System.IntPtr@,SharpDX.Result@)" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.D3DX10.CreateShaderResourceViewFromFile(SharpDX.Direct3D10.Device,System.String,System.Nullable{SharpDX.Direct3D10.ImageLoadInformation},System.IntPtr,SharpDX.Direct3D10.ShaderResourceView@,SharpDX.Result@)" /></strong>.</li> <li>Create data processors, such as <strong>D3DX10CreateAsyncTextureInfoProcessor</strong> or
  20488. <strong>D3DX10CreateAsyncShaderResourceViewProcessor</strong>.</li> </ul>
  20489. </remarks>
  20490. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO']/*" />
  20491. <msdn-id>bb172696</msdn-id>
  20492. <unmanaged>D3DX10_IMAGE_LOAD_INFO</unmanaged>
  20493. <unmanaged-short>D3DX10_IMAGE_LOAD_INFO</unmanaged-short>
  20494. </member>
  20495. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.Width">
  20496. <summary>
  20497. <dd> <p>The target width of the texture. If the actual width of the texture is larger or smaller than this value then the texture will be scaled up or down to fit this target width.</p> </dd>
  20498. </summary>
  20499. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::Width']/*" />
  20500. <msdn-id>bb172696</msdn-id>
  20501. <unmanaged>unsigned int Width</unmanaged>
  20502. <unmanaged-short>unsigned int Width</unmanaged-short>
  20503. </member>
  20504. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.Height">
  20505. <summary>
  20506. <dd> <p>The target height of the texture. If the actual height of the texture is larger or smaller than this value then the texture will be scaled up or down to fit this target height.</p> </dd>
  20507. </summary>
  20508. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::Height']/*" />
  20509. <msdn-id>bb172696</msdn-id>
  20510. <unmanaged>unsigned int Height</unmanaged>
  20511. <unmanaged-short>unsigned int Height</unmanaged-short>
  20512. </member>
  20513. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.Depth">
  20514. <summary>
  20515. <dd> <p>The depth of the texture. This only applies to volume textures.</p> </dd>
  20516. </summary>
  20517. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::Depth']/*" />
  20518. <msdn-id>bb172696</msdn-id>
  20519. <unmanaged>unsigned int Depth</unmanaged>
  20520. <unmanaged-short>unsigned int Depth</unmanaged-short>
  20521. </member>
  20522. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.FirstMipLevel">
  20523. <summary>
  20524. <dd> <p>The highest resolution mipmap level of the texture. If this is greater than 0, then after the texture is loaded FirstMipLevel will be mapped to mipmap level 0.</p> </dd>
  20525. </summary>
  20526. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::FirstMipLevel']/*" />
  20527. <msdn-id>bb172696</msdn-id>
  20528. <unmanaged>unsigned int FirstMipLevel</unmanaged>
  20529. <unmanaged-short>unsigned int FirstMipLevel</unmanaged-short>
  20530. </member>
  20531. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.MipLevels">
  20532. <summary>
  20533. <dd> <p>The maximum number of mipmap levels that the texture will have. Using 0 or D3DX10_DEFAULT will cause a full mipmap chain to be created.</p> </dd>
  20534. </summary>
  20535. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::MipLevels']/*" />
  20536. <msdn-id>bb172696</msdn-id>
  20537. <unmanaged>unsigned int MipLevels</unmanaged>
  20538. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  20539. </member>
  20540. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.Usage">
  20541. <summary>
  20542. <dd> <p>The way the texture resource is intended to be used. See <strong><see cref="T:SharpDX.Direct3D10.ResourceUsage" /></strong>.</p> </dd>
  20543. </summary>
  20544. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::Usage']/*" />
  20545. <msdn-id>bb172696</msdn-id>
  20546. <unmanaged>D3D10_USAGE Usage</unmanaged>
  20547. <unmanaged-short>D3D10_USAGE Usage</unmanaged-short>
  20548. </member>
  20549. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.BindFlags">
  20550. <summary>
  20551. <dd> <p>The pipeline stages that the texture will be allowed to bind to. See <strong><see cref="T:SharpDX.Direct3D10.BindFlags" /></strong>.</p> </dd>
  20552. </summary>
  20553. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::BindFlags']/*" />
  20554. <msdn-id>bb172696</msdn-id>
  20555. <unmanaged>D3D10_BIND_FLAG BindFlags</unmanaged>
  20556. <unmanaged-short>D3D10_BIND_FLAG BindFlags</unmanaged-short>
  20557. </member>
  20558. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.CpuAccessFlags">
  20559. <summary>
  20560. <dd> <p>The access permissions the cpu will have for the texture resource. See <strong><see cref="T:SharpDX.Direct3D10.CpuAccessFlags" /></strong>.</p> </dd>
  20561. </summary>
  20562. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::CpuAccessFlags']/*" />
  20563. <msdn-id>bb172696</msdn-id>
  20564. <unmanaged>D3D10_CPU_ACCESS_FLAG CpuAccessFlags</unmanaged>
  20565. <unmanaged-short>D3D10_CPU_ACCESS_FLAG CpuAccessFlags</unmanaged-short>
  20566. </member>
  20567. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.OptionFlags">
  20568. <summary>
  20569. <dd> <p>Miscellaneous resource properties (see <strong><see cref="T:SharpDX.Direct3D10.ResourceOptionFlags" /></strong>).</p> </dd>
  20570. </summary>
  20571. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::MiscFlags']/*" />
  20572. <msdn-id>bb172696</msdn-id>
  20573. <unmanaged>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged>
  20574. <unmanaged-short>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged-short>
  20575. </member>
  20576. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.Format">
  20577. <summary>
  20578. <dd> <p>The format the texture will be in after it is loaded. See <strong><see cref="T:SharpDX.DXGI.Format" /></strong>.</p> </dd>
  20579. </summary>
  20580. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::Format']/*" />
  20581. <msdn-id>bb172696</msdn-id>
  20582. <unmanaged>DXGI_FORMAT Format</unmanaged>
  20583. <unmanaged-short>DXGI_FORMAT Format</unmanaged-short>
  20584. </member>
  20585. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.Filter">
  20586. <summary>
  20587. <dd> <p>Filter the texture using the specified filter (only when resampling). See <strong><see cref="T:SharpDX.Direct3D10.FilterFlags" /></strong>.</p> </dd>
  20588. </summary>
  20589. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::Filter']/*" />
  20590. <msdn-id>bb172696</msdn-id>
  20591. <unmanaged>D3DX10_FILTER_FLAG Filter</unmanaged>
  20592. <unmanaged-short>D3DX10_FILTER_FLAG Filter</unmanaged-short>
  20593. </member>
  20594. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.MipFilter">
  20595. <summary>
  20596. <dd> <p>Filter the texture mip levels using the specified filter (only if generating mipmaps). Valid values are <see cref="F:SharpDX.Direct3D10.FilterFlags.None" />, <see cref="F:SharpDX.Direct3D10.FilterFlags.Point" />, <see cref="F:SharpDX.Direct3D10.FilterFlags.Linear" />, or <see cref="F:SharpDX.Direct3D10.FilterFlags.Triangle" />. See <strong><see cref="T:SharpDX.Direct3D10.FilterFlags" /></strong>.</p> </dd>
  20597. </summary>
  20598. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::MipFilter']/*" />
  20599. <msdn-id>bb172696</msdn-id>
  20600. <unmanaged>D3DX10_FILTER_FLAG MipFilter</unmanaged>
  20601. <unmanaged-short>D3DX10_FILTER_FLAG MipFilter</unmanaged-short>
  20602. </member>
  20603. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.PSrcInfo">
  20604. <summary>
  20605. <dd> <p>Information about the original image. See <strong><see cref="T:SharpDX.Direct3D10.ImageInformation" /></strong>. Can be obtained with <strong><see cref="M:SharpDX.Direct3D10.D3DX10.GetImageInfoFromFile(System.String,System.IntPtr,SharpDX.Direct3D10.ImageInformation@,SharpDX.Result@)" /></strong>, <strong><see cref="M:SharpDX.Direct3D10.D3DX10.GetImageInfoFromMemory(System.IntPtr,SharpDX.PointerSize,System.IntPtr,SharpDX.Direct3D10.ImageInformation@,SharpDX.Result@)" /></strong>, or <strong><see cref="M:SharpDX.Direct3D10.D3DX10.GetImageInfoFromResource(System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D10.ImageInformation@,SharpDX.Result@)" /></strong>.</p> </dd>
  20606. </summary>
  20607. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_IMAGE_LOAD_INFO::pSrcInfo']/*" />
  20608. <msdn-id>bb172696</msdn-id>
  20609. <unmanaged>D3DX10_IMAGE_INFO* pSrcInfo</unmanaged>
  20610. <unmanaged-short>D3DX10_IMAGE_INFO pSrcInfo</unmanaged-short>
  20611. </member>
  20612. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.FileDefaultValue">
  20613. <summary>
  20614. The default value for load options.
  20615. </summary>
  20616. </member>
  20617. <member name="F:SharpDX.Direct3D10.ImageLoadInformation.Default">
  20618. <summary>
  20619. Gets an ImageLoadInformation that is setup with all default values (<see cref="F:SharpDX.Direct3D10.ImageLoadInformation.FileDefaultValue"/>).
  20620. </summary>
  20621. </member>
  20622. <member name="T:SharpDX.Direct3D10.InfoQueueFilter">
  20623. <summary>
  20624. <p>Allow or deny certain types of messages to pass through a filter.</p>
  20625. </summary>
  20626. <remarks>
  20627. <p><strong><see cref="T:SharpDX.Direct3D10.InfoQueueFilterDescription" /></strong> is used to define the allow list and deny list in the <strong><see cref="T:SharpDX.Direct3D10.InfoQueueFilter" /></strong> structure.</p>
  20628. </remarks>
  20629. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INFO_QUEUE_FILTER']/*" />
  20630. <msdn-id>bb205314</msdn-id>
  20631. <unmanaged>D3D10_INFO_QUEUE_FILTER</unmanaged>
  20632. <unmanaged-short>D3D10_INFO_QUEUE_FILTER</unmanaged-short>
  20633. </member>
  20634. <member name="F:SharpDX.Direct3D10.InfoQueueFilter.AllowList">
  20635. <summary>
  20636. <dd> <p>Number of message categories to allow or deny.</p> </dd>
  20637. </summary>
  20638. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INFO_QUEUE_FILTER::AllowList']/*" />
  20639. <msdn-id>bb205314</msdn-id>
  20640. <unmanaged>D3D10_INFO_QUEUE_FILTER_DESC AllowList</unmanaged>
  20641. <unmanaged-short>D3D10_INFO_QUEUE_FILTER_DESC AllowList</unmanaged-short>
  20642. </member>
  20643. <member name="F:SharpDX.Direct3D10.InfoQueueFilter.DenyList">
  20644. <summary>
  20645. <dd> <p>Array of message categories to allow or deny. Array must have at least NumCategories members (see <strong><see cref="T:SharpDX.Direct3D10.MessageCategory" /></strong>).</p> </dd>
  20646. </summary>
  20647. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INFO_QUEUE_FILTER::DenyList']/*" />
  20648. <msdn-id>bb205314</msdn-id>
  20649. <unmanaged>D3D10_INFO_QUEUE_FILTER_DESC DenyList</unmanaged>
  20650. <unmanaged-short>D3D10_INFO_QUEUE_FILTER_DESC DenyList</unmanaged-short>
  20651. </member>
  20652. <member name="T:SharpDX.Direct3D10.InfoQueueFilterDescription">
  20653. <summary>
  20654. <p>Allow or deny certain types of messages to pass through a filter.</p>
  20655. </summary>
  20656. <remarks>
  20657. <p><strong><see cref="T:SharpDX.Direct3D10.InfoQueueFilterDescription" /></strong> is used to define the allow list and deny list in the <strong><see cref="T:SharpDX.Direct3D10.InfoQueueFilter" /></strong> structure.</p>
  20658. </remarks>
  20659. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INFO_QUEUE_FILTER_DESC']/*" />
  20660. <msdn-id>bb205314</msdn-id>
  20661. <unmanaged>D3D10_INFO_QUEUE_FILTER_DESC</unmanaged>
  20662. <unmanaged-short>D3D10_INFO_QUEUE_FILTER_DESC</unmanaged-short>
  20663. </member>
  20664. <member name="F:SharpDX.Direct3D10.InfoQueueFilterDescription.CategorieCount">
  20665. <summary>
  20666. <dd> <p>Number of message categories to allow or deny.</p> </dd>
  20667. </summary>
  20668. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INFO_QUEUE_FILTER_DESC::NumCategories']/*" />
  20669. <msdn-id>bb205314</msdn-id>
  20670. <unmanaged>unsigned int NumCategories</unmanaged>
  20671. <unmanaged-short>unsigned int NumCategories</unmanaged-short>
  20672. </member>
  20673. <member name="F:SharpDX.Direct3D10.InfoQueueFilterDescription.PCategoryList">
  20674. <summary>
  20675. <dd> <p>Array of message categories to allow or deny. Array must have at least NumCategories members (see <strong><see cref="T:SharpDX.Direct3D10.MessageCategory" /></strong>).</p> </dd>
  20676. </summary>
  20677. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INFO_QUEUE_FILTER_DESC::pCategoryList']/*" />
  20678. <msdn-id>bb205314</msdn-id>
  20679. <unmanaged>D3D10_MESSAGE_CATEGORY* pCategoryList</unmanaged>
  20680. <unmanaged-short>D3D10_MESSAGE_CATEGORY pCategoryList</unmanaged-short>
  20681. </member>
  20682. <member name="F:SharpDX.Direct3D10.InfoQueueFilterDescription.SeveritieCount">
  20683. <summary>
  20684. <dd> <p>Number of message severity levels to allow or deny.</p> </dd>
  20685. </summary>
  20686. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INFO_QUEUE_FILTER_DESC::NumSeverities']/*" />
  20687. <msdn-id>bb205314</msdn-id>
  20688. <unmanaged>unsigned int NumSeverities</unmanaged>
  20689. <unmanaged-short>unsigned int NumSeverities</unmanaged-short>
  20690. </member>
  20691. <member name="F:SharpDX.Direct3D10.InfoQueueFilterDescription.PSeverityList">
  20692. <summary>
  20693. <dd> <p>Array of message severity levels to allow or deny. Array must have at least NumSeverities members (see <strong><see cref="T:SharpDX.Direct3D10.MessageSeverity" /></strong>).</p> </dd>
  20694. </summary>
  20695. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INFO_QUEUE_FILTER_DESC::pSeverityList']/*" />
  20696. <msdn-id>bb205314</msdn-id>
  20697. <unmanaged>D3D10_MESSAGE_SEVERITY* pSeverityList</unmanaged>
  20698. <unmanaged-short>D3D10_MESSAGE_SEVERITY pSeverityList</unmanaged-short>
  20699. </member>
  20700. <member name="F:SharpDX.Direct3D10.InfoQueueFilterDescription.IDCount">
  20701. <summary>
  20702. <dd> <p>Number of message IDs to allow or deny.</p> </dd>
  20703. </summary>
  20704. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INFO_QUEUE_FILTER_DESC::NumIDs']/*" />
  20705. <msdn-id>bb205314</msdn-id>
  20706. <unmanaged>unsigned int NumIDs</unmanaged>
  20707. <unmanaged-short>unsigned int NumIDs</unmanaged-short>
  20708. </member>
  20709. <member name="F:SharpDX.Direct3D10.InfoQueueFilterDescription.PIDList">
  20710. <summary>
  20711. <dd> <p>Array of message IDs to allow or deny. Array must have at least NumIDs members (see <strong><see cref="T:SharpDX.Direct3D10.MessageId" /></strong>).</p> </dd>
  20712. </summary>
  20713. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INFO_QUEUE_FILTER_DESC::pIDList']/*" />
  20714. <msdn-id>bb205314</msdn-id>
  20715. <unmanaged>D3D10_MESSAGE_ID* pIDList</unmanaged>
  20716. <unmanaged-short>D3D10_MESSAGE_ID pIDList</unmanaged-short>
  20717. </member>
  20718. <member name="P:SharpDX.Direct3D10.InfoQueueFilterDescription.Categories">
  20719. <summary>
  20720. Gets or sets the categories.
  20721. </summary>
  20722. <value>
  20723. The categories.
  20724. </value>
  20725. </member>
  20726. <member name="P:SharpDX.Direct3D10.InfoQueueFilterDescription.Severities">
  20727. <summary>
  20728. Gets or sets the severities.
  20729. </summary>
  20730. <value>
  20731. The severities.
  20732. </value>
  20733. </member>
  20734. <member name="P:SharpDX.Direct3D10.InfoQueueFilterDescription.Ids">
  20735. <summary>
  20736. Gets or sets the ids.
  20737. </summary>
  20738. <value>
  20739. The ids.
  20740. </value>
  20741. </member>
  20742. <member name="T:SharpDX.Direct3D10.InputElement">
  20743. <summary>
  20744. <p>A description of a single element for the input-assembler stage.</p>
  20745. </summary>
  20746. <remarks>
  20747. <p>An input-layout object contains an array of structures, each structure defines one element being read from an input slot. Create an input-layout object by calling <strong><see cref="M:SharpDX.Direct3D10.Device.CreateInputLayout(SharpDX.Direct3D10.InputElement[],System.Int32,System.IntPtr,SharpDX.PointerSize,SharpDX.Direct3D10.InputLayout)" /></strong>. For an example, see Create an input-layout object.</p>
  20748. </remarks>
  20749. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_ELEMENT_DESC']/*" />
  20750. <msdn-id>bb205316</msdn-id>
  20751. <unmanaged>D3D10_INPUT_ELEMENT_DESC</unmanaged>
  20752. <unmanaged-short>D3D10_INPUT_ELEMENT_DESC</unmanaged-short>
  20753. </member>
  20754. <member name="F:SharpDX.Direct3D10.InputElement.SemanticName">
  20755. <summary>
  20756. No documentation.
  20757. </summary>
  20758. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_ELEMENT_DESC::SemanticName']/*" />
  20759. <msdn-id>bb205316</msdn-id>
  20760. <unmanaged>const char* SemanticName</unmanaged>
  20761. <unmanaged-short>char SemanticName</unmanaged-short>
  20762. </member>
  20763. <member name="F:SharpDX.Direct3D10.InputElement.SemanticIndex">
  20764. <summary>
  20765. No documentation.
  20766. </summary>
  20767. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_ELEMENT_DESC::SemanticIndex']/*" />
  20768. <msdn-id>bb205316</msdn-id>
  20769. <unmanaged>unsigned int SemanticIndex</unmanaged>
  20770. <unmanaged-short>unsigned int SemanticIndex</unmanaged-short>
  20771. </member>
  20772. <member name="F:SharpDX.Direct3D10.InputElement.Format">
  20773. <summary>
  20774. No documentation.
  20775. </summary>
  20776. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_ELEMENT_DESC::Format']/*" />
  20777. <msdn-id>bb205316</msdn-id>
  20778. <unmanaged>DXGI_FORMAT Format</unmanaged>
  20779. <unmanaged-short>DXGI_FORMAT Format</unmanaged-short>
  20780. </member>
  20781. <member name="F:SharpDX.Direct3D10.InputElement.Slot">
  20782. <summary>
  20783. No documentation.
  20784. </summary>
  20785. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_ELEMENT_DESC::InputSlot']/*" />
  20786. <msdn-id>bb205316</msdn-id>
  20787. <unmanaged>unsigned int InputSlot</unmanaged>
  20788. <unmanaged-short>unsigned int InputSlot</unmanaged-short>
  20789. </member>
  20790. <member name="F:SharpDX.Direct3D10.InputElement.AlignedByteOffset">
  20791. <summary>
  20792. No documentation.
  20793. </summary>
  20794. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_ELEMENT_DESC::AlignedByteOffset']/*" />
  20795. <msdn-id>bb205316</msdn-id>
  20796. <unmanaged>unsigned int AlignedByteOffset</unmanaged>
  20797. <unmanaged-short>unsigned int AlignedByteOffset</unmanaged-short>
  20798. </member>
  20799. <member name="F:SharpDX.Direct3D10.InputElement.Classification">
  20800. <summary>
  20801. No documentation.
  20802. </summary>
  20803. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_ELEMENT_DESC::InputSlotClass']/*" />
  20804. <msdn-id>bb205316</msdn-id>
  20805. <unmanaged>D3D10_INPUT_CLASSIFICATION InputSlotClass</unmanaged>
  20806. <unmanaged-short>D3D10_INPUT_CLASSIFICATION InputSlotClass</unmanaged-short>
  20807. </member>
  20808. <member name="F:SharpDX.Direct3D10.InputElement.InstanceDataStepRate">
  20809. <summary>
  20810. No documentation.
  20811. </summary>
  20812. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_INPUT_ELEMENT_DESC::InstanceDataStepRate']/*" />
  20813. <msdn-id>bb205316</msdn-id>
  20814. <unmanaged>unsigned int InstanceDataStepRate</unmanaged>
  20815. <unmanaged-short>unsigned int InstanceDataStepRate</unmanaged-short>
  20816. </member>
  20817. <member name="P:SharpDX.Direct3D10.InputElement.AppendAligned">
  20818. <summary>
  20819. Returns a value that can be used for the offset parameter of an InputElement to indicate that the element
  20820. should be aligned directly after the previous element, including any packing if necessary.
  20821. </summary>
  20822. <returns>A value used to align input elements.</returns>
  20823. <unmanaged>D3D10_APPEND_ALIGNED_ELEMENT</unmanaged>
  20824. </member>
  20825. <member name="M:SharpDX.Direct3D10.InputElement.#ctor(System.String,System.Int32,SharpDX.DXGI.Format,System.Int32,System.Int32,SharpDX.Direct3D10.InputClassification,System.Int32)">
  20826. <summary>
  20827. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.InputElement" /> struct.
  20828. </summary>
  20829. <param name = "name">The HLSL semantic associated with this element in a shader input-signature.</param>
  20830. <param name = "index">The semantic index for the element. A semantic index modifies a semantic, with an integer index number. A semantic index is only needed in a case where there is more than one element with the same semantic. For example, a 4x4 matrix would have four components each with the semantic name matrix, however each of the four component would have different semantic indices (0, 1, 2, and 3).</param>
  20831. <param name = "format">The data type of the element data.</param>
  20832. <param name = "offset">Offset (in bytes) between each element. Use AppendAligned for convenience to define the current element directly after the previous one, including any packing if necessary.</param>
  20833. <param name = "slot">An integer value that identifies the input-assembler. Valid values are between 0 and 15.</param>
  20834. <param name = "slotClass">Identifies the input data class for a single input slot.</param>
  20835. <param name = "stepRate">The number of instances to draw using the same per-instance data before advancing in the buffer by one element. This value must be 0 for an element that contains per-vertex data.</param>
  20836. </member>
  20837. <member name="M:SharpDX.Direct3D10.InputElement.#ctor(System.String,System.Int32,SharpDX.DXGI.Format,System.Int32,System.Int32)">
  20838. <summary>
  20839. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.InputElement" /> struct.
  20840. </summary>
  20841. <param name = "name">The HLSL semantic associated with this element in a shader input-signature.</param>
  20842. <param name = "index">The semantic index for the element. A semantic index modifies a semantic, with an integer index number. A semantic index is only needed in a case where there is more than one element with the same semantic. For example, a 4x4 matrix would have four components each with the semantic name matrix, however each of the four component would have different semantic indices (0, 1, 2, and 3).</param>
  20843. <param name = "format">The data type of the element data.</param>
  20844. <param name = "offset">Offset (in bytes) between each element. Use AppendAligned for convenience to define the current element directly after the previous one, including any packing if necessary.</param>
  20845. <param name = "slot">An integer value that identifies the input-assembler. Valid values are between 0 and 15.</param>
  20846. </member>
  20847. <member name="M:SharpDX.Direct3D10.InputElement.#ctor(System.String,System.Int32,SharpDX.DXGI.Format,System.Int32)">
  20848. <summary>
  20849. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.InputElement" /> struct.
  20850. </summary>
  20851. <param name = "name">The HLSL semantic associated with this element in a shader input-signature.</param>
  20852. <param name = "index">The semantic index for the element. A semantic index modifies a semantic, with an integer index number. A semantic index is only needed in a case where there is more than one element with the same semantic. For example, a 4x4 matrix would have four components each with the semantic name matrix, however each of the four component would have different semantic indices (0, 1, 2, and 3).</param>
  20853. <param name = "format">The data type of the element data.</param>
  20854. <param name = "slot">An integer value that identifies the input-assembler. Valid values are between 0 and 15.</param>
  20855. </member>
  20856. <member name="M:SharpDX.Direct3D10.InputElement.Equals(SharpDX.Direct3D10.InputElement)">
  20857. <summary>
  20858. Determines whether the specified <see cref="T:SharpDX.Direct3D10.InputElement"/> is equal to this instance.
  20859. </summary>
  20860. <param name="other">The <see cref="T:SharpDX.Direct3D10.InputElement"/> to compare with this instance.</param>
  20861. <returns>
  20862. <c>true</c> if the specified <see cref="T:SharpDX.Direct3D10.InputElement"/> is equal to this instance; otherwise, <c>false</c>.
  20863. </returns>
  20864. </member>
  20865. <member name="M:SharpDX.Direct3D10.InputElement.Equals(System.Object)">
  20866. <inheritdoc/>
  20867. </member>
  20868. <member name="M:SharpDX.Direct3D10.InputElement.GetHashCode">
  20869. <inheritdoc/>
  20870. </member>
  20871. <member name="M:SharpDX.Direct3D10.InputElement.op_Equality(SharpDX.Direct3D10.InputElement,SharpDX.Direct3D10.InputElement)">
  20872. <summary>
  20873. Implements the operator ==.
  20874. </summary>
  20875. <param name="left">The left.</param>
  20876. <param name="right">The right.</param>
  20877. <returns>
  20878. The result of the operator.
  20879. </returns>
  20880. </member>
  20881. <member name="M:SharpDX.Direct3D10.InputElement.op_Inequality(SharpDX.Direct3D10.InputElement,SharpDX.Direct3D10.InputElement)">
  20882. <summary>
  20883. Implements the operator !=.
  20884. </summary>
  20885. <param name="left">The left.</param>
  20886. <param name="right">The right.</param>
  20887. <returns>
  20888. The result of the operator.
  20889. </returns>
  20890. </member>
  20891. <member name="T:SharpDX.Direct3D10.MeshAttributeRange">
  20892. <summary>
  20893. <p>Stores an attribute table entry.</p>
  20894. </summary>
  20895. <remarks>
  20896. <p>An attribute table is used to identify areas of the mesh that need to be drawn with different textures, render states, materials, and so on. In addition, the application can use the attribute table to hide portions of a mesh by not drawing a given attribute identifier (AttribId) when drawing the frame.</p><p>The LPD3DX_ATTRIBUTE_RANGE type is defined as a reference to the D3DX_ATTRIBUTE_RANGE structure. </p><pre> typedef D3DX_ATTRIBUTE_RANGE* LPD3DX_ATTRIBUTE_RANGE;
  20897. </pre>
  20898. </remarks>
  20899. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_RANGE']/*" />
  20900. <msdn-id>bb172688</msdn-id>
  20901. <unmanaged>D3DX10_ATTRIBUTE_RANGE</unmanaged>
  20902. <unmanaged-short>D3DX10_ATTRIBUTE_RANGE</unmanaged-short>
  20903. </member>
  20904. <member name="F:SharpDX.Direct3D10.MeshAttributeRange.Id">
  20905. <summary>
  20906. <dd> <p>Attribute table identifier.</p> </dd>
  20907. </summary>
  20908. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_RANGE::AttribId']/*" />
  20909. <msdn-id>bb172688</msdn-id>
  20910. <unmanaged>unsigned int AttribId</unmanaged>
  20911. <unmanaged-short>unsigned int AttribId</unmanaged-short>
  20912. </member>
  20913. <member name="F:SharpDX.Direct3D10.MeshAttributeRange.FaceStart">
  20914. <summary>
  20915. <dd> <p>Starting face.</p> </dd>
  20916. </summary>
  20917. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_RANGE::FaceStart']/*" />
  20918. <msdn-id>bb172688</msdn-id>
  20919. <unmanaged>unsigned int FaceStart</unmanaged>
  20920. <unmanaged-short>unsigned int FaceStart</unmanaged-short>
  20921. </member>
  20922. <member name="F:SharpDX.Direct3D10.MeshAttributeRange.FaceCount">
  20923. <summary>
  20924. <dd> <p>Face count.</p> </dd>
  20925. </summary>
  20926. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_RANGE::FaceCount']/*" />
  20927. <msdn-id>bb172688</msdn-id>
  20928. <unmanaged>unsigned int FaceCount</unmanaged>
  20929. <unmanaged-short>unsigned int FaceCount</unmanaged-short>
  20930. </member>
  20931. <member name="F:SharpDX.Direct3D10.MeshAttributeRange.VertexStart">
  20932. <summary>
  20933. <dd> <p>Starting vertex.</p> </dd>
  20934. </summary>
  20935. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_RANGE::VertexStart']/*" />
  20936. <msdn-id>bb172688</msdn-id>
  20937. <unmanaged>unsigned int VertexStart</unmanaged>
  20938. <unmanaged-short>unsigned int VertexStart</unmanaged-short>
  20939. </member>
  20940. <member name="F:SharpDX.Direct3D10.MeshAttributeRange.VertexCount">
  20941. <summary>
  20942. <dd> <p>Vertex count.</p> </dd>
  20943. </summary>
  20944. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_RANGE::VertexCount']/*" />
  20945. <msdn-id>bb172688</msdn-id>
  20946. <unmanaged>unsigned int VertexCount</unmanaged>
  20947. <unmanaged-short>unsigned int VertexCount</unmanaged-short>
  20948. </member>
  20949. <member name="T:SharpDX.Direct3D10.MeshAttributeWeights">
  20950. <summary>
  20951. <p>Specifies mesh weight attributes.</p>
  20952. </summary>
  20953. <remarks>
  20954. <p>This structure describes how a simplification operation will consider vertex data when calculating relative costs between collapsing edges. For example, if the Normal field is 0.0, the simplification operation will ignore the vertex normal component when calculating the error for the collapse. However, if the Normal field is 1.0, the simplification operation will use the vertex normal component. If the Normal field is 2.0, double the amount of errors; if the Normal field is 4.0, then quadruple the number of errors, and so on.</p><p>The LPD3DX_ATTRIBUTE_WEIGHTS type is defined as a reference to the D3DX_ATTRIBUTE_WEIGHTS structure.</p><pre> typedef D3DX_ATTRIBUTE_WEIGHTS* LPD3DX_ATTRIBUTE_WEIGHTS;
  20955. </pre>
  20956. </remarks>
  20957. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_WEIGHTS']/*" />
  20958. <msdn-id>bb172689</msdn-id>
  20959. <unmanaged>D3DX10_ATTRIBUTE_WEIGHTS</unmanaged>
  20960. <unmanaged-short>D3DX10_ATTRIBUTE_WEIGHTS</unmanaged-short>
  20961. </member>
  20962. <member name="F:SharpDX.Direct3D10.MeshAttributeWeights.Position">
  20963. <summary>
  20964. <dd> <p>Position.</p> </dd>
  20965. </summary>
  20966. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_WEIGHTS::Position']/*" />
  20967. <msdn-id>bb172689</msdn-id>
  20968. <unmanaged>float Position</unmanaged>
  20969. <unmanaged-short>float Position</unmanaged-short>
  20970. </member>
  20971. <member name="F:SharpDX.Direct3D10.MeshAttributeWeights.Boundary">
  20972. <summary>
  20973. <dd> <p>Blend weight.</p> </dd>
  20974. </summary>
  20975. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_WEIGHTS::Boundary']/*" />
  20976. <msdn-id>bb172689</msdn-id>
  20977. <unmanaged>float Boundary</unmanaged>
  20978. <unmanaged-short>float Boundary</unmanaged-short>
  20979. </member>
  20980. <member name="F:SharpDX.Direct3D10.MeshAttributeWeights.Normal">
  20981. <summary>
  20982. <dd> <p>Normal.</p> </dd>
  20983. </summary>
  20984. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_WEIGHTS::Normal']/*" />
  20985. <msdn-id>bb172689</msdn-id>
  20986. <unmanaged>float Normal</unmanaged>
  20987. <unmanaged-short>float Normal</unmanaged-short>
  20988. </member>
  20989. <member name="F:SharpDX.Direct3D10.MeshAttributeWeights.Diffuse">
  20990. <summary>
  20991. <dd> <p>Diffuse lighting value.</p> </dd>
  20992. </summary>
  20993. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_WEIGHTS::Diffuse']/*" />
  20994. <msdn-id>bb172689</msdn-id>
  20995. <unmanaged>float Diffuse</unmanaged>
  20996. <unmanaged-short>float Diffuse</unmanaged-short>
  20997. </member>
  20998. <member name="F:SharpDX.Direct3D10.MeshAttributeWeights.Specular">
  20999. <summary>
  21000. <dd> <p>Specular lighting value.</p> </dd>
  21001. </summary>
  21002. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_WEIGHTS::Specular']/*" />
  21003. <msdn-id>bb172689</msdn-id>
  21004. <unmanaged>float Specular</unmanaged>
  21005. <unmanaged-short>float Specular</unmanaged-short>
  21006. </member>
  21007. <member name="P:SharpDX.Direct3D10.MeshAttributeWeights.Texcoord">
  21008. <summary>
  21009. <dd> <p>Eight texture coordinates.</p> </dd>
  21010. </summary>
  21011. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_WEIGHTS::Texcoord']/*" />
  21012. <msdn-id>bb172689</msdn-id>
  21013. <unmanaged>float Texcoord[8]</unmanaged>
  21014. <unmanaged-short>float Texcoord</unmanaged-short>
  21015. </member>
  21016. <member name="F:SharpDX.Direct3D10.MeshAttributeWeights.Tangent">
  21017. <summary>
  21018. <dd> <p>Tangent.</p> </dd>
  21019. </summary>
  21020. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_WEIGHTS::Tangent']/*" />
  21021. <msdn-id>bb172689</msdn-id>
  21022. <unmanaged>float Tangent</unmanaged>
  21023. <unmanaged-short>float Tangent</unmanaged-short>
  21024. </member>
  21025. <member name="F:SharpDX.Direct3D10.MeshAttributeWeights.Binormal">
  21026. <summary>
  21027. <dd> <p>Binormal.</p> </dd>
  21028. </summary>
  21029. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_ATTRIBUTE_WEIGHTS::Binormal']/*" />
  21030. <msdn-id>bb172689</msdn-id>
  21031. <unmanaged>float Binormal</unmanaged>
  21032. <unmanaged-short>float Binormal</unmanaged-short>
  21033. </member>
  21034. <member name="T:SharpDX.Direct3D10.Message">
  21035. <summary>
  21036. <p>Categories of debug messages. This will identify the category of a message when retrieving a message with <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.GetMessage(System.Int64,System.IntPtr,SharpDX.PointerSize@)" /></strong> and when adding a message with <strong><see cref="M:SharpDX.Direct3D10.InfoQueue.AddMessage(SharpDX.Direct3D10.MessageCategory,SharpDX.Direct3D10.MessageSeverity,SharpDX.Direct3D10.MessageId,System.String)" /></strong>. When creating an <strong>info queue filter</strong>, these values can be used to allow or deny any categories of messages to pass through the storage and retrieval filters.</p>
  21037. </summary>
  21038. <remarks>
  21039. <p>This is part of the Information Queue feature. See <strong><see cref="T:SharpDX.Direct3D10.InfoQueue" /> Interface</strong>.</p>
  21040. </remarks>
  21041. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE']/*" />
  21042. <msdn-id>bb205323</msdn-id>
  21043. <unmanaged>D3D10_MESSAGE</unmanaged>
  21044. <unmanaged-short>D3D10_MESSAGE</unmanaged-short>
  21045. </member>
  21046. <member name="F:SharpDX.Direct3D10.Message.Category">
  21047. <summary>
  21048. No documentation.
  21049. </summary>
  21050. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE::Category']/*" />
  21051. <msdn-id>bb205323</msdn-id>
  21052. <unmanaged>D3D10_MESSAGE_CATEGORY Category</unmanaged>
  21053. <unmanaged-short>D3D10_MESSAGE_CATEGORY Category</unmanaged-short>
  21054. </member>
  21055. <member name="F:SharpDX.Direct3D10.Message.Severity">
  21056. <summary>
  21057. No documentation.
  21058. </summary>
  21059. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE::Severity']/*" />
  21060. <msdn-id>bb205323</msdn-id>
  21061. <unmanaged>D3D10_MESSAGE_SEVERITY Severity</unmanaged>
  21062. <unmanaged-short>D3D10_MESSAGE_SEVERITY Severity</unmanaged-short>
  21063. </member>
  21064. <member name="F:SharpDX.Direct3D10.Message.Id">
  21065. <summary>
  21066. No documentation.
  21067. </summary>
  21068. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE::ID']/*" />
  21069. <msdn-id>bb205323</msdn-id>
  21070. <unmanaged>D3D10_MESSAGE_ID ID</unmanaged>
  21071. <unmanaged-short>D3D10_MESSAGE_ID ID</unmanaged-short>
  21072. </member>
  21073. <member name="F:SharpDX.Direct3D10.Message.Description">
  21074. <summary>
  21075. No documentation.
  21076. </summary>
  21077. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE::pDescription']/*" />
  21078. <msdn-id>bb205323</msdn-id>
  21079. <unmanaged>const char* pDescription</unmanaged>
  21080. <unmanaged-short>char pDescription</unmanaged-short>
  21081. </member>
  21082. <member name="F:SharpDX.Direct3D10.Message.DescriptionByteLength">
  21083. <summary>
  21084. No documentation.
  21085. </summary>
  21086. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_MESSAGE::DescriptionByteLength']/*" />
  21087. <msdn-id>bb205323</msdn-id>
  21088. <unmanaged>SIZE_T DescriptionByteLength</unmanaged>
  21089. <unmanaged-short>SIZE_T DescriptionByteLength</unmanaged-short>
  21090. </member>
  21091. <member name="T:SharpDX.Direct3D10.QueryDataPipelineStatistics">
  21092. <summary>
  21093. <p>Query information about graphics-pipeline activity in between calls to <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.Begin" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong>.</p>
  21094. </summary>
  21095. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_PIPELINE_STATISTICS']/*" />
  21096. <msdn-id>bb172402</msdn-id>
  21097. <unmanaged>D3D10_QUERY_DATA_PIPELINE_STATISTICS</unmanaged>
  21098. <unmanaged-short>D3D10_QUERY_DATA_PIPELINE_STATISTICS</unmanaged-short>
  21099. </member>
  21100. <member name="F:SharpDX.Direct3D10.QueryDataPipelineStatistics.IAVerticeCount">
  21101. <summary>
  21102. No documentation.
  21103. </summary>
  21104. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_PIPELINE_STATISTICS::IAVertices']/*" />
  21105. <msdn-id>bb172402</msdn-id>
  21106. <unmanaged>unsigned longlong IAVertices</unmanaged>
  21107. <unmanaged-short>unsigned longlong IAVertices</unmanaged-short>
  21108. </member>
  21109. <member name="F:SharpDX.Direct3D10.QueryDataPipelineStatistics.IAPrimitiveCount">
  21110. <summary>
  21111. No documentation.
  21112. </summary>
  21113. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_PIPELINE_STATISTICS::IAPrimitives']/*" />
  21114. <msdn-id>bb172402</msdn-id>
  21115. <unmanaged>unsigned longlong IAPrimitives</unmanaged>
  21116. <unmanaged-short>unsigned longlong IAPrimitives</unmanaged-short>
  21117. </member>
  21118. <member name="F:SharpDX.Direct3D10.QueryDataPipelineStatistics.VSInvocationCount">
  21119. <summary>
  21120. No documentation.
  21121. </summary>
  21122. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_PIPELINE_STATISTICS::VSInvocations']/*" />
  21123. <msdn-id>bb172402</msdn-id>
  21124. <unmanaged>unsigned longlong VSInvocations</unmanaged>
  21125. <unmanaged-short>unsigned longlong VSInvocations</unmanaged-short>
  21126. </member>
  21127. <member name="F:SharpDX.Direct3D10.QueryDataPipelineStatistics.GSInvocationCount">
  21128. <summary>
  21129. No documentation.
  21130. </summary>
  21131. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_PIPELINE_STATISTICS::GSInvocations']/*" />
  21132. <msdn-id>bb172402</msdn-id>
  21133. <unmanaged>unsigned longlong GSInvocations</unmanaged>
  21134. <unmanaged-short>unsigned longlong GSInvocations</unmanaged-short>
  21135. </member>
  21136. <member name="F:SharpDX.Direct3D10.QueryDataPipelineStatistics.GSPrimitiveCount">
  21137. <summary>
  21138. No documentation.
  21139. </summary>
  21140. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_PIPELINE_STATISTICS::GSPrimitives']/*" />
  21141. <msdn-id>bb172402</msdn-id>
  21142. <unmanaged>unsigned longlong GSPrimitives</unmanaged>
  21143. <unmanaged-short>unsigned longlong GSPrimitives</unmanaged-short>
  21144. </member>
  21145. <member name="F:SharpDX.Direct3D10.QueryDataPipelineStatistics.CInvocationCount">
  21146. <summary>
  21147. No documentation.
  21148. </summary>
  21149. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_PIPELINE_STATISTICS::CInvocations']/*" />
  21150. <msdn-id>bb172402</msdn-id>
  21151. <unmanaged>unsigned longlong CInvocations</unmanaged>
  21152. <unmanaged-short>unsigned longlong CInvocations</unmanaged-short>
  21153. </member>
  21154. <member name="F:SharpDX.Direct3D10.QueryDataPipelineStatistics.CPrimitiveCount">
  21155. <summary>
  21156. No documentation.
  21157. </summary>
  21158. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_PIPELINE_STATISTICS::CPrimitives']/*" />
  21159. <msdn-id>bb172402</msdn-id>
  21160. <unmanaged>unsigned longlong CPrimitives</unmanaged>
  21161. <unmanaged-short>unsigned longlong CPrimitives</unmanaged-short>
  21162. </member>
  21163. <member name="F:SharpDX.Direct3D10.QueryDataPipelineStatistics.PSInvocationCount">
  21164. <summary>
  21165. No documentation.
  21166. </summary>
  21167. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_PIPELINE_STATISTICS::PSInvocations']/*" />
  21168. <msdn-id>bb172402</msdn-id>
  21169. <unmanaged>unsigned longlong PSInvocations</unmanaged>
  21170. <unmanaged-short>unsigned longlong PSInvocations</unmanaged-short>
  21171. </member>
  21172. <member name="T:SharpDX.Direct3D10.QueryDataTimestampDisjoint">
  21173. <summary>
  21174. <p>Query information about the reliability of a timestamp query.</p>
  21175. </summary>
  21176. <remarks>
  21177. <p>For a list of query types see <strong><see cref="T:SharpDX.Direct3D10.QueryType" /></strong>.</p>
  21178. </remarks>
  21179. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_TIMESTAMP_DISJOINT']/*" />
  21180. <msdn-id>bb172404</msdn-id>
  21181. <unmanaged>D3D10_QUERY_DATA_TIMESTAMP_DISJOINT</unmanaged>
  21182. <unmanaged-short>D3D10_QUERY_DATA_TIMESTAMP_DISJOINT</unmanaged-short>
  21183. </member>
  21184. <member name="F:SharpDX.Direct3D10.QueryDataTimestampDisjoint.Frequency">
  21185. <summary>
  21186. <dd> <p>How frequently the GPU counter increments in Hz.</p> </dd>
  21187. </summary>
  21188. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_TIMESTAMP_DISJOINT::Frequency']/*" />
  21189. <msdn-id>bb172404</msdn-id>
  21190. <unmanaged>unsigned longlong Frequency</unmanaged>
  21191. <unmanaged-short>unsigned longlong Frequency</unmanaged-short>
  21192. </member>
  21193. <member name="F:SharpDX.Direct3D10.QueryDataTimestampDisjoint.Disjoint">
  21194. <summary>
  21195. <dd> <p>If this is <strong>TRUE</strong>, something occurred in between the query's <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.Begin" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong> calls that caused the timestamp counter to become discontinuous or disjoint, such as unplugging the AC chord on a laptop, overheating, or throttling up/down due to laptop savings events. The timestamp returned by <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.GetData" /></strong> for a timestamp query is only reliable if Disjoint is <strong><see cref="F:SharpDX.Result.False" /></strong>.</p> </dd>
  21196. </summary>
  21197. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_TIMESTAMP_DISJOINT::Disjoint']/*" />
  21198. <msdn-id>bb172404</msdn-id>
  21199. <unmanaged>BOOL Disjoint</unmanaged>
  21200. <unmanaged-short>BOOL Disjoint</unmanaged-short>
  21201. </member>
  21202. <member name="T:SharpDX.Direct3D10.QueryDescription">
  21203. <summary>
  21204. <p>Describes a query.</p>
  21205. </summary>
  21206. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DESC']/*" />
  21207. <msdn-id>bb172405</msdn-id>
  21208. <unmanaged>D3D10_QUERY_DESC</unmanaged>
  21209. <unmanaged-short>D3D10_QUERY_DESC</unmanaged-short>
  21210. </member>
  21211. <member name="F:SharpDX.Direct3D10.QueryDescription.Type">
  21212. <summary>
  21213. <dd> <p>Type of query (see <strong><see cref="T:SharpDX.Direct3D10.QueryType" /></strong>).</p> </dd>
  21214. </summary>
  21215. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DESC::Query']/*" />
  21216. <msdn-id>bb172405</msdn-id>
  21217. <unmanaged>D3D10_QUERY Query</unmanaged>
  21218. <unmanaged-short>D3D10_QUERY Query</unmanaged-short>
  21219. </member>
  21220. <member name="F:SharpDX.Direct3D10.QueryDescription.Flags">
  21221. <summary>
  21222. <dd> <p>Miscellaneous flags (see <strong><see cref="T:SharpDX.Direct3D10.QueryFlags" /></strong>).</p> </dd>
  21223. </summary>
  21224. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DESC::MiscFlags']/*" />
  21225. <msdn-id>bb172405</msdn-id>
  21226. <unmanaged>D3D10_QUERY_MISC_FLAG MiscFlags</unmanaged>
  21227. <unmanaged-short>D3D10_QUERY_MISC_FLAG MiscFlags</unmanaged-short>
  21228. </member>
  21229. <member name="T:SharpDX.Direct3D10.RasterizerStateDescription">
  21230. <summary>
  21231. <p>Describes the rasterizer state.</p>
  21232. </summary>
  21233. <remarks>
  21234. <p>Rasterizer state defines the behavior of the rasterizer stage. To create a rasterizer-state object, call <strong><see cref="M:SharpDX.Direct3D10.Device.CreateRasterizerState(SharpDX.Direct3D10.RasterizerStateDescription@,SharpDX.Direct3D10.RasterizerState)" /></strong>. To set rasterizer state, call <strong><see cref="M:SharpDX.Direct3D10.RasterizerStage.SetState(SharpDX.Direct3D10.RasterizerState)" /></strong>.</p><p><strong>Note</strong>??For feature levels 9.1, 9.2, 9.3, and 10.0, if you set <strong>MultisampleEnable</strong> to <strong><see cref="F:SharpDX.Result.False" /></strong>, the runtime renders all points, lines, and triangles without anti-aliasing even for render targets with a sample count greater than 1. For feature level 10.1, the setting of <strong>MultisampleEnable</strong> has no effect on points and triangles with regard to MSAA and impacts only the selection of the line-rendering algorithm as shown in this table:</p><p> </p><table> <tr><th>Line-rendering algorithm</th><th><strong>MultisampleEnable</strong></th><th><strong>AntialiasedLineEnable</strong></th></tr> <tr><td>Aliased</td><td><strong><see cref="F:SharpDX.Result.False" /></strong></td><td><strong><see cref="F:SharpDX.Result.False" /></strong></td></tr> <tr><td>Alpha antialiased</td><td><strong><see cref="F:SharpDX.Result.False" /></strong></td><td><strong>TRUE</strong></td></tr> <tr><td>Quadrilateral</td><td><strong>TRUE</strong></td><td><strong><see cref="F:SharpDX.Result.False" /></strong></td></tr> <tr><td>Quadrilateral</td><td><strong>TRUE</strong></td><td><strong>TRUE</strong></td></tr> </table><p>?</p><p>The settings of the <strong>MultisampleEnable</strong> and <strong>AntialiasedLineEnable</strong> members apply only to multisample antialiasing (MSAA) render targets (that is, render targets with sample counts greater than 1). Because of the differences in feature-level behavior and as long as you aren?t performing any line drawing or don?t mind that lines render as quadrilaterals, we recommend that you always set <strong>MultisampleEnable</strong> to <strong>TRUE</strong> whenever you render on MSAA render targets.</p>
  21235. </remarks>
  21236. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC']/*" />
  21237. <msdn-id>bb172408</msdn-id>
  21238. <unmanaged>D3D10_RASTERIZER_DESC</unmanaged>
  21239. <unmanaged-short>D3D10_RASTERIZER_DESC</unmanaged-short>
  21240. </member>
  21241. <member name="F:SharpDX.Direct3D10.RasterizerStateDescription.FillMode">
  21242. <summary>
  21243. <dd> <p>A member of the <strong><see cref="T:SharpDX.Direct3D10.FillMode" /></strong> enumerated type that determines the fill mode to use when rendering. The default value is <strong><see cref="F:SharpDX.Direct3D10.FillMode.Solid" /></strong>.</p> </dd>
  21244. </summary>
  21245. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC::FillMode']/*" />
  21246. <msdn-id>bb172408</msdn-id>
  21247. <unmanaged>D3D10_FILL_MODE FillMode</unmanaged>
  21248. <unmanaged-short>D3D10_FILL_MODE FillMode</unmanaged-short>
  21249. </member>
  21250. <member name="F:SharpDX.Direct3D10.RasterizerStateDescription.CullMode">
  21251. <summary>
  21252. <dd> <p>A member of the <strong><see cref="T:SharpDX.Direct3D10.CullMode" /></strong> enumerated type that indicates whether triangles facing the specified direction are drawn. The default value is <strong><see cref="F:SharpDX.Direct3D10.CullMode.Back" /></strong>.</p> </dd>
  21253. </summary>
  21254. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC::CullMode']/*" />
  21255. <msdn-id>bb172408</msdn-id>
  21256. <unmanaged>D3D10_CULL_MODE CullMode</unmanaged>
  21257. <unmanaged-short>D3D10_CULL_MODE CullMode</unmanaged-short>
  21258. </member>
  21259. <member name="F:SharpDX.Direct3D10.RasterizerStateDescription.IsFrontCounterClockwise">
  21260. <summary>
  21261. <dd> <p>Determines if a triangle is front-facing or back-facing. If this parameter is <strong>TRUE</strong>, then a triangle is considered front-facing if its vertices are counter-clockwise on the render target, and considered back-facing if they are clockwise. If this parameter is <strong><see cref="F:SharpDX.Result.False" /></strong>, then the opposite is true. The default value is <strong><see cref="F:SharpDX.Result.False" /></strong>.</p> </dd>
  21262. </summary>
  21263. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC::FrontCounterClockwise']/*" />
  21264. <msdn-id>bb172408</msdn-id>
  21265. <unmanaged>BOOL FrontCounterClockwise</unmanaged>
  21266. <unmanaged-short>BOOL FrontCounterClockwise</unmanaged-short>
  21267. </member>
  21268. <member name="F:SharpDX.Direct3D10.RasterizerStateDescription.DepthBias">
  21269. <summary>
  21270. <dd> <p>Specifies the depth value added to a given pixel. The default value is 0. For info about depth bias, see Depth Bias.</p> </dd>
  21271. </summary>
  21272. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC::DepthBias']/*" />
  21273. <msdn-id>bb172408</msdn-id>
  21274. <unmanaged>int DepthBias</unmanaged>
  21275. <unmanaged-short>int DepthBias</unmanaged-short>
  21276. </member>
  21277. <member name="F:SharpDX.Direct3D10.RasterizerStateDescription.DepthBiasClamp">
  21278. <summary>
  21279. <dd> <p>Specifies the maximum depth bias of a pixel. The default value is 0.0f. For info about depth bias, see Depth Bias.</p> </dd>
  21280. </summary>
  21281. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC::DepthBiasClamp']/*" />
  21282. <msdn-id>bb172408</msdn-id>
  21283. <unmanaged>float DepthBiasClamp</unmanaged>
  21284. <unmanaged-short>float DepthBiasClamp</unmanaged-short>
  21285. </member>
  21286. <member name="F:SharpDX.Direct3D10.RasterizerStateDescription.SlopeScaledDepthBias">
  21287. <summary>
  21288. <dd> <p>Specifies a scalar on a given pixel's slope. The default value is 0.0f. For info about depth bias, see Depth Bias.</p> </dd>
  21289. </summary>
  21290. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC::SlopeScaledDepthBias']/*" />
  21291. <msdn-id>bb172408</msdn-id>
  21292. <unmanaged>float SlopeScaledDepthBias</unmanaged>
  21293. <unmanaged-short>float SlopeScaledDepthBias</unmanaged-short>
  21294. </member>
  21295. <member name="F:SharpDX.Direct3D10.RasterizerStateDescription.IsDepthClipEnabled">
  21296. <summary>
  21297. <dd> <p>Enables or disables clipping based on distance. The default value is <strong>TRUE</strong>.</p> <p>The hardware always performs x and y clipping of rasterized coordinates. When <strong>DepthClipEnable</strong> is set to the default value, the hardware also clips the z value (that is, the hardware performs the last step of the following algorithm).
  21298. </p> <code> 0 &lt; w
  21299. -w &lt;= x &lt;= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
  21300. -w &lt;= y &lt;= w (or arbitrarily wider range if implementation uses a guard band to reduce clipping burden)
  21301. 0 &lt;= z &lt;= w
  21302. </code> <p>When you set <strong>DepthClipEnable</strong> to <see cref="F:SharpDX.Result.False" />, the hardware skips the z clipping (that is, the last step in the preceding algorithm). However, the hardware still performs the "0 &lt; w" clipping. When z clipping is disabled, improper depth ordering at the pixel level might result. However, when z clipping is disabled, stencil shadow implementations are simplified. In other words, you can avoid complex special-case handling for geometry that goes beyond the back clipping plane.
  21303. </p> </dd>
  21304. </summary>
  21305. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC::DepthClipEnable']/*" />
  21306. <msdn-id>bb172408</msdn-id>
  21307. <unmanaged>BOOL DepthClipEnable</unmanaged>
  21308. <unmanaged-short>BOOL DepthClipEnable</unmanaged-short>
  21309. </member>
  21310. <member name="F:SharpDX.Direct3D10.RasterizerStateDescription.IsScissorEnabled">
  21311. <summary>
  21312. <dd> <p>Enable or disables scissor-rectangle culling. All pixels outside an active scissor rectangle are culled. The default value is <strong><see cref="F:SharpDX.Result.False" /></strong>. For more information, see Set the Scissor Rectangle.</p> </dd>
  21313. </summary>
  21314. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC::ScissorEnable']/*" />
  21315. <msdn-id>bb172408</msdn-id>
  21316. <unmanaged>BOOL ScissorEnable</unmanaged>
  21317. <unmanaged-short>BOOL ScissorEnable</unmanaged-short>
  21318. </member>
  21319. <member name="F:SharpDX.Direct3D10.RasterizerStateDescription.IsMultisampleEnabled">
  21320. <summary>
  21321. <dd> <p>Specifies whether to use the quadrilateral or alpha line anti-aliasing algorithm on multisample antialiasing (MSAA) render targets. The default value is <strong><see cref="F:SharpDX.Result.False" /></strong>. Set to <strong>TRUE</strong> to use the quadrilateral line anti-aliasing algorithm and to <strong><see cref="F:SharpDX.Result.False" /></strong> to use the alpha line anti-aliasing algorithm. For more info about this member, see Remarks.</p> </dd>
  21322. </summary>
  21323. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC::MultisampleEnable']/*" />
  21324. <msdn-id>bb172408</msdn-id>
  21325. <unmanaged>BOOL MultisampleEnable</unmanaged>
  21326. <unmanaged-short>BOOL MultisampleEnable</unmanaged-short>
  21327. </member>
  21328. <member name="F:SharpDX.Direct3D10.RasterizerStateDescription.IsAntialiasedLineEnabled">
  21329. <summary>
  21330. <dd> <p>Specifies whether to enable line antialiasing; only applies when alpha blending is enabled, you are drawing lines, and the <strong>MultisampleEnable</strong> member is <strong><see cref="F:SharpDX.Result.False" /></strong>. The default value is <strong><see cref="F:SharpDX.Result.False" /></strong>. For more info about this member, see Remarks.</p> </dd>
  21331. </summary>
  21332. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RASTERIZER_DESC::AntialiasedLineEnable']/*" />
  21333. <msdn-id>bb172408</msdn-id>
  21334. <unmanaged>BOOL AntialiasedLineEnable</unmanaged>
  21335. <unmanaged-short>BOOL AntialiasedLineEnable</unmanaged-short>
  21336. </member>
  21337. <member name="T:SharpDX.Direct3D10.RenderTargetBlendDescription1">
  21338. <summary>
  21339. <p>Describes the blend state for a render target for a Direct3D 10.1 device</p>
  21340. </summary>
  21341. <remarks>
  21342. <p>To see how blending is done, see Output-Merger Stage (Direct3D 10).</p><p>These are the default values for blend state.</p><table> <tr><th>State</th><th>Default Value</th></tr> <tr><td>BlendEnable</td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td>SrcBlend</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.One" /></td></tr> <tr><td>DestBlend</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.Zero" /></td></tr> <tr><td>BlendOp</td><td><see cref="F:SharpDX.Direct3D10.BlendOperation.Add" /></td></tr> <tr><td>SrcBlendAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.One" /></td></tr> <tr><td>DestBlendAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOption.Zero" /></td></tr> <tr><td>BlendOpAlpha</td><td><see cref="F:SharpDX.Direct3D10.BlendOperation.Add" /></td></tr> <tr><td>RenderTargetWriteMask</td><td><see cref="F:SharpDX.Direct3D10.ColorWriteMaskFlags.All" /></td></tr> </table><p>?</p>
  21343. </remarks>
  21344. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_BLEND_DESC1']/*" />
  21345. <msdn-id>bb694533</msdn-id>
  21346. <unmanaged>D3D10_RENDER_TARGET_BLEND_DESC1</unmanaged>
  21347. <unmanaged-short>D3D10_RENDER_TARGET_BLEND_DESC1</unmanaged-short>
  21348. </member>
  21349. <member name="F:SharpDX.Direct3D10.RenderTargetBlendDescription1.IsBlendEnabled">
  21350. <summary>
  21351. <dd> <p>Enable (or disable) blending.</p> </dd>
  21352. </summary>
  21353. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_BLEND_DESC1::BlendEnable']/*" />
  21354. <msdn-id>bb694533</msdn-id>
  21355. <unmanaged>BOOL BlendEnable</unmanaged>
  21356. <unmanaged-short>BOOL BlendEnable</unmanaged-short>
  21357. </member>
  21358. <member name="F:SharpDX.Direct3D10.RenderTargetBlendDescription1.SourceBlend">
  21359. <summary>
  21360. <dd> <p>This <strong>blend option</strong> specifies the first RGB data source and includes an optional pre-blend operation.</p> </dd>
  21361. </summary>
  21362. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_BLEND_DESC1::SrcBlend']/*" />
  21363. <msdn-id>bb694533</msdn-id>
  21364. <unmanaged>D3D10_BLEND SrcBlend</unmanaged>
  21365. <unmanaged-short>D3D10_BLEND SrcBlend</unmanaged-short>
  21366. </member>
  21367. <member name="F:SharpDX.Direct3D10.RenderTargetBlendDescription1.DestinationBlend">
  21368. <summary>
  21369. <dd> <p>This <strong>blend option</strong> specifies the second RGB data source and includes an optional pre-blend operation.</p> </dd>
  21370. </summary>
  21371. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_BLEND_DESC1::DestBlend']/*" />
  21372. <msdn-id>bb694533</msdn-id>
  21373. <unmanaged>D3D10_BLEND DestBlend</unmanaged>
  21374. <unmanaged-short>D3D10_BLEND DestBlend</unmanaged-short>
  21375. </member>
  21376. <member name="F:SharpDX.Direct3D10.RenderTargetBlendDescription1.BlendOperation">
  21377. <summary>
  21378. <dd> <p>This <strong>blend operation</strong> defines how to combine the RGB data sources.</p> </dd>
  21379. </summary>
  21380. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_BLEND_DESC1::BlendOp']/*" />
  21381. <msdn-id>bb694533</msdn-id>
  21382. <unmanaged>D3D10_BLEND_OP BlendOp</unmanaged>
  21383. <unmanaged-short>D3D10_BLEND_OP BlendOp</unmanaged-short>
  21384. </member>
  21385. <member name="F:SharpDX.Direct3D10.RenderTargetBlendDescription1.SourceAlphaBlend">
  21386. <summary>
  21387. <dd> <p>This <strong>blend option</strong> specifies the first alpha data source and includes an optional pre-blend operation. Blend options that end in _COLOR are not allowed.</p> </dd>
  21388. </summary>
  21389. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_BLEND_DESC1::SrcBlendAlpha']/*" />
  21390. <msdn-id>bb694533</msdn-id>
  21391. <unmanaged>D3D10_BLEND SrcBlendAlpha</unmanaged>
  21392. <unmanaged-short>D3D10_BLEND SrcBlendAlpha</unmanaged-short>
  21393. </member>
  21394. <member name="F:SharpDX.Direct3D10.RenderTargetBlendDescription1.DestinationAlphaBlend">
  21395. <summary>
  21396. <dd> <p>This <strong>blend option</strong> specifies the second alpha data source and includes an optional pre-blend operation. Blend options that end in _COLOR are not allowed.</p> </dd>
  21397. </summary>
  21398. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_BLEND_DESC1::DestBlendAlpha']/*" />
  21399. <msdn-id>bb694533</msdn-id>
  21400. <unmanaged>D3D10_BLEND DestBlendAlpha</unmanaged>
  21401. <unmanaged-short>D3D10_BLEND DestBlendAlpha</unmanaged-short>
  21402. </member>
  21403. <member name="F:SharpDX.Direct3D10.RenderTargetBlendDescription1.AlphaBlendOperation">
  21404. <summary>
  21405. <dd> <p>This <strong>blend operation</strong> defines how to combine the alpha data sources.</p> </dd>
  21406. </summary>
  21407. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_BLEND_DESC1::BlendOpAlpha']/*" />
  21408. <msdn-id>bb694533</msdn-id>
  21409. <unmanaged>D3D10_BLEND_OP BlendOpAlpha</unmanaged>
  21410. <unmanaged-short>D3D10_BLEND_OP BlendOpAlpha</unmanaged-short>
  21411. </member>
  21412. <member name="F:SharpDX.Direct3D10.RenderTargetBlendDescription1.RenderTargetWriteMask">
  21413. <summary>
  21414. <dd> <p>A write mask.</p> </dd>
  21415. </summary>
  21416. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_BLEND_DESC1::RenderTargetWriteMask']/*" />
  21417. <msdn-id>bb694533</msdn-id>
  21418. <unmanaged>D3D10_COLOR_WRITE_ENABLE RenderTargetWriteMask</unmanaged>
  21419. <unmanaged-short>D3D10_COLOR_WRITE_ENABLE RenderTargetWriteMask</unmanaged-short>
  21420. </member>
  21421. <member name="T:SharpDX.Direct3D10.RenderTargetViewDescription">
  21422. <summary>
  21423. <p>Specifies the subresource(s) from a resource that are accessible using a render-target view.</p>
  21424. </summary>
  21425. <remarks>
  21426. <p>A render-target-view description is passed into <strong><see cref="M:SharpDX.Direct3D10.Device.CreateRenderTargetView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.RenderTargetViewDescription},SharpDX.Direct3D10.RenderTargetView)" /></strong> to create a render target.</p><p>A render-target-view cannot use the following formats:</p><ul> <li>Any typeless format.</li> <li> <strong><see cref="T:SharpDX.DXGI.Format" /></strong> if the view will be used to bind a buffer (vertex, index, constant, or stream-output).</li> </ul><p>If the format is set to <strong><see cref="T:SharpDX.DXGI.Format" /></strong>, then the format of the resource that the view binds to the pipeline will be used.</p>
  21427. </remarks>
  21428. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC']/*" />
  21429. <msdn-id>bb172410</msdn-id>
  21430. <unmanaged>D3D10_RENDER_TARGET_VIEW_DESC</unmanaged>
  21431. <unmanaged-short>D3D10_RENDER_TARGET_VIEW_DESC</unmanaged-short>
  21432. </member>
  21433. <member name="T:SharpDX.Direct3D10.RenderTargetViewDescription.Texture3DResource">
  21434. <summary>
  21435. <p>Specifies the subresource(s) from a 3D texture to use in a render-target view.</p>
  21436. </summary>
  21437. <remarks>
  21438. <p>This structure is one member of a render target view. See <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription" /></strong>.</p>
  21439. </remarks>
  21440. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX3D_RTV']/*" />
  21441. <msdn-id>bb172476</msdn-id>
  21442. <unmanaged>D3D10_TEX3D_RTV</unmanaged>
  21443. <unmanaged-short>D3D10_TEX3D_RTV</unmanaged-short>
  21444. </member>
  21445. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture3DResource.MipSlice">
  21446. <summary>
  21447. No documentation.
  21448. </summary>
  21449. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX3D_RTV::MipSlice']/*" />
  21450. <msdn-id>bb172476</msdn-id>
  21451. <unmanaged>unsigned int MipSlice</unmanaged>
  21452. <unmanaged-short>unsigned int MipSlice</unmanaged-short>
  21453. </member>
  21454. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture3DResource.FirstDepthSlice">
  21455. <summary>
  21456. No documentation.
  21457. </summary>
  21458. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX3D_RTV::FirstWSlice']/*" />
  21459. <msdn-id>bb172476</msdn-id>
  21460. <unmanaged>unsigned int FirstWSlice</unmanaged>
  21461. <unmanaged-short>unsigned int FirstWSlice</unmanaged-short>
  21462. </member>
  21463. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture3DResource.DepthSliceCount">
  21464. <summary>
  21465. No documentation.
  21466. </summary>
  21467. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX3D_RTV::WSize']/*" />
  21468. <msdn-id>bb172476</msdn-id>
  21469. <unmanaged>unsigned int WSize</unmanaged>
  21470. <unmanaged-short>unsigned int WSize</unmanaged-short>
  21471. </member>
  21472. <member name="T:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DArrayResource">
  21473. <summary>
  21474. <p>Specifies the subresource(s) from an array of 2D textures to use in a render-target view.</p>
  21475. </summary>
  21476. <remarks>
  21477. <p>This structure is one member of a render-target-view description (see <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription" /></strong>).</p>
  21478. </remarks>
  21479. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_RTV']/*" />
  21480. <msdn-id>bb172471</msdn-id>
  21481. <unmanaged>D3D10_TEX2D_ARRAY_RTV</unmanaged>
  21482. <unmanaged-short>D3D10_TEX2D_ARRAY_RTV</unmanaged-short>
  21483. </member>
  21484. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DArrayResource.MipSlice">
  21485. <summary>
  21486. No documentation.
  21487. </summary>
  21488. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_RTV::MipSlice']/*" />
  21489. <msdn-id>bb172471</msdn-id>
  21490. <unmanaged>unsigned int MipSlice</unmanaged>
  21491. <unmanaged-short>unsigned int MipSlice</unmanaged-short>
  21492. </member>
  21493. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DArrayResource.FirstArraySlice">
  21494. <summary>
  21495. No documentation.
  21496. </summary>
  21497. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_RTV::FirstArraySlice']/*" />
  21498. <msdn-id>bb172471</msdn-id>
  21499. <unmanaged>unsigned int FirstArraySlice</unmanaged>
  21500. <unmanaged-short>unsigned int FirstArraySlice</unmanaged-short>
  21501. </member>
  21502. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DArrayResource.ArraySize">
  21503. <summary>
  21504. No documentation.
  21505. </summary>
  21506. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_RTV::ArraySize']/*" />
  21507. <msdn-id>bb172471</msdn-id>
  21508. <unmanaged>unsigned int ArraySize</unmanaged>
  21509. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  21510. </member>
  21511. <member name="T:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DMultisampledArrayResource">
  21512. <summary>
  21513. <p>Specifies the subresource(s) from a an array of multisampled 2D textures to use in a render-target view.</p>
  21514. </summary>
  21515. <remarks>
  21516. <p>This structure is one member of a render-target-view description (see <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription" /></strong>).</p>
  21517. </remarks>
  21518. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_ARRAY_RTV']/*" />
  21519. <msdn-id>bb172465</msdn-id>
  21520. <unmanaged>D3D10_TEX2DMS_ARRAY_RTV</unmanaged>
  21521. <unmanaged-short>D3D10_TEX2DMS_ARRAY_RTV</unmanaged-short>
  21522. </member>
  21523. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DMultisampledArrayResource.FirstArraySlice">
  21524. <summary>
  21525. No documentation.
  21526. </summary>
  21527. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_ARRAY_RTV::FirstArraySlice']/*" />
  21528. <msdn-id>bb172465</msdn-id>
  21529. <unmanaged>unsigned int FirstArraySlice</unmanaged>
  21530. <unmanaged-short>unsigned int FirstArraySlice</unmanaged-short>
  21531. </member>
  21532. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DMultisampledArrayResource.ArraySize">
  21533. <summary>
  21534. No documentation.
  21535. </summary>
  21536. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_ARRAY_RTV::ArraySize']/*" />
  21537. <msdn-id>bb172465</msdn-id>
  21538. <unmanaged>unsigned int ArraySize</unmanaged>
  21539. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  21540. </member>
  21541. <member name="T:SharpDX.Direct3D10.RenderTargetViewDescription.BufferResource">
  21542. <summary>
  21543. <p>Specifies the elements from a buffer resource to use in a render-target view.</p>
  21544. </summary>
  21545. <remarks>
  21546. <p>A render-target view is a member of a render-target-view description (see <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription" /></strong>). Create a render-target view by calling <strong><see cref="M:SharpDX.Direct3D10.Device.CreateRenderTargetView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.RenderTargetViewDescription},SharpDX.Direct3D10.RenderTargetView)" /></strong>.</p>
  21547. </remarks>
  21548. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_RTV']/*" />
  21549. <msdn-id>bb204897</msdn-id>
  21550. <unmanaged>D3D10_BUFFER_RTV</unmanaged>
  21551. <unmanaged-short>D3D10_BUFFER_RTV</unmanaged-short>
  21552. </member>
  21553. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.BufferResource.FirstElement">
  21554. <summary>
  21555. No documentation.
  21556. </summary>
  21557. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_RTV::FirstElement']/*" />
  21558. <msdn-id>bb204897</msdn-id>
  21559. <unmanaged>unsigned int FirstElement</unmanaged>
  21560. <unmanaged-short>unsigned int FirstElement</unmanaged-short>
  21561. </member>
  21562. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.BufferResource.ElementOffset">
  21563. <summary>
  21564. No documentation.
  21565. </summary>
  21566. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_RTV::ElementOffset']/*" />
  21567. <msdn-id>bb204897</msdn-id>
  21568. <unmanaged>unsigned int ElementOffset</unmanaged>
  21569. <unmanaged-short>unsigned int ElementOffset</unmanaged-short>
  21570. </member>
  21571. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.BufferResource.ElementCount">
  21572. <summary>
  21573. No documentation.
  21574. </summary>
  21575. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_RTV::NumElements']/*" />
  21576. <msdn-id>bb204897</msdn-id>
  21577. <unmanaged>unsigned int NumElements</unmanaged>
  21578. <unmanaged-short>unsigned int NumElements</unmanaged-short>
  21579. </member>
  21580. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.BufferResource.ElementWidth">
  21581. <summary>
  21582. No documentation.
  21583. </summary>
  21584. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_RTV::ElementWidth']/*" />
  21585. <msdn-id>bb204897</msdn-id>
  21586. <unmanaged>unsigned int ElementWidth</unmanaged>
  21587. <unmanaged-short>unsigned int ElementWidth</unmanaged-short>
  21588. </member>
  21589. <member name="T:SharpDX.Direct3D10.RenderTargetViewDescription.Texture1DResource">
  21590. <summary>
  21591. <p>Specifies the subresource from a 1D texture to use in a render-target view.</p>
  21592. </summary>
  21593. <remarks>
  21594. <p>This structure is one member of a render-target-view description (see <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription" /></strong>).</p>
  21595. </remarks>
  21596. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_RTV']/*" />
  21597. <msdn-id>bb172462</msdn-id>
  21598. <unmanaged>D3D10_TEX1D_RTV</unmanaged>
  21599. <unmanaged-short>D3D10_TEX1D_RTV</unmanaged-short>
  21600. </member>
  21601. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture1DResource.MipSlice">
  21602. <summary>
  21603. No documentation.
  21604. </summary>
  21605. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_RTV::MipSlice']/*" />
  21606. <msdn-id>bb172462</msdn-id>
  21607. <unmanaged>unsigned int MipSlice</unmanaged>
  21608. <unmanaged-short>unsigned int MipSlice</unmanaged-short>
  21609. </member>
  21610. <member name="T:SharpDX.Direct3D10.RenderTargetViewDescription.Texture1DArrayResource">
  21611. <summary>
  21612. <p>Specifies the subresource(s) from an array of 1D textures to use in a render-target view.</p>
  21613. </summary>
  21614. <remarks>
  21615. <p>This structure is one member of a render-target-view description (see <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription" /></strong>).</p>
  21616. </remarks>
  21617. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_RTV']/*" />
  21618. <msdn-id>bb172459</msdn-id>
  21619. <unmanaged>D3D10_TEX1D_ARRAY_RTV</unmanaged>
  21620. <unmanaged-short>D3D10_TEX1D_ARRAY_RTV</unmanaged-short>
  21621. </member>
  21622. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture1DArrayResource.MipSlice">
  21623. <summary>
  21624. No documentation.
  21625. </summary>
  21626. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_RTV::MipSlice']/*" />
  21627. <msdn-id>bb172459</msdn-id>
  21628. <unmanaged>unsigned int MipSlice</unmanaged>
  21629. <unmanaged-short>unsigned int MipSlice</unmanaged-short>
  21630. </member>
  21631. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture1DArrayResource.FirstArraySlice">
  21632. <summary>
  21633. No documentation.
  21634. </summary>
  21635. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_RTV::FirstArraySlice']/*" />
  21636. <msdn-id>bb172459</msdn-id>
  21637. <unmanaged>unsigned int FirstArraySlice</unmanaged>
  21638. <unmanaged-short>unsigned int FirstArraySlice</unmanaged-short>
  21639. </member>
  21640. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture1DArrayResource.ArraySize">
  21641. <summary>
  21642. No documentation.
  21643. </summary>
  21644. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_RTV::ArraySize']/*" />
  21645. <msdn-id>bb172459</msdn-id>
  21646. <unmanaged>unsigned int ArraySize</unmanaged>
  21647. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  21648. </member>
  21649. <member name="T:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DResource">
  21650. <summary>
  21651. <p>Specifies the subresource from a 2D texture to use in a render-target view.</p>
  21652. </summary>
  21653. <remarks>
  21654. <p>This structure is one member of a render-target-view description (see <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription" /></strong>).</p>
  21655. </remarks>
  21656. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_RTV']/*" />
  21657. <msdn-id>bb172474</msdn-id>
  21658. <unmanaged>D3D10_TEX2D_RTV</unmanaged>
  21659. <unmanaged-short>D3D10_TEX2D_RTV</unmanaged-short>
  21660. </member>
  21661. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DResource.MipSlice">
  21662. <summary>
  21663. No documentation.
  21664. </summary>
  21665. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_RTV::MipSlice']/*" />
  21666. <msdn-id>bb172474</msdn-id>
  21667. <unmanaged>unsigned int MipSlice</unmanaged>
  21668. <unmanaged-short>unsigned int MipSlice</unmanaged-short>
  21669. </member>
  21670. <member name="T:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DMultisampledResource">
  21671. <summary>
  21672. <p>Specifies the subresource from a multisampled 2D texture to use in a render-target view.</p>
  21673. </summary>
  21674. <remarks>
  21675. <p>Since a multisampled 2D texture contains a single subresource, there is actually nothing to specify in <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DMultisampledResource" /></strong>. Consequently, <strong>UnusedField_NothingToDefine</strong> is included so that this structure will compile in C.</p>
  21676. </remarks>
  21677. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_RTV']/*" />
  21678. <msdn-id>bb172468</msdn-id>
  21679. <unmanaged>D3D10_TEX2DMS_RTV</unmanaged>
  21680. <unmanaged-short>D3D10_TEX2DMS_RTV</unmanaged-short>
  21681. </member>
  21682. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DMultisampledResource.UnusedFieldNothingToDefine">
  21683. <summary>
  21684. No documentation.
  21685. </summary>
  21686. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_RTV::UnusedField_NothingToDefine']/*" />
  21687. <msdn-id>bb172468</msdn-id>
  21688. <unmanaged>unsigned int UnusedField_NothingToDefine</unmanaged>
  21689. <unmanaged-short>unsigned int UnusedField_NothingToDefine</unmanaged-short>
  21690. </member>
  21691. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Format">
  21692. <summary>
  21693. No documentation.
  21694. </summary>
  21695. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC::Format']/*" />
  21696. <msdn-id>bb172410</msdn-id>
  21697. <unmanaged>DXGI_FORMAT Format</unmanaged>
  21698. <unmanaged-short>DXGI_FORMAT Format</unmanaged-short>
  21699. </member>
  21700. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Dimension">
  21701. <summary>
  21702. No documentation.
  21703. </summary>
  21704. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC::ViewDimension']/*" />
  21705. <msdn-id>bb172410</msdn-id>
  21706. <unmanaged>D3D10_RTV_DIMENSION ViewDimension</unmanaged>
  21707. <unmanaged-short>D3D10_RTV_DIMENSION ViewDimension</unmanaged-short>
  21708. </member>
  21709. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Buffer">
  21710. <summary>
  21711. No documentation.
  21712. </summary>
  21713. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC::Buffer']/*" />
  21714. <msdn-id>bb172410</msdn-id>
  21715. <unmanaged>D3D10_BUFFER_RTV Buffer</unmanaged>
  21716. <unmanaged-short>D3D10_BUFFER_RTV Buffer</unmanaged-short>
  21717. </member>
  21718. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture1D">
  21719. <summary>
  21720. No documentation.
  21721. </summary>
  21722. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC::Texture1D']/*" />
  21723. <msdn-id>bb172410</msdn-id>
  21724. <unmanaged>D3D10_TEX1D_RTV Texture1D</unmanaged>
  21725. <unmanaged-short>D3D10_TEX1D_RTV Texture1D</unmanaged-short>
  21726. </member>
  21727. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture1DArray">
  21728. <summary>
  21729. No documentation.
  21730. </summary>
  21731. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC::Texture1DArray']/*" />
  21732. <msdn-id>bb172410</msdn-id>
  21733. <unmanaged>D3D10_TEX1D_ARRAY_RTV Texture1DArray</unmanaged>
  21734. <unmanaged-short>D3D10_TEX1D_ARRAY_RTV Texture1DArray</unmanaged-short>
  21735. </member>
  21736. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2D">
  21737. <summary>
  21738. No documentation.
  21739. </summary>
  21740. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC::Texture2D']/*" />
  21741. <msdn-id>bb172410</msdn-id>
  21742. <unmanaged>D3D10_TEX2D_RTV Texture2D</unmanaged>
  21743. <unmanaged-short>D3D10_TEX2D_RTV Texture2D</unmanaged-short>
  21744. </member>
  21745. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DArray">
  21746. <summary>
  21747. No documentation.
  21748. </summary>
  21749. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC::Texture2DArray']/*" />
  21750. <msdn-id>bb172410</msdn-id>
  21751. <unmanaged>D3D10_TEX2D_ARRAY_RTV Texture2DArray</unmanaged>
  21752. <unmanaged-short>D3D10_TEX2D_ARRAY_RTV Texture2DArray</unmanaged-short>
  21753. </member>
  21754. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DMS">
  21755. <summary>
  21756. No documentation.
  21757. </summary>
  21758. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC::Texture2DMS']/*" />
  21759. <msdn-id>bb172410</msdn-id>
  21760. <unmanaged>D3D10_TEX2DMS_RTV Texture2DMS</unmanaged>
  21761. <unmanaged-short>D3D10_TEX2DMS_RTV Texture2DMS</unmanaged-short>
  21762. </member>
  21763. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DMSArray">
  21764. <summary>
  21765. No documentation.
  21766. </summary>
  21767. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC::Texture2DMSArray']/*" />
  21768. <msdn-id>bb172410</msdn-id>
  21769. <unmanaged>D3D10_TEX2DMS_ARRAY_RTV Texture2DMSArray</unmanaged>
  21770. <unmanaged-short>D3D10_TEX2DMS_ARRAY_RTV Texture2DMSArray</unmanaged-short>
  21771. </member>
  21772. <member name="F:SharpDX.Direct3D10.RenderTargetViewDescription.Texture3D">
  21773. <summary>
  21774. No documentation.
  21775. </summary>
  21776. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_RENDER_TARGET_VIEW_DESC::Texture3D']/*" />
  21777. <msdn-id>bb172410</msdn-id>
  21778. <unmanaged>D3D10_TEX3D_RTV Texture3D</unmanaged>
  21779. <unmanaged-short>D3D10_TEX3D_RTV Texture3D</unmanaged-short>
  21780. </member>
  21781. <member name="T:SharpDX.Direct3D10.ResourceRegion">
  21782. <summary>
  21783. <p>Defines a 3D box.</p>
  21784. </summary>
  21785. <remarks>
  21786. <p>The following diagram shows a 3D box, where the origin is the left, front, top corner.</p>
  21787. </remarks>
  21788. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BOX']/*" />
  21789. <msdn-id>bb204895</msdn-id>
  21790. <unmanaged>D3D10_BOX</unmanaged>
  21791. <unmanaged-short>D3D10_BOX</unmanaged-short>
  21792. </member>
  21793. <member name="F:SharpDX.Direct3D10.ResourceRegion.Left">
  21794. <summary>
  21795. <dd> <p>The x position of the left hand side of the box.</p> </dd>
  21796. </summary>
  21797. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BOX::left']/*" />
  21798. <msdn-id>bb204895</msdn-id>
  21799. <unmanaged>unsigned int left</unmanaged>
  21800. <unmanaged-short>unsigned int left</unmanaged-short>
  21801. </member>
  21802. <member name="F:SharpDX.Direct3D10.ResourceRegion.Top">
  21803. <summary>
  21804. <dd> <p>The y position of the top of the box.</p> </dd>
  21805. </summary>
  21806. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BOX::top']/*" />
  21807. <msdn-id>bb204895</msdn-id>
  21808. <unmanaged>unsigned int top</unmanaged>
  21809. <unmanaged-short>unsigned int top</unmanaged-short>
  21810. </member>
  21811. <member name="F:SharpDX.Direct3D10.ResourceRegion.Front">
  21812. <summary>
  21813. <dd> <p>The z position of the front of the box.</p> </dd>
  21814. </summary>
  21815. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BOX::front']/*" />
  21816. <msdn-id>bb204895</msdn-id>
  21817. <unmanaged>unsigned int front</unmanaged>
  21818. <unmanaged-short>unsigned int front</unmanaged-short>
  21819. </member>
  21820. <member name="F:SharpDX.Direct3D10.ResourceRegion.Right">
  21821. <summary>
  21822. <dd> <p>The x position of the right hand side of the box.</p> </dd>
  21823. </summary>
  21824. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BOX::right']/*" />
  21825. <msdn-id>bb204895</msdn-id>
  21826. <unmanaged>unsigned int right</unmanaged>
  21827. <unmanaged-short>unsigned int right</unmanaged-short>
  21828. </member>
  21829. <member name="F:SharpDX.Direct3D10.ResourceRegion.Bottom">
  21830. <summary>
  21831. <dd> <p>The y position of the bottom of the box.</p> </dd>
  21832. </summary>
  21833. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BOX::bottom']/*" />
  21834. <msdn-id>bb204895</msdn-id>
  21835. <unmanaged>unsigned int bottom</unmanaged>
  21836. <unmanaged-short>unsigned int bottom</unmanaged-short>
  21837. </member>
  21838. <member name="F:SharpDX.Direct3D10.ResourceRegion.Back">
  21839. <summary>
  21840. <dd> <p>The z position of the back of the box.</p> </dd>
  21841. </summary>
  21842. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BOX::back']/*" />
  21843. <msdn-id>bb204895</msdn-id>
  21844. <unmanaged>unsigned int back</unmanaged>
  21845. <unmanaged-short>unsigned int back</unmanaged-short>
  21846. </member>
  21847. <member name="T:SharpDX.Direct3D10.SamplerStateDescription">
  21848. <summary>
  21849. <p>Describes a sampler state.</p>
  21850. </summary>
  21851. <remarks>
  21852. <p>These are the default values for sampler state.</p><table> <tr><th>State</th><th>Default Value</th></tr> <tr><td>Filter</td><td>Min_Mag_Mip_Point</td></tr> <tr><td>AddressU</td><td>Clamp</td></tr> <tr><td>AddressV</td><td>Clamp</td></tr> <tr><td>AddressW</td><td>Clamp</td></tr> <tr><td>MinLOD</td><td>0.0f</td></tr> <tr><td>MaxLOD</td><td>3.402823466e+38F (FLT_MAX)</td></tr> <tr><td>MipMapLODBias</td><td>0.0f</td></tr> <tr><td>MaxAnisotropy</td><td>16</td></tr> <tr><td>ComparisonFunc</td><td>Never</td></tr> <tr><td>BorderColor</td><td>float4(0.0f, 0.0f, 0.0f, 0.0f)</td></tr> <tr><td>Texture</td><td>N/A</td></tr> </table><p>?</p>
  21853. </remarks>
  21854. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC']/*" />
  21855. <msdn-id>bb172415</msdn-id>
  21856. <unmanaged>D3D10_SAMPLER_DESC</unmanaged>
  21857. <unmanaged-short>D3D10_SAMPLER_DESC</unmanaged-short>
  21858. </member>
  21859. <member name="F:SharpDX.Direct3D10.SamplerStateDescription.Filter">
  21860. <summary>
  21861. <dd> <p>Filtering method to use when sampling a texture (see <strong><see cref="T:SharpDX.Direct3D10.Filter" /></strong>).</p> </dd>
  21862. </summary>
  21863. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC::Filter']/*" />
  21864. <msdn-id>bb172415</msdn-id>
  21865. <unmanaged>D3D10_FILTER Filter</unmanaged>
  21866. <unmanaged-short>D3D10_FILTER Filter</unmanaged-short>
  21867. </member>
  21868. <member name="F:SharpDX.Direct3D10.SamplerStateDescription.AddressU">
  21869. <summary>
  21870. <dd> <p>Method to use for resolving a u texture coordinate that is outside the 0 to 1 range (see <strong><see cref="T:SharpDX.Direct3D10.TextureAddressMode" /></strong>).</p> </dd>
  21871. </summary>
  21872. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC::AddressU']/*" />
  21873. <msdn-id>bb172415</msdn-id>
  21874. <unmanaged>D3D10_TEXTURE_ADDRESS_MODE AddressU</unmanaged>
  21875. <unmanaged-short>D3D10_TEXTURE_ADDRESS_MODE AddressU</unmanaged-short>
  21876. </member>
  21877. <member name="F:SharpDX.Direct3D10.SamplerStateDescription.AddressV">
  21878. <summary>
  21879. <dd> <p>Method to use for resolving a v texture coordinate that is outside the 0 to 1 range.</p> </dd>
  21880. </summary>
  21881. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC::AddressV']/*" />
  21882. <msdn-id>bb172415</msdn-id>
  21883. <unmanaged>D3D10_TEXTURE_ADDRESS_MODE AddressV</unmanaged>
  21884. <unmanaged-short>D3D10_TEXTURE_ADDRESS_MODE AddressV</unmanaged-short>
  21885. </member>
  21886. <member name="F:SharpDX.Direct3D10.SamplerStateDescription.AddressW">
  21887. <summary>
  21888. <dd> <p>Method to use for resolving a w texture coordinate that is outside the 0 to 1 range.</p> </dd>
  21889. </summary>
  21890. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC::AddressW']/*" />
  21891. <msdn-id>bb172415</msdn-id>
  21892. <unmanaged>D3D10_TEXTURE_ADDRESS_MODE AddressW</unmanaged>
  21893. <unmanaged-short>D3D10_TEXTURE_ADDRESS_MODE AddressW</unmanaged-short>
  21894. </member>
  21895. <member name="F:SharpDX.Direct3D10.SamplerStateDescription.MipLodBias">
  21896. <summary>
  21897. <dd> <p>Offset from the calculated mipmap level. For example, if Direct3D calculates that a texture should be sampled at mipmap level 3 and MipLODBias is 2, then the texture will be sampled at mipmap level 5.</p> </dd>
  21898. </summary>
  21899. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC::MipLODBias']/*" />
  21900. <msdn-id>bb172415</msdn-id>
  21901. <unmanaged>float MipLODBias</unmanaged>
  21902. <unmanaged-short>float MipLODBias</unmanaged-short>
  21903. </member>
  21904. <member name="F:SharpDX.Direct3D10.SamplerStateDescription.MaximumAnisotropy">
  21905. <summary>
  21906. <dd> <p>Clamping value used if <see cref="F:SharpDX.Direct3D10.Filter.Anisotropic" /> or <see cref="F:SharpDX.Direct3D10.Filter.ComparisonAnisotropic" /> is specified in Filter. Valid values are between 1 and 16.</p> </dd>
  21907. </summary>
  21908. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC::MaxAnisotropy']/*" />
  21909. <msdn-id>bb172415</msdn-id>
  21910. <unmanaged>unsigned int MaxAnisotropy</unmanaged>
  21911. <unmanaged-short>unsigned int MaxAnisotropy</unmanaged-short>
  21912. </member>
  21913. <member name="F:SharpDX.Direct3D10.SamplerStateDescription.ComparisonFunction">
  21914. <summary>
  21915. <dd> <p>A function that compares sampled data against existing sampled data. The function options are listed in <strong><see cref="T:SharpDX.Direct3D10.Comparison" /></strong>.</p> </dd>
  21916. </summary>
  21917. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC::ComparisonFunc']/*" />
  21918. <msdn-id>bb172415</msdn-id>
  21919. <unmanaged>D3D10_COMPARISON_FUNC ComparisonFunc</unmanaged>
  21920. <unmanaged-short>D3D10_COMPARISON_FUNC ComparisonFunc</unmanaged-short>
  21921. </member>
  21922. <member name="F:SharpDX.Direct3D10.SamplerStateDescription.BorderColor">
  21923. <summary>
  21924. <dd> <p>Border color to use if <see cref="F:SharpDX.Direct3D10.TextureAddressMode.Border" /> is specified for AddressU, AddressV, or AddressW. Range must be between 0.0 and 1.0 inclusive.</p> </dd>
  21925. </summary>
  21926. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC::BorderColor']/*" />
  21927. <msdn-id>bb172415</msdn-id>
  21928. <unmanaged>SHARPDX_COLOR4 BorderColor</unmanaged>
  21929. <unmanaged-short>SHARPDX_COLOR4 BorderColor</unmanaged-short>
  21930. </member>
  21931. <member name="F:SharpDX.Direct3D10.SamplerStateDescription.MinimumLod">
  21932. <summary>
  21933. <dd> <p>Lower end of the mipmap range to clamp access to, where 0 is the largest and most detailed mipmap level and any level higher than that is less detailed.</p> </dd>
  21934. </summary>
  21935. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC::MinLOD']/*" />
  21936. <msdn-id>bb172415</msdn-id>
  21937. <unmanaged>float MinLOD</unmanaged>
  21938. <unmanaged-short>float MinLOD</unmanaged-short>
  21939. </member>
  21940. <member name="F:SharpDX.Direct3D10.SamplerStateDescription.MaximumLod">
  21941. <summary>
  21942. <dd> <p>Upper end of the mipmap range to clamp access to, where 0 is the largest and most detailed mipmap level and any level higher than that is less detailed. This value must be greater than or equal to MinLOD. To have no upper limit on LOD set this to a large value such as D3D10_FLOAT32_MAX.</p> </dd>
  21943. </summary>
  21944. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SAMPLER_DESC::MaxLOD']/*" />
  21945. <msdn-id>bb172415</msdn-id>
  21946. <unmanaged>float MaxLOD</unmanaged>
  21947. <unmanaged-short>float MaxLOD</unmanaged-short>
  21948. </member>
  21949. <member name="T:SharpDX.Direct3D10.ShaderBufferDescription">
  21950. <summary>
  21951. <p>Describes a shader constant-buffer.</p>
  21952. </summary>
  21953. <remarks>
  21954. <p>Constants are supplied to shaders in a shader-constant buffer. Get the description of a shader-constant-buffer by calling <strong>ID3D10ShaderReflectionConstantBuffer::GetDesc</strong>.</p>
  21955. </remarks>
  21956. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_BUFFER_DESC']/*" />
  21957. <msdn-id>bb172417</msdn-id>
  21958. <unmanaged>D3D10_SHADER_BUFFER_DESC</unmanaged>
  21959. <unmanaged-short>D3D10_SHADER_BUFFER_DESC</unmanaged-short>
  21960. </member>
  21961. <member name="F:SharpDX.Direct3D10.ShaderBufferDescription.Name">
  21962. <summary>
  21963. <dd> <p>The name of the buffer.</p> </dd>
  21964. </summary>
  21965. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_BUFFER_DESC::Name']/*" />
  21966. <msdn-id>bb172417</msdn-id>
  21967. <unmanaged>const char* Name</unmanaged>
  21968. <unmanaged-short>char Name</unmanaged-short>
  21969. </member>
  21970. <member name="F:SharpDX.Direct3D10.ShaderBufferDescription.Type">
  21971. <summary>
  21972. <dd> <p>The intended use of the constant data. See <strong>D3D10_CBUFFER_TYPE</strong>.</p> </dd>
  21973. </summary>
  21974. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_BUFFER_DESC::Type']/*" />
  21975. <msdn-id>bb172417</msdn-id>
  21976. <unmanaged>D3D_CBUFFER_TYPE Type</unmanaged>
  21977. <unmanaged-short>D3D_CBUFFER_TYPE Type</unmanaged-short>
  21978. </member>
  21979. <member name="F:SharpDX.Direct3D10.ShaderBufferDescription.VariableCount">
  21980. <summary>
  21981. <dd> <p>The number of unique variables.</p> </dd>
  21982. </summary>
  21983. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_BUFFER_DESC::Variables']/*" />
  21984. <msdn-id>bb172417</msdn-id>
  21985. <unmanaged>unsigned int Variables</unmanaged>
  21986. <unmanaged-short>unsigned int Variables</unmanaged-short>
  21987. </member>
  21988. <member name="F:SharpDX.Direct3D10.ShaderBufferDescription.Size">
  21989. <summary>
  21990. <dd> <p>Buffer size (in bytes).</p> </dd>
  21991. </summary>
  21992. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_BUFFER_DESC::Size']/*" />
  21993. <msdn-id>bb172417</msdn-id>
  21994. <unmanaged>unsigned int Size</unmanaged>
  21995. <unmanaged-short>unsigned int Size</unmanaged-short>
  21996. </member>
  21997. <member name="F:SharpDX.Direct3D10.ShaderBufferDescription.Flags">
  21998. <summary>
  21999. <dd> <p>Shader buffer properties. See <strong>D3D10_SHADER_CBUFFER_FLAGS</strong>.</p> </dd>
  22000. </summary>
  22001. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_BUFFER_DESC::uFlags']/*" />
  22002. <msdn-id>bb172417</msdn-id>
  22003. <unmanaged>D3D_SHADER_CBUFFER_FLAGS uFlags</unmanaged>
  22004. <unmanaged-short>D3D_SHADER_CBUFFER_FLAGS uFlags</unmanaged-short>
  22005. </member>
  22006. <member name="T:SharpDX.Direct3D10.ShaderParameterDescription">
  22007. <summary>
  22008. <p>Describes a shader signature.</p>
  22009. </summary>
  22010. <remarks>
  22011. <p>A shader can take n inputs and can produce m outputs. The order of the input (or output) parameters, their associated types, and any attached semantics make up the shader signature. Each shader has an input and an output signature.</p><p>When compiling a shader or an effect, some API calls validate shader signatures (such as <strong>D3D10CompileShader</strong> and <strong><see cref="M:SharpDX.Direct3D10.D3D10.CompileEffect10FromMemory(System.IntPtr,SharpDX.PointerSize,System.String,SharpDX.Direct3D.ShaderMacro[],System.IntPtr,SharpDX.D3DCompiler.ShaderFlags,SharpDX.D3DCompiler.EffectFlags,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)" /></strong>). That is, they compare the output signature of one shader (like a vertex shader) with the input signature of another shader (like a pixel shader). This ensures that a shader outputs data that is compatible with a downstream shader that is consuming that data. Compatible means that a shader signature is a exact-match subset of the preceding shader stage. Exact match means parameter types and semantics must exactly match. Subset means that a parameter that is not required by a downstream stage, does not need to include that parameter in its shader signature.</p><p>Get a shader-signature from a shader or an effect by calling APIs such as <strong>ID3D10ShaderReflection::GetInputParameterDesc</strong> or <strong><see cref="M:SharpDX.Direct3D10.EffectShaderVariable.GetInputSignatureElementDescription(System.Int32,System.Int32)" /></strong>.</p>
  22012. </remarks>
  22013. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SIGNATURE_PARAMETER_DESC']/*" />
  22014. <msdn-id>bb172446</msdn-id>
  22015. <unmanaged>D3D10_SIGNATURE_PARAMETER_DESC</unmanaged>
  22016. <unmanaged-short>D3D10_SIGNATURE_PARAMETER_DESC</unmanaged-short>
  22017. </member>
  22018. <member name="F:SharpDX.Direct3D10.ShaderParameterDescription.SemanticName">
  22019. <summary>
  22020. <dd> <p>A per-parameter string that identifies how the data will be used. See Semantics (DirectX HLSL).</p> </dd>
  22021. </summary>
  22022. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SIGNATURE_PARAMETER_DESC::SemanticName']/*" />
  22023. <msdn-id>bb172446</msdn-id>
  22024. <unmanaged>const char* SemanticName</unmanaged>
  22025. <unmanaged-short>char SemanticName</unmanaged-short>
  22026. </member>
  22027. <member name="F:SharpDX.Direct3D10.ShaderParameterDescription.SemanticIndex">
  22028. <summary>
  22029. <dd> <p>Semantic index that modifies the semantic. Used to differentiate different parameters that use the same semantic.</p> </dd>
  22030. </summary>
  22031. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SIGNATURE_PARAMETER_DESC::SemanticIndex']/*" />
  22032. <msdn-id>bb172446</msdn-id>
  22033. <unmanaged>unsigned int SemanticIndex</unmanaged>
  22034. <unmanaged-short>unsigned int SemanticIndex</unmanaged-short>
  22035. </member>
  22036. <member name="F:SharpDX.Direct3D10.ShaderParameterDescription.Register">
  22037. <summary>
  22038. <dd> <p>The register that will contain this variable's data.</p> </dd>
  22039. </summary>
  22040. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SIGNATURE_PARAMETER_DESC::Register']/*" />
  22041. <msdn-id>bb172446</msdn-id>
  22042. <unmanaged>unsigned int Register</unmanaged>
  22043. <unmanaged-short>unsigned int Register</unmanaged-short>
  22044. </member>
  22045. <member name="F:SharpDX.Direct3D10.ShaderParameterDescription.SystemValueType">
  22046. <summary>
  22047. <dd> <p>A predefined string that determines the functionality of certain pipeline stages. See <strong>D3D10_NAME</strong>.</p> </dd>
  22048. </summary>
  22049. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SIGNATURE_PARAMETER_DESC::SystemValueType']/*" />
  22050. <msdn-id>bb172446</msdn-id>
  22051. <unmanaged>D3D_NAME SystemValueType</unmanaged>
  22052. <unmanaged-short>D3D_NAME SystemValueType</unmanaged-short>
  22053. </member>
  22054. <member name="F:SharpDX.Direct3D10.ShaderParameterDescription.ComponentType">
  22055. <summary>
  22056. <dd> <p>The per-component-data type that is stored in a register. See <strong>D3D10_REGISTER_COMPONENT_TYPE</strong>. Each register can store up to four-components of data.</p> </dd>
  22057. </summary>
  22058. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SIGNATURE_PARAMETER_DESC::ComponentType']/*" />
  22059. <msdn-id>bb172446</msdn-id>
  22060. <unmanaged>D3D_REGISTER_COMPONENT_TYPE ComponentType</unmanaged>
  22061. <unmanaged-short>D3D_REGISTER_COMPONENT_TYPE ComponentType</unmanaged-short>
  22062. </member>
  22063. <member name="F:SharpDX.Direct3D10.ShaderParameterDescription.Mask">
  22064. <summary>
  22065. <dd> <p>Mask which indicates which components of a register are used.</p> </dd>
  22066. </summary>
  22067. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SIGNATURE_PARAMETER_DESC::Mask']/*" />
  22068. <msdn-id>bb172446</msdn-id>
  22069. <unmanaged>unsigned char Mask</unmanaged>
  22070. <unmanaged-short>unsigned char Mask</unmanaged-short>
  22071. </member>
  22072. <member name="F:SharpDX.Direct3D10.ShaderParameterDescription.ReadWriteMask">
  22073. <summary>
  22074. <dd> <p>Mask which indicates whether a given component is never written (if the signature is an output signature) or always read (if the signature is an input signature). The mask is a combination of <strong>D3D10_REGISTER_COMPONENT_TYPE</strong> values.</p> </dd>
  22075. </summary>
  22076. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SIGNATURE_PARAMETER_DESC::ReadWriteMask']/*" />
  22077. <msdn-id>bb172446</msdn-id>
  22078. <unmanaged>unsigned char ReadWriteMask</unmanaged>
  22079. <unmanaged-short>unsigned char ReadWriteMask</unmanaged-short>
  22080. </member>
  22081. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription">
  22082. <summary>
  22083. <p>Describes a shader-resource view.</p>
  22084. </summary>
  22085. <remarks>
  22086. <p>A view is a format-specific way to look at the data in a resource. The view determines what data to look at, and how it is cast when read. For more information about how views work, see Views </p><p>When viewing a resource, the resource-view description must specify a typed format, that is compatible with the resource format. So that means that you cannot create a resource-view description using any format with _TYPELESS in the name. You can however view a typeless resource by specifying a typed format for the view. For example, a <see cref="F:SharpDX.DXGI.Format.R32G32B32_Typeless" /> resource can be viewed with one of these typed formats: <see cref="F:SharpDX.DXGI.Format.R32G32B32_Float" />, <see cref="F:SharpDX.DXGI.Format.R32G32B32_UInt" />, and <see cref="F:SharpDX.DXGI.Format.R32G32B32_SInt" />, since these typed formats are compatible with the typeless resource.</p><p>Create a shader-resource-view description by calling <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong>. To view a shader-resource-view description, call <strong><see cref="M:SharpDX.Direct3D10.ShaderResourceView.GetDescription(SharpDX.Direct3D10.ShaderResourceViewDescription@)" /></strong>.</p>
  22087. </remarks>
  22088. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC']/*" />
  22089. <msdn-id>bb172437</msdn-id>
  22090. <unmanaged>D3D10_SHADER_RESOURCE_VIEW_DESC</unmanaged>
  22091. <unmanaged-short>D3D10_SHADER_RESOURCE_VIEW_DESC</unmanaged-short>
  22092. </member>
  22093. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription.BufferResource">
  22094. <summary>
  22095. <p>Specifies the elements in a buffer resource to use in a shader-resource view.</p>
  22096. </summary>
  22097. <remarks>
  22098. <p>The <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.BufferResource" /></strong> structure is a member of the <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription" /></strong> structure, which represents a shader-resource view description. You can create a shader-resource view by calling the <strong><see cref="M:SharpDX.Direct3D10.Device.CreateShaderResourceView(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription},SharpDX.Direct3D10.ShaderResourceView)" /></strong> method.</p>
  22099. </remarks>
  22100. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_SRV']/*" />
  22101. <msdn-id>bb204898</msdn-id>
  22102. <unmanaged>D3D10_BUFFER_SRV</unmanaged>
  22103. <unmanaged-short>D3D10_BUFFER_SRV</unmanaged-short>
  22104. </member>
  22105. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.BufferResource.FirstElement">
  22106. <summary>
  22107. No documentation.
  22108. </summary>
  22109. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_SRV::FirstElement']/*" />
  22110. <msdn-id>bb204898</msdn-id>
  22111. <unmanaged>unsigned int FirstElement</unmanaged>
  22112. <unmanaged-short>unsigned int FirstElement</unmanaged-short>
  22113. </member>
  22114. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.BufferResource.ElementOffset">
  22115. <summary>
  22116. No documentation.
  22117. </summary>
  22118. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_SRV::ElementOffset']/*" />
  22119. <msdn-id>bb204898</msdn-id>
  22120. <unmanaged>unsigned int ElementOffset</unmanaged>
  22121. <unmanaged-short>unsigned int ElementOffset</unmanaged-short>
  22122. </member>
  22123. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.BufferResource.ElementCount">
  22124. <summary>
  22125. No documentation.
  22126. </summary>
  22127. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_SRV::NumElements']/*" />
  22128. <msdn-id>bb204898</msdn-id>
  22129. <unmanaged>unsigned int NumElements</unmanaged>
  22130. <unmanaged-short>unsigned int NumElements</unmanaged-short>
  22131. </member>
  22132. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.BufferResource.ElementWidth">
  22133. <summary>
  22134. No documentation.
  22135. </summary>
  22136. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_BUFFER_SRV::ElementWidth']/*" />
  22137. <msdn-id>bb204898</msdn-id>
  22138. <unmanaged>unsigned int ElementWidth</unmanaged>
  22139. <unmanaged-short>unsigned int ElementWidth</unmanaged-short>
  22140. </member>
  22141. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DResource">
  22142. <summary>
  22143. <p>Specifies the subresource from a 1D texture to use in a shader-resource view.</p>
  22144. </summary>
  22145. <remarks>
  22146. <p>This structure is one member of a shader-resource-view description (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription" /></strong>).</p>
  22147. </remarks>
  22148. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_SRV']/*" />
  22149. <msdn-id>bb172463</msdn-id>
  22150. <unmanaged>D3D10_TEX1D_SRV</unmanaged>
  22151. <unmanaged-short>D3D10_TEX1D_SRV</unmanaged-short>
  22152. </member>
  22153. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DResource.MostDetailedMip">
  22154. <summary>
  22155. No documentation.
  22156. </summary>
  22157. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_SRV::MostDetailedMip']/*" />
  22158. <msdn-id>bb172463</msdn-id>
  22159. <unmanaged>unsigned int MostDetailedMip</unmanaged>
  22160. <unmanaged-short>unsigned int MostDetailedMip</unmanaged-short>
  22161. </member>
  22162. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DResource.MipLevels">
  22163. <summary>
  22164. No documentation.
  22165. </summary>
  22166. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_SRV::MipLevels']/*" />
  22167. <msdn-id>bb172463</msdn-id>
  22168. <unmanaged>unsigned int MipLevels</unmanaged>
  22169. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  22170. </member>
  22171. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DArrayResource">
  22172. <summary>
  22173. <p>Specifies the subresource(s) from an array of 1D textures to use in a shader-resource view.</p>
  22174. </summary>
  22175. <remarks>
  22176. <p>This structure is one member of a shader-resource-view description (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription" /></strong>).</p>
  22177. </remarks>
  22178. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_SRV']/*" />
  22179. <msdn-id>bb172460</msdn-id>
  22180. <unmanaged>D3D10_TEX1D_ARRAY_SRV</unmanaged>
  22181. <unmanaged-short>D3D10_TEX1D_ARRAY_SRV</unmanaged-short>
  22182. </member>
  22183. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DArrayResource.MostDetailedMip">
  22184. <summary>
  22185. No documentation.
  22186. </summary>
  22187. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_SRV::MostDetailedMip']/*" />
  22188. <msdn-id>bb172460</msdn-id>
  22189. <unmanaged>unsigned int MostDetailedMip</unmanaged>
  22190. <unmanaged-short>unsigned int MostDetailedMip</unmanaged-short>
  22191. </member>
  22192. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DArrayResource.MipLevels">
  22193. <summary>
  22194. No documentation.
  22195. </summary>
  22196. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_SRV::MipLevels']/*" />
  22197. <msdn-id>bb172460</msdn-id>
  22198. <unmanaged>unsigned int MipLevels</unmanaged>
  22199. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  22200. </member>
  22201. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DArrayResource.FirstArraySlice">
  22202. <summary>
  22203. No documentation.
  22204. </summary>
  22205. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_SRV::FirstArraySlice']/*" />
  22206. <msdn-id>bb172460</msdn-id>
  22207. <unmanaged>unsigned int FirstArraySlice</unmanaged>
  22208. <unmanaged-short>unsigned int FirstArraySlice</unmanaged-short>
  22209. </member>
  22210. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DArrayResource.ArraySize">
  22211. <summary>
  22212. No documentation.
  22213. </summary>
  22214. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX1D_ARRAY_SRV::ArraySize']/*" />
  22215. <msdn-id>bb172460</msdn-id>
  22216. <unmanaged>unsigned int ArraySize</unmanaged>
  22217. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  22218. </member>
  22219. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DResource">
  22220. <summary>
  22221. <p>Specifies the subresource from a 2D texture to use in a shader-resource view.</p>
  22222. </summary>
  22223. <remarks>
  22224. <p>This structure is one member of a shader-resource-view description (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription" /></strong>).</p>
  22225. </remarks>
  22226. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_SRV']/*" />
  22227. <msdn-id>bb172475</msdn-id>
  22228. <unmanaged>D3D10_TEX2D_SRV</unmanaged>
  22229. <unmanaged-short>D3D10_TEX2D_SRV</unmanaged-short>
  22230. </member>
  22231. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DResource.MostDetailedMip">
  22232. <summary>
  22233. No documentation.
  22234. </summary>
  22235. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_SRV::MostDetailedMip']/*" />
  22236. <msdn-id>bb172475</msdn-id>
  22237. <unmanaged>unsigned int MostDetailedMip</unmanaged>
  22238. <unmanaged-short>unsigned int MostDetailedMip</unmanaged-short>
  22239. </member>
  22240. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DResource.MipLevels">
  22241. <summary>
  22242. No documentation.
  22243. </summary>
  22244. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_SRV::MipLevels']/*" />
  22245. <msdn-id>bb172475</msdn-id>
  22246. <unmanaged>unsigned int MipLevels</unmanaged>
  22247. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  22248. </member>
  22249. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DArrayResource">
  22250. <summary>
  22251. <p>Specifies the subresource(s) from an array of 2D textures to use in a shader-resource view.</p>
  22252. </summary>
  22253. <remarks>
  22254. <p>This structure is one member of a shader-resource-view description (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription" /></strong>).</p>
  22255. </remarks>
  22256. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_SRV']/*" />
  22257. <msdn-id>bb172472</msdn-id>
  22258. <unmanaged>D3D10_TEX2D_ARRAY_SRV</unmanaged>
  22259. <unmanaged-short>D3D10_TEX2D_ARRAY_SRV</unmanaged-short>
  22260. </member>
  22261. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DArrayResource.MostDetailedMip">
  22262. <summary>
  22263. No documentation.
  22264. </summary>
  22265. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_SRV::MostDetailedMip']/*" />
  22266. <msdn-id>bb172472</msdn-id>
  22267. <unmanaged>unsigned int MostDetailedMip</unmanaged>
  22268. <unmanaged-short>unsigned int MostDetailedMip</unmanaged-short>
  22269. </member>
  22270. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DArrayResource.MipLevels">
  22271. <summary>
  22272. No documentation.
  22273. </summary>
  22274. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_SRV::MipLevels']/*" />
  22275. <msdn-id>bb172472</msdn-id>
  22276. <unmanaged>unsigned int MipLevels</unmanaged>
  22277. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  22278. </member>
  22279. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DArrayResource.FirstArraySlice">
  22280. <summary>
  22281. No documentation.
  22282. </summary>
  22283. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_SRV::FirstArraySlice']/*" />
  22284. <msdn-id>bb172472</msdn-id>
  22285. <unmanaged>unsigned int FirstArraySlice</unmanaged>
  22286. <unmanaged-short>unsigned int FirstArraySlice</unmanaged-short>
  22287. </member>
  22288. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DArrayResource.ArraySize">
  22289. <summary>
  22290. No documentation.
  22291. </summary>
  22292. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2D_ARRAY_SRV::ArraySize']/*" />
  22293. <msdn-id>bb172472</msdn-id>
  22294. <unmanaged>unsigned int ArraySize</unmanaged>
  22295. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  22296. </member>
  22297. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMultisampledResource">
  22298. <summary>
  22299. <p>Specifies the subresource(s) from a multisampled 2D texture to use in a shader-resource view.</p>
  22300. </summary>
  22301. <remarks>
  22302. <p>Since a multisampled 2D texture contains a single subresource, there is actually nothing to specify in <strong><see cref="T:SharpDX.Direct3D10.RenderTargetViewDescription.Texture2DMultisampledResource" /></strong>. Consequently, <strong>UnusedField_NothingToDefine</strong> is included so that this structure will compile in C.</p>
  22303. </remarks>
  22304. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_SRV']/*" />
  22305. <msdn-id>bb172469</msdn-id>
  22306. <unmanaged>D3D10_TEX2DMS_SRV</unmanaged>
  22307. <unmanaged-short>D3D10_TEX2DMS_SRV</unmanaged-short>
  22308. </member>
  22309. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMultisampledResource.UnusedFieldNothingToDefine">
  22310. <summary>
  22311. No documentation.
  22312. </summary>
  22313. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_SRV::UnusedField_NothingToDefine']/*" />
  22314. <msdn-id>bb172469</msdn-id>
  22315. <unmanaged>unsigned int UnusedField_NothingToDefine</unmanaged>
  22316. <unmanaged-short>unsigned int UnusedField_NothingToDefine</unmanaged-short>
  22317. </member>
  22318. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMultisampledArrayResource">
  22319. <summary>
  22320. <p>Specifies the subresource(s) from an array of multisampled 2D textures to use in a shader-resource view.</p>
  22321. </summary>
  22322. <remarks>
  22323. <p>This structure is one member of a shader-resource-view description (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription" /></strong>).</p>
  22324. </remarks>
  22325. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_ARRAY_SRV']/*" />
  22326. <msdn-id>bb172466</msdn-id>
  22327. <unmanaged>D3D10_TEX2DMS_ARRAY_SRV</unmanaged>
  22328. <unmanaged-short>D3D10_TEX2DMS_ARRAY_SRV</unmanaged-short>
  22329. </member>
  22330. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMultisampledArrayResource.FirstArraySlice">
  22331. <summary>
  22332. No documentation.
  22333. </summary>
  22334. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_ARRAY_SRV::FirstArraySlice']/*" />
  22335. <msdn-id>bb172466</msdn-id>
  22336. <unmanaged>unsigned int FirstArraySlice</unmanaged>
  22337. <unmanaged-short>unsigned int FirstArraySlice</unmanaged-short>
  22338. </member>
  22339. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMultisampledArrayResource.ArraySize">
  22340. <summary>
  22341. No documentation.
  22342. </summary>
  22343. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX2DMS_ARRAY_SRV::ArraySize']/*" />
  22344. <msdn-id>bb172466</msdn-id>
  22345. <unmanaged>unsigned int ArraySize</unmanaged>
  22346. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  22347. </member>
  22348. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture3DResource">
  22349. <summary>
  22350. <p>Specifies the subresource(s) from a 3D texture to use in a shader-resource view.</p>
  22351. </summary>
  22352. <remarks>
  22353. <p>This structure is one member of a shader-resource-view description (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription" /></strong>).</p>
  22354. </remarks>
  22355. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX3D_SRV']/*" />
  22356. <msdn-id>bb172477</msdn-id>
  22357. <unmanaged>D3D10_TEX3D_SRV</unmanaged>
  22358. <unmanaged-short>D3D10_TEX3D_SRV</unmanaged-short>
  22359. </member>
  22360. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture3DResource.MostDetailedMip">
  22361. <summary>
  22362. No documentation.
  22363. </summary>
  22364. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX3D_SRV::MostDetailedMip']/*" />
  22365. <msdn-id>bb172477</msdn-id>
  22366. <unmanaged>unsigned int MostDetailedMip</unmanaged>
  22367. <unmanaged-short>unsigned int MostDetailedMip</unmanaged-short>
  22368. </member>
  22369. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture3DResource.MipLevels">
  22370. <summary>
  22371. No documentation.
  22372. </summary>
  22373. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEX3D_SRV::MipLevels']/*" />
  22374. <msdn-id>bb172477</msdn-id>
  22375. <unmanaged>unsigned int MipLevels</unmanaged>
  22376. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  22377. </member>
  22378. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription.TextureCubeResource">
  22379. <summary>
  22380. <p>Specifies the subresource from a cube texture to use in a shader-resource view.</p>
  22381. </summary>
  22382. <remarks>
  22383. <p>This structure is one member of a shader-resource-view description (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription" /></strong>).</p>
  22384. </remarks>
  22385. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXCUBE_SRV']/*" />
  22386. <msdn-id>bb172478</msdn-id>
  22387. <unmanaged>D3D10_TEXCUBE_SRV</unmanaged>
  22388. <unmanaged-short>D3D10_TEXCUBE_SRV</unmanaged-short>
  22389. </member>
  22390. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.TextureCubeResource.MostDetailedMip">
  22391. <summary>
  22392. No documentation.
  22393. </summary>
  22394. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXCUBE_SRV::MostDetailedMip']/*" />
  22395. <msdn-id>bb172478</msdn-id>
  22396. <unmanaged>unsigned int MostDetailedMip</unmanaged>
  22397. <unmanaged-short>unsigned int MostDetailedMip</unmanaged-short>
  22398. </member>
  22399. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.TextureCubeResource.MipLevels">
  22400. <summary>
  22401. No documentation.
  22402. </summary>
  22403. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXCUBE_SRV::MipLevels']/*" />
  22404. <msdn-id>bb172478</msdn-id>
  22405. <unmanaged>unsigned int MipLevels</unmanaged>
  22406. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  22407. </member>
  22408. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Format">
  22409. <summary>
  22410. <dd> <p>The viewing <strong>format</strong>. See remarks.</p> </dd>
  22411. </summary>
  22412. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::Format']/*" />
  22413. <msdn-id>bb172437</msdn-id>
  22414. <unmanaged>DXGI_FORMAT Format</unmanaged>
  22415. <unmanaged-short>DXGI_FORMAT Format</unmanaged-short>
  22416. </member>
  22417. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Dimension">
  22418. <summary>
  22419. <dd> <p>The resource type of the view. See <strong>D3D10_SRV_DIMENSION</strong>. This should be the same as the resource type of the underlying resource. This parameter also determines which _SRV to use in the union below.</p> </dd>
  22420. </summary>
  22421. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::ViewDimension']/*" />
  22422. <msdn-id>bb172437</msdn-id>
  22423. <unmanaged>D3D_SRV_DIMENSION ViewDimension</unmanaged>
  22424. <unmanaged-short>D3D_SRV_DIMENSION ViewDimension</unmanaged-short>
  22425. </member>
  22426. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Buffer">
  22427. <summary>
  22428. <dd> <p>View the resource as a buffer using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.BufferResource" /></strong>).</p> </dd>
  22429. </summary>
  22430. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::Buffer']/*" />
  22431. <msdn-id>bb172437</msdn-id>
  22432. <unmanaged>D3D10_BUFFER_SRV Buffer</unmanaged>
  22433. <unmanaged-short>D3D10_BUFFER_SRV Buffer</unmanaged-short>
  22434. </member>
  22435. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1D">
  22436. <summary>
  22437. <dd> <p>View the resource as a 1D texture using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DResource" /></strong>).</p> </dd>
  22438. </summary>
  22439. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::Texture1D']/*" />
  22440. <msdn-id>bb172437</msdn-id>
  22441. <unmanaged>D3D10_TEX1D_SRV Texture1D</unmanaged>
  22442. <unmanaged-short>D3D10_TEX1D_SRV Texture1D</unmanaged-short>
  22443. </member>
  22444. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DArray">
  22445. <summary>
  22446. <dd> <p>View the resource as a 1D-texture array using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DArrayResource" /></strong>.</p> </dd>
  22447. </summary>
  22448. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::Texture1DArray']/*" />
  22449. <msdn-id>bb172437</msdn-id>
  22450. <unmanaged>D3D10_TEX1D_ARRAY_SRV Texture1DArray</unmanaged>
  22451. <unmanaged-short>D3D10_TEX1D_ARRAY_SRV Texture1DArray</unmanaged-short>
  22452. </member>
  22453. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2D">
  22454. <summary>
  22455. <dd> <p>View the resource as a 2D-texture using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DResource" /></strong>.</p> </dd>
  22456. </summary>
  22457. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::Texture2D']/*" />
  22458. <msdn-id>bb172437</msdn-id>
  22459. <unmanaged>D3D10_TEX2D_SRV Texture2D</unmanaged>
  22460. <unmanaged-short>D3D10_TEX2D_SRV Texture2D</unmanaged-short>
  22461. </member>
  22462. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DArray">
  22463. <summary>
  22464. <dd> <p>View the resource as a 2D-texture array using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DArrayResource" /></strong>.</p> </dd>
  22465. </summary>
  22466. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::Texture2DArray']/*" />
  22467. <msdn-id>bb172437</msdn-id>
  22468. <unmanaged>D3D10_TEX2D_ARRAY_SRV Texture2DArray</unmanaged>
  22469. <unmanaged-short>D3D10_TEX2D_ARRAY_SRV Texture2DArray</unmanaged-short>
  22470. </member>
  22471. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMS">
  22472. <summary>
  22473. <dd> <p>View the resource as a 2D-multisampled texture using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMultisampledResource" /></strong>.</p> </dd>
  22474. </summary>
  22475. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::Texture2DMS']/*" />
  22476. <msdn-id>bb172437</msdn-id>
  22477. <unmanaged>D3D10_TEX2DMS_SRV Texture2DMS</unmanaged>
  22478. <unmanaged-short>D3D10_TEX2DMS_SRV Texture2DMS</unmanaged-short>
  22479. </member>
  22480. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMSArray">
  22481. <summary>
  22482. <dd> <p>View the resource as a 2D-multisampled-texture array using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMultisampledArrayResource" /></strong>.</p> </dd>
  22483. </summary>
  22484. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::Texture2DMSArray']/*" />
  22485. <msdn-id>bb172437</msdn-id>
  22486. <unmanaged>D3D10_TEX2DMS_ARRAY_SRV Texture2DMSArray</unmanaged>
  22487. <unmanaged-short>D3D10_TEX2DMS_ARRAY_SRV Texture2DMSArray</unmanaged-short>
  22488. </member>
  22489. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture3D">
  22490. <summary>
  22491. <dd> <p>View the resource as a 3D texture using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture3DResource" /></strong>.</p> </dd>
  22492. </summary>
  22493. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::Texture3D']/*" />
  22494. <msdn-id>bb172437</msdn-id>
  22495. <unmanaged>D3D10_TEX3D_SRV Texture3D</unmanaged>
  22496. <unmanaged-short>D3D10_TEX3D_SRV Texture3D</unmanaged-short>
  22497. </member>
  22498. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription.TextureCube">
  22499. <summary>
  22500. <dd> <p>View the resource as a 3D-cube texture using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.TextureCubeResource" /></strong>).</p> </dd>
  22501. </summary>
  22502. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC::TextureCube']/*" />
  22503. <msdn-id>bb172437</msdn-id>
  22504. <unmanaged>D3D10_TEXCUBE_SRV TextureCube</unmanaged>
  22505. <unmanaged-short>D3D10_TEXCUBE_SRV TextureCube</unmanaged-short>
  22506. </member>
  22507. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription1">
  22508. <summary>
  22509. <p>Describes a shader-resource view.</p>
  22510. </summary>
  22511. <remarks>
  22512. <p>A view is a format-specific way to look at the data in a resource. The view determines what data to look at, and how it is cast when read. For more information about how views work, see Views </p><p>When viewing a resource, the resource-view description must specify a typed format, that is compatible with the resource format. So that means that you cannot create a resource-view description using any format with _TYPELESS in the name. You can however view a typeless resource by specifying a typed format for the view. For example, a <see cref="F:SharpDX.DXGI.Format.R32G32B32_Typeless" /> resource can be viewed with one of these typed formats: <see cref="F:SharpDX.DXGI.Format.R32G32B32_Float" />, <see cref="F:SharpDX.DXGI.Format.R32G32B32_UInt" />, and <see cref="F:SharpDX.DXGI.Format.R32G32B32_SInt" />, since these typed formats are compatible with the typeless resource.</p><p>Create a shader-resource-view description by calling <strong><see cref="M:SharpDX.Direct3D10.Device1.CreateShaderResourceView1(SharpDX.Direct3D10.Resource,System.Nullable{SharpDX.Direct3D10.ShaderResourceViewDescription1},SharpDX.Direct3D10.ShaderResourceView1)" /></strong>. To view a shader-resource-view description, call <strong><see cref="M:SharpDX.Direct3D10.ShaderResourceView.GetDescription(SharpDX.Direct3D10.ShaderResourceViewDescription@)" /></strong>.</p><p>This structure requires Windows Vista Service Pack 1.</p>
  22513. </remarks>
  22514. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1']/*" />
  22515. <msdn-id>bb694534</msdn-id>
  22516. <unmanaged>D3D10_SHADER_RESOURCE_VIEW_DESC1</unmanaged>
  22517. <unmanaged-short>D3D10_SHADER_RESOURCE_VIEW_DESC1</unmanaged-short>
  22518. </member>
  22519. <member name="T:SharpDX.Direct3D10.ShaderResourceViewDescription1.TextureCubeArrayResource1">
  22520. <summary>
  22521. <p>Specifies the subresource(s) from an array of cube textures to use in a shader-resource view.</p>
  22522. </summary>
  22523. <remarks>
  22524. <p>This structure is one member of a shader-resource-view description (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription1" /></strong>).</p><p>This structure requires Windows Vista Service Pack 1.</p>
  22525. </remarks>
  22526. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXCUBE_ARRAY_SRV1']/*" />
  22527. <msdn-id>bb694536</msdn-id>
  22528. <unmanaged>D3D10_TEXCUBE_ARRAY_SRV1</unmanaged>
  22529. <unmanaged-short>D3D10_TEXCUBE_ARRAY_SRV1</unmanaged-short>
  22530. </member>
  22531. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.TextureCubeArrayResource1.MostDetailedMip">
  22532. <summary>
  22533. No documentation.
  22534. </summary>
  22535. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXCUBE_ARRAY_SRV1::MostDetailedMip']/*" />
  22536. <msdn-id>bb694536</msdn-id>
  22537. <unmanaged>unsigned int MostDetailedMip</unmanaged>
  22538. <unmanaged-short>unsigned int MostDetailedMip</unmanaged-short>
  22539. </member>
  22540. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.TextureCubeArrayResource1.MipLevels">
  22541. <summary>
  22542. No documentation.
  22543. </summary>
  22544. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXCUBE_ARRAY_SRV1::MipLevels']/*" />
  22545. <msdn-id>bb694536</msdn-id>
  22546. <unmanaged>unsigned int MipLevels</unmanaged>
  22547. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  22548. </member>
  22549. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.TextureCubeArrayResource1.First2DArrayFace">
  22550. <summary>
  22551. No documentation.
  22552. </summary>
  22553. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXCUBE_ARRAY_SRV1::First2DArrayFace']/*" />
  22554. <msdn-id>bb694536</msdn-id>
  22555. <unmanaged>unsigned int First2DArrayFace</unmanaged>
  22556. <unmanaged-short>unsigned int First2DArrayFace</unmanaged-short>
  22557. </member>
  22558. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.TextureCubeArrayResource1.CubeCount">
  22559. <summary>
  22560. No documentation.
  22561. </summary>
  22562. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXCUBE_ARRAY_SRV1::NumCubes']/*" />
  22563. <msdn-id>bb694536</msdn-id>
  22564. <unmanaged>unsigned int NumCubes</unmanaged>
  22565. <unmanaged-short>unsigned int NumCubes</unmanaged-short>
  22566. </member>
  22567. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.Format">
  22568. <summary>
  22569. <dd> <p>The viewing <strong>format</strong>. See remarks.</p> </dd>
  22570. </summary>
  22571. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::Format']/*" />
  22572. <msdn-id>bb694534</msdn-id>
  22573. <unmanaged>DXGI_FORMAT Format</unmanaged>
  22574. <unmanaged-short>DXGI_FORMAT Format</unmanaged-short>
  22575. </member>
  22576. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.Dimension">
  22577. <summary>
  22578. <dd> <p>The resource type of the view. See <strong>D3D10_SRV_DIMENSION1</strong>. This should be the same as the resource type of the underlying resource. This parameter also determines which _SRV to use in the union below.</p> </dd>
  22579. </summary>
  22580. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::ViewDimension']/*" />
  22581. <msdn-id>bb694534</msdn-id>
  22582. <unmanaged>D3D_SRV_DIMENSION ViewDimension</unmanaged>
  22583. <unmanaged-short>D3D_SRV_DIMENSION ViewDimension</unmanaged-short>
  22584. </member>
  22585. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.Buffer">
  22586. <summary>
  22587. <dd> <p>View the resource as a buffer using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.BufferResource" /></strong>).</p> </dd>
  22588. </summary>
  22589. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::Buffer']/*" />
  22590. <msdn-id>bb694534</msdn-id>
  22591. <unmanaged>D3D10_BUFFER_SRV Buffer</unmanaged>
  22592. <unmanaged-short>D3D10_BUFFER_SRV Buffer</unmanaged-short>
  22593. </member>
  22594. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.Texture1D">
  22595. <summary>
  22596. <dd> <p>View the resource as a 1D texture using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DResource" /></strong>).</p> </dd>
  22597. </summary>
  22598. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::Texture1D']/*" />
  22599. <msdn-id>bb694534</msdn-id>
  22600. <unmanaged>D3D10_TEX1D_SRV Texture1D</unmanaged>
  22601. <unmanaged-short>D3D10_TEX1D_SRV Texture1D</unmanaged-short>
  22602. </member>
  22603. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.Texture1DArray">
  22604. <summary>
  22605. <dd> <p>View the resource as a 1D-texture array using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture1DArrayResource" /></strong>.</p> </dd>
  22606. </summary>
  22607. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::Texture1DArray']/*" />
  22608. <msdn-id>bb694534</msdn-id>
  22609. <unmanaged>D3D10_TEX1D_ARRAY_SRV Texture1DArray</unmanaged>
  22610. <unmanaged-short>D3D10_TEX1D_ARRAY_SRV Texture1DArray</unmanaged-short>
  22611. </member>
  22612. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.Texture2D">
  22613. <summary>
  22614. <dd> <p>View the resource as a 2D-texture using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DResource" /></strong>.</p> </dd>
  22615. </summary>
  22616. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::Texture2D']/*" />
  22617. <msdn-id>bb694534</msdn-id>
  22618. <unmanaged>D3D10_TEX2D_SRV Texture2D</unmanaged>
  22619. <unmanaged-short>D3D10_TEX2D_SRV Texture2D</unmanaged-short>
  22620. </member>
  22621. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.Texture2DArray">
  22622. <summary>
  22623. <dd> <p>View the resource as a 2D-texture array using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DArrayResource" /></strong>.</p> </dd>
  22624. </summary>
  22625. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::Texture2DArray']/*" />
  22626. <msdn-id>bb694534</msdn-id>
  22627. <unmanaged>D3D10_TEX2D_ARRAY_SRV Texture2DArray</unmanaged>
  22628. <unmanaged-short>D3D10_TEX2D_ARRAY_SRV Texture2DArray</unmanaged-short>
  22629. </member>
  22630. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.Texture2DMS">
  22631. <summary>
  22632. <dd> <p>View the resource as a 2D-multisampled texture using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMultisampledResource" /></strong>.</p> </dd>
  22633. </summary>
  22634. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::Texture2DMS']/*" />
  22635. <msdn-id>bb694534</msdn-id>
  22636. <unmanaged>D3D10_TEX2DMS_SRV Texture2DMS</unmanaged>
  22637. <unmanaged-short>D3D10_TEX2DMS_SRV Texture2DMS</unmanaged-short>
  22638. </member>
  22639. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.Texture2DMSArray">
  22640. <summary>
  22641. <dd> <p>View the resource as a 2D-multisampled-texture array using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture2DMultisampledArrayResource" /></strong>.</p> </dd>
  22642. </summary>
  22643. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::Texture2DMSArray']/*" />
  22644. <msdn-id>bb694534</msdn-id>
  22645. <unmanaged>D3D10_TEX2DMS_ARRAY_SRV Texture2DMSArray</unmanaged>
  22646. <unmanaged-short>D3D10_TEX2DMS_ARRAY_SRV Texture2DMSArray</unmanaged-short>
  22647. </member>
  22648. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.Texture3D">
  22649. <summary>
  22650. <dd> <p>View the resource as a 3D texture using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.Texture3DResource" /></strong>.</p> </dd>
  22651. </summary>
  22652. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::Texture3D']/*" />
  22653. <msdn-id>bb694534</msdn-id>
  22654. <unmanaged>D3D10_TEX3D_SRV Texture3D</unmanaged>
  22655. <unmanaged-short>D3D10_TEX3D_SRV Texture3D</unmanaged-short>
  22656. </member>
  22657. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.TextureCube">
  22658. <summary>
  22659. <dd> <p>View the resource as a 3D-cube texture using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription.TextureCubeResource" /></strong>).</p> </dd>
  22660. </summary>
  22661. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::TextureCube']/*" />
  22662. <msdn-id>bb694534</msdn-id>
  22663. <unmanaged>D3D10_TEXCUBE_SRV TextureCube</unmanaged>
  22664. <unmanaged-short>D3D10_TEXCUBE_SRV TextureCube</unmanaged-short>
  22665. </member>
  22666. <member name="F:SharpDX.Direct3D10.ShaderResourceViewDescription1.TextureCubeArray">
  22667. <summary>
  22668. <dd> <p>View the resource as an array of cube textures using information from a shader-resource view (see <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceViewDescription1.TextureCubeArrayResource1" /></strong>).</p> </dd>
  22669. </summary>
  22670. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SHADER_RESOURCE_VIEW_DESC1::TextureCubeArray']/*" />
  22671. <msdn-id>bb694534</msdn-id>
  22672. <unmanaged>D3D10_TEXCUBE_ARRAY_SRV1 TextureCubeArray</unmanaged>
  22673. <unmanaged-short>D3D10_TEXCUBE_ARRAY_SRV1 TextureCubeArray</unmanaged-short>
  22674. </member>
  22675. <member name="T:SharpDX.Direct3D10.SkinningChannel">
  22676. <summary>
  22677. <p>The member of the vertex decl to do the software skinning on. This is used with the <strong><see cref="M:SharpDX.Direct3D10.SkinInfo.DoSoftwareSkinning(System.Int32,System.Int32,System.IntPtr,System.Int32,System.IntPtr,System.Int32,SharpDX.Mathematics.Interop.RawMatrix@,System.Nullable{SharpDX.Mathematics.Interop.RawMatrix},SharpDX.Direct3D10.SkinningChannel,System.Int32)" /></strong> API.</p>
  22678. </summary>
  22679. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SKINNING_CHANNEL']/*" />
  22680. <msdn-id>bb172702</msdn-id>
  22681. <unmanaged>D3DX10_SKINNING_CHANNEL</unmanaged>
  22682. <unmanaged-short>D3DX10_SKINNING_CHANNEL</unmanaged-short>
  22683. </member>
  22684. <member name="F:SharpDX.Direct3D10.SkinningChannel.SourceOffset">
  22685. <summary>
  22686. No documentation.
  22687. </summary>
  22688. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SKINNING_CHANNEL::SrcOffset']/*" />
  22689. <msdn-id>bb172702</msdn-id>
  22690. <unmanaged>unsigned int SrcOffset</unmanaged>
  22691. <unmanaged-short>unsigned int SrcOffset</unmanaged-short>
  22692. </member>
  22693. <member name="F:SharpDX.Direct3D10.SkinningChannel.DestinationOffset">
  22694. <summary>
  22695. No documentation.
  22696. </summary>
  22697. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SKINNING_CHANNEL::DestOffset']/*" />
  22698. <msdn-id>bb172702</msdn-id>
  22699. <unmanaged>unsigned int DestOffset</unmanaged>
  22700. <unmanaged-short>unsigned int DestOffset</unmanaged-short>
  22701. </member>
  22702. <member name="F:SharpDX.Direct3D10.SkinningChannel.IsNormal">
  22703. <summary>
  22704. No documentation.
  22705. </summary>
  22706. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SKINNING_CHANNEL::IsNormal']/*" />
  22707. <msdn-id>bb172702</msdn-id>
  22708. <unmanaged>BOOL IsNormal</unmanaged>
  22709. <unmanaged-short>BOOL IsNormal</unmanaged-short>
  22710. </member>
  22711. <member name="T:SharpDX.Direct3D10.SpriteInstance">
  22712. <summary>
  22713. <p>Defines position, texture, and color information about a sprite.</p>
  22714. </summary>
  22715. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE']/*" />
  22716. <msdn-id>bb172703</msdn-id>
  22717. <unmanaged>D3DX10_SPRITE</unmanaged>
  22718. <unmanaged-short>D3DX10_SPRITE</unmanaged-short>
  22719. </member>
  22720. <member name="F:SharpDX.Direct3D10.SpriteInstance.Transform">
  22721. <summary>
  22722. <dd> <p>The sprite's model-world transformation. This defines the position and orientation of the sprite in world space.</p> </dd>
  22723. </summary>
  22724. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE::matWorld']/*" />
  22725. <msdn-id>bb172703</msdn-id>
  22726. <unmanaged>D3DXMATRIX matWorld</unmanaged>
  22727. <unmanaged-short>D3DXMATRIX matWorld</unmanaged-short>
  22728. </member>
  22729. <member name="F:SharpDX.Direct3D10.SpriteInstance.TextureCoordinates">
  22730. <summary>
  22731. <dd> <p>Offset from the upper-left corner of the texture indicating where the sprite image should start in the texture. <strong>TexCoord</strong> is in texture coordinates.</p> </dd>
  22732. </summary>
  22733. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE::TexCoord']/*" />
  22734. <msdn-id>bb172703</msdn-id>
  22735. <unmanaged>D3DXVECTOR2 TexCoord</unmanaged>
  22736. <unmanaged-short>D3DXVECTOR2 TexCoord</unmanaged-short>
  22737. </member>
  22738. <member name="F:SharpDX.Direct3D10.SpriteInstance.TextureDimensions">
  22739. <summary>
  22740. <dd> <p>A vector containing the width and height of the sprite in texture coordinates.</p> </dd>
  22741. </summary>
  22742. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE::TexSize']/*" />
  22743. <msdn-id>bb172703</msdn-id>
  22744. <unmanaged>D3DXVECTOR2 TexSize</unmanaged>
  22745. <unmanaged-short>D3DXVECTOR2 TexSize</unmanaged-short>
  22746. </member>
  22747. <member name="F:SharpDX.Direct3D10.SpriteInstance.Color">
  22748. <summary>
  22749. <dd> <p>A color that will be multiplied with the pixel color before rendering.</p> </dd>
  22750. </summary>
  22751. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE::ColorModulate']/*" />
  22752. <msdn-id>bb172703</msdn-id>
  22753. <unmanaged>D3DXCOLOR ColorModulate</unmanaged>
  22754. <unmanaged-short>D3DXCOLOR ColorModulate</unmanaged-short>
  22755. </member>
  22756. <member name="F:SharpDX.Direct3D10.SpriteInstance.ShaderResourceViewPointer">
  22757. <summary>
  22758. <dd> <p>Pointer to a shader-resource view representing the sprite's texture. See <strong><see cref="T:SharpDX.Direct3D10.ShaderResourceView" /> Interface</strong>.</p> </dd>
  22759. </summary>
  22760. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE::pTexture']/*" />
  22761. <msdn-id>bb172703</msdn-id>
  22762. <unmanaged>ID3D10ShaderResourceView* pTexture</unmanaged>
  22763. <unmanaged-short>ID3D10ShaderResourceView pTexture</unmanaged-short>
  22764. </member>
  22765. <member name="F:SharpDX.Direct3D10.SpriteInstance.TextureIndex">
  22766. <summary>
  22767. <dd> <p>The index of the texture. If pTexture does not represent a texture array, then this should be 0.</p> </dd>
  22768. </summary>
  22769. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_SPRITE::TextureIndex']/*" />
  22770. <msdn-id>bb172703</msdn-id>
  22771. <unmanaged>unsigned int TextureIndex</unmanaged>
  22772. <unmanaged-short>unsigned int TextureIndex</unmanaged-short>
  22773. </member>
  22774. <member name="P:SharpDX.Direct3D10.SpriteInstance.Texture">
  22775. <summary>
  22776. Gets or sets the texture.
  22777. </summary>
  22778. <value>The texture.</value>
  22779. </member>
  22780. <member name="T:SharpDX.Direct3D10.StateBlockMask">
  22781. <summary>
  22782. <p>Indicates the device state.</p>
  22783. </summary>
  22784. <remarks>
  22785. <p>A state-block mask indicates the device states that a pass or a technique changes. The <strong>D3D10StateBlockMaskEnableCapture</strong> function provides a convenient way of setting a range of bitmasks for the array members of <strong><see cref="T:SharpDX.Direct3D10.StateBlockMask" /></strong>.</p>
  22786. </remarks>
  22787. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK']/*" />
  22788. <msdn-id>bb172453</msdn-id>
  22789. <unmanaged>D3D10_STATE_BLOCK_MASK</unmanaged>
  22790. <unmanaged-short>D3D10_STATE_BLOCK_MASK</unmanaged-short>
  22791. </member>
  22792. <member name="F:SharpDX.Direct3D10.StateBlockMask.VertexShader">
  22793. <summary>
  22794. <dd> <p>Boolean value indicating whether to save the vertex shader state.</p> </dd>
  22795. </summary>
  22796. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::VS']/*" />
  22797. <msdn-id>bb172453</msdn-id>
  22798. <unmanaged>bool VS</unmanaged>
  22799. <unmanaged-short>bool VS</unmanaged-short>
  22800. </member>
  22801. <member name="P:SharpDX.Direct3D10.StateBlockMask.VSSamplers">
  22802. <summary>
  22803. <dd> <p>Array of vertex-shader samplers. The array is a multi-byte bitmask where each bit represents one sampler slot.</p> </dd>
  22804. </summary>
  22805. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::VSSamplers']/*" />
  22806. <msdn-id>bb172453</msdn-id>
  22807. <unmanaged>bool VSSamplers[2]</unmanaged>
  22808. <unmanaged-short>bool VSSamplers</unmanaged-short>
  22809. </member>
  22810. <member name="P:SharpDX.Direct3D10.StateBlockMask.VSShaderResources">
  22811. <summary>
  22812. <dd> <p>Array of vertex-shader resources. The array is a multi-byte bitmask where each bit represents one resource slot.</p> </dd>
  22813. </summary>
  22814. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::VSShaderResources']/*" />
  22815. <msdn-id>bb172453</msdn-id>
  22816. <unmanaged>bool VSShaderResources[16]</unmanaged>
  22817. <unmanaged-short>bool VSShaderResources</unmanaged-short>
  22818. </member>
  22819. <member name="P:SharpDX.Direct3D10.StateBlockMask.VSConstantBuffers">
  22820. <summary>
  22821. <dd> <p>Array of vertex-shader constant buffers. The array is a multi-byte bitmask where each bit represents one constant buffer slot.</p> </dd>
  22822. </summary>
  22823. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::VSConstantBuffers']/*" />
  22824. <msdn-id>bb172453</msdn-id>
  22825. <unmanaged>bool VSConstantBuffers[2]</unmanaged>
  22826. <unmanaged-short>bool VSConstantBuffers</unmanaged-short>
  22827. </member>
  22828. <member name="F:SharpDX.Direct3D10.StateBlockMask.GeometryShader">
  22829. <summary>
  22830. <dd> <p>Boolean value indicating whether to save the geometry shader state.</p> </dd>
  22831. </summary>
  22832. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::GS']/*" />
  22833. <msdn-id>bb172453</msdn-id>
  22834. <unmanaged>bool GS</unmanaged>
  22835. <unmanaged-short>bool GS</unmanaged-short>
  22836. </member>
  22837. <member name="P:SharpDX.Direct3D10.StateBlockMask.GSSamplers">
  22838. <summary>
  22839. <dd> <p>Array of geometry-shader samplers. The array is a multi-byte bitmask where each bit represents one sampler slot.</p> </dd>
  22840. </summary>
  22841. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::GSSamplers']/*" />
  22842. <msdn-id>bb172453</msdn-id>
  22843. <unmanaged>bool GSSamplers[2]</unmanaged>
  22844. <unmanaged-short>bool GSSamplers</unmanaged-short>
  22845. </member>
  22846. <member name="P:SharpDX.Direct3D10.StateBlockMask.GSShaderResources">
  22847. <summary>
  22848. <dd> <p>Array of geometry-shader resources. The array is a multi-byte bitmask where each bit represents one resource slot.</p> </dd>
  22849. </summary>
  22850. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::GSShaderResources']/*" />
  22851. <msdn-id>bb172453</msdn-id>
  22852. <unmanaged>bool GSShaderResources[16]</unmanaged>
  22853. <unmanaged-short>bool GSShaderResources</unmanaged-short>
  22854. </member>
  22855. <member name="P:SharpDX.Direct3D10.StateBlockMask.GSConstantBuffers">
  22856. <summary>
  22857. <dd> <p>Array of geometry-shader constant buffers. The array is a multi-byte bitmask where each bit represents one buffer slot.</p> </dd>
  22858. </summary>
  22859. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::GSConstantBuffers']/*" />
  22860. <msdn-id>bb172453</msdn-id>
  22861. <unmanaged>bool GSConstantBuffers[2]</unmanaged>
  22862. <unmanaged-short>bool GSConstantBuffers</unmanaged-short>
  22863. </member>
  22864. <member name="F:SharpDX.Direct3D10.StateBlockMask.PixelShader">
  22865. <summary>
  22866. <dd> <p>Boolean value indicating whether to save the pixel shader state.</p> </dd>
  22867. </summary>
  22868. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::PS']/*" />
  22869. <msdn-id>bb172453</msdn-id>
  22870. <unmanaged>bool PS</unmanaged>
  22871. <unmanaged-short>bool PS</unmanaged-short>
  22872. </member>
  22873. <member name="P:SharpDX.Direct3D10.StateBlockMask.PSSamplers">
  22874. <summary>
  22875. <dd> <p>Array of pixel-shader samplers. The array is a multi-byte bitmask where each bit represents one sampler slot.</p> </dd>
  22876. </summary>
  22877. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::PSSamplers']/*" />
  22878. <msdn-id>bb172453</msdn-id>
  22879. <unmanaged>bool PSSamplers[2]</unmanaged>
  22880. <unmanaged-short>bool PSSamplers</unmanaged-short>
  22881. </member>
  22882. <member name="P:SharpDX.Direct3D10.StateBlockMask.PSShaderResources">
  22883. <summary>
  22884. <dd> <p>Array of pixel-shader resources. The array is a multi-byte bitmask where each bit represents one resource slot.</p> </dd>
  22885. </summary>
  22886. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::PSShaderResources']/*" />
  22887. <msdn-id>bb172453</msdn-id>
  22888. <unmanaged>bool PSShaderResources[16]</unmanaged>
  22889. <unmanaged-short>bool PSShaderResources</unmanaged-short>
  22890. </member>
  22891. <member name="P:SharpDX.Direct3D10.StateBlockMask.PSConstantBuffers">
  22892. <summary>
  22893. <dd> <p>Array of pixel-shader constant buffers. The array is a multi-byte bitmask where each bit represents one constant buffer slot.</p> </dd>
  22894. </summary>
  22895. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::PSConstantBuffers']/*" />
  22896. <msdn-id>bb172453</msdn-id>
  22897. <unmanaged>bool PSConstantBuffers[2]</unmanaged>
  22898. <unmanaged-short>bool PSConstantBuffers</unmanaged-short>
  22899. </member>
  22900. <member name="P:SharpDX.Direct3D10.StateBlockMask.IAVertexBuffers">
  22901. <summary>
  22902. <dd> <p>Array of vertex buffers. The array is a multi-byte bitmask where each bit represents one resource slot.</p> </dd>
  22903. </summary>
  22904. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::IAVertexBuffers']/*" />
  22905. <msdn-id>bb172453</msdn-id>
  22906. <unmanaged>bool IAVertexBuffers[2]</unmanaged>
  22907. <unmanaged-short>bool IAVertexBuffers</unmanaged-short>
  22908. </member>
  22909. <member name="F:SharpDX.Direct3D10.StateBlockMask.IAIndexBuffer">
  22910. <summary>
  22911. <dd> <p>Boolean value indicating whether to save the index buffer state.</p> </dd>
  22912. </summary>
  22913. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::IAIndexBuffer']/*" />
  22914. <msdn-id>bb172453</msdn-id>
  22915. <unmanaged>bool IAIndexBuffer</unmanaged>
  22916. <unmanaged-short>bool IAIndexBuffer</unmanaged-short>
  22917. </member>
  22918. <member name="F:SharpDX.Direct3D10.StateBlockMask.IAInputLayout">
  22919. <summary>
  22920. <dd> <p>Boolean value indicating whether to save the input layout state.</p> </dd>
  22921. </summary>
  22922. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::IAInputLayout']/*" />
  22923. <msdn-id>bb172453</msdn-id>
  22924. <unmanaged>bool IAInputLayout</unmanaged>
  22925. <unmanaged-short>bool IAInputLayout</unmanaged-short>
  22926. </member>
  22927. <member name="F:SharpDX.Direct3D10.StateBlockMask.IAPrimitiveTopology">
  22928. <summary>
  22929. <dd> <p>Boolean value indicating whether to save the primitive topology state.</p> </dd>
  22930. </summary>
  22931. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::IAPrimitiveTopology']/*" />
  22932. <msdn-id>bb172453</msdn-id>
  22933. <unmanaged>bool IAPrimitiveTopology</unmanaged>
  22934. <unmanaged-short>bool IAPrimitiveTopology</unmanaged-short>
  22935. </member>
  22936. <member name="F:SharpDX.Direct3D10.StateBlockMask.OMRenderTargets">
  22937. <summary>
  22938. <dd> <p>Boolean value indicating whether to save the render targets states.</p> </dd>
  22939. </summary>
  22940. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::OMRenderTargets']/*" />
  22941. <msdn-id>bb172453</msdn-id>
  22942. <unmanaged>bool OMRenderTargets</unmanaged>
  22943. <unmanaged-short>bool OMRenderTargets</unmanaged-short>
  22944. </member>
  22945. <member name="F:SharpDX.Direct3D10.StateBlockMask.OMDepthStencilState">
  22946. <summary>
  22947. <dd> <p>Boolean value indicating whether to save the depth-stencil state.</p> </dd>
  22948. </summary>
  22949. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::OMDepthStencilState']/*" />
  22950. <msdn-id>bb172453</msdn-id>
  22951. <unmanaged>bool OMDepthStencilState</unmanaged>
  22952. <unmanaged-short>bool OMDepthStencilState</unmanaged-short>
  22953. </member>
  22954. <member name="F:SharpDX.Direct3D10.StateBlockMask.OMBlendState">
  22955. <summary>
  22956. <dd> <p>Boolean value indicating whether to save the blend state.</p> </dd>
  22957. </summary>
  22958. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::OMBlendState']/*" />
  22959. <msdn-id>bb172453</msdn-id>
  22960. <unmanaged>bool OMBlendState</unmanaged>
  22961. <unmanaged-short>bool OMBlendState</unmanaged-short>
  22962. </member>
  22963. <member name="F:SharpDX.Direct3D10.StateBlockMask.RSViewports">
  22964. <summary>
  22965. <dd> <p>Boolean value indicating whether to save the viewports states.</p> </dd>
  22966. </summary>
  22967. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::RSViewports']/*" />
  22968. <msdn-id>bb172453</msdn-id>
  22969. <unmanaged>bool RSViewports</unmanaged>
  22970. <unmanaged-short>bool RSViewports</unmanaged-short>
  22971. </member>
  22972. <member name="F:SharpDX.Direct3D10.StateBlockMask.RSScissorRects">
  22973. <summary>
  22974. <dd> <p>Boolean value indicating whether to save the scissor rectangles states.</p> </dd>
  22975. </summary>
  22976. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::RSScissorRects']/*" />
  22977. <msdn-id>bb172453</msdn-id>
  22978. <unmanaged>bool RSScissorRects</unmanaged>
  22979. <unmanaged-short>bool RSScissorRects</unmanaged-short>
  22980. </member>
  22981. <member name="F:SharpDX.Direct3D10.StateBlockMask.RSRasterizerState">
  22982. <summary>
  22983. <dd> <p>Boolean value indicating whether to save the rasterizer state.</p> </dd>
  22984. </summary>
  22985. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::RSRasterizerState']/*" />
  22986. <msdn-id>bb172453</msdn-id>
  22987. <unmanaged>bool RSRasterizerState</unmanaged>
  22988. <unmanaged-short>bool RSRasterizerState</unmanaged-short>
  22989. </member>
  22990. <member name="F:SharpDX.Direct3D10.StateBlockMask.SOBuffers">
  22991. <summary>
  22992. <dd> <p>Boolean value indicating whether to save the stream-out buffers states.</p> </dd>
  22993. </summary>
  22994. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::SOBuffers']/*" />
  22995. <msdn-id>bb172453</msdn-id>
  22996. <unmanaged>bool SOBuffers</unmanaged>
  22997. <unmanaged-short>bool SOBuffers</unmanaged-short>
  22998. </member>
  22999. <member name="F:SharpDX.Direct3D10.StateBlockMask.Predication">
  23000. <summary>
  23001. <dd> <p>Boolean value indicating whether to save the predication state.</p> </dd>
  23002. </summary>
  23003. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_STATE_BLOCK_MASK::Predication']/*" />
  23004. <msdn-id>bb172453</msdn-id>
  23005. <unmanaged>bool Predication</unmanaged>
  23006. <unmanaged-short>bool Predication</unmanaged-short>
  23007. </member>
  23008. <member name="T:SharpDX.Direct3D10.StreamOutputElement">
  23009. <summary>
  23010. <p>Description of a vertex element in a vertex buffer in an output slot.</p>
  23011. </summary>
  23012. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SO_DECLARATION_ENTRY']/*" />
  23013. <msdn-id>bb172450</msdn-id>
  23014. <unmanaged>D3D10_SO_DECLARATION_ENTRY</unmanaged>
  23015. <unmanaged-short>D3D10_SO_DECLARATION_ENTRY</unmanaged-short>
  23016. </member>
  23017. <member name="F:SharpDX.Direct3D10.StreamOutputElement.SemanticName">
  23018. <summary>
  23019. <dd> <p>Type of output element. Possible values: "POSITION", "NORMAL", or "TEXCOORD0".</p> </dd>
  23020. </summary>
  23021. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SO_DECLARATION_ENTRY::SemanticName']/*" />
  23022. <msdn-id>bb172450</msdn-id>
  23023. <unmanaged>const char* SemanticName</unmanaged>
  23024. <unmanaged-short>char SemanticName</unmanaged-short>
  23025. </member>
  23026. <member name="F:SharpDX.Direct3D10.StreamOutputElement.SemanticIndex">
  23027. <summary>
  23028. <dd> <p>Output element's zero-based index. Should be used if, for example, you have more than one texture coordinate stored in each vertex.</p> </dd>
  23029. </summary>
  23030. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SO_DECLARATION_ENTRY::SemanticIndex']/*" />
  23031. <msdn-id>bb172450</msdn-id>
  23032. <unmanaged>unsigned int SemanticIndex</unmanaged>
  23033. <unmanaged-short>unsigned int SemanticIndex</unmanaged-short>
  23034. </member>
  23035. <member name="F:SharpDX.Direct3D10.StreamOutputElement.StartComponent">
  23036. <summary>
  23037. <dd> <p>Which component of the entry to begin writing out to. Valid values are 0 ~ 3. For example, if you only wish to output to the y and z components of a position, then StartComponent should be 1 and ComponentCount should be 2.</p> </dd>
  23038. </summary>
  23039. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SO_DECLARATION_ENTRY::StartComponent']/*" />
  23040. <msdn-id>bb172450</msdn-id>
  23041. <unmanaged>unsigned char StartComponent</unmanaged>
  23042. <unmanaged-short>unsigned char StartComponent</unmanaged-short>
  23043. </member>
  23044. <member name="F:SharpDX.Direct3D10.StreamOutputElement.ComponentCount">
  23045. <summary>
  23046. <dd> <p>The number of components of the entry to write out to. Valid values are 1 ~ 4. For example, if you only wish to output to the y and z components of a position, then StartComponent should be 1 and ComponentCount should be 2.</p> </dd>
  23047. </summary>
  23048. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SO_DECLARATION_ENTRY::ComponentCount']/*" />
  23049. <msdn-id>bb172450</msdn-id>
  23050. <unmanaged>unsigned char ComponentCount</unmanaged>
  23051. <unmanaged-short>unsigned char ComponentCount</unmanaged-short>
  23052. </member>
  23053. <member name="F:SharpDX.Direct3D10.StreamOutputElement.OutputSlot">
  23054. <summary>
  23055. <dd> <p>The output slot that contains the vertex buffer that contains this output entry.</p> </dd>
  23056. </summary>
  23057. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_SO_DECLARATION_ENTRY::OutputSlot']/*" />
  23058. <msdn-id>bb172450</msdn-id>
  23059. <unmanaged>unsigned char OutputSlot</unmanaged>
  23060. <unmanaged-short>unsigned char OutputSlot</unmanaged-short>
  23061. </member>
  23062. <member name="M:SharpDX.Direct3D10.StreamOutputElement.#ctor(System.String,System.Int32,System.Byte,System.Byte,System.Byte)">
  23063. <summary>
  23064. Initializes a new instance of the <see cref="T:SharpDX.Direct3D10.StreamOutputElement"/> struct.
  23065. </summary>
  23066. <param name="semanticName">Name of the semantic.</param>
  23067. <param name="semanticIndex">Index of the semantic.</param>
  23068. <param name="startComponent">The start component.</param>
  23069. <param name="componentCount">The component count.</param>
  23070. <param name="outputSlot">The output slot.</param>
  23071. </member>
  23072. <member name="T:SharpDX.Direct3D10.StreamOutputStatistics">
  23073. <summary>
  23074. <p>Query information about the amount of data streamed out to the stream-output buffers in between <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.Begin" /></strong> and <strong><see cref="M:SharpDX.Direct3D10.Asynchronous.End" /></strong>.</p>
  23075. </summary>
  23076. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_SO_STATISTICS']/*" />
  23077. <msdn-id>bb172403</msdn-id>
  23078. <unmanaged>D3D10_QUERY_DATA_SO_STATISTICS</unmanaged>
  23079. <unmanaged-short>D3D10_QUERY_DATA_SO_STATISTICS</unmanaged-short>
  23080. </member>
  23081. <member name="F:SharpDX.Direct3D10.StreamOutputStatistics.NumPrimitivesWritten">
  23082. <summary>
  23083. No documentation.
  23084. </summary>
  23085. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_SO_STATISTICS::NumPrimitivesWritten']/*" />
  23086. <msdn-id>bb172403</msdn-id>
  23087. <unmanaged>unsigned longlong NumPrimitivesWritten</unmanaged>
  23088. <unmanaged-short>unsigned longlong NumPrimitivesWritten</unmanaged-short>
  23089. </member>
  23090. <member name="F:SharpDX.Direct3D10.StreamOutputStatistics.PrimitivesStorageNeeded">
  23091. <summary>
  23092. No documentation.
  23093. </summary>
  23094. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_QUERY_DATA_SO_STATISTICS::PrimitivesStorageNeeded']/*" />
  23095. <msdn-id>bb172403</msdn-id>
  23096. <unmanaged>unsigned longlong PrimitivesStorageNeeded</unmanaged>
  23097. <unmanaged-short>unsigned longlong PrimitivesStorageNeeded</unmanaged-short>
  23098. </member>
  23099. <member name="T:SharpDX.Direct3D10.Texture1DDescription">
  23100. <summary>
  23101. <p>Describes a 1D texture.</p>
  23102. </summary>
  23103. <remarks>
  23104. <p>This structure is used in a call to <strong><see cref="M:SharpDX.Direct3D10.Device.CreateTexture1D(SharpDX.Direct3D10.Texture1DDescription@,SharpDX.DataBox[],SharpDX.Direct3D10.Texture1D)" /></strong>. A helpful derived structure CD3D10_TEXTURE1D_DESC is declared in D3D10.h, to help create a texture description.</p>
  23105. </remarks>
  23106. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE1D_DESC']/*" />
  23107. <msdn-id>bb172479</msdn-id>
  23108. <unmanaged>D3D10_TEXTURE1D_DESC</unmanaged>
  23109. <unmanaged-short>D3D10_TEXTURE1D_DESC</unmanaged-short>
  23110. </member>
  23111. <member name="F:SharpDX.Direct3D10.Texture1DDescription.Width">
  23112. <summary>
  23113. No documentation.
  23114. </summary>
  23115. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE1D_DESC::Width']/*" />
  23116. <msdn-id>bb172479</msdn-id>
  23117. <unmanaged>unsigned int Width</unmanaged>
  23118. <unmanaged-short>unsigned int Width</unmanaged-short>
  23119. </member>
  23120. <member name="F:SharpDX.Direct3D10.Texture1DDescription.MipLevels">
  23121. <summary>
  23122. No documentation.
  23123. </summary>
  23124. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE1D_DESC::MipLevels']/*" />
  23125. <msdn-id>bb172479</msdn-id>
  23126. <unmanaged>unsigned int MipLevels</unmanaged>
  23127. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  23128. </member>
  23129. <member name="F:SharpDX.Direct3D10.Texture1DDescription.ArraySize">
  23130. <summary>
  23131. No documentation.
  23132. </summary>
  23133. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE1D_DESC::ArraySize']/*" />
  23134. <msdn-id>bb172479</msdn-id>
  23135. <unmanaged>unsigned int ArraySize</unmanaged>
  23136. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  23137. </member>
  23138. <member name="F:SharpDX.Direct3D10.Texture1DDescription.Format">
  23139. <summary>
  23140. No documentation.
  23141. </summary>
  23142. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE1D_DESC::Format']/*" />
  23143. <msdn-id>bb172479</msdn-id>
  23144. <unmanaged>DXGI_FORMAT Format</unmanaged>
  23145. <unmanaged-short>DXGI_FORMAT Format</unmanaged-short>
  23146. </member>
  23147. <member name="F:SharpDX.Direct3D10.Texture1DDescription.Usage">
  23148. <summary>
  23149. No documentation.
  23150. </summary>
  23151. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE1D_DESC::Usage']/*" />
  23152. <msdn-id>bb172479</msdn-id>
  23153. <unmanaged>D3D10_USAGE Usage</unmanaged>
  23154. <unmanaged-short>D3D10_USAGE Usage</unmanaged-short>
  23155. </member>
  23156. <member name="F:SharpDX.Direct3D10.Texture1DDescription.BindFlags">
  23157. <summary>
  23158. No documentation.
  23159. </summary>
  23160. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE1D_DESC::BindFlags']/*" />
  23161. <msdn-id>bb172479</msdn-id>
  23162. <unmanaged>D3D10_BIND_FLAG BindFlags</unmanaged>
  23163. <unmanaged-short>D3D10_BIND_FLAG BindFlags</unmanaged-short>
  23164. </member>
  23165. <member name="F:SharpDX.Direct3D10.Texture1DDescription.CpuAccessFlags">
  23166. <summary>
  23167. No documentation.
  23168. </summary>
  23169. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE1D_DESC::CPUAccessFlags']/*" />
  23170. <msdn-id>bb172479</msdn-id>
  23171. <unmanaged>D3D10_CPU_ACCESS_FLAG CPUAccessFlags</unmanaged>
  23172. <unmanaged-short>D3D10_CPU_ACCESS_FLAG CPUAccessFlags</unmanaged-short>
  23173. </member>
  23174. <member name="F:SharpDX.Direct3D10.Texture1DDescription.OptionFlags">
  23175. <summary>
  23176. No documentation.
  23177. </summary>
  23178. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE1D_DESC::MiscFlags']/*" />
  23179. <msdn-id>bb172479</msdn-id>
  23180. <unmanaged>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged>
  23181. <unmanaged-short>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged-short>
  23182. </member>
  23183. <member name="T:SharpDX.Direct3D10.Texture2DDescription">
  23184. <summary>
  23185. <p>Describes a 2D texture.</p>
  23186. </summary>
  23187. <remarks>
  23188. <p>This structure is used in a call to <strong><see cref="M:SharpDX.Direct3D10.Device.CreateTexture2D(SharpDX.Direct3D10.Texture2DDescription@,SharpDX.DataBox[],SharpDX.Direct3D10.Texture2D)" /></strong>. A helpful derived structure CD3D10_TEXTURE2D_DESC is declared in D3D10.h, to help create a texture description.</p><p>The device places some size restrictions (must be multiples of a minimum size) for a subsampled, block compressed, or bit-format resource.</p>
  23189. </remarks>
  23190. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC']/*" />
  23191. <msdn-id>bb172480</msdn-id>
  23192. <unmanaged>D3D10_TEXTURE2D_DESC</unmanaged>
  23193. <unmanaged-short>D3D10_TEXTURE2D_DESC</unmanaged-short>
  23194. </member>
  23195. <member name="F:SharpDX.Direct3D10.Texture2DDescription.Width">
  23196. <summary>
  23197. No documentation.
  23198. </summary>
  23199. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC::Width']/*" />
  23200. <msdn-id>bb172480</msdn-id>
  23201. <unmanaged>unsigned int Width</unmanaged>
  23202. <unmanaged-short>unsigned int Width</unmanaged-short>
  23203. </member>
  23204. <member name="F:SharpDX.Direct3D10.Texture2DDescription.Height">
  23205. <summary>
  23206. No documentation.
  23207. </summary>
  23208. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC::Height']/*" />
  23209. <msdn-id>bb172480</msdn-id>
  23210. <unmanaged>unsigned int Height</unmanaged>
  23211. <unmanaged-short>unsigned int Height</unmanaged-short>
  23212. </member>
  23213. <member name="F:SharpDX.Direct3D10.Texture2DDescription.MipLevels">
  23214. <summary>
  23215. No documentation.
  23216. </summary>
  23217. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC::MipLevels']/*" />
  23218. <msdn-id>bb172480</msdn-id>
  23219. <unmanaged>unsigned int MipLevels</unmanaged>
  23220. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  23221. </member>
  23222. <member name="F:SharpDX.Direct3D10.Texture2DDescription.ArraySize">
  23223. <summary>
  23224. No documentation.
  23225. </summary>
  23226. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC::ArraySize']/*" />
  23227. <msdn-id>bb172480</msdn-id>
  23228. <unmanaged>unsigned int ArraySize</unmanaged>
  23229. <unmanaged-short>unsigned int ArraySize</unmanaged-short>
  23230. </member>
  23231. <member name="F:SharpDX.Direct3D10.Texture2DDescription.Format">
  23232. <summary>
  23233. No documentation.
  23234. </summary>
  23235. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC::Format']/*" />
  23236. <msdn-id>bb172480</msdn-id>
  23237. <unmanaged>DXGI_FORMAT Format</unmanaged>
  23238. <unmanaged-short>DXGI_FORMAT Format</unmanaged-short>
  23239. </member>
  23240. <member name="F:SharpDX.Direct3D10.Texture2DDescription.SampleDescription">
  23241. <summary>
  23242. No documentation.
  23243. </summary>
  23244. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC::SampleDesc']/*" />
  23245. <msdn-id>bb172480</msdn-id>
  23246. <unmanaged>DXGI_SAMPLE_DESC SampleDesc</unmanaged>
  23247. <unmanaged-short>DXGI_SAMPLE_DESC SampleDesc</unmanaged-short>
  23248. </member>
  23249. <member name="F:SharpDX.Direct3D10.Texture2DDescription.Usage">
  23250. <summary>
  23251. No documentation.
  23252. </summary>
  23253. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC::Usage']/*" />
  23254. <msdn-id>bb172480</msdn-id>
  23255. <unmanaged>D3D10_USAGE Usage</unmanaged>
  23256. <unmanaged-short>D3D10_USAGE Usage</unmanaged-short>
  23257. </member>
  23258. <member name="F:SharpDX.Direct3D10.Texture2DDescription.BindFlags">
  23259. <summary>
  23260. No documentation.
  23261. </summary>
  23262. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC::BindFlags']/*" />
  23263. <msdn-id>bb172480</msdn-id>
  23264. <unmanaged>D3D10_BIND_FLAG BindFlags</unmanaged>
  23265. <unmanaged-short>D3D10_BIND_FLAG BindFlags</unmanaged-short>
  23266. </member>
  23267. <member name="F:SharpDX.Direct3D10.Texture2DDescription.CpuAccessFlags">
  23268. <summary>
  23269. No documentation.
  23270. </summary>
  23271. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC::CPUAccessFlags']/*" />
  23272. <msdn-id>bb172480</msdn-id>
  23273. <unmanaged>D3D10_CPU_ACCESS_FLAG CPUAccessFlags</unmanaged>
  23274. <unmanaged-short>D3D10_CPU_ACCESS_FLAG CPUAccessFlags</unmanaged-short>
  23275. </member>
  23276. <member name="F:SharpDX.Direct3D10.Texture2DDescription.OptionFlags">
  23277. <summary>
  23278. No documentation.
  23279. </summary>
  23280. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE2D_DESC::MiscFlags']/*" />
  23281. <msdn-id>bb172480</msdn-id>
  23282. <unmanaged>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged>
  23283. <unmanaged-short>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged-short>
  23284. </member>
  23285. <member name="T:SharpDX.Direct3D10.Texture3DDescription">
  23286. <summary>
  23287. <p>Describes a 3D texture.</p>
  23288. </summary>
  23289. <remarks>
  23290. <p>This structure is used in a call to <strong><see cref="M:SharpDX.Direct3D10.Device.CreateTexture3D(SharpDX.Direct3D10.Texture3DDescription@,SharpDX.DataBox[],SharpDX.Direct3D10.Texture3D)" /></strong>. A helpful derived structure CD3D10_TEXTURE3D_DESC is declared in D3D10.h, to help create a texture description.</p><p>The device restricts the size of subsampled, block compressed (see Block Compression (Direct3D 10)), and bit format resources to be multiples of sizes specific to each format.</p>
  23291. </remarks>
  23292. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE3D_DESC']/*" />
  23293. <msdn-id>bb172481</msdn-id>
  23294. <unmanaged>D3D10_TEXTURE3D_DESC</unmanaged>
  23295. <unmanaged-short>D3D10_TEXTURE3D_DESC</unmanaged-short>
  23296. </member>
  23297. <member name="F:SharpDX.Direct3D10.Texture3DDescription.Width">
  23298. <summary>
  23299. No documentation.
  23300. </summary>
  23301. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE3D_DESC::Width']/*" />
  23302. <msdn-id>bb172481</msdn-id>
  23303. <unmanaged>unsigned int Width</unmanaged>
  23304. <unmanaged-short>unsigned int Width</unmanaged-short>
  23305. </member>
  23306. <member name="F:SharpDX.Direct3D10.Texture3DDescription.Height">
  23307. <summary>
  23308. No documentation.
  23309. </summary>
  23310. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE3D_DESC::Height']/*" />
  23311. <msdn-id>bb172481</msdn-id>
  23312. <unmanaged>unsigned int Height</unmanaged>
  23313. <unmanaged-short>unsigned int Height</unmanaged-short>
  23314. </member>
  23315. <member name="F:SharpDX.Direct3D10.Texture3DDescription.Depth">
  23316. <summary>
  23317. No documentation.
  23318. </summary>
  23319. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE3D_DESC::Depth']/*" />
  23320. <msdn-id>bb172481</msdn-id>
  23321. <unmanaged>unsigned int Depth</unmanaged>
  23322. <unmanaged-short>unsigned int Depth</unmanaged-short>
  23323. </member>
  23324. <member name="F:SharpDX.Direct3D10.Texture3DDescription.MipLevels">
  23325. <summary>
  23326. No documentation.
  23327. </summary>
  23328. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE3D_DESC::MipLevels']/*" />
  23329. <msdn-id>bb172481</msdn-id>
  23330. <unmanaged>unsigned int MipLevels</unmanaged>
  23331. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  23332. </member>
  23333. <member name="F:SharpDX.Direct3D10.Texture3DDescription.Format">
  23334. <summary>
  23335. No documentation.
  23336. </summary>
  23337. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE3D_DESC::Format']/*" />
  23338. <msdn-id>bb172481</msdn-id>
  23339. <unmanaged>DXGI_FORMAT Format</unmanaged>
  23340. <unmanaged-short>DXGI_FORMAT Format</unmanaged-short>
  23341. </member>
  23342. <member name="F:SharpDX.Direct3D10.Texture3DDescription.Usage">
  23343. <summary>
  23344. No documentation.
  23345. </summary>
  23346. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE3D_DESC::Usage']/*" />
  23347. <msdn-id>bb172481</msdn-id>
  23348. <unmanaged>D3D10_USAGE Usage</unmanaged>
  23349. <unmanaged-short>D3D10_USAGE Usage</unmanaged-short>
  23350. </member>
  23351. <member name="F:SharpDX.Direct3D10.Texture3DDescription.BindFlags">
  23352. <summary>
  23353. No documentation.
  23354. </summary>
  23355. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE3D_DESC::BindFlags']/*" />
  23356. <msdn-id>bb172481</msdn-id>
  23357. <unmanaged>D3D10_BIND_FLAG BindFlags</unmanaged>
  23358. <unmanaged-short>D3D10_BIND_FLAG BindFlags</unmanaged-short>
  23359. </member>
  23360. <member name="F:SharpDX.Direct3D10.Texture3DDescription.CpuAccessFlags">
  23361. <summary>
  23362. No documentation.
  23363. </summary>
  23364. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE3D_DESC::CPUAccessFlags']/*" />
  23365. <msdn-id>bb172481</msdn-id>
  23366. <unmanaged>D3D10_CPU_ACCESS_FLAG CPUAccessFlags</unmanaged>
  23367. <unmanaged-short>D3D10_CPU_ACCESS_FLAG CPUAccessFlags</unmanaged-short>
  23368. </member>
  23369. <member name="F:SharpDX.Direct3D10.Texture3DDescription.OptionFlags">
  23370. <summary>
  23371. No documentation.
  23372. </summary>
  23373. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3D10_TEXTURE3D_DESC::MiscFlags']/*" />
  23374. <msdn-id>bb172481</msdn-id>
  23375. <unmanaged>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged>
  23376. <unmanaged-short>D3D10_RESOURCE_MISC_FLAG MiscFlags</unmanaged-short>
  23377. </member>
  23378. <member name="T:SharpDX.Direct3D10.TextureLoadInformation">
  23379. <summary>
  23380. <p>Describes parameters used to load a texture from another texture.</p>
  23381. </summary>
  23382. <remarks>
  23383. <p>This structure is used in a call to <strong><see cref="M:SharpDX.Direct3D10.D3DX10.LoadTextureFromTexture(SharpDX.Direct3D10.Resource,SharpDX.Direct3D10.TextureLoadInformation,SharpDX.Direct3D10.Resource)" /></strong>.</p>
  23384. </remarks>
  23385. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO']/*" />
  23386. <msdn-id>bb172705</msdn-id>
  23387. <unmanaged>D3DX10_TEXTURE_LOAD_INFO</unmanaged>
  23388. <unmanaged-short>D3DX10_TEXTURE_LOAD_INFO</unmanaged-short>
  23389. </member>
  23390. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.SourceRegionPointer">
  23391. <summary>
  23392. <dd> <p>Source texture box (see <strong><see cref="T:SharpDX.Direct3D10.ResourceRegion" /></strong>).</p> </dd>
  23393. </summary>
  23394. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO::pSrcBox']/*" />
  23395. <msdn-id>bb172705</msdn-id>
  23396. <unmanaged>D3D10_BOX* pSrcBox</unmanaged>
  23397. <unmanaged-short>D3D10_BOX pSrcBox</unmanaged-short>
  23398. </member>
  23399. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.DestinationRegionPointer">
  23400. <summary>
  23401. <dd> <p>Destination texture box (see <strong><see cref="T:SharpDX.Direct3D10.ResourceRegion" /></strong>).</p> </dd>
  23402. </summary>
  23403. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO::pDstBox']/*" />
  23404. <msdn-id>bb172705</msdn-id>
  23405. <unmanaged>D3D10_BOX* pDstBox</unmanaged>
  23406. <unmanaged-short>D3D10_BOX pDstBox</unmanaged-short>
  23407. </member>
  23408. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.FirstSourceMip">
  23409. <summary>
  23410. <dd> <p>Source texture mipmap level, see <strong>D3D10CalcSubresource</strong> for more detail.</p> </dd>
  23411. </summary>
  23412. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO::SrcFirstMip']/*" />
  23413. <msdn-id>bb172705</msdn-id>
  23414. <unmanaged>unsigned int SrcFirstMip</unmanaged>
  23415. <unmanaged-short>unsigned int SrcFirstMip</unmanaged-short>
  23416. </member>
  23417. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.FirstDestinationMip">
  23418. <summary>
  23419. <dd> <p>Destination texture mipmap level, see <strong>D3D10CalcSubresource</strong> for more detail.</p> </dd>
  23420. </summary>
  23421. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO::DstFirstMip']/*" />
  23422. <msdn-id>bb172705</msdn-id>
  23423. <unmanaged>unsigned int DstFirstMip</unmanaged>
  23424. <unmanaged-short>unsigned int DstFirstMip</unmanaged-short>
  23425. </member>
  23426. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.MipCount">
  23427. <summary>
  23428. <dd> <p>Number of mipmap levels in the source texture.</p> </dd>
  23429. </summary>
  23430. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO::NumMips']/*" />
  23431. <msdn-id>bb172705</msdn-id>
  23432. <unmanaged>unsigned int NumMips</unmanaged>
  23433. <unmanaged-short>unsigned int NumMips</unmanaged-short>
  23434. </member>
  23435. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.FirstSourceElement">
  23436. <summary>
  23437. <dd> <p>First element of the source texture.</p> </dd>
  23438. </summary>
  23439. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO::SrcFirstElement']/*" />
  23440. <msdn-id>bb172705</msdn-id>
  23441. <unmanaged>unsigned int SrcFirstElement</unmanaged>
  23442. <unmanaged-short>unsigned int SrcFirstElement</unmanaged-short>
  23443. </member>
  23444. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.FirstDestinationElement">
  23445. <summary>
  23446. <dd> <p>First element of the destination texture.</p> </dd>
  23447. </summary>
  23448. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO::DstFirstElement']/*" />
  23449. <msdn-id>bb172705</msdn-id>
  23450. <unmanaged>unsigned int DstFirstElement</unmanaged>
  23451. <unmanaged-short>unsigned int DstFirstElement</unmanaged-short>
  23452. </member>
  23453. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.ElementCount">
  23454. <summary>
  23455. <dd> <p>Number of elements to load.</p> </dd>
  23456. </summary>
  23457. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO::NumElements']/*" />
  23458. <msdn-id>bb172705</msdn-id>
  23459. <unmanaged>unsigned int NumElements</unmanaged>
  23460. <unmanaged-short>unsigned int NumElements</unmanaged-short>
  23461. </member>
  23462. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.Filter">
  23463. <summary>
  23464. <dd> <p>Filtering options during resampling (see <strong><see cref="T:SharpDX.Direct3D10.FilterFlags" /></strong>).</p> </dd>
  23465. </summary>
  23466. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO::Filter']/*" />
  23467. <msdn-id>bb172705</msdn-id>
  23468. <unmanaged>D3DX10_FILTER_FLAG Filter</unmanaged>
  23469. <unmanaged-short>D3DX10_FILTER_FLAG Filter</unmanaged-short>
  23470. </member>
  23471. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.MipFilter">
  23472. <summary>
  23473. <dd> <p>Filtering options when generating mip levels (see <strong><see cref="T:SharpDX.Direct3D10.FilterFlags" /></strong>).</p> </dd>
  23474. </summary>
  23475. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX10_TEXTURE_LOAD_INFO::MipFilter']/*" />
  23476. <msdn-id>bb172705</msdn-id>
  23477. <unmanaged>D3DX10_FILTER_FLAG MipFilter</unmanaged>
  23478. <unmanaged-short>D3DX10_FILTER_FLAG MipFilter</unmanaged-short>
  23479. </member>
  23480. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.SourceRegion">
  23481. <summary>
  23482. Source texture box (see <see cref="T:SharpDX.Direct3D10.ResourceRegion"/>).
  23483. </summary>
  23484. <unmanaged>D3D11_BOX* pSrcBox</unmanaged>
  23485. </member>
  23486. <member name="F:SharpDX.Direct3D10.TextureLoadInformation.DestinationRegion">
  23487. <summary>
  23488. Destination texture box (see <see cref="T:SharpDX.Direct3D10.ResourceRegion"/>).
  23489. </summary>
  23490. <unmanaged>D3D11_BOX* pDstBox</unmanaged>
  23491. </member>
  23492. <member name="T:SharpDX.Direct3D10.NamespaceDoc">
  23493. <summary>
  23494. The <see cref="N:SharpDX.Direct3D10"/> namespace provides a managed Direct3D10 API.
  23495. </summary>
  23496. <msdn-id>bb205066</msdn-id>
  23497. <unmanaged>Direct3D10</unmanaged>
  23498. <unmanaged-short>Direct3D10</unmanaged-short>
  23499. </member>
  23500. <member name="T:SharpDX.Direct3D10.StreamOutputBufferBinding">
  23501. <summary>
  23502. Properties defining the way a buffer is bound to the pipeline as a target for stream output operations.
  23503. </summary>
  23504. </member>
  23505. <member name="P:SharpDX.Direct3D10.StreamOutputBufferBinding.Buffer">
  23506. <summary>
  23507. Gets or sets the buffer being bound.
  23508. </summary>
  23509. </member>
  23510. <member name="P:SharpDX.Direct3D10.StreamOutputBufferBinding.Offset">
  23511. <summary>
  23512. Gets or sets the offset from the start of the buffer of the first vertex to use (in bytes).
  23513. </summary>
  23514. </member>
  23515. <member name="M:SharpDX.Direct3D10.StreamOutputBufferBinding.#ctor(SharpDX.Direct3D10.Buffer,System.Int32)">
  23516. <summary>
  23517. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.StreamOutputBufferBinding" /> struct.
  23518. </summary>
  23519. <param name = "buffer">The buffer being bound.</param>
  23520. <param name = "offset">The offset to the first vertex (in bytes).</param>
  23521. </member>
  23522. <member name="T:SharpDX.Direct3D10.VertexBufferBinding">
  23523. <summary>
  23524. Properties defining the way a buffer (containing vertex data) is bound
  23525. to the pipeline for rendering.
  23526. </summary>
  23527. </member>
  23528. <member name="P:SharpDX.Direct3D10.VertexBufferBinding.Buffer">
  23529. <summary>
  23530. Gets or sets the buffer being bound.
  23531. </summary>
  23532. </member>
  23533. <member name="P:SharpDX.Direct3D10.VertexBufferBinding.Stride">
  23534. <summary>
  23535. Gets or sets the stride between vertex elements in the buffer (in bytes).
  23536. </summary>
  23537. </member>
  23538. <member name="P:SharpDX.Direct3D10.VertexBufferBinding.Offset">
  23539. <summary>
  23540. Gets or sets the offset from the start of the buffer of the first vertex to use (in bytes).
  23541. </summary>
  23542. </member>
  23543. <member name="M:SharpDX.Direct3D10.VertexBufferBinding.#ctor(SharpDX.Direct3D10.Buffer,System.Int32,System.Int32)">
  23544. <summary>
  23545. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D10.VertexBufferBinding" /> struct.
  23546. </summary>
  23547. <param name = "buffer">The buffer being bound.</param>
  23548. <param name = "stride">The stride between vertex element (in bytes).</param>
  23549. <param name = "offset">The offset to the first vertex (in bytes).</param>
  23550. </member>
  23551. </members>
  23552. </doc>