Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

36490 linhas
3.4 MiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>SharpDX.Direct3D9</name>
  5. </assembly>
  6. <members>
  7. <member name="T:SharpDX.Direct3D9.AdapterCollection">
  8. <summary>
  9. A collection of <see cref="T:SharpDX.Direct3D9.AdapterInformation"/>.
  10. </summary>
  11. </member>
  12. <member name="T:SharpDX.Direct3D9.AdapterDetails">
  13. <summary>
  14. <p>Contains information identifying the adapter.</p>
  15. </summary>
  16. <remarks>
  17. <p>The following pseudocode example illustrates the version format encoded in the DriverVersion, DriverVersionLowPart, and DriverVersionHighPart members.</p><pre> Product = HIWORD(DriverVersion.HighPart)
  18. Version = LOWORD(DriverVersion.HighPart)
  19. SubVersion = HIWORD(DriverVersion.LowPart)
  20. Build = LOWORD(DriverVersion.LowPart)
  21. </pre><p>See the Platform SDK for more information about the HIWORD macro, the LOWORD macro, and the <see cref="T:System.Int64" /> structure.</p><p>MAX_DEVICE_IDENTIFIER_STRING is a constant with the following definition.</p><pre>#define MAX_DEVICE_IDENTIFIER_STRING 512</pre><p>The VendorId, DeviceId, SubSysId, and Revision members can be used in tandem to identify particular chip sets. However, use these members with caution.</p>
  22. </remarks>
  23. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9']/*" />
  24. <msdn-id>bb172505</msdn-id>
  25. <unmanaged>D3DADAPTER_IDENTIFIER9</unmanaged>
  26. <unmanaged-short>D3DADAPTER_IDENTIFIER9</unmanaged-short>
  27. </member>
  28. <member name="P:SharpDX.Direct3D9.AdapterDetails.Certified">
  29. <summary>
  30. Gets a value indicating whether the adapter is WHQL certified.
  31. </summary>
  32. <value>
  33. <c>true</c> if certified; otherwise, <c>false</c>.
  34. </value>
  35. </member>
  36. <member name="P:SharpDX.Direct3D9.AdapterDetails.DriverVersion">
  37. <summary>
  38. Gets the driver version.
  39. </summary>
  40. </member>
  41. <member name="P:SharpDX.Direct3D9.AdapterDetails.CertificationDate">
  42. <summary>
  43. Gets the certification date.
  44. </summary>
  45. </member>
  46. <member name="F:SharpDX.Direct3D9.AdapterDetails.Driver">
  47. <summary>
  48. <dd> <p>Used for presentation to the user. This should not be used to identify particular drivers, because many different strings might be associated with the same device and driver from different vendors.</p> </dd>
  49. </summary>
  50. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9::Driver']/*" />
  51. <msdn-id>bb172505</msdn-id>
  52. <unmanaged>char Driver[512]</unmanaged>
  53. <unmanaged-short>char Driver</unmanaged-short>
  54. </member>
  55. <member name="F:SharpDX.Direct3D9.AdapterDetails.Description">
  56. <summary>
  57. <dd> <p>Used for presentation to the user.</p> </dd>
  58. </summary>
  59. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9::Description']/*" />
  60. <msdn-id>bb172505</msdn-id>
  61. <unmanaged>char Description[512]</unmanaged>
  62. <unmanaged-short>char Description</unmanaged-short>
  63. </member>
  64. <member name="F:SharpDX.Direct3D9.AdapterDetails.DeviceName">
  65. <summary>
  66. <dd> <p>Device name for GDI.</p> </dd>
  67. </summary>
  68. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9::DeviceName']/*" />
  69. <msdn-id>bb172505</msdn-id>
  70. <unmanaged>char DeviceName[32]</unmanaged>
  71. <unmanaged-short>char DeviceName</unmanaged-short>
  72. </member>
  73. <member name="F:SharpDX.Direct3D9.AdapterDetails.RawDriverVersion">
  74. <summary>
  75. <dd> <p>Identify the version of the Direct3D driver. It is legal to do less than and greater than comparisons on the 64-bit signed integer value. However, exercise caution if you use this element to identify problematic drivers. Instead, you should use DeviceIdentifier. See Remarks.</p> </dd>
  76. </summary>
  77. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9::DriverVersion']/*" />
  78. <msdn-id>bb172505</msdn-id>
  79. <unmanaged>LARGE_INTEGER DriverVersion</unmanaged>
  80. <unmanaged-short>LARGE_INTEGER DriverVersion</unmanaged-short>
  81. </member>
  82. <member name="F:SharpDX.Direct3D9.AdapterDetails.VendorId">
  83. <summary>
  84. <dd> <p>Can be used to help identify a particular chip set. Query this member to identify the manufacturer. The value can be zero if unknown.</p> </dd>
  85. </summary>
  86. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9::VendorId']/*" />
  87. <msdn-id>bb172505</msdn-id>
  88. <unmanaged>unsigned int VendorId</unmanaged>
  89. <unmanaged-short>unsigned int VendorId</unmanaged-short>
  90. </member>
  91. <member name="F:SharpDX.Direct3D9.AdapterDetails.DeviceId">
  92. <summary>
  93. <dd> <p>Can be used to help identify a particular chip set. Query this member to identify the type of chip set. The value can be zero if unknown.</p> </dd>
  94. </summary>
  95. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9::DeviceId']/*" />
  96. <msdn-id>bb172505</msdn-id>
  97. <unmanaged>unsigned int DeviceId</unmanaged>
  98. <unmanaged-short>unsigned int DeviceId</unmanaged-short>
  99. </member>
  100. <member name="F:SharpDX.Direct3D9.AdapterDetails.SubsystemId">
  101. <summary>
  102. <dd> <p>Can be used to help identify a particular chip set. Query this member to identify the subsystem, typically the particular board. The value can be zero if unknown.</p> </dd>
  103. </summary>
  104. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9::SubSysId']/*" />
  105. <msdn-id>bb172505</msdn-id>
  106. <unmanaged>unsigned int SubSysId</unmanaged>
  107. <unmanaged-short>unsigned int SubSysId</unmanaged-short>
  108. </member>
  109. <member name="F:SharpDX.Direct3D9.AdapterDetails.Revision">
  110. <summary>
  111. <dd> <p>Can be used to help identify a particular chip set. Query this member to identify the revision level of the chip set. The value can be zero if unknown.</p> </dd>
  112. </summary>
  113. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9::Revision']/*" />
  114. <msdn-id>bb172505</msdn-id>
  115. <unmanaged>unsigned int Revision</unmanaged>
  116. <unmanaged-short>unsigned int Revision</unmanaged-short>
  117. </member>
  118. <member name="F:SharpDX.Direct3D9.AdapterDetails.DeviceIdentifier">
  119. <summary>
  120. <dd> <p>Can be queried to check changes in the driver and chip set. This <see cref="T:System.Guid" /> is a unique identifier for the driver and chip set pair. Query this member to track changes to the driver and chip set in order to generate a new profile for the graphics subsystem. DeviceIdentifier can also be used to identify particular problematic drivers.</p> </dd>
  121. </summary>
  122. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9::DeviceIdentifier']/*" />
  123. <msdn-id>bb172505</msdn-id>
  124. <unmanaged>GUID DeviceIdentifier</unmanaged>
  125. <unmanaged-short>GUID DeviceIdentifier</unmanaged-short>
  126. </member>
  127. <member name="F:SharpDX.Direct3D9.AdapterDetails.WhqlLevel">
  128. <summary>
  129. <dd> <p>Used to determine the Windows Hardware Quality Labs (WHQL) validation level for this driver and device pair. The DWORD is a packed date structure defining the date of the release of the most recent WHQL test passed by the driver. It is legal to perform &lt; and &gt; operations on this value. The following illustrates the date format.</p> <table> <tr><td>Bits</td><td /></tr> <tr><td>31-16</td><td>The year, a decimal number from 1999 upwards.</td></tr> <tr><td>15-8</td><td>The month, a decimal number from 1 to 12.</td></tr> <tr><td>7-0</td><td>The day, a decimal number from 1 to 31.</td></tr> </table> <p>?</p> <p>The following values are also used.</p> <table> <tr><td>0</td><td>Not certified.</td></tr> <tr><td>1</td><td>WHQL validated, but no date information is available.</td></tr> </table> <p>?</p> <p>Differences between Direct3D 9 and Direct3D 9Ex:</p> <p>For Direct3D9Ex running on Windows Vista, Windows Server 2008, Windows 7, and Windows Server 2008 R2 (or more current operating system), <strong><see cref="M:SharpDX.Direct3D9.Direct3D.GetAdapterIdentifier(System.Int32)" /></strong> returns 1 for the WHQL level without checking the status of the driver. </p> </dd>
  130. </summary>
  131. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DADAPTER_IDENTIFIER9::WHQLLevel']/*" />
  132. <msdn-id>bb172505</msdn-id>
  133. <unmanaged>unsigned int WHQLLevel</unmanaged>
  134. <unmanaged-short>unsigned int WHQLLevel</unmanaged-short>
  135. </member>
  136. <member name="T:SharpDX.Direct3D9.AdapterExCollection">
  137. <summary>
  138. A collection of <see cref="T:SharpDX.Direct3D9.AdapterInformation"/>.
  139. </summary>
  140. </member>
  141. <member name="T:SharpDX.Direct3D9.AdapterInformation">
  142. <summary>
  143. Adapter information.
  144. </summary>
  145. </member>
  146. <member name="M:SharpDX.Direct3D9.AdapterInformation.GetCaps(SharpDX.Direct3D9.DeviceType)">
  147. <summary>
  148. Gets the capabilities of this adapter.
  149. </summary>
  150. <param name="type">The type.</param>
  151. <returns>The capabilities</returns>
  152. </member>
  153. <member name="M:SharpDX.Direct3D9.AdapterInformation.GetDisplayModes(SharpDX.Direct3D9.Format)">
  154. <summary>
  155. Gets the display modes supported by this adapter.
  156. </summary>
  157. <param name="format">The format.</param>
  158. <returns>The display modes supported by this adapter.</returns>
  159. </member>
  160. <member name="P:SharpDX.Direct3D9.AdapterInformation.Adapter">
  161. <summary>
  162. Gets the adapter ordinal.
  163. </summary>
  164. </member>
  165. <member name="P:SharpDX.Direct3D9.AdapterInformation.CurrentDisplayMode">
  166. <summary>
  167. Gets the current display mode.
  168. </summary>
  169. </member>
  170. <member name="P:SharpDX.Direct3D9.AdapterInformation.Details">
  171. <summary>
  172. Gets the details.
  173. </summary>
  174. </member>
  175. <member name="P:SharpDX.Direct3D9.AdapterInformation.Monitor">
  176. <summary>
  177. Gets the monitor.
  178. </summary>
  179. </member>
  180. <member name="T:SharpDX.Direct3D9.AdapterInformationEx">
  181. <summary>
  182. Adapter information.
  183. </summary>
  184. </member>
  185. <member name="M:SharpDX.Direct3D9.AdapterInformationEx.GetCaps(SharpDX.Direct3D9.DeviceType)">
  186. <summary>
  187. Gets the capabilities of this adapter.
  188. </summary>
  189. <param name="type">The type.</param>
  190. <returns>The capabilities</returns>
  191. </member>
  192. <member name="M:SharpDX.Direct3D9.AdapterInformationEx.GetDisplayModes(SharpDX.Direct3D9.DisplayModeFilter)">
  193. <summary>
  194. Gets the display modes supported by this adapter.
  195. </summary>
  196. <param name="filter">The filter.</param>
  197. <returns>
  198. The display modes supported by this adapter.
  199. </returns>
  200. </member>
  201. <member name="P:SharpDX.Direct3D9.AdapterInformationEx.Adapter">
  202. <summary>
  203. Gets the adapter ordinal.
  204. </summary>
  205. </member>
  206. <member name="P:SharpDX.Direct3D9.AdapterInformationEx.CurrentDisplayMode">
  207. <summary>
  208. Gets the current display mode.
  209. </summary>
  210. </member>
  211. <member name="P:SharpDX.Direct3D9.AdapterInformationEx.Details">
  212. <summary>
  213. Gets the details.
  214. </summary>
  215. </member>
  216. <member name="P:SharpDX.Direct3D9.AdapterInformationEx.Monitor">
  217. <summary>
  218. Gets the monitor.
  219. </summary>
  220. </member>
  221. <member name="T:SharpDX.Direct3D9.AssemblyDoc">
  222. <summary>
  223. The <see cref="A:SharpDX.Direct3D9"/> assembly provides managed Direct3D9 API.
  224. </summary>
  225. <msdn-id>bb219837</msdn-id>
  226. <unmanaged>Direct3D9</unmanaged>
  227. <unmanaged-short>Direct3D9</unmanaged-short>
  228. </member>
  229. <member name="T:SharpDX.Direct3D9.BaseEffect">
  230. <summary>
  231. No documentation.
  232. </summary>
  233. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect']/*" />
  234. <msdn-id>bb280470</msdn-id>
  235. <unmanaged>ID3DXBaseEffect</unmanaged>
  236. <unmanaged-short>ID3DXBaseEffect</unmanaged-short>
  237. </member>
  238. <member name="M:SharpDX.Direct3D9.BaseEffect.GetString(SharpDX.Direct3D9.EffectHandle)">
  239. <summary>
  240. Gets the string.
  241. </summary>
  242. <param name="parameter">The parameter.</param>
  243. <returns></returns>
  244. <unmanaged>HRESULT ID3DXBaseEffect::GetString([In] D3DXHANDLE hParameter,[Out] const void** ppString)</unmanaged>
  245. </member>
  246. <member name="M:SharpDX.Direct3D9.BaseEffect.GetValue``1(SharpDX.Direct3D9.EffectHandle)">
  247. <summary>
  248. Gets the value of the specified parameter.
  249. </summary>
  250. <param name="parameter">Handle of the parameter.</param>
  251. <returns>The value of the parameter.</returns>
  252. <unmanaged>HRESULT ID3DXBaseEffect::GetValue([In] D3DXHANDLE hParameter,[In] void* pData,[In] unsigned int Bytes)</unmanaged>
  253. </member>
  254. <member name="M:SharpDX.Direct3D9.BaseEffect.GetValue``1(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  255. <summary>
  256. Gets the value of the specified parameter.
  257. </summary>
  258. <typeparam name="T"></typeparam>
  259. <param name="parameter">Handle of the parameter.</param>
  260. <param name="count">The count.</param>
  261. <returns>
  262. The value of the parameter.
  263. </returns>
  264. <unmanaged>HRESULT ID3DXBaseEffect::GetValue([In] D3DXHANDLE hParameter,[In] void* pData,[In] unsigned int Bytes)</unmanaged>
  265. </member>
  266. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,System.Boolean)">
  267. <summary>
  268. Sets a bool value.
  269. </summary>
  270. <param name="effectHandle">The effect handle.</param>
  271. <param name="value">The value.</param>
  272. <returns>
  273. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  274. </returns>
  275. <unmanaged>HRESULT ID3DXBaseEffect::SetBool([In] D3DXHANDLE hConstant,[In] BOOL b)</unmanaged>
  276. </member>
  277. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,System.Single)">
  278. <summary>
  279. Sets a float value.
  280. </summary>
  281. <param name="effectHandle">The effect handle.</param>
  282. <param name="value">The value.</param>
  283. <returns>
  284. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  285. </returns>
  286. <unmanaged>HRESULT ID3DXBaseEffect::SetFloat([In] D3DXHANDLE hConstant,[In] float f)</unmanaged>
  287. </member>
  288. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  289. <summary>
  290. Sets an int value.
  291. </summary>
  292. <param name="effectHandle">The effect handle.</param>
  293. <param name="value">The value.</param>
  294. <returns>
  295. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  296. </returns>
  297. <unmanaged>HRESULT ID3DXBaseEffect::SetInt([In] D3DXHANDLE hConstant,[In] int n)</unmanaged>
  298. </member>
  299. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix)">
  300. <summary>
  301. Sets a matrix.
  302. </summary>
  303. <param name="effectHandle">The effect handle.</param>
  304. <param name="value">The value.</param>
  305. <returns>
  306. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  307. </returns>
  308. <unmanaged>HRESULT ID3DXBaseEffect::SetMatrix([In] D3DXHANDLE hConstant,[In] const D3DXMATRIX* pMatrix)</unmanaged>
  309. </member>
  310. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4)">
  311. <summary>
  312. Sets a 4D vector.
  313. </summary>
  314. <param name="effectHandle">The effect handle.</param>
  315. <param name="value">The value.</param>
  316. <returns>
  317. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  318. </returns>
  319. <unmanaged>HRESULT ID3DXBaseEffect::SetVector([In] D3DXHANDLE hConstant,[In] const D3DXVECTOR4* pVector)</unmanaged>
  320. </member>
  321. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue``1(SharpDX.Direct3D9.EffectHandle,``0)">
  322. <summary>
  323. Sets a typed value.
  324. </summary>
  325. <typeparam name="T">Type of the value to set</typeparam>
  326. <param name="effectHandle">The effect handle.</param>
  327. <param name="value">The value.</param>
  328. <returns>
  329. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  330. </returns>
  331. <unmanaged>HRESULT ID3DXBaseEffect::SetValue([In] D3DXHANDLE hConstant,[In] const void* pData,[In] unsigned int Bytes)</unmanaged>
  332. </member>
  333. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,System.Boolean[])">
  334. <summary>
  335. Sets an array of bools.
  336. </summary>
  337. <param name="effectHandle">The effect handle.</param>
  338. <param name="values">The values.</param>
  339. <returns>
  340. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  341. </returns>
  342. <unmanaged>HRESULT ID3DXBaseEffect::SetBoolArray([In] D3DXHANDLE hConstant,[In, Buffer] const BOOL* pb,[In] unsigned int Count)</unmanaged>
  343. </member>
  344. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,System.Single[])">
  345. <summary>
  346. Sets an array of floats.
  347. </summary>
  348. <param name="effectHandle">The effect handle.</param>
  349. <param name="values">The values.</param>
  350. <returns>
  351. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  352. </returns>
  353. <unmanaged>HRESULT ID3DXBaseEffect::SetFloatArray([In] D3DXHANDLE hConstant,[In, Buffer] const float* pf,[In] unsigned int Count)</unmanaged>
  354. </member>
  355. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,System.Int32[])">
  356. <summary>
  357. Sets an array of ints.
  358. </summary>
  359. <param name="effectHandle">The effect handle.</param>
  360. <param name="values">The values.</param>
  361. <returns>
  362. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  363. </returns>
  364. <unmanaged>HRESULT ID3DXBaseEffect::SetIntArray([In] D3DXHANDLE hConstant,[In, Buffer] const int* pn,[In] unsigned int Count)</unmanaged>
  365. </member>
  366. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix[])">
  367. <summary>
  368. Sets an array of matrices.
  369. </summary>
  370. <param name="effectHandle">The effect handle.</param>
  371. <param name="values">The values.</param>
  372. <returns>
  373. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  374. </returns>
  375. <unmanaged>HRESULT ID3DXBaseEffect::SetMatrixArray([In] D3DXHANDLE hConstant,[In, Buffer] const D3DXMATRIX* pMatrix,[In] unsigned int Count)</unmanaged>
  376. </member>
  377. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4[])">
  378. <summary>
  379. Sets an array of 4D vectors.
  380. </summary>
  381. <param name="effectHandle">The effect handle.</param>
  382. <param name="values">The values.</param>
  383. <returns>
  384. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  385. </returns>
  386. <unmanaged>HRESULT ID3DXBaseEffect::SetVectorArray([In] D3DXHANDLE hConstant,[In, Buffer] const D3DXVECTOR4* pVector,[In] unsigned int Count)</unmanaged>
  387. </member>
  388. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue``1(SharpDX.Direct3D9.EffectHandle,``0[])">
  389. <summary>
  390. Sets an array of elements.
  391. </summary>
  392. <typeparam name="T">Type of the array element</typeparam>
  393. <param name="effectHandle">The effect handle.</param>
  394. <param name="values">The values.</param>
  395. <returns>
  396. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  397. </returns>
  398. <unmanaged>HRESULT ID3DXBaseEffect::SetValue([In] D3DXHANDLE hConstant,[In] const void* pData,[In] unsigned int Bytes)</unmanaged>
  399. </member>
  400. <member name="M:SharpDX.Direct3D9.BaseEffect.#ctor(System.IntPtr)">
  401. <summary>
  402. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.BaseEffect"/> class.
  403. </summary>
  404. <param name="nativePtr">The native pointer.</param>
  405. </member>
  406. <member name="M:SharpDX.Direct3D9.BaseEffect.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.BaseEffect">
  407. <summary>
  408. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.BaseEffect"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  409. </summary>
  410. <param name="nativePointer">The native pointer.</param>
  411. <returns>
  412. The result of the conversion.
  413. </returns>
  414. </member>
  415. <member name="P:SharpDX.Direct3D9.BaseEffect.Description">
  416. <summary>
  417. <p>Gets the effect description.</p>
  418. </summary>
  419. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetDesc']/*" />
  420. <msdn-id>bb205681</msdn-id>
  421. <unmanaged>GetDesc</unmanaged>
  422. <unmanaged-short>GetDesc</unmanaged-short>
  423. <unmanaged>HRESULT ID3DXBaseEffect::GetDesc([Out] D3DXEFFECT_DESC* pDesc)</unmanaged>
  424. </member>
  425. <member name="M:SharpDX.Direct3D9.BaseEffect.GetDescription(SharpDX.Direct3D9.EffectDescription@)">
  426. <summary>
  427. <p>Gets the effect description.</p>
  428. </summary>
  429. <param name="descRef"><dd> <p>Returns a description of the effect. See <strong><see cref="T:SharpDX.Direct3D9.EffectDescription" /></strong>.</p> </dd></param>
  430. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  431. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetDesc']/*" />
  432. <msdn-id>bb205681</msdn-id>
  433. <unmanaged>HRESULT ID3DXBaseEffect::GetDesc([Out] D3DXEFFECT_DESC* pDesc)</unmanaged>
  434. <unmanaged-short>ID3DXBaseEffect::GetDesc</unmanaged-short>
  435. </member>
  436. <member name="M:SharpDX.Direct3D9.BaseEffect.GetParameterDescription(SharpDX.Direct3D9.EffectHandle)">
  437. <summary>
  438. <p>Gets a parameter or annotation description.</p>
  439. </summary>
  440. <param name="hParameter"><dd> <p>Parameter or annotation handle. See Handles (Direct3D 9).</p> </dd></param>
  441. <returns><dd> <p>Returns a description of the specified parameter or annotation. See <strong><see cref="T:SharpDX.Direct3D9.ParameterDescription" /></strong>.</p> </dd></returns>
  442. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetParameterDesc']/*" />
  443. <msdn-id>bb205698</msdn-id>
  444. <unmanaged>HRESULT ID3DXBaseEffect::GetParameterDesc([In] D3DXHANDLE hParameter,[Out] D3DXPARAMETER_DESC* pDesc)</unmanaged>
  445. <unmanaged-short>ID3DXBaseEffect::GetParameterDesc</unmanaged-short>
  446. </member>
  447. <member name="M:SharpDX.Direct3D9.BaseEffect.GetTechniqueDescription(SharpDX.Direct3D9.EffectHandle)">
  448. <summary>
  449. <p>Gets a technique description.</p>
  450. </summary>
  451. <param name="hTechnique"><dd> <p>Technique handle. See Handles (Direct3D 9).</p> </dd></param>
  452. <returns><dd> <p>Returns a description of the technique. See <strong><see cref="T:SharpDX.Direct3D9.TechniqueDescription" /></strong>.</p> </dd></returns>
  453. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetTechniqueDesc']/*" />
  454. <msdn-id>bb205707</msdn-id>
  455. <unmanaged>HRESULT ID3DXBaseEffect::GetTechniqueDesc([In] D3DXHANDLE hTechnique,[Out] D3DXTECHNIQUE_DESC* pDesc)</unmanaged>
  456. <unmanaged-short>ID3DXBaseEffect::GetTechniqueDesc</unmanaged-short>
  457. </member>
  458. <member name="M:SharpDX.Direct3D9.BaseEffect.GetPassDescription(SharpDX.Direct3D9.EffectHandle)">
  459. <summary>
  460. <p>Gets a pass description.</p>
  461. </summary>
  462. <param name="hPass"><dd> <p>Pass handle. See Handles (Direct3D 9).</p> </dd></param>
  463. <returns><dd> <p>Returns a description of the specified pass. See <strong><see cref="T:SharpDX.Direct3D9.PassDescription" /></strong>.</p> </dd></returns>
  464. <remarks>
  465. <p><strong>Note</strong>??If an effect is created with <see cref="F:SharpDX.Direct3D9.FX.NotCloneable" />, this method will return <strong><c>null</c></strong> references (in <strong><see cref="T:SharpDX.Direct3D9.PassDescription" /></strong>) to the shader functions.</p>
  466. </remarks>
  467. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetPassDesc']/*" />
  468. <msdn-id>bb205702</msdn-id>
  469. <unmanaged>HRESULT ID3DXBaseEffect::GetPassDesc([In] D3DXHANDLE hPass,[Out] D3DXPASS_DESC* pDesc)</unmanaged>
  470. <unmanaged-short>ID3DXBaseEffect::GetPassDesc</unmanaged-short>
  471. </member>
  472. <member name="M:SharpDX.Direct3D9.BaseEffect.GetFunctionDescription(SharpDX.Direct3D9.EffectHandle)">
  473. <summary>
  474. <p>Gets a function description.</p>
  475. </summary>
  476. <param name="hShader"><dd> <p>Function handle. See Handles (Direct3D 9).</p> </dd></param>
  477. <returns><dd> <p>Returns a description of the function. See <strong><see cref="T:SharpDX.Direct3D9.FunctionDescription" /></strong>.</p> </dd></returns>
  478. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetFunctionDesc']/*" />
  479. <msdn-id>bb205686</msdn-id>
  480. <unmanaged>HRESULT ID3DXBaseEffect::GetFunctionDesc([In] D3DXHANDLE hShader,[Out] D3DXFUNCTION_DESC* pDesc)</unmanaged>
  481. <unmanaged-short>ID3DXBaseEffect::GetFunctionDesc</unmanaged-short>
  482. </member>
  483. <member name="M:SharpDX.Direct3D9.BaseEffect.GetParameter(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  484. <summary>
  485. <p>Gets the handle of a top-level parameter or a structure member parameter.</p>
  486. </summary>
  487. <param name="hParameter"><dd> <p>Handle of the parameter, or <strong><c>null</c></strong> for top-level parameters. See Handles (Direct3D 9).</p> </dd></param>
  488. <param name="index"><dd> <p>Parameter index.</p> </dd></param>
  489. <returns><p>Returns the handle of the specified parameter, or <strong><c>null</c></strong> if the index was invalid. See Handles (Direct3D 9).</p></returns>
  490. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetParameter']/*" />
  491. <msdn-id>bb205695</msdn-id>
  492. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetParameter([In] D3DXHANDLE hParameter,[In] unsigned int Index)</unmanaged>
  493. <unmanaged-short>ID3DXBaseEffect::GetParameter</unmanaged-short>
  494. </member>
  495. <member name="M:SharpDX.Direct3D9.BaseEffect.GetParameter(SharpDX.Direct3D9.EffectHandle,System.String)">
  496. <summary>
  497. <p>Gets the handle of a top-level parameter or a structure member parameter by looking up its name.</p>
  498. </summary>
  499. <param name="hParameter"><dd> <p>Handle of the parameter, or <strong><c>null</c></strong> for top-level parameters. See Handles (Direct3D 9).</p> </dd></param>
  500. <param name="nameRef"><dd> <p>String containing the parameter name.</p> </dd></param>
  501. <returns><p>Returns the handle of the specified parameter, or <strong><c>null</c></strong> if the index was invalid. See Handles (Direct3D 9).</p></returns>
  502. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetParameterByName']/*" />
  503. <msdn-id>bb205696</msdn-id>
  504. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetParameterByName([In] D3DXHANDLE hParameter,[In] const char* pName)</unmanaged>
  505. <unmanaged-short>ID3DXBaseEffect::GetParameterByName</unmanaged-short>
  506. </member>
  507. <member name="M:SharpDX.Direct3D9.BaseEffect.GetParameterBySemantic(SharpDX.Direct3D9.EffectHandle,System.String)">
  508. <summary>
  509. <p>Gets the handle of a top-level parameter or a structure member parameter by looking up its semantic with a case-insensitive search.</p>
  510. </summary>
  511. <param name="hParameter"><dd> <p>Handle of the parameter, or <strong><c>null</c></strong> for top-level parameters. See Handles (Direct3D 9).</p> </dd></param>
  512. <param name="semanticRef"><dd> <p>String containing the semantic name.</p> </dd></param>
  513. <returns><p>Returns the handle of the first parameter that matches the specified semantic, or <strong><c>null</c></strong> if the semantic was not found. See Handles (Direct3D 9).</p></returns>
  514. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetParameterBySemantic']/*" />
  515. <msdn-id>bb205697</msdn-id>
  516. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetParameterBySemantic([In] D3DXHANDLE hParameter,[In] const char* pSemantic)</unmanaged>
  517. <unmanaged-short>ID3DXBaseEffect::GetParameterBySemantic</unmanaged-short>
  518. </member>
  519. <member name="M:SharpDX.Direct3D9.BaseEffect.GetParameterElement(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  520. <summary>
  521. <p>Get the handle of an array element parameter.</p>
  522. </summary>
  523. <param name="hParameter"><dd> <p>Handle of the array. See Handles (Direct3D 9).</p> </dd></param>
  524. <param name="index"><dd> <p>Array element index.</p> </dd></param>
  525. <returns><p>Returns the handle of the specified parameter, or <strong><c>null</c></strong> if either hParameter or ElementIndex is invalid. See Handles (Direct3D 9).</p></returns>
  526. <remarks>
  527. <p>This method is used to get an element of a parameter that is an array.</p>
  528. </remarks>
  529. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetParameterElement']/*" />
  530. <msdn-id>bb205699</msdn-id>
  531. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetParameterElement([In] D3DXHANDLE hParameter,[In] unsigned int Index)</unmanaged>
  532. <unmanaged-short>ID3DXBaseEffect::GetParameterElement</unmanaged-short>
  533. </member>
  534. <member name="M:SharpDX.Direct3D9.BaseEffect.GetTechnique(System.Int32)">
  535. <summary>
  536. <p>Gets the handle of a technique.</p>
  537. </summary>
  538. <param name="index"><dd> <p>Technique index.</p> </dd></param>
  539. <returns><p>Returns the handle of the specified technique, or <strong><c>null</c></strong> if the index was invalid. See Handles (Direct3D 9).</p></returns>
  540. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetTechnique']/*" />
  541. <msdn-id>bb205705</msdn-id>
  542. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetTechnique([In] unsigned int Index)</unmanaged>
  543. <unmanaged-short>ID3DXBaseEffect::GetTechnique</unmanaged-short>
  544. </member>
  545. <member name="M:SharpDX.Direct3D9.BaseEffect.GetTechnique(System.String)">
  546. <summary>
  547. <p>Gets the handle of a technique by looking up its name.</p>
  548. </summary>
  549. <param name="nameRef"><dd> <p>String containing the technique name.</p> </dd></param>
  550. <returns><p>Returns the handle of the first technique that has the specified name, or <strong><c>null</c></strong> if the name was not found. See Handles (Direct3D 9).</p></returns>
  551. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetTechniqueByName']/*" />
  552. <msdn-id>bb205706</msdn-id>
  553. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetTechniqueByName([In] const char* pName)</unmanaged>
  554. <unmanaged-short>ID3DXBaseEffect::GetTechniqueByName</unmanaged-short>
  555. </member>
  556. <member name="M:SharpDX.Direct3D9.BaseEffect.GetPass(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  557. <summary>
  558. <p>Gets the handle of a pass.</p>
  559. </summary>
  560. <param name="hTechnique"><dd> <p>Handle of the parent technique. See Handles (Direct3D 9).</p> </dd></param>
  561. <param name="index"><dd> <p>Index for the pass.</p> </dd></param>
  562. <returns><p>Returns the handle of the specified pass inside the specified technique, or <strong><c>null</c></strong> if the index was invalid. See Handles (Direct3D 9).</p></returns>
  563. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetPass']/*" />
  564. <msdn-id>bb205700</msdn-id>
  565. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetPass([In] D3DXHANDLE hTechnique,[In] unsigned int Index)</unmanaged>
  566. <unmanaged-short>ID3DXBaseEffect::GetPass</unmanaged-short>
  567. </member>
  568. <member name="M:SharpDX.Direct3D9.BaseEffect.GetPass(SharpDX.Direct3D9.EffectHandle,System.String)">
  569. <summary>
  570. <p>Gets the handle of a pass by looking up its name.</p>
  571. </summary>
  572. <param name="hTechnique"><dd> <p>Handle of the parent technique. See Handles (Direct3D 9).</p> </dd></param>
  573. <param name="nameRef"><dd> <p>String containing the pass name.</p> </dd></param>
  574. <returns><p>Returns the handle of the first pass inside the specified technique that has the specified name, or <strong><c>null</c></strong> if the name was not found. See Handles (Direct3D 9).</p></returns>
  575. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetPassByName']/*" />
  576. <msdn-id>bb205701</msdn-id>
  577. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetPassByName([In] D3DXHANDLE hTechnique,[In] const char* pName)</unmanaged>
  578. <unmanaged-short>ID3DXBaseEffect::GetPassByName</unmanaged-short>
  579. </member>
  580. <member name="M:SharpDX.Direct3D9.BaseEffect.GetFunction(System.Int32)">
  581. <summary>
  582. <p>Gets the handle of a function.</p>
  583. </summary>
  584. <param name="index"><dd> <p>Function index.</p> </dd></param>
  585. <returns><p>Returns the handle of the specified function, or <strong><c>null</c></strong> if the index was invalid. See Handles (Direct3D 9).</p></returns>
  586. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetFunction']/*" />
  587. <msdn-id>bb205684</msdn-id>
  588. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetFunction([In] unsigned int Index)</unmanaged>
  589. <unmanaged-short>ID3DXBaseEffect::GetFunction</unmanaged-short>
  590. </member>
  591. <member name="M:SharpDX.Direct3D9.BaseEffect.GetFunction(System.String)">
  592. <summary>
  593. <p>Gets the handle of a function by looking up its name.</p>
  594. </summary>
  595. <param name="nameRef"><dd> <p>String containing the function name. </p> </dd></param>
  596. <returns><p>Returns the handle of the specified function, or <strong><c>null</c></strong> if the name was not found. See Handles (Direct3D 9).</p></returns>
  597. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetFunctionByName']/*" />
  598. <msdn-id>bb205685</msdn-id>
  599. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetFunctionByName([In] const char* pName)</unmanaged>
  600. <unmanaged-short>ID3DXBaseEffect::GetFunctionByName</unmanaged-short>
  601. </member>
  602. <member name="M:SharpDX.Direct3D9.BaseEffect.GetAnnotation(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  603. <summary>
  604. <p>Gets the handle of an annotation. </p>
  605. </summary>
  606. <param name="hObject"><dd> <p>Handle of a technique, pass, or top-level parameter. See Handles (Direct3D 9).</p> </dd></param>
  607. <param name="index"><dd> <p>Annotation index.</p> </dd></param>
  608. <returns><p>Returns the handle of the specified annotation, or <strong><c>null</c></strong> if the index was invalid. See Handles (Direct3D 9).</p></returns>
  609. <remarks>
  610. <p>Annotations are user-specific data that can be attached to any technique, pass, or parameter. See Handles (Direct3D 9). </p>
  611. </remarks>
  612. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetAnnotation']/*" />
  613. <msdn-id>bb205677</msdn-id>
  614. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetAnnotation([In] D3DXHANDLE hObject,[In] unsigned int Index)</unmanaged>
  615. <unmanaged-short>ID3DXBaseEffect::GetAnnotation</unmanaged-short>
  616. </member>
  617. <member name="M:SharpDX.Direct3D9.BaseEffect.GetAnnotation(SharpDX.Direct3D9.EffectHandle,System.String)">
  618. <summary>
  619. <p>Gets the handle of an annotation by looking up its name.</p>
  620. </summary>
  621. <param name="hObject"><dd> <p>Handle of a technique, pass, or top-level parameter. See Handles (Direct3D 9).</p> </dd></param>
  622. <param name="nameRef"><dd> <p>String containing the annotation name.</p> </dd></param>
  623. <returns><p>Returns the handle of the specified annotation, or <strong><c>null</c></strong> if the name was not found. See Handles (Direct3D 9).</p></returns>
  624. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetAnnotationByName']/*" />
  625. <msdn-id>bb205678</msdn-id>
  626. <unmanaged>D3DXHANDLE ID3DXBaseEffect::GetAnnotationByName([In] D3DXHANDLE hObject,[In] const char* pName)</unmanaged>
  627. <unmanaged-short>ID3DXBaseEffect::GetAnnotationByName</unmanaged-short>
  628. </member>
  629. <member name="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,System.IntPtr,System.Int32)">
  630. <summary>
  631. <p>Set the value of an arbitrary parameter or annotation, including simple types, structs, arrays, strings, shaders and textures. </p>
  632. </summary>
  633. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  634. <param name="dataRef"><dd> <p>Pointer to a buffer containing data.</p> </dd></param>
  635. <param name="bytes"><dd> <p>[in] Number of bytes in the buffer. Pass in D3DX_DEFAULT if you know your buffer is large enough to contain the entire parameter, and you want to skip size validation.</p> </dd></param>
  636. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  637. <remarks>
  638. <p>This method can be used in place of nearly all the effect set API calls.</p>
  639. </remarks>
  640. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetValue']/*" />
  641. <msdn-id>bb205728</msdn-id>
  642. <unmanaged>HRESULT ID3DXBaseEffect::SetValue([In] D3DXHANDLE hParameter,[In] const void* pData,[In] unsigned int Bytes)</unmanaged>
  643. <unmanaged-short>ID3DXBaseEffect::SetValue</unmanaged-short>
  644. </member>
  645. <member name="M:SharpDX.Direct3D9.BaseEffect.GetValue(SharpDX.Direct3D9.EffectHandle,System.IntPtr,System.Int32)">
  646. <summary>
  647. <p>Get the value of an arbitrary parameter or annotation, including simple types, structs, arrays, strings, shaders and textures. This method can be used in place of nearly all the Getxxx calls in <strong><see cref="T:SharpDX.Direct3D9.BaseEffect" /></strong>.</p>
  648. </summary>
  649. <param name="hParameter">No documentation.</param>
  650. <param name="dataRef">No documentation.</param>
  651. <param name="bytes">No documentation.</param>
  652. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  653. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetValue']/*" />
  654. <msdn-id>bb205709</msdn-id>
  655. <unmanaged>HRESULT ID3DXBaseEffect::GetValue([In] D3DXHANDLE hParameter,[In] void* pData,[In] unsigned int Bytes)</unmanaged>
  656. <unmanaged-short>ID3DXBaseEffect::GetValue</unmanaged-short>
  657. </member>
  658. <member name="M:SharpDX.Direct3D9.BaseEffect.SetBool(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool)">
  659. <summary>
  660. <p>Sets a <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> value.</p>
  661. </summary>
  662. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  663. <param name="b"><dd> <p>Boolean value.</p> </dd></param>
  664. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  665. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetBool']/*" />
  666. <msdn-id>bb205714</msdn-id>
  667. <unmanaged>HRESULT ID3DXBaseEffect::SetBool([In] D3DXHANDLE hParameter,[In] BOOL b)</unmanaged>
  668. <unmanaged-short>ID3DXBaseEffect::SetBool</unmanaged-short>
  669. </member>
  670. <member name="M:SharpDX.Direct3D9.BaseEffect.GetBool(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool@)">
  671. <summary>
  672. <p>Gets a <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> value.</p>
  673. </summary>
  674. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  675. <param name="bRef"><dd> <p>Returns a Boolean value.</p> </dd></param>
  676. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  677. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetBool']/*" />
  678. <msdn-id>bb205679</msdn-id>
  679. <unmanaged>HRESULT ID3DXBaseEffect::GetBool([In] D3DXHANDLE hParameter,[Out] BOOL* pb)</unmanaged>
  680. <unmanaged-short>ID3DXBaseEffect::GetBool</unmanaged-short>
  681. </member>
  682. <member name="M:SharpDX.Direct3D9.BaseEffect.SetBoolArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool[],System.Int32)">
  683. <summary>
  684. <p>Sets an array of Boolean values.</p>
  685. </summary>
  686. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  687. <param name="bRef"><dd> <p>Array of Boolean values.</p> </dd></param>
  688. <param name="count"><dd> <p>Number of Boolean values in the array.</p> </dd></param>
  689. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  690. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetBoolArray']/*" />
  691. <msdn-id>bb205715</msdn-id>
  692. <unmanaged>HRESULT ID3DXBaseEffect::SetBoolArray([In] D3DXHANDLE hParameter,[In, Buffer] const BOOL* pb,[In] unsigned int Count)</unmanaged>
  693. <unmanaged-short>ID3DXBaseEffect::SetBoolArray</unmanaged-short>
  694. </member>
  695. <member name="M:SharpDX.Direct3D9.BaseEffect.GetBoolArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool[],System.Int32)">
  696. <summary>
  697. <p>Gets an array of <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> values.</p>
  698. </summary>
  699. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  700. <param name="bRef"><dd> <p>Returns an array of Boolean values.</p> </dd></param>
  701. <param name="count"><dd> <p>Number of Boolean values in the array.</p> </dd></param>
  702. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  703. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetBoolArray']/*" />
  704. <msdn-id>bb205680</msdn-id>
  705. <unmanaged>HRESULT ID3DXBaseEffect::GetBoolArray([In] D3DXHANDLE hParameter,[Out, Buffer] BOOL* pb,[In] unsigned int Count)</unmanaged>
  706. <unmanaged-short>ID3DXBaseEffect::GetBoolArray</unmanaged-short>
  707. </member>
  708. <member name="M:SharpDX.Direct3D9.BaseEffect.SetInt(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  709. <summary>
  710. <p>Sets an integer.</p>
  711. </summary>
  712. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  713. <param name="n"><dd> <p>Integer value.</p> </dd></param>
  714. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  715. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetInt']/*" />
  716. <msdn-id>bb205718</msdn-id>
  717. <unmanaged>HRESULT ID3DXBaseEffect::SetInt([In] D3DXHANDLE hParameter,[In] int n)</unmanaged>
  718. <unmanaged-short>ID3DXBaseEffect::SetInt</unmanaged-short>
  719. </member>
  720. <member name="M:SharpDX.Direct3D9.BaseEffect.GetInt(SharpDX.Direct3D9.EffectHandle,System.Int32@)">
  721. <summary>
  722. <p>Gets an integer.</p>
  723. </summary>
  724. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  725. <param name="nRef"><dd> <p>Returns an integer.</p> </dd></param>
  726. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  727. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetInt']/*" />
  728. <msdn-id>bb205687</msdn-id>
  729. <unmanaged>HRESULT ID3DXBaseEffect::GetInt([In] D3DXHANDLE hParameter,[Out] int* pn)</unmanaged>
  730. <unmanaged-short>ID3DXBaseEffect::GetInt</unmanaged-short>
  731. </member>
  732. <member name="M:SharpDX.Direct3D9.BaseEffect.SetIntArray(SharpDX.Direct3D9.EffectHandle,System.Int32[],System.Int32)">
  733. <summary>
  734. <p>Sets an array of integers.</p>
  735. </summary>
  736. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  737. <param name="nRef"><dd> <p>Array of integers.</p> </dd></param>
  738. <param name="count"><dd> <p>Number of integers in the array.</p> </dd></param>
  739. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  740. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetIntArray']/*" />
  741. <msdn-id>bb205719</msdn-id>
  742. <unmanaged>HRESULT ID3DXBaseEffect::SetIntArray([In] D3DXHANDLE hParameter,[In, Buffer] const int* pn,[In] unsigned int Count)</unmanaged>
  743. <unmanaged-short>ID3DXBaseEffect::SetIntArray</unmanaged-short>
  744. </member>
  745. <member name="M:SharpDX.Direct3D9.BaseEffect.GetIntArray(SharpDX.Direct3D9.EffectHandle,System.Int32[],System.Int32)">
  746. <summary>
  747. <p>Gets an array of integers.</p>
  748. </summary>
  749. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  750. <param name="nRef"><dd> <p>Returns an array of integers.</p> </dd></param>
  751. <param name="count"><dd> <p>Number of integers in the array.</p> </dd></param>
  752. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  753. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetIntArray']/*" />
  754. <msdn-id>bb205688</msdn-id>
  755. <unmanaged>HRESULT ID3DXBaseEffect::GetIntArray([In] D3DXHANDLE hParameter,[Out, Buffer] int* pn,[In] unsigned int Count)</unmanaged>
  756. <unmanaged-short>ID3DXBaseEffect::GetIntArray</unmanaged-short>
  757. </member>
  758. <member name="M:SharpDX.Direct3D9.BaseEffect.SetFloat(SharpDX.Direct3D9.EffectHandle,System.Single)">
  759. <summary>
  760. <p>Sets a floating point value.</p>
  761. </summary>
  762. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  763. <param name="f"><dd> <p>Floating point value.</p> </dd></param>
  764. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  765. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetFloat']/*" />
  766. <msdn-id>bb205716</msdn-id>
  767. <unmanaged>HRESULT ID3DXBaseEffect::SetFloat([In] D3DXHANDLE hParameter,[In] float f)</unmanaged>
  768. <unmanaged-short>ID3DXBaseEffect::SetFloat</unmanaged-short>
  769. </member>
  770. <member name="M:SharpDX.Direct3D9.BaseEffect.GetFloat(SharpDX.Direct3D9.EffectHandle,System.Single@)">
  771. <summary>
  772. <p>Gets a floating point value.</p>
  773. </summary>
  774. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  775. <param name="fRef"><dd> <p>Returns a floating point value.</p> </dd></param>
  776. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  777. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetFloat']/*" />
  778. <msdn-id>bb205682</msdn-id>
  779. <unmanaged>HRESULT ID3DXBaseEffect::GetFloat([In] D3DXHANDLE hParameter,[Out] float* pf)</unmanaged>
  780. <unmanaged-short>ID3DXBaseEffect::GetFloat</unmanaged-short>
  781. </member>
  782. <member name="M:SharpDX.Direct3D9.BaseEffect.SetFloatArray(SharpDX.Direct3D9.EffectHandle,System.Single[],System.Int32)">
  783. <summary>
  784. <p>Sets an array of floating point values.</p>
  785. </summary>
  786. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  787. <param name="fRef"><dd> <p>Array of floating point values.</p> </dd></param>
  788. <param name="count"><dd> <p>Number of floating point values in the array.</p> </dd></param>
  789. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  790. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetFloatArray']/*" />
  791. <msdn-id>bb205717</msdn-id>
  792. <unmanaged>HRESULT ID3DXBaseEffect::SetFloatArray([In] D3DXHANDLE hParameter,[In, Buffer] const float* pf,[In] unsigned int Count)</unmanaged>
  793. <unmanaged-short>ID3DXBaseEffect::SetFloatArray</unmanaged-short>
  794. </member>
  795. <member name="M:SharpDX.Direct3D9.BaseEffect.GetFloatArray(SharpDX.Direct3D9.EffectHandle,System.Single[],System.Int32)">
  796. <summary>
  797. <p>Gets an array of floating point values.</p>
  798. </summary>
  799. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  800. <param name="fRef"><dd> <p>Returns an array of floating point values.</p> </dd></param>
  801. <param name="count"><dd> <p>Number of floating point values in the array.</p> </dd></param>
  802. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  803. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetFloatArray']/*" />
  804. <msdn-id>bb205683</msdn-id>
  805. <unmanaged>HRESULT ID3DXBaseEffect::GetFloatArray([In] D3DXHANDLE hParameter,[Out, Buffer] float* pf,[In] unsigned int Count)</unmanaged>
  806. <unmanaged-short>ID3DXBaseEffect::GetFloatArray</unmanaged-short>
  807. </member>
  808. <member name="M:SharpDX.Direct3D9.BaseEffect.SetVector(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4)">
  809. <summary>
  810. <p>Sets a vector.</p>
  811. </summary>
  812. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  813. <param name="vectorRef"><dd> <p>Pointer to a 4D vector.</p> </dd></param>
  814. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  815. <remarks>
  816. <p>If the destination vector is smaller than the source vector, the additional components of the source vector will be ignored.</p>
  817. </remarks>
  818. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetVector']/*" />
  819. <msdn-id>bb205729</msdn-id>
  820. <unmanaged>HRESULT ID3DXBaseEffect::SetVector([In] D3DXHANDLE hParameter,[In] const D3DXVECTOR4* pVector)</unmanaged>
  821. <unmanaged-short>ID3DXBaseEffect::SetVector</unmanaged-short>
  822. </member>
  823. <member name="M:SharpDX.Direct3D9.BaseEffect.GetVector(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4@)">
  824. <summary>
  825. <p>Gets a vector.</p>
  826. </summary>
  827. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  828. <param name="vectorRef"><dd> <p>Returns a 4D vector.</p> </dd></param>
  829. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  830. <remarks>
  831. <p>If the destination vector is larger than the source vector, only the initial components of the destination vector will be filled, and the remaining components will be set to zero.</p>
  832. </remarks>
  833. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetVector']/*" />
  834. <msdn-id>bb205710</msdn-id>
  835. <unmanaged>HRESULT ID3DXBaseEffect::GetVector([In] D3DXHANDLE hParameter,[Out] D3DXVECTOR4* pVector)</unmanaged>
  836. <unmanaged-short>ID3DXBaseEffect::GetVector</unmanaged-short>
  837. </member>
  838. <member name="M:SharpDX.Direct3D9.BaseEffect.SetVectorArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4[],System.Int32)">
  839. <summary>
  840. <p>Sets an array of vectors.</p>
  841. </summary>
  842. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  843. <param name="vectorRef"><dd> <p>Array of 4D floating point vectors.</p> </dd></param>
  844. <param name="count"><dd> <p>Number of vectors in the array.</p> </dd></param>
  845. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  846. <remarks>
  847. <p>If the destination vectors are smaller than the source vectors, the additional components of the source vectors will be ignored.</p>
  848. </remarks>
  849. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetVectorArray']/*" />
  850. <msdn-id>bb205730</msdn-id>
  851. <unmanaged>HRESULT ID3DXBaseEffect::SetVectorArray([In] D3DXHANDLE hParameter,[In, Buffer] const D3DXVECTOR4* pVector,[In] unsigned int Count)</unmanaged>
  852. <unmanaged-short>ID3DXBaseEffect::SetVectorArray</unmanaged-short>
  853. </member>
  854. <member name="M:SharpDX.Direct3D9.BaseEffect.GetVectorArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4[],System.Int32)">
  855. <summary>
  856. <p>Gets an array of vectors.</p>
  857. </summary>
  858. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  859. <param name="vectorRef"><dd> <p>Returns an array of 4D floating point vectors.</p> </dd></param>
  860. <param name="count"><dd> <p>Number of vectors in the array.</p> </dd></param>
  861. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  862. <remarks>
  863. <p>If the destination vectors are larger than the source vectors, only the initial components of each destination vector will be filled, and the remaining destination vector components will be set to zero.</p>
  864. </remarks>
  865. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetVectorArray']/*" />
  866. <msdn-id>bb205711</msdn-id>
  867. <unmanaged>HRESULT ID3DXBaseEffect::GetVectorArray([In] D3DXHANDLE hParameter,[Out, Buffer] D3DXVECTOR4* pVector,[In] unsigned int Count)</unmanaged>
  868. <unmanaged-short>ID3DXBaseEffect::GetVectorArray</unmanaged-short>
  869. </member>
  870. <member name="M:SharpDX.Direct3D9.BaseEffect.SetMatrix(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@)">
  871. <summary>
  872. <p>Sets a non-transposed matrix.</p>
  873. </summary>
  874. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  875. <param name="matrixRef"><dd> <p>Pointer to a nontransposed matrix. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  876. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  877. <remarks>
  878. <p>A non-transposed matrix contains row-major data. In other words, each vector is contained in a row.</p><p>If the destination matrix is smaller than the source matrix, the additional components of the source matrix will be ignored.</p>
  879. </remarks>
  880. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetMatrix']/*" />
  881. <msdn-id>bb205720</msdn-id>
  882. <unmanaged>HRESULT ID3DXBaseEffect::SetMatrix([In] D3DXHANDLE hParameter,[In] const D3DXMATRIX* pMatrix)</unmanaged>
  883. <unmanaged-short>ID3DXBaseEffect::SetMatrix</unmanaged-short>
  884. </member>
  885. <member name="M:SharpDX.Direct3D9.BaseEffect.GetMatrix(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@)">
  886. <summary>
  887. <p>Gets a nontransposed matrix.</p>
  888. </summary>
  889. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  890. <param name="matrixRef"><dd> <p>Returns a nontransposed matrix. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  891. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  892. <remarks>
  893. <p>A nontransposed matrix contains row-major data; that is, each vector is contained in a row.</p><p>If the destination matrix is larger than the source matrix, only the upper-left components of the destination matrix will be filled, and the remaining components will be set to zero.</p>
  894. </remarks>
  895. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetMatrix']/*" />
  896. <msdn-id>bb205689</msdn-id>
  897. <unmanaged>HRESULT ID3DXBaseEffect::GetMatrix([In] D3DXHANDLE hParameter,[Out] D3DXMATRIX* pMatrix)</unmanaged>
  898. <unmanaged-short>ID3DXBaseEffect::GetMatrix</unmanaged-short>
  899. </member>
  900. <member name="M:SharpDX.Direct3D9.BaseEffect.SetMatrixArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix[],System.Int32)">
  901. <summary>
  902. <p>Sets an array of nontransposed matrices.</p>
  903. </summary>
  904. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  905. <param name="matrixRef"><dd> <p>Array of nontransposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  906. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  907. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  908. <remarks>
  909. <p>A nontransposed matrix contains row-major data; that is, each vector is contained in a row.</p><p>If the destination matrices are smaller than the source matrices, the additional components of the source matrices will be ignored.</p>
  910. </remarks>
  911. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetMatrixArray']/*" />
  912. <msdn-id>bb205721</msdn-id>
  913. <unmanaged>HRESULT ID3DXBaseEffect::SetMatrixArray([In] D3DXHANDLE hParameter,[In, Buffer] const D3DXMATRIX* pMatrix,[In] unsigned int Count)</unmanaged>
  914. <unmanaged-short>ID3DXBaseEffect::SetMatrixArray</unmanaged-short>
  915. </member>
  916. <member name="M:SharpDX.Direct3D9.BaseEffect.GetMatrixArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix[],System.Int32)">
  917. <summary>
  918. <p>Gets an array of nontransposed matrices.</p>
  919. </summary>
  920. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  921. <param name="matrixRef"><dd> <p>Returns an array of nontransposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  922. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  923. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  924. <remarks>
  925. <p>A nontransposed matrix contains row-major data; that is, each vector is contained in a row.</p><p>If the destination matrices are larger than the source matrices, only the upper-left components of each destination matrix will be filled, and the remaining destination matrix components will be set to zero.</p>
  926. </remarks>
  927. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetMatrixArray']/*" />
  928. <msdn-id>bb205690</msdn-id>
  929. <unmanaged>HRESULT ID3DXBaseEffect::GetMatrixArray([In] D3DXHANDLE hParameter,[Out, Buffer] D3DXMATRIX* pMatrix,[In] unsigned int Count)</unmanaged>
  930. <unmanaged-short>ID3DXBaseEffect::GetMatrixArray</unmanaged-short>
  931. </member>
  932. <member name="M:SharpDX.Direct3D9.BaseEffect.SetMatrixPointerArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@,System.Int32)">
  933. <summary>
  934. <p>Sets an array of references to nontransposed matrices.</p>
  935. </summary>
  936. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  937. <param name="matrixOut"><dd> <p>Array of references to nontransposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  938. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  939. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  940. <remarks>
  941. <p>A nontransposed matrix contains row-major data; that is, each vector is contained in a row.</p><p>If the destination matrices are smaller than the source matrices, the additional components of the source matrices will be ignored.</p>
  942. </remarks>
  943. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetMatrixPointerArray']/*" />
  944. <msdn-id>bb205722</msdn-id>
  945. <unmanaged>HRESULT ID3DXBaseEffect::SetMatrixPointerArray([In] D3DXHANDLE hParameter,[In] const D3DXMATRIX** ppMatrix,[In] unsigned int Count)</unmanaged>
  946. <unmanaged-short>ID3DXBaseEffect::SetMatrixPointerArray</unmanaged-short>
  947. </member>
  948. <member name="M:SharpDX.Direct3D9.BaseEffect.GetMatrixPointerArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@,System.Int32)">
  949. <summary>
  950. <p>Gets an array of references to nontransposed matrices.</p>
  951. </summary>
  952. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  953. <param name="matrixOut"><dd> <p>Array of references to nontransposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  954. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  955. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  956. <remarks>
  957. <p>A nontransposed matrix contains row-major data; that is, each vector is contained in a row.</p><p>If the destination matrices are larger than the source matrices, only the upper-left components of each destination matrix will be filled, and the remaining destination matrix components will be set to zero.</p>
  958. </remarks>
  959. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetMatrixPointerArray']/*" />
  960. <msdn-id>bb205691</msdn-id>
  961. <unmanaged>HRESULT ID3DXBaseEffect::GetMatrixPointerArray([In] D3DXHANDLE hParameter,[Out] D3DXMATRIX** ppMatrix,[In] unsigned int Count)</unmanaged>
  962. <unmanaged-short>ID3DXBaseEffect::GetMatrixPointerArray</unmanaged-short>
  963. </member>
  964. <member name="M:SharpDX.Direct3D9.BaseEffect.SetMatrixTranspose(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@)">
  965. <summary>
  966. <p>Sets a transposed matrix.</p>
  967. </summary>
  968. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  969. <param name="matrixRef"><dd> <p>Pointer to a transposed matrix. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  970. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  971. <remarks>
  972. <p>A transposed matrix contains column-major data; that is, each vector is contained in a column.</p><p>If the destination matrix is smaller than the source matrix, the additional components of the source matrix will be ignored.</p>
  973. </remarks>
  974. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetMatrixTranspose']/*" />
  975. <msdn-id>bb205723</msdn-id>
  976. <unmanaged>HRESULT ID3DXBaseEffect::SetMatrixTranspose([In] D3DXHANDLE hParameter,[In] const D3DXMATRIX* pMatrix)</unmanaged>
  977. <unmanaged-short>ID3DXBaseEffect::SetMatrixTranspose</unmanaged-short>
  978. </member>
  979. <member name="M:SharpDX.Direct3D9.BaseEffect.GetMatrixTranspose(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@)">
  980. <summary>
  981. <p>Gets a transposed matrix.</p>
  982. </summary>
  983. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  984. <param name="matrixRef"><dd> <p>Returns a transposed matrix. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  985. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  986. <remarks>
  987. <p>A transposed matrix contains column-major data; that is, each vector is contained in a column.</p><p>If the destination matrix is larger than the source matrix, only the upper-left elements of the destination matrix will be filled, and the remaining destination matrix components will be set to zero.</p>
  988. </remarks>
  989. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetMatrixTranspose']/*" />
  990. <msdn-id>bb205692</msdn-id>
  991. <unmanaged>HRESULT ID3DXBaseEffect::GetMatrixTranspose([In] D3DXHANDLE hParameter,[Out] D3DXMATRIX* pMatrix)</unmanaged>
  992. <unmanaged-short>ID3DXBaseEffect::GetMatrixTranspose</unmanaged-short>
  993. </member>
  994. <member name="M:SharpDX.Direct3D9.BaseEffect.SetMatrixTransposeArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix[],System.Int32)">
  995. <summary>
  996. <p>Sets an array of transposed matrices.</p>
  997. </summary>
  998. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  999. <param name="matrixRef"><dd> <p>Array of transposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  1000. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  1001. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  1002. <remarks>
  1003. <p>A transposed matrix contains column-major data; that is, each vector is contained in a column.</p><p>If the destination matrices are smaller than the source matrices, the additional components of the source matrices will be ignored.</p>
  1004. </remarks>
  1005. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetMatrixTransposeArray']/*" />
  1006. <msdn-id>bb205724</msdn-id>
  1007. <unmanaged>HRESULT ID3DXBaseEffect::SetMatrixTransposeArray([In] D3DXHANDLE hParameter,[In, Buffer] const D3DXMATRIX* pMatrix,[In] unsigned int Count)</unmanaged>
  1008. <unmanaged-short>ID3DXBaseEffect::SetMatrixTransposeArray</unmanaged-short>
  1009. </member>
  1010. <member name="M:SharpDX.Direct3D9.BaseEffect.GetMatrixTransposeArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix[],System.Int32)">
  1011. <summary>
  1012. <p>Gets an array of transposed matrices.</p>
  1013. </summary>
  1014. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  1015. <param name="matrixRef"><dd> <p>Returns an array of transposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  1016. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  1017. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  1018. <remarks>
  1019. <p>A transposed matrix contains column-major data; that is, each vector is contained in a column.</p><p>If the destination matrices are larger than the source matrices, only the upper-left components of each destination matrix will be filled, and the remaining destination matrix components will be set to zero.</p>
  1020. </remarks>
  1021. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetMatrixTransposeArray']/*" />
  1022. <msdn-id>bb205693</msdn-id>
  1023. <unmanaged>HRESULT ID3DXBaseEffect::GetMatrixTransposeArray([In] D3DXHANDLE hParameter,[Out, Buffer] D3DXMATRIX* pMatrix,[In] unsigned int Count)</unmanaged>
  1024. <unmanaged-short>ID3DXBaseEffect::GetMatrixTransposeArray</unmanaged-short>
  1025. </member>
  1026. <member name="M:SharpDX.Direct3D9.BaseEffect.SetMatrixTransposePointerArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@,System.Int32)">
  1027. <summary>
  1028. <p>Sets an array of references to transposed matrices.</p>
  1029. </summary>
  1030. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  1031. <param name="matrixOut"><dd> <p>Array of references to transposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  1032. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  1033. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  1034. <remarks>
  1035. <p>A transposed matrix contains column-major data; that is, each vector is contained in a column.</p><p>If the destination matrices are smaller than the source matrices, the additional components of the source matrices will be ignored.</p>
  1036. </remarks>
  1037. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetMatrixTransposePointerArray']/*" />
  1038. <msdn-id>bb205725</msdn-id>
  1039. <unmanaged>HRESULT ID3DXBaseEffect::SetMatrixTransposePointerArray([In] D3DXHANDLE hParameter,[In] const D3DXMATRIX** ppMatrix,[In] unsigned int Count)</unmanaged>
  1040. <unmanaged-short>ID3DXBaseEffect::SetMatrixTransposePointerArray</unmanaged-short>
  1041. </member>
  1042. <member name="M:SharpDX.Direct3D9.BaseEffect.GetMatrixTransposePointerArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@,System.Int32)">
  1043. <summary>
  1044. <p>Gets an array of references to transposed matrices.</p>
  1045. </summary>
  1046. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  1047. <param name="matrixOut"><dd> <p>Array of references to transposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  1048. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  1049. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  1050. <remarks>
  1051. <p>A transposed matrix contains column-major data; that is, each vector is contained in a column.</p><p>If the destination matrices are larger than the source matrices, only the upper-left components of each destination matrix will be filled, and the remaining destination matrix components will be set to zero.</p>
  1052. </remarks>
  1053. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetMatrixTransposePointerArray']/*" />
  1054. <msdn-id>bb205694</msdn-id>
  1055. <unmanaged>HRESULT ID3DXBaseEffect::GetMatrixTransposePointerArray([In] D3DXHANDLE hParameter,[Out] D3DXMATRIX** ppMatrix,[In] unsigned int Count)</unmanaged>
  1056. <unmanaged-short>ID3DXBaseEffect::GetMatrixTransposePointerArray</unmanaged-short>
  1057. </member>
  1058. <member name="M:SharpDX.Direct3D9.BaseEffect.SetString(SharpDX.Direct3D9.EffectHandle,System.String)">
  1059. <summary>
  1060. <p>Sets a string.</p>
  1061. </summary>
  1062. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  1063. <param name="stringRef"><dd> <p>String to set.</p> </dd></param>
  1064. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  1065. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetString']/*" />
  1066. <msdn-id>bb205726</msdn-id>
  1067. <unmanaged>HRESULT ID3DXBaseEffect::SetString([In] D3DXHANDLE hParameter,[In] const char* pString)</unmanaged>
  1068. <unmanaged-short>ID3DXBaseEffect::SetString</unmanaged-short>
  1069. </member>
  1070. <member name="M:SharpDX.Direct3D9.BaseEffect.GetString_(SharpDX.Direct3D9.EffectHandle)">
  1071. <summary>
  1072. <p>Gets a string.</p>
  1073. </summary>
  1074. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  1075. <returns><dd> <p>Returns a string identified by hParameter.</p> </dd></returns>
  1076. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetString']/*" />
  1077. <msdn-id>bb205704</msdn-id>
  1078. <unmanaged>HRESULT ID3DXBaseEffect::GetString([In] D3DXHANDLE hParameter,[Out] const void** ppString)</unmanaged>
  1079. <unmanaged-short>ID3DXBaseEffect::GetString</unmanaged-short>
  1080. </member>
  1081. <member name="M:SharpDX.Direct3D9.BaseEffect.SetTexture(SharpDX.Direct3D9.EffectHandle,SharpDX.Direct3D9.BaseTexture)">
  1082. <summary>
  1083. <p>Sets a texture.</p>
  1084. </summary>
  1085. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  1086. <param name="textureRef"><dd> <p>Texture object. See <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong>.</p> </dd></param>
  1087. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  1088. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetTexture']/*" />
  1089. <msdn-id>bb205727</msdn-id>
  1090. <unmanaged>HRESULT ID3DXBaseEffect::SetTexture([In] D3DXHANDLE hParameter,[In] IDirect3DBaseTexture9* pTexture)</unmanaged>
  1091. <unmanaged-short>ID3DXBaseEffect::SetTexture</unmanaged-short>
  1092. </member>
  1093. <member name="M:SharpDX.Direct3D9.BaseEffect.GetTexture(SharpDX.Direct3D9.EffectHandle)">
  1094. <summary>
  1095. <p>Gets a texture.</p>
  1096. </summary>
  1097. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  1098. <returns><dd> <p>Returns a texture object. See <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong>.</p> </dd></returns>
  1099. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetTexture']/*" />
  1100. <msdn-id>bb205708</msdn-id>
  1101. <unmanaged>HRESULT ID3DXBaseEffect::GetTexture([In] D3DXHANDLE hParameter,[Out] IDirect3DBaseTexture9** ppTexture)</unmanaged>
  1102. <unmanaged-short>ID3DXBaseEffect::GetTexture</unmanaged-short>
  1103. </member>
  1104. <member name="M:SharpDX.Direct3D9.BaseEffect.GetPixelShader(SharpDX.Direct3D9.EffectHandle)">
  1105. <summary>
  1106. <p>Gets a pixel shader.</p>
  1107. </summary>
  1108. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  1109. <returns><dd> <p>Returns a pixel shader object. See <strong><see cref="T:SharpDX.Direct3D9.PixelShader" /></strong> object.</p> </dd></returns>
  1110. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetPixelShader']/*" />
  1111. <msdn-id>bb205703</msdn-id>
  1112. <unmanaged>HRESULT ID3DXBaseEffect::GetPixelShader([In] D3DXHANDLE hParameter,[Out] IDirect3DPixelShader9** ppPShader)</unmanaged>
  1113. <unmanaged-short>ID3DXBaseEffect::GetPixelShader</unmanaged-short>
  1114. </member>
  1115. <member name="M:SharpDX.Direct3D9.BaseEffect.GetVertexShader(SharpDX.Direct3D9.EffectHandle)">
  1116. <summary>
  1117. <p>Gets a vertex shader.</p>
  1118. </summary>
  1119. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  1120. <returns><dd> <p>Returns a vertex shader object. See <strong><see cref="T:SharpDX.Direct3D9.VertexShader" /></strong>.</p> </dd></returns>
  1121. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::GetVertexShader']/*" />
  1122. <msdn-id>bb205712</msdn-id>
  1123. <unmanaged>HRESULT ID3DXBaseEffect::GetVertexShader([In] D3DXHANDLE hParameter,[Out] IDirect3DVertexShader9** ppVShader)</unmanaged>
  1124. <unmanaged-short>ID3DXBaseEffect::GetVertexShader</unmanaged-short>
  1125. </member>
  1126. <member name="M:SharpDX.Direct3D9.BaseEffect.SetArrayRange(SharpDX.Direct3D9.EffectHandle,System.Int32,System.Int32)">
  1127. <summary>
  1128. <p>Set the range of an array to pass to the device.</p>
  1129. </summary>
  1130. <param name="hParameter"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  1131. <param name="uStart"><dd> <p>Start index.</p> </dd></param>
  1132. <param name="uEnd"><dd> <p>Stop index.</p> </dd></param>
  1133. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  1134. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseEffect::SetArrayRange']/*" />
  1135. <msdn-id>bb205713</msdn-id>
  1136. <unmanaged>HRESULT ID3DXBaseEffect::SetArrayRange([In] D3DXHANDLE hParameter,[In] unsigned int uStart,[In] unsigned int uEnd)</unmanaged>
  1137. <unmanaged-short>ID3DXBaseEffect::SetArrayRange</unmanaged-short>
  1138. </member>
  1139. <member name="T:SharpDX.Direct3D9.BaseTexture">
  1140. <summary>
  1141. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.BaseTexture" /> interface to manipulate texture resources including cube and volume textures.</p>
  1142. </summary>
  1143. <remarks>
  1144. <p>The <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface assigned to a particular stage for a device is obtained by calling the <strong>GetTexture</strong> method.</p><p>The LPDIRECT3DBASETEXTURE9 and PDIRECT3DBASETEXTURE9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface. </p><pre>typedef struct <see cref="T:SharpDX.Direct3D9.BaseTexture" /> *LPDIRECT3DBASETEXTURE9, *PDIRECT3DBASETEXTURE9;</pre>
  1145. </remarks>
  1146. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DBaseTexture9']/*" />
  1147. <msdn-id>bb174322</msdn-id>
  1148. <unmanaged>IDirect3DBaseTexture9</unmanaged>
  1149. <unmanaged-short>IDirect3DBaseTexture9</unmanaged-short>
  1150. </member>
  1151. <member name="M:SharpDX.Direct3D9.BaseTexture.FilterTexture(System.Int32,SharpDX.Direct3D9.Filter)">
  1152. <summary>
  1153. Filters mipmap levels of a texture.
  1154. </summary>
  1155. <param name="sourceLevel">The source level.</param>
  1156. <param name="filter">The filter.</param>
  1157. <returns>
  1158. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  1159. </returns>
  1160. <unmanaged>HRESULT D3DXFilterTexture([In] IDirect3DBaseTexture9* pBaseTexture,[In, Buffer] const PALETTEENTRY* pPalette,[In] unsigned int SrcLevel,[In] D3DX_FILTER Filter)</unmanaged>
  1161. </member>
  1162. <member name="M:SharpDX.Direct3D9.BaseTexture.FilterTexture(System.Int32,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.PaletteEntry[])">
  1163. <summary>
  1164. Filters mipmap levels of a texture.
  1165. </summary>
  1166. <param name="sourceLevel">The source level.</param>
  1167. <param name="filter">The filter.</param>
  1168. <param name="palette">The palette.</param>
  1169. <returns>
  1170. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  1171. </returns>
  1172. <unmanaged>HRESULT D3DXFilterTexture([In] IDirect3DBaseTexture9* pBaseTexture,[In, Buffer] const PALETTEENTRY* pPalette,[In] unsigned int SrcLevel,[In] D3DX_FILTER Filter)</unmanaged>
  1173. </member>
  1174. <member name="M:SharpDX.Direct3D9.BaseTexture.ToFile(SharpDX.Direct3D9.BaseTexture,System.String,SharpDX.Direct3D9.ImageFileFormat)">
  1175. <summary>
  1176. Saves a texture to a file.
  1177. </summary>
  1178. <param name="texture">The texture.</param>
  1179. <param name="fileName">Name of the file.</param>
  1180. <param name="format">The format.</param>
  1181. <returns>
  1182. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  1183. </returns>
  1184. <unmanaged>HRESULT D3DXSaveTextureToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DBaseTexture9* pSrcTexture,[In, Buffer] const PALETTEENTRY* pSrcPalette)</unmanaged>
  1185. </member>
  1186. <member name="M:SharpDX.Direct3D9.BaseTexture.ToFile(SharpDX.Direct3D9.BaseTexture,System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.PaletteEntry[])">
  1187. <summary>
  1188. Saves a texture to a file.
  1189. </summary>
  1190. <param name="texture">The texture.</param>
  1191. <param name="fileName">Name of the file.</param>
  1192. <param name="format">The format.</param>
  1193. <param name="palette">The palette.</param>
  1194. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  1195. <unmanaged>HRESULT D3DXSaveTextureToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DBaseTexture9* pSrcTexture,[In, Buffer] const PALETTEENTRY* pSrcPalette)</unmanaged>
  1196. </member>
  1197. <member name="M:SharpDX.Direct3D9.BaseTexture.ToStream(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.ImageFileFormat)">
  1198. <summary>
  1199. Saves a texture to a stream.
  1200. </summary>
  1201. <param name="texture">The texture.</param>
  1202. <param name="format">The format.</param>
  1203. <returns>A <see cref="T:SharpDX.DataStream"/> containing the saved texture.</returns>
  1204. <unmanaged>HRESULT D3DXSaveTextureToFileInMemory([Out] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DBaseTexture9* pSrcTexture,[In, Buffer] const PALETTEENTRY* pSrcPalette)</unmanaged>
  1205. </member>
  1206. <member name="M:SharpDX.Direct3D9.BaseTexture.ToStream(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.PaletteEntry[])">
  1207. <summary>
  1208. Saves a texture to a stream.
  1209. </summary>
  1210. <param name="texture">The texture.</param>
  1211. <param name="format">The format.</param>
  1212. <param name="palette">The palette.</param>
  1213. <returns>A <see cref="T:SharpDX.DataStream"/> containing the saved texture.</returns>
  1214. <unmanaged>HRESULT D3DXSaveTextureToFileInMemory([Out] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DBaseTexture9* pSrcTexture,[In, Buffer] const PALETTEENTRY* pSrcPalette)</unmanaged>
  1215. </member>
  1216. <member name="P:SharpDX.Direct3D9.BaseTexture.LevelOfDetails">
  1217. <summary>
  1218. Gets or sets the level of details.
  1219. </summary>
  1220. <value>
  1221. The level of details.
  1222. </value>
  1223. <unmanaged>unsigned int IDirect3DBaseTexture9::GetLOD()</unmanaged>
  1224. <unmanaged>unsigned int IDirect3DBaseTexture9::SetLOD([In] unsigned int LODNew)</unmanaged>
  1225. </member>
  1226. <member name="M:SharpDX.Direct3D9.BaseTexture.#ctor(System.IntPtr)">
  1227. <summary>
  1228. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.BaseTexture"/> class.
  1229. </summary>
  1230. <param name="nativePtr">The native pointer.</param>
  1231. </member>
  1232. <member name="M:SharpDX.Direct3D9.BaseTexture.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.BaseTexture">
  1233. <summary>
  1234. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.BaseTexture"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  1235. </summary>
  1236. <param name="nativePointer">The native pointer.</param>
  1237. <returns>
  1238. The result of the conversion.
  1239. </returns>
  1240. </member>
  1241. <member name="P:SharpDX.Direct3D9.BaseTexture.LevelCount">
  1242. <summary>
  1243. <p>Returns the number of texture levels in a multilevel texture.</p>
  1244. </summary>
  1245. <remarks>
  1246. <p><strong>Warning</strong>??If you create a texture with <strong><see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" /></strong> to make that texture automatically generate sublevels, <strong>GetLevelCount</strong> always returns 1 for the number of levels.</p><p>This method applies to the following interfaces, which inherit from <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong>.</p><ul> <li> <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> </li> <li> <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> </li> <li> <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> </li> </ul>
  1247. </remarks>
  1248. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DBaseTexture9::GetLevelCount']/*" />
  1249. <msdn-id>bb174325</msdn-id>
  1250. <unmanaged>GetLevelCount</unmanaged>
  1251. <unmanaged-short>GetLevelCount</unmanaged-short>
  1252. <unmanaged>unsigned int IDirect3DBaseTexture9::GetLevelCount()</unmanaged>
  1253. </member>
  1254. <member name="P:SharpDX.Direct3D9.BaseTexture.AutoMipGenerationFilter">
  1255. <summary>
  1256. <p>Get or sets the filter type that is used for automatically generated mipmap sublevels.</p>
  1257. </summary>
  1258. <remarks>
  1259. <p>Changing the filter type "dirties" the mipmap sublevels and causes them to be regenerated.</p><p>The (default) filter type set at texture creation time is <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" />. If the driver doesn't support a linear filter, the filter type will be set to <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" />. All filter types supported by the driver for regular texture filtering are supported for autogeneration except <see cref="F:SharpDX.Direct3D9.TextureFilter.None" />. For each resource type, drivers should support all the filter types reported in the corresponding texture, CubeTexture, and volumetexture filter caps. For more information about texture types, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p><p>This method has no effect if the texture is not created with <see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" />.</p>
  1260. </remarks>
  1261. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DBaseTexture9::GetAutoGenFilterType']/*" />
  1262. <msdn-id>bb174324</msdn-id>
  1263. <unmanaged>GetAutoGenFilterType / SetAutoGenFilterType</unmanaged>
  1264. <unmanaged-short>GetAutoGenFilterType</unmanaged-short>
  1265. <unmanaged>D3DTEXTUREFILTERTYPE IDirect3DBaseTexture9::GetAutoGenFilterType()</unmanaged>
  1266. </member>
  1267. <member name="M:SharpDX.Direct3D9.BaseTexture.SetLOD(System.Int32)">
  1268. <summary>
  1269. <p>Sets the most detailed level-of-detail for a managed texture. </p>
  1270. </summary>
  1271. <param name="lODNew"><dd> <p>Most detailed level-of-detail value to set for the mipmap chain. </p> </dd></param>
  1272. <returns><p>A DWORD value, clamped to the maximum level-of-detail value (one less than the total number of levels). Subsequent calls to this method will return the clamped value, not the level-of-detail value that was previously set.</p></returns>
  1273. <remarks>
  1274. <p>This method applies to the following interfaces, which inherit from <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong>.</p><ul> <li> <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> </li> <li> <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> </li> <li> <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> </li> <li> <strong><see cref="T:SharpDX.Direct3D9.Resource" /></strong> </li> </ul><p><strong>SetLOD</strong> is used for level-of-detail control of managed textures. This method returns 0 on nonmanaged textures.</p><p><strong>SetLOD</strong> communicates to the Direct3D texture manager the most detailed mipmap in the chain that should be loaded into local video memory. For example, in a five-level mipmap chain, setting LODNew to 2 indicates that the texture manager should load only mipmap levels 2 through 4 into local video memory at any given time. </p><p>More specifically, if the texture was created with the dimensions of 256x256, setting the most detailed level to 0 indicates that 256 x 256 is the largest mipmap available, setting the most detailed level to 1 indicates that 128 x 128 is the largest mipmap available, and so on, up to the most detailed mip level (the smallest texture size) for the chain.</p>
  1275. </remarks>
  1276. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DBaseTexture9::SetLOD']/*" />
  1277. <msdn-id>bb174328</msdn-id>
  1278. <unmanaged>unsigned int IDirect3DBaseTexture9::SetLOD([In] unsigned int LODNew)</unmanaged>
  1279. <unmanaged-short>IDirect3DBaseTexture9::SetLOD</unmanaged-short>
  1280. </member>
  1281. <member name="M:SharpDX.Direct3D9.BaseTexture.GetLOD">
  1282. <summary>
  1283. <p>Returns a value clamped to the maximum level-of-detail set for a managed texture (this method is not supported for an unmanaged texture).</p>
  1284. </summary>
  1285. <returns><p>A DWORD value, clamped to the maximum level-of-detail value (one less than the total number of levels). Calling <strong>GetLOD</strong> on an unmanaged texture is not supported and will result in a D3DERR error code being returned.</p></returns>
  1286. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DBaseTexture9::GetLOD']/*" />
  1287. <msdn-id>bb174326</msdn-id>
  1288. <unmanaged>unsigned int IDirect3DBaseTexture9::GetLOD()</unmanaged>
  1289. <unmanaged-short>IDirect3DBaseTexture9::GetLOD</unmanaged-short>
  1290. </member>
  1291. <member name="M:SharpDX.Direct3D9.BaseTexture.GetLevelCount">
  1292. <summary>
  1293. <p>Returns the number of texture levels in a multilevel texture.</p>
  1294. </summary>
  1295. <returns><p>A <strong>DWORD</strong> value that indicates the number of texture levels in a multilevel texture.</p></returns>
  1296. <remarks>
  1297. <p><strong>Warning</strong>??If you create a texture with <strong><see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" /></strong> to make that texture automatically generate sublevels, <strong>GetLevelCount</strong> always returns 1 for the number of levels.</p><p>This method applies to the following interfaces, which inherit from <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong>.</p><ul> <li> <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> </li> <li> <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> </li> <li> <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> </li> </ul>
  1298. </remarks>
  1299. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DBaseTexture9::GetLevelCount']/*" />
  1300. <msdn-id>bb174325</msdn-id>
  1301. <unmanaged>unsigned int IDirect3DBaseTexture9::GetLevelCount()</unmanaged>
  1302. <unmanaged-short>IDirect3DBaseTexture9::GetLevelCount</unmanaged-short>
  1303. </member>
  1304. <member name="M:SharpDX.Direct3D9.BaseTexture.SetAutoMipGenerationFilter(SharpDX.Direct3D9.TextureFilter)">
  1305. <summary>
  1306. <p>Set the filter type that is used for automatically generated mipmap sublevels.</p>
  1307. </summary>
  1308. <param name="filterType"><dd> <p>Filter type. See <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>. This method will fail if the filter type is invalid or not supported.</p> </dd></param>
  1309. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  1310. <remarks>
  1311. <p>Changing the filter type "dirties" the mipmap sublevels and causes them to be regenerated.</p><p>The (default) filter type set at texture creation time is <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" />. If the driver does not support a linear filter, the filter type will be set to <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" />. All filter types supported by the driver for regular texture filtering are supported for autogeneration except <see cref="F:SharpDX.Direct3D9.TextureFilter.None" />. <strong>SetAutoGenFilterType</strong> will fail unless the driver sets the appropriate D3DPTFILTERCAPS_MINFxxx caps. These values are specified in the TextureFilterCaps and/or CubeTextureFilterCaps members of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>. For more information about texture filter types, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p><p>This method has no effect if the texture is not created with <see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" />. In this case, no failure is returned. For more information about usage constants, see <see cref="T:SharpDX.Direct3D9.Usage" />.</p>
  1312. </remarks>
  1313. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DBaseTexture9::SetAutoGenFilterType']/*" />
  1314. <msdn-id>bb174327</msdn-id>
  1315. <unmanaged>HRESULT IDirect3DBaseTexture9::SetAutoGenFilterType([In] D3DTEXTUREFILTERTYPE FilterType)</unmanaged>
  1316. <unmanaged-short>IDirect3DBaseTexture9::SetAutoGenFilterType</unmanaged-short>
  1317. </member>
  1318. <member name="M:SharpDX.Direct3D9.BaseTexture.GetAutoMipGenerationFilter">
  1319. <summary>
  1320. <p>Get the filter type that is used for automatically generated mipmap sublevels.</p>
  1321. </summary>
  1322. <returns><p>Filter type. See <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>. A texture must be created with <see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" /> to use this method. Any other usage value will cause this method to return <see cref="F:SharpDX.Direct3D9.TextureFilter.None" />. </p></returns>
  1323. <remarks>
  1324. <p>Changing the filter type "dirties" the mipmap sublevels and causes them to be regenerated.</p><p>The (default) filter type set at texture creation time is <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" />. If the driver doesn't support a linear filter, the filter type will be set to <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" />. All filter types supported by the driver for regular texture filtering are supported for autogeneration except <see cref="F:SharpDX.Direct3D9.TextureFilter.None" />. For each resource type, drivers should support all the filter types reported in the corresponding texture, CubeTexture, and volumetexture filter caps. For more information about texture types, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p><p>This method has no effect if the texture is not created with <see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" />.</p>
  1325. </remarks>
  1326. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DBaseTexture9::GetAutoGenFilterType']/*" />
  1327. <msdn-id>bb174324</msdn-id>
  1328. <unmanaged>D3DTEXTUREFILTERTYPE IDirect3DBaseTexture9::GetAutoGenFilterType()</unmanaged>
  1329. <unmanaged-short>IDirect3DBaseTexture9::GetAutoGenFilterType</unmanaged-short>
  1330. </member>
  1331. <member name="M:SharpDX.Direct3D9.BaseTexture.GenerateMipSubLevels">
  1332. <summary>
  1333. <p>Generate mipmap sublevels.</p>
  1334. </summary>
  1335. <remarks>
  1336. <p>An application can generate mipmap sublevels at any time by calling <strong>GenerateMipSubLevels</strong>. To have mipmap sublevels generated automatically at texture creation time (see Automatic Generation of Mipmaps (Direct3D 9)), specify <see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" /> during <strong>CreateTexture</strong>, <strong>CreateCubeTexture</strong>, and <strong>CreateVolumeTexture</strong>. For more information about usage constants, see <see cref="T:SharpDX.Direct3D9.Usage" />.</p>
  1337. </remarks>
  1338. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DBaseTexture9::GenerateMipSubLevels']/*" />
  1339. <msdn-id>bb174323</msdn-id>
  1340. <unmanaged>void IDirect3DBaseTexture9::GenerateMipSubLevels()</unmanaged>
  1341. <unmanaged-short>IDirect3DBaseTexture9::GenerateMipSubLevels</unmanaged-short>
  1342. </member>
  1343. <member name="T:SharpDX.Direct3D9.BoneCombination">
  1344. <summary>
  1345. No documentation.
  1346. </summary>
  1347. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXBONECOMBINATION']/*" />
  1348. <msdn-id>bb280322</msdn-id>
  1349. <unmanaged>D3DXBONECOMBINATION</unmanaged>
  1350. <unmanaged-short>D3DXBONECOMBINATION</unmanaged-short>
  1351. </member>
  1352. <member name="F:SharpDX.Direct3D9.BoneCombination.BoneIds">
  1353. <summary>
  1354. Get the bone identifiers.
  1355. </summary>
  1356. </member>
  1357. <member name="F:SharpDX.Direct3D9.BoneCombination.AttribId">
  1358. <summary>
  1359. No documentation.
  1360. </summary>
  1361. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXBONECOMBINATION::AttribId']/*" />
  1362. <msdn-id>bb280322</msdn-id>
  1363. <unmanaged>unsigned int AttribId</unmanaged>
  1364. <unmanaged-short>unsigned int AttribId</unmanaged-short>
  1365. </member>
  1366. <member name="F:SharpDX.Direct3D9.BoneCombination.FaceStart">
  1367. <summary>
  1368. No documentation.
  1369. </summary>
  1370. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXBONECOMBINATION::FaceStart']/*" />
  1371. <msdn-id>bb280322</msdn-id>
  1372. <unmanaged>unsigned int FaceStart</unmanaged>
  1373. <unmanaged-short>unsigned int FaceStart</unmanaged-short>
  1374. </member>
  1375. <member name="F:SharpDX.Direct3D9.BoneCombination.FaceCount">
  1376. <summary>
  1377. No documentation.
  1378. </summary>
  1379. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXBONECOMBINATION::FaceCount']/*" />
  1380. <msdn-id>bb280322</msdn-id>
  1381. <unmanaged>unsigned int FaceCount</unmanaged>
  1382. <unmanaged-short>unsigned int FaceCount</unmanaged-short>
  1383. </member>
  1384. <member name="F:SharpDX.Direct3D9.BoneCombination.VertexStart">
  1385. <summary>
  1386. No documentation.
  1387. </summary>
  1388. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXBONECOMBINATION::VertexStart']/*" />
  1389. <msdn-id>bb280322</msdn-id>
  1390. <unmanaged>unsigned int VertexStart</unmanaged>
  1391. <unmanaged-short>unsigned int VertexStart</unmanaged-short>
  1392. </member>
  1393. <member name="F:SharpDX.Direct3D9.BoneCombination.VertexCount">
  1394. <summary>
  1395. No documentation.
  1396. </summary>
  1397. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXBONECOMBINATION::VertexCount']/*" />
  1398. <msdn-id>bb280322</msdn-id>
  1399. <unmanaged>unsigned int VertexCount</unmanaged>
  1400. <unmanaged-short>unsigned int VertexCount</unmanaged-short>
  1401. </member>
  1402. <member name="F:SharpDX.Direct3D9.BoneCombination.BonedIdsPointer">
  1403. <summary>
  1404. No documentation.
  1405. </summary>
  1406. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXBONECOMBINATION::BoneId']/*" />
  1407. <msdn-id>bb280322</msdn-id>
  1408. <unmanaged>unsigned int* BoneId</unmanaged>
  1409. <unmanaged-short>unsigned int BoneId</unmanaged-short>
  1410. </member>
  1411. <member name="T:SharpDX.Direct3D9.Capabilities">
  1412. <summary>
  1413. <p>Represents the capabilities of the hardware exposed through the Direct3D object.</p>
  1414. </summary>
  1415. <remarks>
  1416. <p>The MaxTextureBlendStages and MaxSimultaneousTextures members might seem similar, but they contain different information. The MaxTextureBlendStages member contains the total number of texture-blending stages supported by the current device, and the MaxSimultaneousTextures member describes how many of those stages can have textures bound to them by using the <strong>SetTexture</strong> method.</p><p>When the driver fills this structure, it can set values for execute-buffer capabilities, even when the interface being used to retrieve the capabilities (such as <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>) does not support execute buffers.</p><p>In general, performance problems may occur if you use a texture and then modify it during a scene. Ensure that no texture used in the current <strong>BeginScene</strong> and <strong>EndScene</strong> block is evicted unless absolutely necessary. In the case of extremely high texture usage within a scene, the results are undefined. This occurs when you modify a texture that you have used in the scene and there is no spare texture memory available. For such systems, the contents of the z-buffer become invalid at EndScene. Applications should not call <strong>UpdateSurface</strong> to or from the back buffer on this type of hardware inside a BeginScene/EndScene pair. In addition, applications should not try to access the z-buffer if the <see cref="F:SharpDX.Direct3D9.RasterCaps.ZBufferLessHsr" /> capability flag is set. Finally, applications should not lock the back buffer or the z-buffer inside a BeginScene/EndScene pair.</p><p>The following flags concerning mipmapped textures are not supported in Direct3D 9. </p><ul> <li>D3DPTFILTERCAPS_LINEAR</li> <li>D3DPTFILTERCAPS_LINEARMIPLINEAR</li> <li>D3DPTFILTERCAPS_LINEARMIPNEAREST</li> <li>D3DPTFILTERCAPS_MIPNEAREST</li> <li>D3DPTFILTERCAPS_NEAREST</li> </ul>
  1417. </remarks>
  1418. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9']/*" />
  1419. <msdn-id>bb172513</msdn-id>
  1420. <unmanaged>D3DCAPS9</unmanaged>
  1421. <unmanaged-short>D3DCAPS9</unmanaged-short>
  1422. </member>
  1423. <member name="P:SharpDX.Direct3D9.Capabilities.PixelShaderVersion">
  1424. <summary>
  1425. Gets the pixel shader version.
  1426. </summary>
  1427. </member>
  1428. <member name="P:SharpDX.Direct3D9.Capabilities.VertexShaderVersion">
  1429. <summary>
  1430. Gets the vertex shader version.
  1431. </summary>
  1432. </member>
  1433. <member name="F:SharpDX.Direct3D9.Capabilities.DeviceType">
  1434. <summary>
  1435. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type, which identifies what type of resources are used for processing vertices.</p> </dd>
  1436. </summary>
  1437. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::DeviceType']/*" />
  1438. <msdn-id>bb172513</msdn-id>
  1439. <unmanaged>D3DDEVTYPE DeviceType</unmanaged>
  1440. <unmanaged-short>D3DDEVTYPE DeviceType</unmanaged-short>
  1441. </member>
  1442. <member name="F:SharpDX.Direct3D9.Capabilities.AdapterOrdinal">
  1443. <summary>
  1444. <dd> <p>Adapter on which this Direct3D device was created. This ordinal is valid only to pass to methods of the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface that created this Direct3D device. The <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface can always be retrieved by calling <strong>GetDirect3D</strong>. </p> </dd>
  1445. </summary>
  1446. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::AdapterOrdinal']/*" />
  1447. <msdn-id>bb172513</msdn-id>
  1448. <unmanaged>unsigned int AdapterOrdinal</unmanaged>
  1449. <unmanaged-short>unsigned int AdapterOrdinal</unmanaged-short>
  1450. </member>
  1451. <member name="F:SharpDX.Direct3D9.Capabilities.Caps">
  1452. <summary>
  1453. <dd> <p> </p><p>The following driver-specific capability.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Caps.ReadScanline" /></strong></dt> </dl> </td><td> <p>Display hardware is capable of returning the current scan line.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Caps.Overlay" /></strong></dt> </dl> </td><td> <p>The display driver supports an overlay DDI that allows for verification of overlay capabilities. For more information about the overlay DDI, see Overlay DDI.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> </table> <p>?</p> </dd>
  1454. </summary>
  1455. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::Caps']/*" />
  1456. <msdn-id>bb172513</msdn-id>
  1457. <unmanaged>D3DCAPS Caps</unmanaged>
  1458. <unmanaged-short>D3DCAPS Caps</unmanaged-short>
  1459. </member>
  1460. <member name="F:SharpDX.Direct3D9.Capabilities.Caps2">
  1461. <summary>
  1462. <dd> <p>Driver-specific capabilities identified in <see cref="T:SharpDX.Direct3D9.Caps2" />.</p> </dd>
  1463. </summary>
  1464. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::Caps2']/*" />
  1465. <msdn-id>bb172513</msdn-id>
  1466. <unmanaged>D3DCAPS2 Caps2</unmanaged>
  1467. <unmanaged-short>D3DCAPS2 Caps2</unmanaged-short>
  1468. </member>
  1469. <member name="F:SharpDX.Direct3D9.Capabilities.Caps3">
  1470. <summary>
  1471. <dd> <p>Driver-specific capabilities identified in <see cref="T:SharpDX.Direct3D9.Caps3" />.</p> </dd>
  1472. </summary>
  1473. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::Caps3']/*" />
  1474. <msdn-id>bb172513</msdn-id>
  1475. <unmanaged>D3DCAPS3 Caps3</unmanaged>
  1476. <unmanaged-short>D3DCAPS3 Caps3</unmanaged-short>
  1477. </member>
  1478. <member name="F:SharpDX.Direct3D9.Capabilities.PresentationIntervals">
  1479. <summary>
  1480. <dd> <p> </p><p>Bit mask of values representing what presentation swap intervals are available.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" /></strong></dt> </dl> </td><td> <p>The driver supports an immediate presentation swap interval.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.One" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Two" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every second screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Three" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every third screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Four" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every fourth screen refresh.</p> </td></tr> </table> <p>?</p> </dd>
  1481. </summary>
  1482. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::PresentationIntervals']/*" />
  1483. <msdn-id>bb172513</msdn-id>
  1484. <unmanaged>D3DPRESENT_INTERVAL PresentationIntervals</unmanaged>
  1485. <unmanaged-short>D3DPRESENT_INTERVAL PresentationIntervals</unmanaged-short>
  1486. </member>
  1487. <member name="F:SharpDX.Direct3D9.Capabilities.CursorCaps">
  1488. <summary>
  1489. <dd> <p> </p><p>Bit mask indicating what hardware support is available for cursors. Direct3D 9 does not define alpha-blending cursor capabilities.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CursorCaps.Color" /></strong></dt> </dl> </td><td> <p>A full-color cursor is supported in hardware. Specifically, this flag indicates that the driver supports at least a hardware color cursor in high-resolution modes (with scan lines greater than or equal to 400).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CursorCaps.LowResolution" /></strong></dt> </dl> </td><td> <p>A full-color cursor is supported in hardware. Specifically, this flag indicates that the driver supports a hardware color cursor in both high-resolution and low-resolution modes (with scan lines less than 400).</p> </td></tr> </table> <p>?</p> </dd>
  1490. </summary>
  1491. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::CursorCaps']/*" />
  1492. <msdn-id>bb172513</msdn-id>
  1493. <unmanaged>D3DCURSORCAPS CursorCaps</unmanaged>
  1494. <unmanaged-short>D3DCURSORCAPS CursorCaps</unmanaged-short>
  1495. </member>
  1496. <member name="F:SharpDX.Direct3D9.Capabilities.DeviceCaps">
  1497. <summary>
  1498. <dd> <p> </p><p>Flags identifying the capabilities of the device.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.CanBlitSysToNonLocal" /></strong></dt> </dl> </td><td> <p>Device supports blits from system-memory textures to nonlocal video-memory textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.CanRenderAfterFlip" /></strong></dt> </dl> </td><td> <p>Device can queue rendering commands after a page flip. Applications do not change their behavior if this flag is set; this capability means that the device is relatively fast.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimitives2" /></strong></dt> </dl> </td><td> <p>Device can support at least a DirectX 5-compliant driver.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimitives2Extended" /></strong></dt> </dl> </td><td> <p>Device can support at least a DirectX 7-compliant driver.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimTLVertex" /></strong></dt> </dl> </td><td> <p>Device exports an <strong><see cref="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)" /></strong>-aware hal.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.ExecuteSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can use execute buffers from system memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.ExecuteVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can use execute buffers from video memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.HWRasterization" /></strong></dt> </dl> </td><td> <p>Device has hardware acceleration for scene rasterization.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.HWTransformAndLight" /></strong></dt> </dl> </td><td> <p>Device can support transformation and lighting in hardware.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.NPatches" /></strong></dt> </dl> </td><td> <p>Device supports N patches.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.PureDevice" /></strong></dt> </dl> </td><td> <p>Device can support rasterization, transform, lighting, and shading in hardware.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.QuinticRTPatches" /></strong></dt> </dl> </td><td> <p>Device supports quintic B?zier curves and B-splines.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatches" /></strong></dt> </dl> </td><td> <p>Device supports rectangular and triangular patches.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatchHandleZero" /></strong></dt> </dl> </td><td> <p>When this device capability is set, the hardware architecture does not require caching of any information, and uncached patches (handle zero) will be drawn as efficiently as cached ones. Note that setting <see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatchHandleZero" /> does not mean that a patch with handle zero can be drawn. A handle-zero patch can always be drawn whether this cap is set or not.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.SeparateTextureMemory" /></strong></dt> </dl> </td><td> <p>Device is texturing from separate memory pools.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureNonLocalVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from non-local video memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from system memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from device memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TLVertexSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can use buffers from system memory for transformed and lit vertices.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TLVertexVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can use buffers from video memory for transformed and lit vertices.</p> </td></tr> </table> <p>?</p> </dd>
  1499. </summary>
  1500. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::DevCaps']/*" />
  1501. <msdn-id>bb172513</msdn-id>
  1502. <unmanaged>D3DDEVCAPS DevCaps</unmanaged>
  1503. <unmanaged-short>D3DDEVCAPS DevCaps</unmanaged-short>
  1504. </member>
  1505. <member name="F:SharpDX.Direct3D9.Capabilities.PrimitiveMiscCaps">
  1506. <summary>
  1507. <dd> <p>Miscellaneous driver primitive capabilities. See <see cref="T:SharpDX.Direct3D9.PrimitiveMiscCaps" />.</p> </dd>
  1508. </summary>
  1509. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::PrimitiveMiscCaps']/*" />
  1510. <msdn-id>bb172513</msdn-id>
  1511. <unmanaged>D3DPMISCCAPS PrimitiveMiscCaps</unmanaged>
  1512. <unmanaged-short>D3DPMISCCAPS PrimitiveMiscCaps</unmanaged-short>
  1513. </member>
  1514. <member name="F:SharpDX.Direct3D9.Capabilities.RasterCaps">
  1515. <summary>
  1516. <dd> <p> </p><p>Information on raster-drawing capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.Anisotropy" /></strong></dt> </dl> </td><td> <p>Device supports anisotropic filtering.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ColorPerspective" /></strong></dt> </dl> </td><td> <p>Device iterates colors perspective correctly.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.Dither" /></strong></dt> </dl> </td><td> <p>Device can dither to improve color resolution.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.DepthBias" /></strong></dt> </dl> </td><td> <p>Device supports legacy depth bias. For true depth bias, see <see cref="F:SharpDX.Direct3D9.RasterCaps.SlopeScaleDepthBias" />.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogRange" /></strong></dt> </dl> </td><td> <p>Device supports range-based fog. In range-based fog, the distance of an object from the viewer is used to compute fog effects, not the depth of the object (that is, the z-coordinate) in the scene.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogTable" /></strong></dt> </dl> </td><td> <p>Device calculates the fog value by referring to a lookup table containing fog values that are indexed to the depth of a given pixel.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogVertex" /></strong></dt> </dl> </td><td> <p>Device calculates the fog value during the lighting operation and interpolates the fog value during rasterization.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.MipMapLodBias" /></strong></dt> </dl> </td><td> <p>Device supports level-of-detail bias adjustments. These bias adjustments enable an application to make a mipmap appear crisper or less sharp than it normally would. For more information about level-of-detail bias in mipmaps, see <see cref="F:SharpDX.Direct3D9.SamplerState.MipMapLodBias" />.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.MultisampleToggle" /></strong></dt> </dl> </td><td> <p>Device supports toggling multisampling on and off between <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> (using <see cref="F:SharpDX.Direct3D9.RenderState.MultisampleAntialias" />).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ScissorTest" /></strong></dt> </dl> </td><td> <p>Device supports scissor test. See Scissor Test (Direct3D 9).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.SlopeScaleDepthBias" /></strong></dt> </dl> </td><td> <p>Device performs true slope-scale based depth bias. This is in contrast to the legacy style depth bias.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.WBuffer" /></strong></dt> </dl> </td><td> <p>Device supports depth buffering using w.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.WFog" /></strong></dt> </dl> </td><td> <p>Device supports w-based fog. W-based fog is used when a perspective projection matrix is specified, but affine projections still use z-based fog. The system considers a projection matrix that contains a nonzero value in the [3][4] element to be a perspective projection matrix.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ZBufferLessHsr" /></strong></dt> </dl> </td><td> <p>Device can perform hidden-surface removal (HSR) without requiring the application to sort polygons and without requiring the allocation of a depth-buffer. This leaves more video memory for textures. The method used to perform HSR is hardware-dependent and is transparent to the application.</p> <p>Z-bufferless HSR is performed if no depth-buffer surface is associated with the rendering-target surface and the depth-buffer comparison test is enabled (that is, when the state value associated with the <strong><see cref="F:SharpDX.Direct3D9.RenderState.ZEnable" /></strong> enumeration constant is set to <strong>TRUE</strong>).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ZFog" /></strong></dt> </dl> </td><td> <p>Device supports z-based fog.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.DepthTest" /></strong></dt> </dl> </td><td> <p>Device can perform z-test operations. This effectively renders a primitive and indicates whether any z pixels have been rendered.</p> </td></tr> </table> <p>?</p> </dd>
  1517. </summary>
  1518. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::RasterCaps']/*" />
  1519. <msdn-id>bb172513</msdn-id>
  1520. <unmanaged>D3DPRASTERCAPS RasterCaps</unmanaged>
  1521. <unmanaged-short>D3DPRASTERCAPS RasterCaps</unmanaged-short>
  1522. </member>
  1523. <member name="F:SharpDX.Direct3D9.Capabilities.DepthCompareCaps">
  1524. <summary>
  1525. <dd> <p> </p><p>Z-buffer comparison capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Always" /></strong></dt> </dl> </td><td> <p>Always pass the z-test.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Equal" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z equals the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Greater" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is greater than the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.GreaterEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is greater than or equal to the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Less" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is less than the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.LessEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is less than or equal to the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Never" /></strong></dt> </dl> </td><td> <p>Always fail the z-test.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.NotEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z does not equal the current z.</p> </td></tr> </table> <p>?</p> </dd>
  1526. </summary>
  1527. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::ZCmpCaps']/*" />
  1528. <msdn-id>bb172513</msdn-id>
  1529. <unmanaged>D3DPCMPCAPS ZCmpCaps</unmanaged>
  1530. <unmanaged-short>D3DPCMPCAPS ZCmpCaps</unmanaged-short>
  1531. </member>
  1532. <member name="F:SharpDX.Direct3D9.Capabilities.SourceBlendCaps">
  1533. <summary>
  1534. <dd> <p> </p><p>Source-blending capabilities. This member can be one or more of the following flags. (The RGBA values of the source and destination are indicated by the subscripts s and d.)</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.BlendFactor" /></strong></dt> </dl> </td><td> <p>The driver supports both <see cref="F:SharpDX.Direct3D9.Blend.BlendFactor" /> and <see cref="F:SharpDX.Direct3D9.Blend.InverseBlendFactor" />. See <strong><see cref="T:SharpDX.Direct3D9.Blend" /></strong>.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.BothInverseSourceAlpha" /></strong></dt> </dl> </td><td> <p>Source blend factor is (1 - As, 1 - As, 1 - As, 1 - As) and destination blend factor is (As, As, As, As); the destination blend selection is overridden.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.Bothsrcalpha" /></strong></dt> </dl> </td><td> <p>The driver supports the <see cref="F:SharpDX.Direct3D9.Blend.Bothsrcalpha" /> blend mode. (This blend mode is obsolete. For more information, see <see cref="T:SharpDX.Direct3D9.Blend" />.)</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.DestinationAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (Ad, Ad, Ad, Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.DestinationColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (Rd, Gd, Bd, Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseDestinationAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Ad, 1 - Ad, 1 - Ad, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseDestinationColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - As, 1 - As, 1 - As, 1 - As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Rs, 1 - Gs, 1 - Bs, 1 - As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceColor2" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - PSOutColor[1]r, 1 - PSOutColor[1]g, 1 - PSOutColor[1]b, not used)). See <strong>Render Target Blending</strong>.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.One" /></strong></dt> </dl> </td><td> <p>Blend factor is (1, 1, 1, 1).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (As, As, As, As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceAlphaSaturated" /></strong></dt> </dl> </td><td> <p>Blend factor is (f, f, f, 1); f = min(As, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (Rs, Gs, Bs, As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceColor2" /></strong></dt> </dl> </td><td> <p>Blend factor is (PSOutColor[1]r, PSOutColor[1]g, PSOutColor[1]b, not used). See <strong>Render Target Blending</strong>.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.Zero" /></strong></dt> </dl> </td><td> <p>Blend factor is (0, 0, 0, 0).</p> </td></tr> </table> <p>?</p> </dd>
  1535. </summary>
  1536. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::SrcBlendCaps']/*" />
  1537. <msdn-id>bb172513</msdn-id>
  1538. <unmanaged>D3DPBLENDCAPS SrcBlendCaps</unmanaged>
  1539. <unmanaged-short>D3DPBLENDCAPS SrcBlendCaps</unmanaged-short>
  1540. </member>
  1541. <member name="F:SharpDX.Direct3D9.Capabilities.DestinationBlendCaps">
  1542. <summary>
  1543. <dd> <p>Destination-blending capabilities. This member can be the same capabilities that are defined for the SrcBlendCaps member. </p> </dd>
  1544. </summary>
  1545. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::DestBlendCaps']/*" />
  1546. <msdn-id>bb172513</msdn-id>
  1547. <unmanaged>D3DPBLENDCAPS DestBlendCaps</unmanaged>
  1548. <unmanaged-short>D3DPBLENDCAPS DestBlendCaps</unmanaged-short>
  1549. </member>
  1550. <member name="F:SharpDX.Direct3D9.Capabilities.AlpaCompareCaps">
  1551. <summary>
  1552. <dd> <p>Alpha-test comparison capabilities. This member can include the same capability flags defined for the ZCmpCaps member. If this member contains only the <see cref="F:SharpDX.Direct3D9.CompareCaps.Always" /> capability or only the <see cref="F:SharpDX.Direct3D9.CompareCaps.Never" /> capability, the driver does not support alpha tests. Otherwise, the flags identify the individual comparisons that are supported for alpha testing. </p> </dd>
  1553. </summary>
  1554. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::AlphaCmpCaps']/*" />
  1555. <msdn-id>bb172513</msdn-id>
  1556. <unmanaged>D3DPCMPCAPS AlphaCmpCaps</unmanaged>
  1557. <unmanaged-short>D3DPCMPCAPS AlphaCmpCaps</unmanaged-short>
  1558. </member>
  1559. <member name="F:SharpDX.Direct3D9.Capabilities.ShadeCaps">
  1560. <summary>
  1561. <dd> <p>Shading operations capabilities. It is assumed, in general, that if a device supports a given command at all, it supports the <see cref="F:SharpDX.Direct3D9.ShadeMode.Flat" /> mode (as specified in the <strong><see cref="T:SharpDX.Direct3D9.ShadeMode" /></strong> enumerated type). This flag specifies whether the driver can also support Gouraud shading and whether alpha color components are supported. When alpha components are not supported, the alpha value of colors generated is implicitly 255. This is the maximum possible alpha (that is, the alpha component is at full intensity). </p> <p>The color, specular highlights, fog, and alpha interpolants of a triangle each have capability flags that an application can use to find out how they are implemented by the device driver.</p> <p> </p><p>This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.AlphaGouraudBlend" /></strong></dt> </dl> </td><td> <p>Device can support an alpha component for Gouraud-blended transparency (the <see cref="F:SharpDX.Direct3D9.ShadeMode.Gouraud" /> state for the <see cref="T:SharpDX.Direct3D9.ShadeMode" /> enumerated type). In this mode, the alpha color component of a primitive is provided at vertices and interpolated across a face along with the other color components.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.ColorGouraudRgb" /></strong></dt> </dl> </td><td> <p>Device can support colored Gouraud shading. In this mode, the per-vertex color components (red, green, and blue) are interpolated across a triangle face.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.FogGouraud" /></strong></dt> </dl> </td><td> <p>Device can support fog in the Gouraud shading mode.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.SpecularGouraudRgb" /></strong></dt> </dl> </td><td> <p>Device supports Gouraud shading of specular highlights.</p> </td></tr> </table> <p>?</p> </dd>
  1562. </summary>
  1563. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::ShadeCaps']/*" />
  1564. <msdn-id>bb172513</msdn-id>
  1565. <unmanaged>D3DPSHADECAPS ShadeCaps</unmanaged>
  1566. <unmanaged-short>D3DPSHADECAPS ShadeCaps</unmanaged-short>
  1567. </member>
  1568. <member name="F:SharpDX.Direct3D9.Capabilities.TextureCaps">
  1569. <summary>
  1570. <dd> <p> </p><p>Miscellaneous texture-mapping capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Alpha" /></strong></dt> </dl> </td><td> <p>Alpha in texture pixels is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.AlphaPalette" /></strong></dt> </dl> </td><td> <p>Device can draw alpha from texture palettes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.CubeMap" /></strong></dt> </dl> </td><td> <p>Supports cube textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.CubeMapPow2" /></strong></dt> </dl> </td><td> <p>Device requires that cube texture maps have dimensions specified as powers of two.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipCubeMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped cube textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipVolumeMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped volume textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /></strong></dt> </dl> </td><td> <p><see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /> is also set, conditionally supports the use of 2D textures with dimensions that are not powers of two. A device that exposes this capability can use such a texture if all of the following requirements are met.</p> <p> </p><ul> <li>The texture addressing mode for the texture stage is set to <see cref="F:SharpDX.Direct3D9.TextureAddress.Clamp" />.</li> <li>Texture wrapping for the texture stage is disabled (<strong>D3DRS_WRAP</strong> n set to 0).</li> <li>Mipmapping is not in use (use magnification filter only).</li> <li>Texture formats must not be <see cref="F:SharpDX.Direct3D9.Format.Dxt1" /> through <see cref="F:SharpDX.Direct3D9.Format.Dxt5" />.</li> </ul> <p>If this flag is not set, and <see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /> is also not set, then unconditional support is provided for 2D textures with dimensions that are not powers of two.</p> <p>A texture that is not a power of two cannot be set at a stage that will be read based on a shader computation (such as the bem - ps and texm3x3 - ps instructions in pixel shaders versions 1_0 to 1_3). For example, these textures can be used to store bumps that will be fed into texture reads, but not the environment maps that are used in texbem - ps, texbeml - ps, and texm3x3spec - ps. This means that a texture with dimensions that are not powers of two cannot be addressed or sampled using texture coordinates computed within the shader. This type of operation is known as a dependent read and cannot be performed on these types of textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.NoProjectedBumpEnvironment" /></strong></dt> </dl> </td><td> <p>Device does not support a projected bump-environment loopkup operation in programmable and fixed function shaders.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Perspective" /></strong></dt> </dl> </td><td> <p>Perspective correction texturing is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /></strong></dt> </dl> </td><td> <p>If <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is not set, all textures must have widths and heights specified as powers of two. This requirement does not apply to either cube textures or volume textures.</p> <p>If <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is also set, conditionally supports the use of 2D textures with dimensions that are not powers of two. See <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> description.</p> <p>If this flag is not set, and <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is also not set, then unconditional support is provided for 2D textures with dimensions that are not powers of two.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Projected" /></strong></dt> </dl> </td><td> <p>Supports the <see cref="F:SharpDX.Direct3D9.TextureTransform.Projected" /> texture transformation flag. When applied, the device divides transformed texture coordinates by the last texture coordinate. If this capability is present, then the projective divide occurs per pixel. If this capability is not present, but the projective divide needs to occur anyway, then it is performed on a per-vertex basis by the Direct3D runtime.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.SquareOnly" /></strong></dt> </dl> </td><td> <p>All textures must be square.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize" /></strong></dt> </dl> </td><td> <p>Texture indices are not scaled by the texture size prior to interpolation.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMap" /></strong></dt> </dl> </td><td> <p>Device supports volume textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMapPow2" /></strong></dt> </dl> </td><td> <p>Device requires that volume texture maps have dimensions specified as powers of two.</p> </td></tr> </table> <p>?</p> </dd>
  1571. </summary>
  1572. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::TextureCaps']/*" />
  1573. <msdn-id>bb172513</msdn-id>
  1574. <unmanaged>D3DPTEXTURECAPS TextureCaps</unmanaged>
  1575. <unmanaged-short>D3DPTEXTURECAPS TextureCaps</unmanaged-short>
  1576. </member>
  1577. <member name="F:SharpDX.Direct3D9.Capabilities.TextureFilterCaps">
  1578. <summary>
  1579. <dd> <p>Texture-filtering capabilities for a texture. Per-stage filtering capabilities reflect which filtering modes are supported for texture stages when performing multiple-texture blending. This member can be any combination of the per-stage texture-filtering flags defined in <see cref="T:SharpDX.Direct3D9.FilterCaps" />.</p> </dd>
  1580. </summary>
  1581. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::TextureFilterCaps']/*" />
  1582. <msdn-id>bb172513</msdn-id>
  1583. <unmanaged>D3DPTFILTERCAPS TextureFilterCaps</unmanaged>
  1584. <unmanaged-short>D3DPTFILTERCAPS TextureFilterCaps</unmanaged-short>
  1585. </member>
  1586. <member name="F:SharpDX.Direct3D9.Capabilities.CubeTextureFilterCaps">
  1587. <summary>
  1588. <dd> <p>Texture-filtering capabilities for a cube texture. Per-stage filtering capabilities reflect which filtering modes are supported for texture stages when performing multiple-texture blending. This member can be any combination of the per-stage texture-filtering flags defined in <see cref="T:SharpDX.Direct3D9.FilterCaps" />. </p> </dd>
  1589. </summary>
  1590. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::CubeTextureFilterCaps']/*" />
  1591. <msdn-id>bb172513</msdn-id>
  1592. <unmanaged>D3DPTFILTERCAPS CubeTextureFilterCaps</unmanaged>
  1593. <unmanaged-short>D3DPTFILTERCAPS CubeTextureFilterCaps</unmanaged-short>
  1594. </member>
  1595. <member name="F:SharpDX.Direct3D9.Capabilities.VolumeTextureFilterCaps">
  1596. <summary>
  1597. <dd> <p>Texture-filtering capabilities for a volume texture. Per-stage filtering capabilities reflect which filtering modes are supported for texture stages when performing multiple-texture blending. This member can be any combination of the per-stage texture-filtering flags defined in <see cref="T:SharpDX.Direct3D9.FilterCaps" />.</p> </dd>
  1598. </summary>
  1599. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::VolumeTextureFilterCaps']/*" />
  1600. <msdn-id>bb172513</msdn-id>
  1601. <unmanaged>D3DPTFILTERCAPS VolumeTextureFilterCaps</unmanaged>
  1602. <unmanaged-short>D3DPTFILTERCAPS VolumeTextureFilterCaps</unmanaged-short>
  1603. </member>
  1604. <member name="F:SharpDX.Direct3D9.Capabilities.TextureAddressCaps">
  1605. <summary>
  1606. <dd> <p> </p><p>Texture-addressing capabilities for texture objects. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Border" /></strong></dt> </dl> </td><td> <p>Device supports setting coordinates outside the range [0.0, 1.0] to the border color, as specified by the <see cref="F:SharpDX.Direct3D9.SamplerState.BorderColor" /> texture-stage state.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Clamp" /></strong></dt> </dl> </td><td> <p>Device can clamp textures to addresses.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.IndependentUV" /></strong></dt> </dl> </td><td> <p>Device can separate the texture-addressing modes of the u and v coordinates of the texture. This ability corresponds to the <see cref="F:SharpDX.Direct3D9.SamplerState.AddressU" /> and <see cref="F:SharpDX.Direct3D9.SamplerState.AddressV" /> render-state values.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Mirror" /></strong></dt> </dl> </td><td> <p>Device can mirror textures to addresses.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.MirrorOnce" /></strong></dt> </dl> </td><td> <p>Device can take the absolute value of the texture coordinate (thus, mirroring around 0) and then clamp to the maximum value.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Wrap" /></strong></dt> </dl> </td><td> <p>Device can wrap textures to addresses.</p> </td></tr> </table> <p>?</p> </dd>
  1607. </summary>
  1608. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::TextureAddressCaps']/*" />
  1609. <msdn-id>bb172513</msdn-id>
  1610. <unmanaged>D3DPTADDRESSCAPS TextureAddressCaps</unmanaged>
  1611. <unmanaged-short>D3DPTADDRESSCAPS TextureAddressCaps</unmanaged-short>
  1612. </member>
  1613. <member name="F:SharpDX.Direct3D9.Capabilities.VolumeTextureAddressCaps">
  1614. <summary>
  1615. <dd> <p>Texture-addressing capabilities for a volume texture. This member can be one or more of the flags defined for the TextureAddressCaps member. </p> </dd>
  1616. </summary>
  1617. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::VolumeTextureAddressCaps']/*" />
  1618. <msdn-id>bb172513</msdn-id>
  1619. <unmanaged>D3DPTADDRESSCAPS VolumeTextureAddressCaps</unmanaged>
  1620. <unmanaged-short>D3DPTADDRESSCAPS VolumeTextureAddressCaps</unmanaged-short>
  1621. </member>
  1622. <member name="F:SharpDX.Direct3D9.Capabilities.LineCaps">
  1623. <summary>
  1624. <dd> <p> </p><p>Defines the capabilities for line-drawing primitives.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.AlphaCompare" /></strong></dt> </dl> </td><td> <p>Supports alpha-test comparisons.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.Antialias" /></strong></dt> </dl> </td><td> <p>Antialiased lines are supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.Blend" /></strong></dt> </dl> </td><td> <p>Supports source-blending.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.Fog" /></strong></dt> </dl> </td><td> <p>Supports fog.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.Texture" /></strong></dt> </dl> </td><td> <p>Supports texture-mapping.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.DepthTest" /></strong></dt> </dl> </td><td> <p>Supports z-buffer comparisons.</p> </td></tr> </table> <p>?</p> </dd>
  1625. </summary>
  1626. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::LineCaps']/*" />
  1627. <msdn-id>bb172513</msdn-id>
  1628. <unmanaged>D3DLINECAPS LineCaps</unmanaged>
  1629. <unmanaged-short>D3DLINECAPS LineCaps</unmanaged-short>
  1630. </member>
  1631. <member name="F:SharpDX.Direct3D9.Capabilities.MaxTextureWidth">
  1632. <summary>
  1633. <dd> <p>Maximum texture width for this device. </p> </dd>
  1634. </summary>
  1635. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxTextureWidth']/*" />
  1636. <msdn-id>bb172513</msdn-id>
  1637. <unmanaged>unsigned int MaxTextureWidth</unmanaged>
  1638. <unmanaged-short>unsigned int MaxTextureWidth</unmanaged-short>
  1639. </member>
  1640. <member name="F:SharpDX.Direct3D9.Capabilities.MaxTextureHeight">
  1641. <summary>
  1642. <dd> <p>Maximum texture height for this device. </p> </dd>
  1643. </summary>
  1644. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxTextureHeight']/*" />
  1645. <msdn-id>bb172513</msdn-id>
  1646. <unmanaged>unsigned int MaxTextureHeight</unmanaged>
  1647. <unmanaged-short>unsigned int MaxTextureHeight</unmanaged-short>
  1648. </member>
  1649. <member name="F:SharpDX.Direct3D9.Capabilities.MaxVolumeExtent">
  1650. <summary>
  1651. <dd> <p>Maximum value for any of the three dimensions (width, height, and depth) of a volume texture. </p> </dd>
  1652. </summary>
  1653. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxVolumeExtent']/*" />
  1654. <msdn-id>bb172513</msdn-id>
  1655. <unmanaged>unsigned int MaxVolumeExtent</unmanaged>
  1656. <unmanaged-short>unsigned int MaxVolumeExtent</unmanaged-short>
  1657. </member>
  1658. <member name="F:SharpDX.Direct3D9.Capabilities.MaxTextureRepeat">
  1659. <summary>
  1660. <dd> <p>This number represents the maximum range of the integer bits of the post-normalized texture coordinates. A texture coordinate is stored as a 32-bit signed integer using 27 bits to store the integer part and 5 bits for the floating point fraction. The maximum integer index, 227, is used to determine the maximum texture coordinate, depending on how the hardware does texture-coordinate scaling.</p> <p>Some hardware reports the cap <see cref="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize" />. For this case, the device defers scaling texture coordinates by the texture size until after interpolation and application of the texture address mode, so the number of times a texture can be wrapped is given by the integer value in MaxTextureRepeat.</p> <p>Less desirably, on some hardware <see cref="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize" /> is not set and the device scales the texture coordinates by the texture size (using the highest level of detail) prior to interpolation. This limits the number of times a texture can be wrapped to MaxTextureRepeat / texture size.</p> <p>For example, assume that MaxTextureRepeat is equal to 32k and the size of the texture is 4k. If the hardware sets <see cref="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize" />, then the number of times a texture can be wrapped is equal to MaxTextureRepeat, which is 32k in this example. Otherwise, the number of times a texture can be wrapped is equal to MaxTextureRepeat divided by texture size, which is 32k/4k in this example.</p> </dd>
  1661. </summary>
  1662. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxTextureRepeat']/*" />
  1663. <msdn-id>bb172513</msdn-id>
  1664. <unmanaged>unsigned int MaxTextureRepeat</unmanaged>
  1665. <unmanaged-short>unsigned int MaxTextureRepeat</unmanaged-short>
  1666. </member>
  1667. <member name="F:SharpDX.Direct3D9.Capabilities.MaxTextureAspectRatio">
  1668. <summary>
  1669. <dd> <p>Maximum texture aspect ratio supported by the hardware, typically a power of 2. </p> </dd>
  1670. </summary>
  1671. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxTextureAspectRatio']/*" />
  1672. <msdn-id>bb172513</msdn-id>
  1673. <unmanaged>unsigned int MaxTextureAspectRatio</unmanaged>
  1674. <unmanaged-short>unsigned int MaxTextureAspectRatio</unmanaged-short>
  1675. </member>
  1676. <member name="F:SharpDX.Direct3D9.Capabilities.MaxAnisotropy">
  1677. <summary>
  1678. <dd> <p>Maximum valid value for the <see cref="F:SharpDX.Direct3D9.SamplerState.MaxAnisotropy" /> texture-stage state. </p> </dd>
  1679. </summary>
  1680. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxAnisotropy']/*" />
  1681. <msdn-id>bb172513</msdn-id>
  1682. <unmanaged>unsigned int MaxAnisotropy</unmanaged>
  1683. <unmanaged-short>unsigned int MaxAnisotropy</unmanaged-short>
  1684. </member>
  1685. <member name="F:SharpDX.Direct3D9.Capabilities.MaxVertexW">
  1686. <summary>
  1687. <dd> <p>Maximum W-based depth value that the device supports. </p> </dd>
  1688. </summary>
  1689. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxVertexW']/*" />
  1690. <msdn-id>bb172513</msdn-id>
  1691. <unmanaged>float MaxVertexW</unmanaged>
  1692. <unmanaged-short>float MaxVertexW</unmanaged-short>
  1693. </member>
  1694. <member name="F:SharpDX.Direct3D9.Capabilities.GuardBandLeft">
  1695. <summary>
  1696. <dd> <p>Screen-space coordinate of the guard-band clipping region. Coordinates inside this rectangle but outside the viewport rectangle are automatically clipped. </p> </dd>
  1697. </summary>
  1698. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::GuardBandLeft']/*" />
  1699. <msdn-id>bb172513</msdn-id>
  1700. <unmanaged>float GuardBandLeft</unmanaged>
  1701. <unmanaged-short>float GuardBandLeft</unmanaged-short>
  1702. </member>
  1703. <member name="F:SharpDX.Direct3D9.Capabilities.GuardBandTop">
  1704. <summary>
  1705. <dd> <p>Screen-space coordinate of the guard-band clipping region. Coordinates inside this rectangle but outside the viewport rectangle are automatically clipped. </p> </dd>
  1706. </summary>
  1707. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::GuardBandTop']/*" />
  1708. <msdn-id>bb172513</msdn-id>
  1709. <unmanaged>float GuardBandTop</unmanaged>
  1710. <unmanaged-short>float GuardBandTop</unmanaged-short>
  1711. </member>
  1712. <member name="F:SharpDX.Direct3D9.Capabilities.GuardBandRight">
  1713. <summary>
  1714. <dd> <p>Screen-space coordinate of the guard-band clipping region. Coordinates inside this rectangle but outside the viewport rectangle are automatically clipped. </p> </dd>
  1715. </summary>
  1716. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::GuardBandRight']/*" />
  1717. <msdn-id>bb172513</msdn-id>
  1718. <unmanaged>float GuardBandRight</unmanaged>
  1719. <unmanaged-short>float GuardBandRight</unmanaged-short>
  1720. </member>
  1721. <member name="F:SharpDX.Direct3D9.Capabilities.GuardBandBottom">
  1722. <summary>
  1723. <dd> <p>Screen-space coordinate of the guard-band clipping region. Coordinates inside this rectangle but outside the viewport rectangle are automatically clipped. </p> </dd>
  1724. </summary>
  1725. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::GuardBandBottom']/*" />
  1726. <msdn-id>bb172513</msdn-id>
  1727. <unmanaged>float GuardBandBottom</unmanaged>
  1728. <unmanaged-short>float GuardBandBottom</unmanaged-short>
  1729. </member>
  1730. <member name="F:SharpDX.Direct3D9.Capabilities.ExtentsAdjust">
  1731. <summary>
  1732. <dd> <p>Number of pixels to adjust the extents rectangle outward to accommodate antialiasing kernels.</p> </dd>
  1733. </summary>
  1734. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::ExtentsAdjust']/*" />
  1735. <msdn-id>bb172513</msdn-id>
  1736. <unmanaged>float ExtentsAdjust</unmanaged>
  1737. <unmanaged-short>float ExtentsAdjust</unmanaged-short>
  1738. </member>
  1739. <member name="F:SharpDX.Direct3D9.Capabilities.StencilCaps">
  1740. <summary>
  1741. <dd> <p>Flags specifying supported stencil-buffer operations. Stencil operations are assumed to be valid for all three stencil-buffer operation render states (<see cref="F:SharpDX.Direct3D9.RenderState.StencilFail" />, <see cref="F:SharpDX.Direct3D9.RenderState.StencilPass" />, and <see cref="F:SharpDX.Direct3D9.RenderState.StencilZFail" />).</p> <p>For more information, see <see cref="T:SharpDX.Direct3D9.StencilCaps" />.</p> </dd>
  1742. </summary>
  1743. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::StencilCaps']/*" />
  1744. <msdn-id>bb172513</msdn-id>
  1745. <unmanaged>D3DSTENCILCAPS StencilCaps</unmanaged>
  1746. <unmanaged-short>D3DSTENCILCAPS StencilCaps</unmanaged-short>
  1747. </member>
  1748. <member name="F:SharpDX.Direct3D9.Capabilities.FVFCaps">
  1749. <summary>
  1750. <dd> <p> </p><p>Flexible vertex format capabilities.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.VertexFormatCaps.DoNotStripElements" /></strong></dt> </dl> </td><td> <p>It is preferable that vertex elements not be stripped. That is, if the vertex format contains elements that are not used with the current render states, there is no need to regenerate the vertices. If this capability flag is not present, stripping extraneous elements from the vertex format provides better performance.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.VertexFormatCaps.PointSize" /></strong></dt> </dl> </td><td> <p>Point size is determined by either the render state or the vertex data. If an FVF is used, point size can come from point size data in the vertex declaration. Otherwise, point size is determined by the render state <see cref="F:SharpDX.Direct3D9.RenderState.PointSize" />. If the application provides point size in both (the render state and the vertex declaration), the vertex data overrides the render-state data.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.VertexFormatCaps.TextureCoordCountMask" /></strong></dt> </dl> </td><td> <p>Masks the low WORD of FVFCaps. These bits, cast to the WORD data type, describe the total number of texture coordinate sets that the device can simultaneously use for multiple texture blending. (You can use up to eight texture coordinate sets for any vertex, but the device can blend using only the specified number of texture coordinate sets.)</p> </td></tr> </table> <p>?</p> </dd>
  1751. </summary>
  1752. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::FVFCaps']/*" />
  1753. <msdn-id>bb172513</msdn-id>
  1754. <unmanaged>D3DFVFCAPS FVFCaps</unmanaged>
  1755. <unmanaged-short>D3DFVFCAPS FVFCaps</unmanaged-short>
  1756. </member>
  1757. <member name="F:SharpDX.Direct3D9.Capabilities.TextureOperationCaps">
  1758. <summary>
  1759. <dd> <p> </p><p>Combination of flags describing the texture operations supported by this device. The following flags are defined.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.Add" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.Add" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.AddSigned" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.AddSigned" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.AddSigned2X" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.AddSigned2X" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.AddSmooth" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.AddSmooth" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.BlendCurrentAlpha" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.BlendCurrentAlpha" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.BlendDiffuseAlpha" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.BlendDiffuseAlpha" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.BlendFactorAlpha" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.BlendFactorAlpha" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.BlendTextureAlpha" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.BlendTextureAlpha" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.BlendTextureAlphaPM" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.BlendTextureAlphaPM" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.BumpEnvironmentMap" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.BumpEnvironmentMap" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.BumpEnvironmentMapLuminance" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.BumpEnvironmentMapLuminance" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.Disable" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.Disable" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.DotProduct3" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.DotProduct3" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.Lerp" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.Lerp" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.Modulate" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.Modulate" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.Modulate2X" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.Modulate2X" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.Modulate4X" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.Modulate4X" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.ModulateAlphaAddColor" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.ModulateAlphaAddColor" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.ModulateColorAddAlpha" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.ModulateColorAddAlpha" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.ModulateInvAlphaAddColor" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.ModulateInvAlphaAddColor" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.ModulateInvColorAddAlpha" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.ModulateInvColorAddAlpha" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.MultiplyAdd" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.MultiplyAdd" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.Premodulate" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.Premodulate" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.SelectArg1" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.SelectArg1" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.SelectArg2" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.SelectArg2" /> texture-blending operation is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureOperationCaps.Subtract" /></strong></dt> </dl> </td><td> <p>The <see cref="F:SharpDX.Direct3D9.TextureOperation.Subtract" /> texture-blending operation is supported.</p> </td></tr> </table> <p>?</p> </dd>
  1760. </summary>
  1761. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::TextureOpCaps']/*" />
  1762. <msdn-id>bb172513</msdn-id>
  1763. <unmanaged>D3DTEXOPCAPS TextureOpCaps</unmanaged>
  1764. <unmanaged-short>D3DTEXOPCAPS TextureOpCaps</unmanaged-short>
  1765. </member>
  1766. <member name="F:SharpDX.Direct3D9.Capabilities.MaxTextureBlendStages">
  1767. <summary>
  1768. <dd> <p>Maximum number of texture-blending stages supported in the fixed function pipeline. This value is the number of blenders available. In the programmable pixel pipeline, this corresponds to the number of unique texture registers used by pixel shader instructions. </p> </dd>
  1769. </summary>
  1770. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxTextureBlendStages']/*" />
  1771. <msdn-id>bb172513</msdn-id>
  1772. <unmanaged>unsigned int MaxTextureBlendStages</unmanaged>
  1773. <unmanaged-short>unsigned int MaxTextureBlendStages</unmanaged-short>
  1774. </member>
  1775. <member name="F:SharpDX.Direct3D9.Capabilities.MaxSimultaneousTextures">
  1776. <summary>
  1777. <dd> <p>Maximum number of textures that can be simultaneously bound to the fixed-function pipeline sampler stages. If the same texture is bound to two sampler stages, it counts as two textures. </p> <p>This value has no meaning in the programmable pipeline where the number of sampler stages is determined by each pixel shader version. Each pixel shader version also determines the number of texture declaration instructions. See Pixel Shaders.</p> </dd>
  1778. </summary>
  1779. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxSimultaneousTextures']/*" />
  1780. <msdn-id>bb172513</msdn-id>
  1781. <unmanaged>unsigned int MaxSimultaneousTextures</unmanaged>
  1782. <unmanaged-short>unsigned int MaxSimultaneousTextures</unmanaged-short>
  1783. </member>
  1784. <member name="F:SharpDX.Direct3D9.Capabilities.VertexProcessingCaps">
  1785. <summary>
  1786. <dd> <p>Vertex processing capabilities. For a given physical device, this capability might vary across Direct3D devices depending on the parameters supplied to <strong>CreateDevice</strong>. See <see cref="T:SharpDX.Direct3D9.VertexProcessingCaps" />.</p> </dd>
  1787. </summary>
  1788. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::VertexProcessingCaps']/*" />
  1789. <msdn-id>bb172513</msdn-id>
  1790. <unmanaged>D3DVTXPCAPS VertexProcessingCaps</unmanaged>
  1791. <unmanaged-short>D3DVTXPCAPS VertexProcessingCaps</unmanaged-short>
  1792. </member>
  1793. <member name="F:SharpDX.Direct3D9.Capabilities.MaxActiveLights">
  1794. <summary>
  1795. <dd> <p>Maximum number of lights that can be active simultaneously. For a given physical device, this capability might vary across Direct3D devices depending on the parameters supplied to <strong>CreateDevice</strong>. </p> </dd>
  1796. </summary>
  1797. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxActiveLights']/*" />
  1798. <msdn-id>bb172513</msdn-id>
  1799. <unmanaged>unsigned int MaxActiveLights</unmanaged>
  1800. <unmanaged-short>unsigned int MaxActiveLights</unmanaged-short>
  1801. </member>
  1802. <member name="F:SharpDX.Direct3D9.Capabilities.MaxUserClipPlanes">
  1803. <summary>
  1804. <dd> <p>Maximum number of user-defined clipping planes supported. This member can be 0. For a given physical device, this capability may vary across Direct3D devices depending on the parameters supplied to <strong>CreateDevice</strong>. </p> </dd>
  1805. </summary>
  1806. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxUserClipPlanes']/*" />
  1807. <msdn-id>bb172513</msdn-id>
  1808. <unmanaged>unsigned int MaxUserClipPlanes</unmanaged>
  1809. <unmanaged-short>unsigned int MaxUserClipPlanes</unmanaged-short>
  1810. </member>
  1811. <member name="F:SharpDX.Direct3D9.Capabilities.MaxVertexBlendMatrices">
  1812. <summary>
  1813. <dd> <p>Maximum number of matrices that this device can apply when performing multimatrix vertex blending. For a given physical device, this capability may vary across Direct3D devices depending on the parameters supplied to <strong>CreateDevice</strong>. </p> </dd>
  1814. </summary>
  1815. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxVertexBlendMatrices']/*" />
  1816. <msdn-id>bb172513</msdn-id>
  1817. <unmanaged>unsigned int MaxVertexBlendMatrices</unmanaged>
  1818. <unmanaged-short>unsigned int MaxVertexBlendMatrices</unmanaged-short>
  1819. </member>
  1820. <member name="F:SharpDX.Direct3D9.Capabilities.MaxVertexBlendMatrixIndex">
  1821. <summary>
  1822. <dd> <p>DWORD value that specifies the maximum matrix index that can be indexed into using the per-vertex indices. The number of matrices is MaxVertexBlendMatrixIndex + 1, which is the size of the matrix palette. If normals are present in the vertex data that needs to be blended for lighting, then the number of matrices is half the number specified by this capability flag. If MaxVertexBlendMatrixIndex is set to zero, the driver does not support indexed vertex blending. If this value is not zero then the valid range of indices is zero through MaxVertexBlendMatrixIndex. </p> <p>A zero value for MaxVertexBlendMatrixIndex indicates that the driver does not support indexed matrices.</p> <p>When software vertex processing is used, 256 matrices could be used for indexed vertex blending, with or without normal blending.</p> <p>For a given physical device, this capability may vary across Direct3D devices depending on the parameters supplied to <strong>CreateDevice</strong>.</p> </dd>
  1823. </summary>
  1824. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxVertexBlendMatrixIndex']/*" />
  1825. <msdn-id>bb172513</msdn-id>
  1826. <unmanaged>unsigned int MaxVertexBlendMatrixIndex</unmanaged>
  1827. <unmanaged-short>unsigned int MaxVertexBlendMatrixIndex</unmanaged-short>
  1828. </member>
  1829. <member name="F:SharpDX.Direct3D9.Capabilities.MaxPointSize">
  1830. <summary>
  1831. <dd> <p>Maximum size of a point primitive. If set to 1.0f then device does not support point size control. The range is greater than or equal to 1.0f. </p> </dd>
  1832. </summary>
  1833. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxPointSize']/*" />
  1834. <msdn-id>bb172513</msdn-id>
  1835. <unmanaged>float MaxPointSize</unmanaged>
  1836. <unmanaged-short>float MaxPointSize</unmanaged-short>
  1837. </member>
  1838. <member name="F:SharpDX.Direct3D9.Capabilities.MaxPrimitiveCount">
  1839. <summary>
  1840. <dd> <p>Maximum number of primitives for each <strong>DrawPrimitive</strong> call. There are two cases:
  1841. </p> <ul> <li>If MaxPrimitiveCount is not equal to 0xffff, you can draw at most MaxPrimitiveCount primitives with each draw call.</li> <li>However, if MaxPrimitiveCount equals 0xffff, you can still draw at most MaxPrimitiveCount primitive, but you may also use no more than MaxPrimitiveCount unique vertices (since each primitive can potentially use three different vertices).</li> </ul> </dd>
  1842. </summary>
  1843. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxPrimitiveCount']/*" />
  1844. <msdn-id>bb172513</msdn-id>
  1845. <unmanaged>unsigned int MaxPrimitiveCount</unmanaged>
  1846. <unmanaged-short>unsigned int MaxPrimitiveCount</unmanaged-short>
  1847. </member>
  1848. <member name="F:SharpDX.Direct3D9.Capabilities.MaxVertexIndex">
  1849. <summary>
  1850. <dd> <p>Maximum size of indices supported for hardware vertex processing. It is possible to create 32-bit index buffers; however, you will not be able to render with the index buffer unless this value is greater than 0x0000FFFF. </p> </dd>
  1851. </summary>
  1852. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxVertexIndex']/*" />
  1853. <msdn-id>bb172513</msdn-id>
  1854. <unmanaged>unsigned int MaxVertexIndex</unmanaged>
  1855. <unmanaged-short>unsigned int MaxVertexIndex</unmanaged-short>
  1856. </member>
  1857. <member name="F:SharpDX.Direct3D9.Capabilities.MaxStreams">
  1858. <summary>
  1859. <dd> <p>Maximum number of concurrent data streams for <strong>SetStreamSource</strong>. The valid range is 1 to 16. Note that if this value is 0, then the driver is not a Direct3D 9 driver. </p> </dd>
  1860. </summary>
  1861. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxStreams']/*" />
  1862. <msdn-id>bb172513</msdn-id>
  1863. <unmanaged>unsigned int MaxStreams</unmanaged>
  1864. <unmanaged-short>unsigned int MaxStreams</unmanaged-short>
  1865. </member>
  1866. <member name="F:SharpDX.Direct3D9.Capabilities.MaxStreamStride">
  1867. <summary>
  1868. <dd> <p>Maximum stride for <strong>SetStreamSource</strong>. </p> </dd>
  1869. </summary>
  1870. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxStreamStride']/*" />
  1871. <msdn-id>bb172513</msdn-id>
  1872. <unmanaged>unsigned int MaxStreamStride</unmanaged>
  1873. <unmanaged-short>unsigned int MaxStreamStride</unmanaged-short>
  1874. </member>
  1875. <member name="F:SharpDX.Direct3D9.Capabilities.VertexShaderVersion_">
  1876. <summary>
  1877. <dd> <p>Two numbers that represent the vertex shader main and sub versions. For more information about the instructions supported for each vertex shader version, see Version 1_x, Version 2_0, Version 2_0 Extended, or Version 3_0.</p> </dd>
  1878. </summary>
  1879. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::VertexShaderVersion']/*" />
  1880. <msdn-id>bb172513</msdn-id>
  1881. <unmanaged>unsigned int VertexShaderVersion</unmanaged>
  1882. <unmanaged-short>unsigned int VertexShaderVersion</unmanaged-short>
  1883. </member>
  1884. <member name="F:SharpDX.Direct3D9.Capabilities.MaxVertexShaderConst">
  1885. <summary>
  1886. <dd> <p>The number of vertex shader Vertex Shader Registers that are reserved for constants.</p> </dd>
  1887. </summary>
  1888. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxVertexShaderConst']/*" />
  1889. <msdn-id>bb172513</msdn-id>
  1890. <unmanaged>unsigned int MaxVertexShaderConst</unmanaged>
  1891. <unmanaged-short>unsigned int MaxVertexShaderConst</unmanaged-short>
  1892. </member>
  1893. <member name="F:SharpDX.Direct3D9.Capabilities.PixelShaderVersion_">
  1894. <summary>
  1895. <dd> <p>Two numbers that represent the pixel shader main and sub versions. For more information about the instructions supported for each pixel shader version, see Version 1_x, Version 2_0, Version 2_0 Extended, or Version 3_0.</p> </dd>
  1896. </summary>
  1897. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::PixelShaderVersion']/*" />
  1898. <msdn-id>bb172513</msdn-id>
  1899. <unmanaged>unsigned int PixelShaderVersion</unmanaged>
  1900. <unmanaged-short>unsigned int PixelShaderVersion</unmanaged-short>
  1901. </member>
  1902. <member name="F:SharpDX.Direct3D9.Capabilities.PixelShader1xMaxValue">
  1903. <summary>
  1904. <dd> <p>Maximum value of pixel shader arithmetic component. This value indicates the internal range of values supported for pixel color blending operations. Within the range that they report to, implementations must allow data to pass through pixel processing unmodified (unclamped). Normally, the value of this member is an absolute value. For example, a 1.0 indicates that the range is -1.0 to 1, and an 8.0 indicates that the range is -8.0 to 8.0. The value must be &gt;= 1.0 for any hardware that supports pixel shaders.</p> </dd>
  1905. </summary>
  1906. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::PixelShader1xMaxValue']/*" />
  1907. <msdn-id>bb172513</msdn-id>
  1908. <unmanaged>float PixelShader1xMaxValue</unmanaged>
  1909. <unmanaged-short>float PixelShader1xMaxValue</unmanaged-short>
  1910. </member>
  1911. <member name="F:SharpDX.Direct3D9.Capabilities.DeviceCaps2">
  1912. <summary>
  1913. <dd> <p>Device driver capabilities for adaptive tessellation. For more information, see <see cref="T:SharpDX.Direct3D9.DeviceCaps2" /> </p> </dd>
  1914. </summary>
  1915. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::DevCaps2']/*" />
  1916. <msdn-id>bb172513</msdn-id>
  1917. <unmanaged>D3DDEVCAPS2 DevCaps2</unmanaged>
  1918. <unmanaged-short>D3DDEVCAPS2 DevCaps2</unmanaged-short>
  1919. </member>
  1920. <member name="F:SharpDX.Direct3D9.Capabilities.MaxNpatchTessellationLevel">
  1921. <summary>
  1922. <dd> <p>This number indicates which device is the master for this subordinate. This number is taken from the same space as the adapter values.</p> <p>For multihead support, one head will be denoted the master head, and all other heads on the same card will be denoted subordinate heads. If more than one multihead adapter is present in a system, the master and its subordinates from one multihead adapter are called a group.</p> </dd>
  1923. </summary>
  1924. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxNpatchTessellationLevel']/*" />
  1925. <msdn-id>bb172513</msdn-id>
  1926. <unmanaged>float MaxNpatchTessellationLevel</unmanaged>
  1927. <unmanaged-short>float MaxNpatchTessellationLevel</unmanaged-short>
  1928. </member>
  1929. <member name="F:SharpDX.Direct3D9.Capabilities.Reserved5">
  1930. <summary>
  1931. <dd> <p>This number indicates the order in which heads are referenced by the API. The value for the master adapter is always 0. These values do not correspond to the adapter ordinals. They apply only to heads within a group. </p> </dd>
  1932. </summary>
  1933. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::Reserved5']/*" />
  1934. <msdn-id>bb172513</msdn-id>
  1935. <unmanaged>unsigned int Reserved5</unmanaged>
  1936. <unmanaged-short>unsigned int Reserved5</unmanaged-short>
  1937. </member>
  1938. <member name="F:SharpDX.Direct3D9.Capabilities.MasterAdapterOrdinal">
  1939. <summary>
  1940. <dd> <p>This number indicates which device is the master for this subordinate. This number is taken from the same space as the adapter values.</p> <p>For multihead support, one head will be denoted the master head, and all other heads on the same card will be denoted subordinate heads. If more than one multihead adapter is present in a system, the master and its subordinates from one multihead adapter are called a group.</p> </dd>
  1941. </summary>
  1942. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MasterAdapterOrdinal']/*" />
  1943. <msdn-id>bb172513</msdn-id>
  1944. <unmanaged>unsigned int MasterAdapterOrdinal</unmanaged>
  1945. <unmanaged-short>unsigned int MasterAdapterOrdinal</unmanaged-short>
  1946. </member>
  1947. <member name="F:SharpDX.Direct3D9.Capabilities.AdapterOrdinalInGroup">
  1948. <summary>
  1949. <dd> <p>This number indicates the order in which heads are referenced by the API. The value for the master adapter is always 0. These values do not correspond to the adapter ordinals. They apply only to heads within a group. </p> </dd>
  1950. </summary>
  1951. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::AdapterOrdinalInGroup']/*" />
  1952. <msdn-id>bb172513</msdn-id>
  1953. <unmanaged>unsigned int AdapterOrdinalInGroup</unmanaged>
  1954. <unmanaged-short>unsigned int AdapterOrdinalInGroup</unmanaged-short>
  1955. </member>
  1956. <member name="F:SharpDX.Direct3D9.Capabilities.NumberOfAdaptersInGroup">
  1957. <summary>
  1958. <dd> <p>Number of adapters in this adapter group (only if master). This will be 1 for conventional adapters. The value will be greater than 1 for the master adapter of a multihead card. The value will be 0 for a subordinate adapter of a multihead card. Each card can have at most one master, but may have many subordinates.</p> </dd>
  1959. </summary>
  1960. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::NumberOfAdaptersInGroup']/*" />
  1961. <msdn-id>bb172513</msdn-id>
  1962. <unmanaged>unsigned int NumberOfAdaptersInGroup</unmanaged>
  1963. <unmanaged-short>unsigned int NumberOfAdaptersInGroup</unmanaged-short>
  1964. </member>
  1965. <member name="F:SharpDX.Direct3D9.Capabilities.DeclarationTypes">
  1966. <summary>
  1967. <dd> <p>A combination of one or more data types contained in a vertex declaration. See <see cref="T:SharpDX.Direct3D9.DeclarationTypeCaps" />.</p> </dd>
  1968. </summary>
  1969. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::DeclTypes']/*" />
  1970. <msdn-id>bb172513</msdn-id>
  1971. <unmanaged>D3DDTCAPS DeclTypes</unmanaged>
  1972. <unmanaged-short>D3DDTCAPS DeclTypes</unmanaged-short>
  1973. </member>
  1974. <member name="F:SharpDX.Direct3D9.Capabilities.SimultaneousRTCount">
  1975. <summary>
  1976. <dd> <p>Number of simultaneous render targets. This number must be at least one.</p> </dd>
  1977. </summary>
  1978. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::NumSimultaneousRTs']/*" />
  1979. <msdn-id>bb172513</msdn-id>
  1980. <unmanaged>unsigned int NumSimultaneousRTs</unmanaged>
  1981. <unmanaged-short>unsigned int NumSimultaneousRTs</unmanaged-short>
  1982. </member>
  1983. <member name="F:SharpDX.Direct3D9.Capabilities.StretchRectFilterCaps">
  1984. <summary>
  1985. <dd> <p>Combination of constants that describe the operations supported by <strong>StretchRect</strong>. The flags that may be set in this field are:</p> <table> <tr><th>Constant</th><th>Description</th></tr> <tr><td><see cref="F:SharpDX.Direct3D9.FilterCaps.MinPoint" /></td><td>Device supports point-sample filtering for minifying rectangles. This filter type is requested by calling <strong>StretchRect</strong> using <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" />.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.FilterCaps.MagPoint" /></td><td>Device supports point-sample filtering for magnifying rectangles. This filter type is requested by calling <strong>StretchRect</strong> using <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" />.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.FilterCaps.MinLinear" /></td><td>Device supports bilinear interpolation filtering for minifying rectangles. This filter type is requested by calling <strong>StretchRect</strong> using <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" />.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.FilterCaps.MagLinear" /></td><td>Device supports bilinear interpolation filtering for magnifying rectangles. This filter type is requested by calling <strong>StretchRect</strong> using <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" />.</td></tr> </table> <p>?</p> <p>For more information, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong> and <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p> </dd>
  1986. </summary>
  1987. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::StretchRectFilterCaps']/*" />
  1988. <msdn-id>bb172513</msdn-id>
  1989. <unmanaged>D3DPTFILTERCAPS StretchRectFilterCaps</unmanaged>
  1990. <unmanaged-short>D3DPTFILTERCAPS StretchRectFilterCaps</unmanaged-short>
  1991. </member>
  1992. <member name="F:SharpDX.Direct3D9.Capabilities.VS20Caps">
  1993. <summary>
  1994. <dd> <p>Device supports vertex shader version 2_0 extended capability. See <strong><see cref="T:SharpDX.Direct3D9.VertexShader20Caps" /></strong>.</p> </dd>
  1995. </summary>
  1996. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::VS20Caps']/*" />
  1997. <msdn-id>bb172513</msdn-id>
  1998. <unmanaged>D3DVSHADERCAPS2_0 VS20Caps</unmanaged>
  1999. <unmanaged-short>D3DVSHADERCAPS2_0 VS20Caps</unmanaged-short>
  2000. </member>
  2001. <member name="F:SharpDX.Direct3D9.Capabilities.PS20Caps">
  2002. <summary>
  2003. <dd> <p>Device supports pixel shader version 2_0 extended capability. See <strong><see cref="T:SharpDX.Direct3D9.PixelShader20Caps" /></strong>.</p> </dd>
  2004. </summary>
  2005. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::PS20Caps']/*" />
  2006. <msdn-id>bb172513</msdn-id>
  2007. <unmanaged>D3DPSHADERCAPS2_0 PS20Caps</unmanaged>
  2008. <unmanaged-short>D3DPSHADERCAPS2_0 PS20Caps</unmanaged-short>
  2009. </member>
  2010. <member name="F:SharpDX.Direct3D9.Capabilities.VertexTextureFilterCaps">
  2011. <summary>
  2012. <dd> <p>Device supports vertex shader texture filter capability. See <see cref="T:SharpDX.Direct3D9.FilterCaps" />.</p> </dd>
  2013. </summary>
  2014. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::VertexTextureFilterCaps']/*" />
  2015. <msdn-id>bb172513</msdn-id>
  2016. <unmanaged>D3DPTFILTERCAPS VertexTextureFilterCaps</unmanaged>
  2017. <unmanaged-short>D3DPTFILTERCAPS VertexTextureFilterCaps</unmanaged-short>
  2018. </member>
  2019. <member name="F:SharpDX.Direct3D9.Capabilities.MaxVShaderInstructionsExecuted">
  2020. <summary>
  2021. <dd> <p>Maximum number of vertex shader instructions that can be run when using flow control. The maximum number of instructions that can be programmed is MaxVertexShader30InstructionSlots.</p> </dd>
  2022. </summary>
  2023. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxVShaderInstructionsExecuted']/*" />
  2024. <msdn-id>bb172513</msdn-id>
  2025. <unmanaged>unsigned int MaxVShaderInstructionsExecuted</unmanaged>
  2026. <unmanaged-short>unsigned int MaxVShaderInstructionsExecuted</unmanaged-short>
  2027. </member>
  2028. <member name="F:SharpDX.Direct3D9.Capabilities.MaxPShaderInstructionsExecuted">
  2029. <summary>
  2030. <dd> <p>Maximum number of pixel shader instructions that can be run when using flow control. The maximum number of instructions that can be programmed is MaxPixelShader30InstructionSlots.</p> </dd>
  2031. </summary>
  2032. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxPShaderInstructionsExecuted']/*" />
  2033. <msdn-id>bb172513</msdn-id>
  2034. <unmanaged>unsigned int MaxPShaderInstructionsExecuted</unmanaged>
  2035. <unmanaged-short>unsigned int MaxPShaderInstructionsExecuted</unmanaged-short>
  2036. </member>
  2037. <member name="F:SharpDX.Direct3D9.Capabilities.MaxVertexShader30InstructionSlots">
  2038. <summary>
  2039. <dd> <p>Maximum number of vertex shader instruction slots supported. The maximum value that can be set on this cap is 32768. Devices that support vs_3_0 are required to support at least 512 instruction slots.</p> </dd>
  2040. </summary>
  2041. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxVertexShader30InstructionSlots']/*" />
  2042. <msdn-id>bb172513</msdn-id>
  2043. <unmanaged>unsigned int MaxVertexShader30InstructionSlots</unmanaged>
  2044. <unmanaged-short>unsigned int MaxVertexShader30InstructionSlots</unmanaged-short>
  2045. </member>
  2046. <member name="F:SharpDX.Direct3D9.Capabilities.MaxPixelShader30InstructionSlots">
  2047. <summary>
  2048. <dd> <p>Maximum number of pixel shader instruction slots supported. The maximum value that can be set on this cap is 32768. Devices that support ps_3_0 are required to support at least 512 instruction slots.</p> </dd>
  2049. </summary>
  2050. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS9::MaxPixelShader30InstructionSlots']/*" />
  2051. <msdn-id>bb172513</msdn-id>
  2052. <unmanaged>unsigned int MaxPixelShader30InstructionSlots</unmanaged>
  2053. <unmanaged-short>unsigned int MaxPixelShader30InstructionSlots</unmanaged-short>
  2054. </member>
  2055. <member name="T:SharpDX.Direct3D9.CompilationResult">
  2056. <summary>
  2057. Shader compilation results.
  2058. </summary>
  2059. </member>
  2060. <member name="M:SharpDX.Direct3D9.CompilationResult.#ctor(SharpDX.Direct3D9.ShaderBytecode,SharpDX.Result,System.String)">
  2061. <summary>
  2062. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.CompilationResult"/> class.
  2063. </summary>
  2064. <param name="bytecode">The bytecode.</param>
  2065. <param name="resultCode">The result code.</param>
  2066. <param name="message">The message.</param>
  2067. </member>
  2068. <member name="M:SharpDX.Direct3D9.CompilationResult.op_Implicit(SharpDX.Direct3D9.CompilationResult)~SharpDX.Direct3D9.ShaderBytecode">
  2069. <summary>
  2070. Performs an implicit conversion from <see cref="T:SharpDX.Direct3D9.CompilationResult"/> to <see cref="T:SharpDX.Direct3D9.ShaderBytecode"/>.
  2071. </summary>
  2072. <param name="input">The input.</param>
  2073. <returns>
  2074. The result of the conversion.
  2075. </returns>
  2076. </member>
  2077. <member name="T:SharpDX.Direct3D9.ConstantTable">
  2078. <summary>
  2079. <p>The <see cref="T:SharpDX.Direct3D9.ConstantTable" /> interface is used to access the constant table. This table contains the variables that are used by high-level language shaders and effects.</p>
  2080. </summary>
  2081. <remarks>
  2082. <p>The LPD3DXCONSTANTTABLE type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.ConstantTable" /></strong> interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.ConstantTable" /> <see cref="T:SharpDX.Direct3D9.ConstantTable" />;
  2083. typedef interface <see cref="T:SharpDX.Direct3D9.ConstantTable" /> *LPD3DXCONSTANTTABLE;
  2084. </pre>
  2085. </remarks>
  2086. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable']/*" />
  2087. <msdn-id>bb205762</msdn-id>
  2088. <unmanaged>ID3DXConstantTable</unmanaged>
  2089. <unmanaged-short>ID3DXConstantTable</unmanaged-short>
  2090. </member>
  2091. <member name="P:SharpDX.Direct3D9.ConstantTable.Buffer">
  2092. <summary>
  2093. Gets the buffer.
  2094. </summary>
  2095. </member>
  2096. <member name="M:SharpDX.Direct3D9.ConstantTable.GetConstantDescription(SharpDX.Direct3D9.EffectHandle)">
  2097. <summary>
  2098. Gets a single constant description in the constant table.
  2099. </summary>
  2100. <param name="effectHandle">The effect handle.</param>
  2101. <returns>The constant description</returns>
  2102. <unmanaged>HRESULT ID3DXConstantTable::GetConstantDesc([In] D3DXHANDLE hConstant,[Out, Buffer] D3DXCONSTANT_DESC* pConstantDesc,[InOut] unsigned int* pCount)</unmanaged>
  2103. </member>
  2104. <member name="M:SharpDX.Direct3D9.ConstantTable.GetConstantDescriptionArray(SharpDX.Direct3D9.EffectHandle)">
  2105. <summary>
  2106. Gets an array of constant descriptions in the constant table.
  2107. </summary>
  2108. <param name="effectHandle">The effect handle.</param>
  2109. <returns>An array of constant descriptions</returns>
  2110. <unmanaged>HRESULT ID3DXConstantTable::GetConstantDesc([In] D3DXHANDLE hConstant,[Out, Buffer] D3DXCONSTANT_DESC* pConstantDesc,[InOut] unsigned int* pCount)</unmanaged>
  2111. </member>
  2112. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Boolean)">
  2113. <summary>
  2114. Sets a bool value.
  2115. </summary>
  2116. <param name="device">The device.</param>
  2117. <param name="effectHandle">The effect handle.</param>
  2118. <param name="value">The value.</param>
  2119. <returns>
  2120. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  2121. </returns>
  2122. <unmanaged>HRESULT ID3DXConstantTable::SetBool([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] BOOL b)</unmanaged>
  2123. </member>
  2124. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Single)">
  2125. <summary>
  2126. Sets a float value.
  2127. </summary>
  2128. <param name="device">The device.</param>
  2129. <param name="effectHandle">The effect handle.</param>
  2130. <param name="value">The value.</param>
  2131. <returns>
  2132. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  2133. </returns>
  2134. <unmanaged>HRESULT ID3DXConstantTable::SetFloat([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] float f)</unmanaged>
  2135. </member>
  2136. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Int32)">
  2137. <summary>
  2138. Sets an int value.
  2139. </summary>
  2140. <param name="device">The device.</param>
  2141. <param name="effectHandle">The effect handle.</param>
  2142. <param name="value">The value.</param>
  2143. <returns>
  2144. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  2145. </returns>
  2146. <unmanaged>HRESULT ID3DXConstantTable::SetInt([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] int n)</unmanaged>
  2147. </member>
  2148. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix)">
  2149. <summary>
  2150. Sets a matrix.
  2151. </summary>
  2152. <param name="device">The device.</param>
  2153. <param name="effectHandle">The effect handle.</param>
  2154. <param name="value">The value.</param>
  2155. <returns>
  2156. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  2157. </returns>
  2158. <unmanaged>HRESULT ID3DXConstantTable::SetMatrix([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] const D3DXMATRIX* pMatrix)</unmanaged>
  2159. </member>
  2160. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4)">
  2161. <summary>
  2162. Sets a 4D vector.
  2163. </summary>
  2164. <param name="device">The device.</param>
  2165. <param name="effectHandle">The effect handle.</param>
  2166. <param name="value">The value.</param>
  2167. <returns>
  2168. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  2169. </returns>
  2170. <unmanaged>HRESULT ID3DXConstantTable::SetVector([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] const D3DXVECTOR4* pVector)</unmanaged>
  2171. </member>
  2172. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue``1(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,``0)">
  2173. <summary>
  2174. Sets a typed value.
  2175. </summary>
  2176. <typeparam name="T">Type of the value to set</typeparam>
  2177. <param name="device">The device.</param>
  2178. <param name="effectHandle">The effect handle.</param>
  2179. <param name="value">The value.</param>
  2180. <returns>
  2181. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  2182. </returns>
  2183. <unmanaged>HRESULT ID3DXConstantTable::SetValue([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] const void* pData,[In] unsigned int Bytes)</unmanaged>
  2184. </member>
  2185. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Boolean[])">
  2186. <summary>
  2187. Sets an array of bools.
  2188. </summary>
  2189. <param name="device">The device.</param>
  2190. <param name="effectHandle">The effect handle.</param>
  2191. <param name="values">The values.</param>
  2192. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2193. <unmanaged>HRESULT ID3DXConstantTable::SetBoolArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const BOOL* pb,[In] unsigned int Count)</unmanaged>
  2194. </member>
  2195. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Single[])">
  2196. <summary>
  2197. Sets an array of floats.
  2198. </summary>
  2199. <param name="device">The device.</param>
  2200. <param name="effectHandle">The effect handle.</param>
  2201. <param name="values">The values.</param>
  2202. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2203. <unmanaged>HRESULT ID3DXConstantTable::SetFloatArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const float* pf,[In] unsigned int Count)</unmanaged>
  2204. </member>
  2205. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Int32[])">
  2206. <summary>
  2207. Sets an array of ints.
  2208. </summary>
  2209. <param name="device">The device.</param>
  2210. <param name="effectHandle">The effect handle.</param>
  2211. <param name="values">The values.</param>
  2212. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2213. <unmanaged>HRESULT ID3DXConstantTable::SetIntArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const int* pn,[In] unsigned int Count)</unmanaged>
  2214. </member>
  2215. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix[])">
  2216. <summary>
  2217. Sets an array of matrices.
  2218. </summary>
  2219. <param name="device">The device.</param>
  2220. <param name="effectHandle">The effect handle.</param>
  2221. <param name="values">The values.</param>
  2222. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2223. <unmanaged>HRESULT ID3DXConstantTable::SetMatrixArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const D3DXMATRIX* pMatrix,[In] unsigned int Count)</unmanaged>
  2224. </member>
  2225. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4[])">
  2226. <summary>
  2227. Sets an array of 4D vectors.
  2228. </summary>
  2229. <param name="device">The device.</param>
  2230. <param name="effectHandle">The effect handle.</param>
  2231. <param name="values">The values.</param>
  2232. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2233. <unmanaged>HRESULT ID3DXConstantTable::SetVectorArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const D3DXVECTOR4* pVector,[In] unsigned int Count)</unmanaged>
  2234. </member>
  2235. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue``1(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,``0[])">
  2236. <summary>
  2237. Sets an array of elements.
  2238. </summary>
  2239. <typeparam name="T">Type of the array element</typeparam>
  2240. <param name="device">The device.</param>
  2241. <param name="effectHandle">The effect handle.</param>
  2242. <param name="values">The values.</param>
  2243. <returns>
  2244. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  2245. </returns>
  2246. <unmanaged>HRESULT ID3DXConstantTable::SetValue([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] const void* pData,[In] unsigned int Bytes)</unmanaged>
  2247. </member>
  2248. <member name="M:SharpDX.Direct3D9.ConstantTable.#ctor(System.IntPtr)">
  2249. <summary>
  2250. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.ConstantTable"/> class.
  2251. </summary>
  2252. <param name="nativePtr">The native pointer.</param>
  2253. </member>
  2254. <member name="M:SharpDX.Direct3D9.ConstantTable.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.ConstantTable">
  2255. <summary>
  2256. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.ConstantTable"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  2257. </summary>
  2258. <param name="nativePointer">The native pointer.</param>
  2259. <returns>
  2260. The result of the conversion.
  2261. </returns>
  2262. </member>
  2263. <member name="P:SharpDX.Direct3D9.ConstantTable.BufferPointer">
  2264. <summary>
  2265. <p>Gets a reference to the buffer that contains the constant table.</p>
  2266. </summary>
  2267. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetBufferPointer']/*" />
  2268. <msdn-id>bb205763</msdn-id>
  2269. <unmanaged>GetBufferPointer</unmanaged>
  2270. <unmanaged-short>GetBufferPointer</unmanaged-short>
  2271. <unmanaged>void* ID3DXConstantTable::GetBufferPointer()</unmanaged>
  2272. </member>
  2273. <member name="P:SharpDX.Direct3D9.ConstantTable.BufferSize">
  2274. <summary>
  2275. <p>Gets the buffer size of the constant table.</p>
  2276. </summary>
  2277. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetBufferSize']/*" />
  2278. <msdn-id>bb205764</msdn-id>
  2279. <unmanaged>GetBufferSize</unmanaged>
  2280. <unmanaged-short>GetBufferSize</unmanaged-short>
  2281. <unmanaged>unsigned int ID3DXConstantTable::GetBufferSize()</unmanaged>
  2282. </member>
  2283. <member name="P:SharpDX.Direct3D9.ConstantTable.Description">
  2284. <summary>
  2285. <p>Gets a description of the constant table.</p>
  2286. </summary>
  2287. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetDesc']/*" />
  2288. <msdn-id>bb205769</msdn-id>
  2289. <unmanaged>GetDesc</unmanaged>
  2290. <unmanaged-short>GetDesc</unmanaged-short>
  2291. <unmanaged>HRESULT ID3DXConstantTable::GetDesc([Out] D3DXCONSTANTTABLE_DESC* pDesc)</unmanaged>
  2292. </member>
  2293. <member name="M:SharpDX.Direct3D9.ConstantTable.GetBufferPointer">
  2294. <summary>
  2295. <p>Gets a reference to the buffer that contains the constant table.</p>
  2296. </summary>
  2297. <returns><p>Returns a reference the buffer.</p></returns>
  2298. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetBufferPointer']/*" />
  2299. <msdn-id>bb205763</msdn-id>
  2300. <unmanaged>void* ID3DXConstantTable::GetBufferPointer()</unmanaged>
  2301. <unmanaged-short>ID3DXConstantTable::GetBufferPointer</unmanaged-short>
  2302. </member>
  2303. <member name="M:SharpDX.Direct3D9.ConstantTable.GetBufferSize">
  2304. <summary>
  2305. <p>Gets the buffer size of the constant table.</p>
  2306. </summary>
  2307. <returns><p>Returns the size of the buffer, in bytes.</p></returns>
  2308. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetBufferSize']/*" />
  2309. <msdn-id>bb205764</msdn-id>
  2310. <unmanaged>unsigned int ID3DXConstantTable::GetBufferSize()</unmanaged>
  2311. <unmanaged-short>ID3DXConstantTable::GetBufferSize</unmanaged-short>
  2312. </member>
  2313. <member name="M:SharpDX.Direct3D9.ConstantTable.GetDescription(SharpDX.Direct3D9.ConstantTableDescription@)">
  2314. <summary>
  2315. <p>Gets a description of the constant table.</p>
  2316. </summary>
  2317. <param name="descRef"><dd> <p>Description of the constant table. See <strong><see cref="T:SharpDX.Direct3D9.ConstantTableDescription" /></strong>.</p> </dd></param>
  2318. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  2319. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetDesc']/*" />
  2320. <msdn-id>bb205769</msdn-id>
  2321. <unmanaged>HRESULT ID3DXConstantTable::GetDesc([Out] D3DXCONSTANTTABLE_DESC* pDesc)</unmanaged>
  2322. <unmanaged-short>ID3DXConstantTable::GetDesc</unmanaged-short>
  2323. </member>
  2324. <member name="M:SharpDX.Direct3D9.ConstantTable.GetConstantDescription(SharpDX.Direct3D9.EffectHandle,SharpDX.Direct3D9.ConstantDescription[],System.Int32@)">
  2325. <summary>
  2326. <p>Gets a reference to an array of constant descriptions in the constant table.</p>
  2327. </summary>
  2328. <param name="effectHandle"><dd> <p>Unique identifier to a constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2329. <param name="constantDescRef"><dd> <p>Returns a reference to an array of descriptions. See <strong><see cref="T:SharpDX.Direct3D9.ConstantDescription" /></strong>.</p> </dd></param>
  2330. <param name="countRef"><dd> <p>The input supplied must be the maximum size of the array. The output is the number of elements that are filled in the array when the function returns.</p> </dd></param>
  2331. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  2332. <remarks>
  2333. <p><strong><see cref="M:SharpDX.Direct3D9.ConstantTable.GetConstantDescription(SharpDX.Direct3D9.EffectHandle)" /></strong> will sometimes return a <strong><see cref="T:SharpDX.Direct3D9.ConstantDescription" /></strong> with a Register_Count of 0. This will happen with a constant appears in more than one Register_Set but does not have space in that register set allocated.</p><p>Because a sampler can appear more than once in a constant table, this method can return an array of descriptions, each one with a different register index.</p>
  2334. </remarks>
  2335. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetConstantDesc']/*" />
  2336. <msdn-id>bb205767</msdn-id>
  2337. <unmanaged>HRESULT ID3DXConstantTable::GetConstantDesc([In] D3DXHANDLE hConstant,[Out, Buffer] D3DXCONSTANT_DESC* pConstantDesc,[InOut] unsigned int* pCount)</unmanaged>
  2338. <unmanaged-short>ID3DXConstantTable::GetConstantDesc</unmanaged-short>
  2339. </member>
  2340. <member name="M:SharpDX.Direct3D9.ConstantTable.GetSamplerIndex(SharpDX.Direct3D9.EffectHandle)">
  2341. <summary>
  2342. <p>Returns the sampler index.</p>
  2343. </summary>
  2344. <param name="effectHandle"><dd> <p>The sampler handle.</p> </dd></param>
  2345. <returns><p>Returns the sampler index number from the constant table.</p></returns>
  2346. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetSamplerIndex']/*" />
  2347. <msdn-id>bb205770</msdn-id>
  2348. <unmanaged>unsigned int ID3DXConstantTable::GetSamplerIndex([In] D3DXHANDLE hConstant)</unmanaged>
  2349. <unmanaged-short>ID3DXConstantTable::GetSamplerIndex</unmanaged-short>
  2350. </member>
  2351. <member name="M:SharpDX.Direct3D9.ConstantTable.GetConstant(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  2352. <summary>
  2353. <p>Gets a constant by looking up its index.</p>
  2354. </summary>
  2355. <param name="effectHandle"><dd> <p>Unique identifier to the parent data structure. If the constant is a top-level parameter (there is no parent data structure), use <strong><c>null</c></strong>.</p> </dd></param>
  2356. <param name="index"><dd> <p>Zero-based index of the constant.</p> </dd></param>
  2357. <returns><p>Returns a unique identifier to the constant.</p></returns>
  2358. <remarks>
  2359. <p>To get a constant from an array of constants, use <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.GetConstantElement(SharpDX.Direct3D9.EffectHandle,System.Int32)" /></strong>.</p>
  2360. </remarks>
  2361. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetConstant']/*" />
  2362. <msdn-id>bb205765</msdn-id>
  2363. <unmanaged>D3DXHANDLE ID3DXConstantTable::GetConstant([In] D3DXHANDLE hConstant,[In] unsigned int Index)</unmanaged>
  2364. <unmanaged-short>ID3DXConstantTable::GetConstant</unmanaged-short>
  2365. </member>
  2366. <member name="M:SharpDX.Direct3D9.ConstantTable.GetConstantByName(SharpDX.Direct3D9.EffectHandle,System.String)">
  2367. <summary>
  2368. <p>Gets a constant by looking up its name.</p>
  2369. </summary>
  2370. <param name="effectHandle"><dd> <p>Unique identifier to the parent data structure. If the constant is a top-level parameter (there is no parent data structure), use <strong><c>null</c></strong>.</p> </dd></param>
  2371. <param name="nameRef"><dd> <p>Name of the constant.</p> </dd></param>
  2372. <returns><p>Returns a unique identifier to the constant.</p></returns>
  2373. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetConstantByName']/*" />
  2374. <msdn-id>bb205766</msdn-id>
  2375. <unmanaged>D3DXHANDLE ID3DXConstantTable::GetConstantByName([In] D3DXHANDLE hConstant,[In] const char* pName)</unmanaged>
  2376. <unmanaged-short>ID3DXConstantTable::GetConstantByName</unmanaged-short>
  2377. </member>
  2378. <member name="M:SharpDX.Direct3D9.ConstantTable.GetConstantElement(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  2379. <summary>
  2380. <p>Gets a constant from an array of constants. An array is made up of elements.</p>
  2381. </summary>
  2382. <param name="effectHandle"><dd> <p>Unique identifier to the array of constants. This value may not be <strong><c>null</c></strong>.</p> </dd></param>
  2383. <param name="index"><dd> <p>Zero-based index of the element in the array.</p> </dd></param>
  2384. <returns><p>Returns a unique identifier to the element constant.</p></returns>
  2385. <remarks>
  2386. <p>To get a constant that is not part of an array, use <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.GetConstant(SharpDX.Direct3D9.EffectHandle,System.Int32)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.GetConstantByName(SharpDX.Direct3D9.EffectHandle,System.String)" /></strong>.</p>
  2387. </remarks>
  2388. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::GetConstantElement']/*" />
  2389. <msdn-id>bb205768</msdn-id>
  2390. <unmanaged>D3DXHANDLE ID3DXConstantTable::GetConstantElement([In] D3DXHANDLE hConstant,[In] unsigned int Index)</unmanaged>
  2391. <unmanaged-short>ID3DXConstantTable::GetConstantElement</unmanaged-short>
  2392. </member>
  2393. <member name="M:SharpDX.Direct3D9.ConstantTable.SetDefaults(SharpDX.Direct3D9.Device)">
  2394. <summary>
  2395. <p>Sets the constants to their default values. The default values are declared in the variable declarations in the shader.</p>
  2396. </summary>
  2397. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2398. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2399. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetDefaults']/*" />
  2400. <msdn-id>bb205773</msdn-id>
  2401. <unmanaged>HRESULT ID3DXConstantTable::SetDefaults([In] IDirect3DDevice9* pDevice)</unmanaged>
  2402. <unmanaged-short>ID3DXConstantTable::SetDefaults</unmanaged-short>
  2403. </member>
  2404. <member name="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.IntPtr,System.Int32)">
  2405. <summary>
  2406. <p>Sets the contents of the buffer to the constant table.</p>
  2407. </summary>
  2408. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2409. <param name="effectHandle"><dd> <p>Unique identifier to a constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2410. <param name="dataRef"><dd> <p>Buffer containing data.</p> </dd></param>
  2411. <param name="bytes"><dd> <p>Size of the buffer, in bytes.</p> </dd></param>
  2412. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2413. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetValue']/*" />
  2414. <msdn-id>bb205785</msdn-id>
  2415. <unmanaged>HRESULT ID3DXConstantTable::SetValue([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] const void* pData,[In] unsigned int Bytes)</unmanaged>
  2416. <unmanaged-short>ID3DXConstantTable::SetValue</unmanaged-short>
  2417. </member>
  2418. <member name="M:SharpDX.Direct3D9.ConstantTable.SetBool(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool)">
  2419. <summary>
  2420. <p>Sets a Boolean value.</p>
  2421. </summary>
  2422. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2423. <param name="effectHandle"><dd> <p>Unique identifier to the constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2424. <param name="b"><dd> <p>Boolean value.</p> </dd></param>
  2425. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2426. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetBool']/*" />
  2427. <msdn-id>bb205771</msdn-id>
  2428. <unmanaged>HRESULT ID3DXConstantTable::SetBool([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] BOOL b)</unmanaged>
  2429. <unmanaged-short>ID3DXConstantTable::SetBool</unmanaged-short>
  2430. </member>
  2431. <member name="M:SharpDX.Direct3D9.ConstantTable.SetBoolArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool[],System.Int32)">
  2432. <summary>
  2433. <p>Sets an array of Boolean values.</p>
  2434. </summary>
  2435. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2436. <param name="effectHandle"><dd> <p>Unique identifier to the array of constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2437. <param name="bRef"><dd> <p>Array of Boolean values.</p> </dd></param>
  2438. <param name="count"><dd> <p>Number of Boolean values in the array.</p> </dd></param>
  2439. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2440. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetBoolArray']/*" />
  2441. <msdn-id>bb205772</msdn-id>
  2442. <unmanaged>HRESULT ID3DXConstantTable::SetBoolArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const BOOL* pb,[In] unsigned int Count)</unmanaged>
  2443. <unmanaged-short>ID3DXConstantTable::SetBoolArray</unmanaged-short>
  2444. </member>
  2445. <member name="M:SharpDX.Direct3D9.ConstantTable.SetInt(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Int32)">
  2446. <summary>
  2447. <p>Sets an integer value.</p>
  2448. </summary>
  2449. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2450. <param name="effectHandle"><dd> <p>Unique identifier to the constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2451. <param name="n"><dd> <p>Integer.</p> </dd></param>
  2452. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2453. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetInt']/*" />
  2454. <msdn-id>bb205776</msdn-id>
  2455. <unmanaged>HRESULT ID3DXConstantTable::SetInt([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] int n)</unmanaged>
  2456. <unmanaged-short>ID3DXConstantTable::SetInt</unmanaged-short>
  2457. </member>
  2458. <member name="M:SharpDX.Direct3D9.ConstantTable.SetIntArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Int32[],System.Int32)">
  2459. <summary>
  2460. <p>Sets an array of integers.</p>
  2461. </summary>
  2462. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2463. <param name="effectHandle"><dd> <p>Unique identifier to the array of constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2464. <param name="nRef"><dd> <p>Array of integers.</p> </dd></param>
  2465. <param name="count"><dd> <p>Number of integers in the array.</p> </dd></param>
  2466. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2467. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetIntArray']/*" />
  2468. <msdn-id>bb205778</msdn-id>
  2469. <unmanaged>HRESULT ID3DXConstantTable::SetIntArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const int* pn,[In] unsigned int Count)</unmanaged>
  2470. <unmanaged-short>ID3DXConstantTable::SetIntArray</unmanaged-short>
  2471. </member>
  2472. <member name="M:SharpDX.Direct3D9.ConstantTable.SetFloat(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Single)">
  2473. <summary>
  2474. <p>Sets a floating-point number.</p>
  2475. </summary>
  2476. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2477. <param name="effectHandle"><dd> <p>Unique identifier to the constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2478. <param name="f"><dd> <p>Floating-point number.</p> </dd></param>
  2479. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2480. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetFloat']/*" />
  2481. <msdn-id>bb205774</msdn-id>
  2482. <unmanaged>HRESULT ID3DXConstantTable::SetFloat([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] float f)</unmanaged>
  2483. <unmanaged-short>ID3DXConstantTable::SetFloat</unmanaged-short>
  2484. </member>
  2485. <member name="M:SharpDX.Direct3D9.ConstantTable.SetFloatArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Single[],System.Int32)">
  2486. <summary>
  2487. <p>Sets an array of floating-point numbers.</p>
  2488. </summary>
  2489. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2490. <param name="effectHandle"><dd> <p>Unique identifier to the array of constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2491. <param name="fRef"><dd> <p>Array of floating-point numbers.</p> </dd></param>
  2492. <param name="count"><dd> <p>Number of floating-point values in the array.</p> </dd></param>
  2493. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2494. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetFloatArray']/*" />
  2495. <msdn-id>bb205775</msdn-id>
  2496. <unmanaged>HRESULT ID3DXConstantTable::SetFloatArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const float* pf,[In] unsigned int Count)</unmanaged>
  2497. <unmanaged-short>ID3DXConstantTable::SetFloatArray</unmanaged-short>
  2498. </member>
  2499. <member name="M:SharpDX.Direct3D9.ConstantTable.SetVector(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4)">
  2500. <summary>
  2501. <p>Sets a 4D vector.</p>
  2502. </summary>
  2503. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2504. <param name="effectHandle"><dd> <p>Unique identifier to the vector constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2505. <param name="vectorRef"><dd> <p>Pointer to a 4D vector.</p> </dd></param>
  2506. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2507. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetVector']/*" />
  2508. <msdn-id>bb205786</msdn-id>
  2509. <unmanaged>HRESULT ID3DXConstantTable::SetVector([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] const D3DXVECTOR4* pVector)</unmanaged>
  2510. <unmanaged-short>ID3DXConstantTable::SetVector</unmanaged-short>
  2511. </member>
  2512. <member name="M:SharpDX.Direct3D9.ConstantTable.SetVectorArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4[],System.Int32)">
  2513. <summary>
  2514. <p>Sets an array of 4D vectors.</p>
  2515. </summary>
  2516. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2517. <param name="effectHandle"><dd> <p>Unique identifier to the array of vector constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2518. <param name="vectorRef"><dd> <p>Array of 4D vectors.</p> </dd></param>
  2519. <param name="count"><dd> <p>Number of vectors in the array.</p> </dd></param>
  2520. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2521. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetVectorArray']/*" />
  2522. <msdn-id>bb205787</msdn-id>
  2523. <unmanaged>HRESULT ID3DXConstantTable::SetVectorArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const D3DXVECTOR4* pVector,[In] unsigned int Count)</unmanaged>
  2524. <unmanaged-short>ID3DXConstantTable::SetVectorArray</unmanaged-short>
  2525. </member>
  2526. <member name="M:SharpDX.Direct3D9.ConstantTable.SetMatrix(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@)">
  2527. <summary>
  2528. <p>Sets a nontransposed matrix.</p>
  2529. </summary>
  2530. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2531. <param name="effectHandle"><dd> <p>Unique identifier to the matrix of constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2532. <param name="matrixRef"><dd> <p>Pointer to a nontransposed matrix. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  2533. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2534. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetMatrix']/*" />
  2535. <msdn-id>bb205779</msdn-id>
  2536. <unmanaged>HRESULT ID3DXConstantTable::SetMatrix([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] const D3DXMATRIX* pMatrix)</unmanaged>
  2537. <unmanaged-short>ID3DXConstantTable::SetMatrix</unmanaged-short>
  2538. </member>
  2539. <member name="M:SharpDX.Direct3D9.ConstantTable.SetMatrixArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix[],System.Int32)">
  2540. <summary>
  2541. <p>Sets an array of nontransposed matrices.</p>
  2542. </summary>
  2543. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2544. <param name="effectHandle"><dd> <p>Unique identifier to the array of constant matrices. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2545. <param name="matrixRef"><dd> <p>Array of nontransposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  2546. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  2547. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2548. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetMatrixArray']/*" />
  2549. <msdn-id>bb205780</msdn-id>
  2550. <unmanaged>HRESULT ID3DXConstantTable::SetMatrixArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const D3DXMATRIX* pMatrix,[In] unsigned int Count)</unmanaged>
  2551. <unmanaged-short>ID3DXConstantTable::SetMatrixArray</unmanaged-short>
  2552. </member>
  2553. <member name="M:SharpDX.Direct3D9.ConstantTable.SetMatrixPointerArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@,System.Int32)">
  2554. <summary>
  2555. <p>Sets an array of references to nontransposed matrices.</p>
  2556. </summary>
  2557. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2558. <param name="effectHandle"><dd> <p>Unique identifier to an array of constant matrices. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2559. <param name="matrixOut"><dd> <p>Array of references to nontransposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  2560. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  2561. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2562. <remarks>
  2563. <p>A nontransposed matrix contains row-major data; that is, each vector is contained in a row.</p>
  2564. </remarks>
  2565. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetMatrixPointerArray']/*" />
  2566. <msdn-id>bb205781</msdn-id>
  2567. <unmanaged>HRESULT ID3DXConstantTable::SetMatrixPointerArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] const D3DXMATRIX** ppMatrix,[In] unsigned int Count)</unmanaged>
  2568. <unmanaged-short>ID3DXConstantTable::SetMatrixPointerArray</unmanaged-short>
  2569. </member>
  2570. <member name="M:SharpDX.Direct3D9.ConstantTable.SetMatrixTranspose(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@)">
  2571. <summary>
  2572. <p>Sets a transposed matrix.</p>
  2573. </summary>
  2574. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2575. <param name="effectHandle"><dd> <p>Unique identifier to the matrix of constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2576. <param name="matrixRef"><dd> <p>Pointer to a transposed matrix. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  2577. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2578. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetMatrixTranspose']/*" />
  2579. <msdn-id>bb205782</msdn-id>
  2580. <unmanaged>HRESULT ID3DXConstantTable::SetMatrixTranspose([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] const D3DXMATRIX* pMatrix)</unmanaged>
  2581. <unmanaged-short>ID3DXConstantTable::SetMatrixTranspose</unmanaged-short>
  2582. </member>
  2583. <member name="M:SharpDX.Direct3D9.ConstantTable.SetMatrixTransposeArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix[],System.Int32)">
  2584. <summary>
  2585. <p>Sets an array of transposed matrices.</p>
  2586. </summary>
  2587. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2588. <param name="effectHandle"><dd> <p>Unique identifier to the array of matrix constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2589. <param name="matrixRef"><dd> <p>Array of transposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  2590. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  2591. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2592. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetMatrixTransposeArray']/*" />
  2593. <msdn-id>bb205783</msdn-id>
  2594. <unmanaged>HRESULT ID3DXConstantTable::SetMatrixTransposeArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In, Buffer] const D3DXMATRIX* pMatrix,[In] unsigned int Count)</unmanaged>
  2595. <unmanaged-short>ID3DXConstantTable::SetMatrixTransposeArray</unmanaged-short>
  2596. </member>
  2597. <member name="M:SharpDX.Direct3D9.ConstantTable.SetMatrixTransposePointerArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@,System.Int32)">
  2598. <summary>
  2599. <p>Sets an array of references to transposed matrices.</p>
  2600. </summary>
  2601. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the constant table.</p> </dd></param>
  2602. <param name="effectHandle"><dd> <p>Unique identifier to the array of matrix constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  2603. <param name="matrixOut"><dd> <p>Array of references to transposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  2604. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  2605. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  2606. <remarks>
  2607. <p>A transposed matrix contains column-major data; that is, each vector is contained in a column.</p>
  2608. </remarks>
  2609. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXConstantTable::SetMatrixTransposePointerArray']/*" />
  2610. <msdn-id>bb205784</msdn-id>
  2611. <unmanaged>HRESULT ID3DXConstantTable::SetMatrixTransposePointerArray([In] IDirect3DDevice9* pDevice,[In] D3DXHANDLE hConstant,[In] const D3DXMATRIX** ppMatrix,[In] unsigned int Count)</unmanaged>
  2612. <unmanaged-short>ID3DXConstantTable::SetMatrixTransposePointerArray</unmanaged-short>
  2613. </member>
  2614. <member name="T:SharpDX.Direct3D9.CubeTexture">
  2615. <summary>
  2616. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.CubeTexture" /> interface to manipulate a cube texture resource.</p>
  2617. </summary>
  2618. <remarks>
  2619. <p>The <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> interface can be obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.Device.CreateCubeTexture(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.CubeTexture,System.IntPtr)" /></strong> method or one of the <see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.CubeTexture@)" /><em>xxx</em> functions.</p><p>This interface inherits additional functionality from the <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface.</p><p>This interface, like all COM interfaces, inherits additional functionality from the <strong><see cref="T:SharpDX.ComObject" /></strong> interface.</p><p>The LPDIRECT3DCUBETEXTURE9 and PDIRECT3DCubeTexture9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> interface. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.CubeTexture" /> *LPDIRECT3DCUBETEXTURE9, *PDIRECT3DCubeTexture9;
  2620. </pre>
  2621. </remarks>
  2622. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DCubeTexture9']/*" />
  2623. <msdn-id>bb174329</msdn-id>
  2624. <unmanaged>IDirect3DCubeTexture9</unmanaged>
  2625. <unmanaged-short>IDirect3DCubeTexture9</unmanaged-short>
  2626. </member>
  2627. <member name="M:SharpDX.Direct3D9.CubeTexture.#ctor(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool)">
  2628. <summary>
  2629. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.CubeTexture"/> class.
  2630. </summary>
  2631. <param name="device">The device.</param>
  2632. <param name="edgeLength">Length of the edge.</param>
  2633. <param name="levelCount">The level count.</param>
  2634. <param name="usage">The usage.</param>
  2635. <param name="format">The format.</param>
  2636. <param name="pool">The pool.</param>
  2637. </member>
  2638. <member name="M:SharpDX.Direct3D9.CubeTexture.#ctor(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.IntPtr@)">
  2639. <summary>
  2640. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.CubeTexture"/> class.
  2641. </summary>
  2642. <param name="device">The device.</param>
  2643. <param name="edgeLength">Length of the edge.</param>
  2644. <param name="levelCount">The level count.</param>
  2645. <param name="usage">The usage.</param>
  2646. <param name="format">The format.</param>
  2647. <param name="pool">The pool.</param>
  2648. <param name="sharedHandle">The shared handle.</param>
  2649. </member>
  2650. <member name="M:SharpDX.Direct3D9.CubeTexture.CheckRequirements(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool)">
  2651. <summary>
  2652. Checks texture-creation parameters.
  2653. </summary>
  2654. <param name="device">Device associated with the texture.</param>
  2655. <param name="size">Requested size of the texture. Null if </param>
  2656. <param name="mipLevelCount">Requested number of mipmap levels for the texture.</param>
  2657. <param name="usage">The requested usage for the texture.</param>
  2658. <param name="format">Requested format for the texture.</param>
  2659. <param name="pool">Memory class where the resource will be placed.</param>
  2660. <returns>A value type containing the proposed values to pass to the texture creation functions.</returns>
  2661. <unmanaged>HRESULT D3DXCheckCubeTextureRequirements([In] IDirect3DDevice9* pDevice,[InOut] unsigned int* pSize,[InOut] unsigned int* pNumMipLevels,[In] unsigned int Usage,[InOut] D3DFORMAT* pFormat,[In] D3DPOOL Pool)</unmanaged>
  2662. </member>
  2663. <member name="M:SharpDX.Direct3D9.CubeTexture.Fill(SharpDX.Direct3D9.Fill3DCallback)">
  2664. <summary>
  2665. Uses a user-provided function to fill each texel of each mip level of a given cube texture.
  2666. </summary>
  2667. <param name="callback">A function that is used to fill the texture.</param>
  2668. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2669. </member>
  2670. <member name="M:SharpDX.Direct3D9.CubeTexture.Fill(SharpDX.Direct3D9.TextureShader)">
  2671. <summary>
  2672. Uses a compiled high-level shader language (HLSL) function to fill each texel of each mipmap level of a texture.
  2673. </summary>
  2674. <param name="shader">A texture shader object that is used to fill the texture.</param>
  2675. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2676. </member>
  2677. <member name="M:SharpDX.Direct3D9.CubeTexture.LockRectangle(SharpDX.Direct3D9.CubeMapFace,System.Int32,SharpDX.Direct3D9.LockFlags)">
  2678. <summary>
  2679. Locks a rectangle on a cube texture resource.
  2680. </summary>
  2681. <param name="faceType">Type of the face.</param>
  2682. <param name="level">The level.</param>
  2683. <param name="flags">The flags.</param>
  2684. <returns>
  2685. A <see cref="T:SharpDX.DataRectangle"/> describing the region locked.
  2686. </returns>
  2687. <unmanaged>HRESULT IDirect3DCubeTexture9::LockRect([In] D3DCUBEMAP_FACES FaceType,[In] unsigned int Level,[In] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  2688. </member>
  2689. <member name="M:SharpDX.Direct3D9.CubeTexture.LockRectangle(SharpDX.Direct3D9.CubeMapFace,System.Int32,SharpDX.Direct3D9.LockFlags,SharpDX.DataStream@)">
  2690. <summary>
  2691. Locks a rectangle on a cube texture resource.
  2692. </summary>
  2693. <param name="faceType">Type of the face.</param>
  2694. <param name="level">The level.</param>
  2695. <param name="flags">The flags.</param>
  2696. <param name="stream">The stream pointing to the locked region.</param>
  2697. <returns>
  2698. A <see cref="T:SharpDX.DataRectangle"/> describing the region locked.
  2699. </returns>
  2700. <unmanaged>HRESULT IDirect3DCubeTexture9::LockRect([In] D3DCUBEMAP_FACES FaceType,[In] unsigned int Level,[In] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  2701. </member>
  2702. <member name="M:SharpDX.Direct3D9.CubeTexture.LockRectangle(SharpDX.Direct3D9.CubeMapFace,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.LockFlags)">
  2703. <summary>
  2704. Locks a rectangle on a cube texture resource.
  2705. </summary>
  2706. <param name="faceType">Type of the face.</param>
  2707. <param name="level">The level.</param>
  2708. <param name="rectangle">The rectangle.</param>
  2709. <param name="flags">The flags.</param>
  2710. <returns>
  2711. A <see cref="T:SharpDX.DataRectangle"/> describing the region locked.
  2712. </returns>
  2713. <unmanaged>HRESULT IDirect3DCubeTexture9::LockRect([In] D3DCUBEMAP_FACES FaceType,[In] unsigned int Level,[In] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  2714. </member>
  2715. <member name="M:SharpDX.Direct3D9.CubeTexture.LockRectangle(SharpDX.Direct3D9.CubeMapFace,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.LockFlags,SharpDX.DataStream@)">
  2716. <summary>
  2717. Locks a rectangle on a cube texture resource.
  2718. </summary>
  2719. <param name="faceType">Type of the face.</param>
  2720. <param name="level">The level.</param>
  2721. <param name="rectangle">The rectangle.</param>
  2722. <param name="flags">The flags.</param>
  2723. <param name="stream">The stream pointing to the locked region.</param>
  2724. <returns>
  2725. A <see cref="T:SharpDX.DataRectangle"/> describing the region locked.
  2726. </returns>
  2727. <unmanaged>HRESULT IDirect3DCubeTexture9::LockRect([In] D3DCUBEMAP_FACES FaceType,[In] unsigned int Level,[In] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  2728. </member>
  2729. <member name="M:SharpDX.Direct3D9.CubeTexture.AddDirtyRectangle(SharpDX.Direct3D9.CubeMapFace)">
  2730. <summary>
  2731. Adds a dirty region to a cube texture resource.
  2732. </summary>
  2733. <param name="faceType">Type of the face.</param>
  2734. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2735. <unmanaged>HRESULT IDirect3DCubeTexture9::AddDirtyRect([In] D3DCUBEMAP_FACES FaceType,[In] const void* pDirtyRect)</unmanaged>
  2736. </member>
  2737. <member name="M:SharpDX.Direct3D9.CubeTexture.AddDirtyRectangle(SharpDX.Direct3D9.CubeMapFace,SharpDX.Mathematics.Interop.RawRectangle)">
  2738. <summary>
  2739. Adds a dirty region to a cube texture resource.
  2740. </summary>
  2741. <param name="faceType">Type of the face.</param>
  2742. <param name="dirtyRectRef">The dirty rect ref.</param>
  2743. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  2744. <unmanaged>HRESULT IDirect3DCubeTexture9::AddDirtyRect([In] D3DCUBEMAP_FACES FaceType,[In] const void* pDirtyRect)</unmanaged>
  2745. </member>
  2746. <member name="M:SharpDX.Direct3D9.CubeTexture.FromFile(SharpDX.Direct3D9.Device,System.String)">
  2747. <summary>
  2748. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a file
  2749. </summary>
  2750. <param name="device">The device.</param>
  2751. <param name="filename">The filename.</param>
  2752. <returns>
  2753. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2754. </returns>
  2755. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2756. </member>
  2757. <member name="M:SharpDX.Direct3D9.CubeTexture.FromFile(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool)">
  2758. <summary>
  2759. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a file
  2760. </summary>
  2761. <param name="device">The device.</param>
  2762. <param name="filename">The filename.</param>
  2763. <param name="usage">The usage.</param>
  2764. <param name="pool">The pool.</param>
  2765. <returns>
  2766. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2767. </returns>
  2768. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2769. </member>
  2770. <member name="M:SharpDX.Direct3D9.CubeTexture.FromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  2771. <summary>
  2772. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a file
  2773. </summary>
  2774. <param name="device">The device.</param>
  2775. <param name="filename">The filename.</param>
  2776. <param name="size">The size.</param>
  2777. <param name="levelCount">The level count.</param>
  2778. <param name="usage">The usage.</param>
  2779. <param name="format">The format.</param>
  2780. <param name="pool">The pool.</param>
  2781. <param name="filter">The filter.</param>
  2782. <param name="mipFilter">The mip filter.</param>
  2783. <param name="colorKey">The color key.</param>
  2784. <returns>
  2785. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2786. </returns>
  2787. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2788. </member>
  2789. <member name="M:SharpDX.Direct3D9.CubeTexture.FromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@)">
  2790. <summary>
  2791. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a file
  2792. </summary>
  2793. <param name="device">The device.</param>
  2794. <param name="filename">The filename.</param>
  2795. <param name="size">The size.</param>
  2796. <param name="levelCount">The level count.</param>
  2797. <param name="usage">The usage.</param>
  2798. <param name="format">The format.</param>
  2799. <param name="pool">The pool.</param>
  2800. <param name="filter">The filter.</param>
  2801. <param name="mipFilter">The mip filter.</param>
  2802. <param name="colorKey">The color key.</param>
  2803. <param name="imageInformation">The image information.</param>
  2804. <returns>
  2805. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2806. </returns>
  2807. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2808. </member>
  2809. <member name="M:SharpDX.Direct3D9.CubeTexture.FromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry[]@)">
  2810. <summary>
  2811. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a file
  2812. </summary>
  2813. <param name="device">The device.</param>
  2814. <param name="filename">The filename.</param>
  2815. <param name="size">The size.</param>
  2816. <param name="levelCount">The level count.</param>
  2817. <param name="usage">The usage.</param>
  2818. <param name="format">The format.</param>
  2819. <param name="pool">The pool.</param>
  2820. <param name="filter">The filter.</param>
  2821. <param name="mipFilter">The mip filter.</param>
  2822. <param name="colorKey">The color key.</param>
  2823. <param name="imageInformation">The image information.</param>
  2824. <param name="palette">The palette.</param>
  2825. <returns>
  2826. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2827. </returns>
  2828. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2829. </member>
  2830. <member name="M:SharpDX.Direct3D9.CubeTexture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[])">
  2831. <summary>
  2832. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a memory buffer.
  2833. </summary>
  2834. <param name="device">The device.</param>
  2835. <param name="buffer">The buffer.</param>
  2836. <returns>
  2837. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2838. </returns>
  2839. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemory([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2840. </member>
  2841. <member name="M:SharpDX.Direct3D9.CubeTexture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool)">
  2842. <summary>
  2843. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a memory buffer.
  2844. </summary>
  2845. <param name="device">The device.</param>
  2846. <param name="buffer">The buffer.</param>
  2847. <param name="usage">The usage.</param>
  2848. <param name="pool">The pool.</param>
  2849. <returns>
  2850. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2851. </returns>
  2852. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2853. </member>
  2854. <member name="M:SharpDX.Direct3D9.CubeTexture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  2855. <summary>
  2856. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a memory buffer.
  2857. </summary>
  2858. <param name="device">The device.</param>
  2859. <param name="buffer">The buffer.</param>
  2860. <param name="size">The size.</param>
  2861. <param name="levelCount">The level count.</param>
  2862. <param name="usage">The usage.</param>
  2863. <param name="format">The format.</param>
  2864. <param name="pool">The pool.</param>
  2865. <param name="filter">The filter.</param>
  2866. <param name="mipFilter">The mip filter.</param>
  2867. <param name="colorKey">The color key.</param>
  2868. <returns>
  2869. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2870. </returns>
  2871. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2872. </member>
  2873. <member name="M:SharpDX.Direct3D9.CubeTexture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@)">
  2874. <summary>
  2875. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a memory buffer.
  2876. </summary>
  2877. <param name="device">The device.</param>
  2878. <param name="buffer">The buffer.</param>
  2879. <param name="size">The size.</param>
  2880. <param name="levelCount">The level count.</param>
  2881. <param name="usage">The usage.</param>
  2882. <param name="format">The format.</param>
  2883. <param name="pool">The pool.</param>
  2884. <param name="filter">The filter.</param>
  2885. <param name="mipFilter">The mip filter.</param>
  2886. <param name="colorKey">The color key.</param>
  2887. <param name="imageInformation">The image information.</param>
  2888. <returns>
  2889. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2890. </returns>
  2891. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2892. </member>
  2893. <member name="M:SharpDX.Direct3D9.CubeTexture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry[]@)">
  2894. <summary>
  2895. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a memory buffer.
  2896. </summary>
  2897. <param name="device">The device.</param>
  2898. <param name="buffer">The buffer.</param>
  2899. <param name="size">The size.</param>
  2900. <param name="levelCount">The level count.</param>
  2901. <param name="usage">The usage.</param>
  2902. <param name="format">The format.</param>
  2903. <param name="pool">The pool.</param>
  2904. <param name="filter">The filter.</param>
  2905. <param name="mipFilter">The mip filter.</param>
  2906. <param name="colorKey">The color key.</param>
  2907. <param name="imageInformation">The image information.</param>
  2908. <param name="palette">The palette.</param>
  2909. <returns>
  2910. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2911. </returns>
  2912. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2913. </member>
  2914. <member name="M:SharpDX.Direct3D9.CubeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream)">
  2915. <summary>
  2916. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a stream.
  2917. </summary>
  2918. <param name="device">The device.</param>
  2919. <param name="stream">The stream.</param>
  2920. <returns>A <see cref="T:SharpDX.Direct3D9.CubeTexture"/></returns>
  2921. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemory([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2922. </member>
  2923. <member name="M:SharpDX.Direct3D9.CubeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool)">
  2924. <summary>
  2925. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a stream.
  2926. </summary>
  2927. <param name="device">The device.</param>
  2928. <param name="stream">The stream.</param>
  2929. <param name="usage">The usage.</param>
  2930. <param name="pool">The pool.</param>
  2931. <returns>
  2932. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2933. </returns>
  2934. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2935. </member>
  2936. <member name="M:SharpDX.Direct3D9.CubeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  2937. <summary>
  2938. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a stream.
  2939. </summary>
  2940. <param name="device">The device.</param>
  2941. <param name="stream">The stream.</param>
  2942. <param name="size">The size.</param>
  2943. <param name="levelCount">The level count.</param>
  2944. <param name="usage">The usage.</param>
  2945. <param name="format">The format.</param>
  2946. <param name="pool">The pool.</param>
  2947. <param name="filter">The filter.</param>
  2948. <param name="mipFilter">The mip filter.</param>
  2949. <param name="colorKey">The color key.</param>
  2950. <returns>
  2951. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2952. </returns>
  2953. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2954. </member>
  2955. <member name="M:SharpDX.Direct3D9.CubeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  2956. <summary>
  2957. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a stream.
  2958. </summary>
  2959. <param name="device">The device.</param>
  2960. <param name="stream">The stream.</param>
  2961. <param name="sizeBytes">The size bytes.</param>
  2962. <param name="size">The size.</param>
  2963. <param name="levelCount">The level count.</param>
  2964. <param name="usage">The usage.</param>
  2965. <param name="format">The format.</param>
  2966. <param name="pool">The pool.</param>
  2967. <param name="filter">The filter.</param>
  2968. <param name="mipFilter">The mip filter.</param>
  2969. <param name="colorKey">The color key.</param>
  2970. <returns>
  2971. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2972. </returns>
  2973. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2974. </member>
  2975. <member name="M:SharpDX.Direct3D9.CubeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@)">
  2976. <summary>
  2977. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a stream.
  2978. </summary>
  2979. <param name="device">The device.</param>
  2980. <param name="stream">The stream.</param>
  2981. <param name="sizeBytes">The size bytes.</param>
  2982. <param name="size">The size.</param>
  2983. <param name="levelCount">The level count.</param>
  2984. <param name="usage">The usage.</param>
  2985. <param name="format">The format.</param>
  2986. <param name="pool">The pool.</param>
  2987. <param name="filter">The filter.</param>
  2988. <param name="mipFilter">The mip filter.</param>
  2989. <param name="colorKey">The color key.</param>
  2990. <param name="imageInformation">The image information.</param>
  2991. <returns>
  2992. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  2993. </returns>
  2994. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  2995. </member>
  2996. <member name="M:SharpDX.Direct3D9.CubeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry[]@)">
  2997. <summary>
  2998. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a stream.
  2999. </summary>
  3000. <param name="device">The device.</param>
  3001. <param name="stream">The stream.</param>
  3002. <param name="sizeBytes">The size bytes.</param>
  3003. <param name="size">The size.</param>
  3004. <param name="levelCount">The level count.</param>
  3005. <param name="usage">The usage.</param>
  3006. <param name="format">The format.</param>
  3007. <param name="pool">The pool.</param>
  3008. <param name="filter">The filter.</param>
  3009. <param name="mipFilter">The mip filter.</param>
  3010. <param name="colorKey">The color key.</param>
  3011. <param name="imageInformation">The image information.</param>
  3012. <param name="palette">The palette.</param>
  3013. <returns>
  3014. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  3015. </returns>
  3016. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  3017. </member>
  3018. <member name="M:SharpDX.Direct3D9.CubeTexture.CreateFromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  3019. <summary>
  3020. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a stream.
  3021. </summary>
  3022. <param name="device">The device.</param>
  3023. <param name="buffer">The buffer.</param>
  3024. <param name="size">The size.</param>
  3025. <param name="levelCount">The level count.</param>
  3026. <param name="usage">The usage.</param>
  3027. <param name="format">The format.</param>
  3028. <param name="pool">The pool.</param>
  3029. <param name="filter">The filter.</param>
  3030. <param name="mipFilter">The mip filter.</param>
  3031. <param name="colorKey">The color key.</param>
  3032. <param name="imageInformation">The image information.</param>
  3033. <param name="palette">The palette.</param>
  3034. <returns>
  3035. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  3036. </returns>
  3037. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  3038. </member>
  3039. <member name="M:SharpDX.Direct3D9.CubeTexture.CreateFromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  3040. <summary>
  3041. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a stream.
  3042. </summary>
  3043. <param name="device">The device.</param>
  3044. <param name="stream">The stream.</param>
  3045. <param name="sizeBytes">The size bytes.</param>
  3046. <param name="size">The size.</param>
  3047. <param name="levelCount">The level count.</param>
  3048. <param name="usage">The usage.</param>
  3049. <param name="format">The format.</param>
  3050. <param name="pool">The pool.</param>
  3051. <param name="filter">The filter.</param>
  3052. <param name="mipFilter">The mip filter.</param>
  3053. <param name="colorKey">The color key.</param>
  3054. <param name="imageInformation">The image information.</param>
  3055. <param name="palette">The palette.</param>
  3056. <returns>A <see cref="T:SharpDX.Direct3D9.CubeTexture"/></returns>
  3057. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  3058. </member>
  3059. <member name="M:SharpDX.Direct3D9.CubeTexture.CreateFromPointer(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  3060. <summary>
  3061. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a stream.
  3062. </summary>
  3063. <param name="device">The device.</param>
  3064. <param name="pointer">The pointer.</param>
  3065. <param name="sizeInBytes">The size in bytes.</param>
  3066. <param name="size">The size.</param>
  3067. <param name="levelCount">The level count.</param>
  3068. <param name="usage">The usage.</param>
  3069. <param name="format">The format.</param>
  3070. <param name="pool">The pool.</param>
  3071. <param name="filter">The filter.</param>
  3072. <param name="mipFilter">The mip filter.</param>
  3073. <param name="colorKey">The color key.</param>
  3074. <param name="imageInformation">The image information.</param>
  3075. <param name="palette">The palette.</param>
  3076. <returns>
  3077. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  3078. </returns>
  3079. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  3080. </member>
  3081. <member name="M:SharpDX.Direct3D9.CubeTexture.CreateFromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  3082. <summary>
  3083. Creates a <see cref="T:SharpDX.Direct3D9.CubeTexture"/> from a stream.
  3084. </summary>
  3085. <param name="device">The device.</param>
  3086. <param name="fileName">Name of the file.</param>
  3087. <param name="size">The size.</param>
  3088. <param name="levelCount">The level count.</param>
  3089. <param name="usage">The usage.</param>
  3090. <param name="format">The format.</param>
  3091. <param name="pool">The pool.</param>
  3092. <param name="filter">The filter.</param>
  3093. <param name="mipFilter">The mip filter.</param>
  3094. <param name="colorKey">The color key.</param>
  3095. <param name="imageInformation">The image information.</param>
  3096. <param name="palette">The palette.</param>
  3097. <returns>
  3098. A <see cref="T:SharpDX.Direct3D9.CubeTexture"/>
  3099. </returns>
  3100. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  3101. </member>
  3102. <member name="M:SharpDX.Direct3D9.CubeTexture.#ctor(System.IntPtr)">
  3103. <summary>
  3104. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.CubeTexture"/> class.
  3105. </summary>
  3106. <param name="nativePtr">The native pointer.</param>
  3107. </member>
  3108. <member name="M:SharpDX.Direct3D9.CubeTexture.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.CubeTexture">
  3109. <summary>
  3110. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.CubeTexture"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  3111. </summary>
  3112. <param name="nativePointer">The native pointer.</param>
  3113. <returns>
  3114. The result of the conversion.
  3115. </returns>
  3116. </member>
  3117. <member name="M:SharpDX.Direct3D9.CubeTexture.GetLevelDescription(System.Int32)">
  3118. <summary>
  3119. <p>Retrieves a description of one face of the specified cube texture level.</p>
  3120. </summary>
  3121. <param name="level"><dd> <p>Specifies a level of a mipmapped cube texture.</p> </dd></param>
  3122. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.SurfaceDescription" /></strong> structure, describing one face of the specified cube texture level.</p> </dd></returns>
  3123. <remarks>
  3124. <p>The <strong><see cref="T:SharpDX.Direct3D9.SurfaceDescription" /></strong> structure contains Width and Height members, which describe the size of one face in the cube. To get the size of the entire cube, multiply six (the number of cube faces) by the product of Width and Height.</p>
  3125. </remarks>
  3126. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DCubeTexture9::GetLevelDesc']/*" />
  3127. <msdn-id>bb174332</msdn-id>
  3128. <unmanaged>HRESULT IDirect3DCubeTexture9::GetLevelDesc([In] unsigned int Level,[Out] D3DSURFACE_DESC* pDesc)</unmanaged>
  3129. <unmanaged-short>IDirect3DCubeTexture9::GetLevelDesc</unmanaged-short>
  3130. </member>
  3131. <member name="M:SharpDX.Direct3D9.CubeTexture.GetCubeMapSurface(SharpDX.Direct3D9.CubeMapFace,System.Int32)">
  3132. <summary>
  3133. <p>Retrieves a cube texture map surface.</p>
  3134. </summary>
  3135. <param name="faceType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.CubeMapFace" /></strong> enumerated type, identifying a cube map face. </p> </dd></param>
  3136. <param name="level"><dd> <p>Specifies a level of a mipmapped cube texture. </p> </dd></param>
  3137. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the returned cube texture map surface. </p> </dd></returns>
  3138. <remarks>
  3139. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface results in a memory leak.</p>
  3140. </remarks>
  3141. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DCubeTexture9::GetCubeMapSurface']/*" />
  3142. <msdn-id>bb174331</msdn-id>
  3143. <unmanaged>HRESULT IDirect3DCubeTexture9::GetCubeMapSurface([In] D3DCUBEMAP_FACES FaceType,[In] unsigned int Level,[Out] IDirect3DSurface9** ppCubeMapSurface)</unmanaged>
  3144. <unmanaged-short>IDirect3DCubeTexture9::GetCubeMapSurface</unmanaged-short>
  3145. </member>
  3146. <member name="M:SharpDX.Direct3D9.CubeTexture.LockRectangle(SharpDX.Direct3D9.CubeMapFace,System.Int32,SharpDX.Direct3D9.LockedRectangle@,System.IntPtr,SharpDX.Direct3D9.LockFlags)">
  3147. <summary>
  3148. <p>Locks a rectangle on a cube texture resource.</p>
  3149. </summary>
  3150. <param name="faceType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.CubeMapFace" /></strong> enumerated type, identifying a cube map face. </p> </dd></param>
  3151. <param name="level"><dd> <p>Specifies a level of a mipmapped cube texture. </p> </dd></param>
  3152. <param name="lockedRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.LockedRectangle" /></strong> structure, describing the region to lock. </p> </dd></param>
  3153. <param name="rectRef"><dd> <p>Pointer to a rectangle to lock. Specified by a reference to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure. Specifying <strong><c>null</c></strong> for this parameter expands the dirty region to cover the entire cube texture.</p> </dd></param>
  3154. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> </ul> <p> You may not specify a subrect when using <see cref="F:SharpDX.Direct3D9.LockFlags.Discard" />. For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />. </p> </dd></param>
  3155. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if one or more of the arguments is invalid.</p></returns>
  3156. <remarks>
  3157. <p>For performance reasons, dirty regions are only recorded for level zero of a texture. Dirty regions are automatically recorded when <strong><see cref="M:SharpDX.Direct3D9.CubeTexture.LockRectangle(SharpDX.Direct3D9.CubeMapFace,System.Int32,SharpDX.Direct3D9.LockFlags)" /></strong> is called without <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" />. See <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong> for more information.</p><p>Cube textures created with <see cref="F:SharpDX.Direct3D9.Pool.Default" /> are not lockable. Cube textures created in video memory are lockable when created with <strong>USAGE_DYNAMIC</strong>.</p><p>The only lockable format for a depth-stencil texture is <see cref="F:SharpDX.Direct3D9.Format.D16Lockable" />.</p>
  3158. </remarks>
  3159. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DCubeTexture9::LockRect']/*" />
  3160. <msdn-id>bb174334</msdn-id>
  3161. <unmanaged>HRESULT IDirect3DCubeTexture9::LockRect([In] D3DCUBEMAP_FACES FaceType,[In] unsigned int Level,[Out] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  3162. <unmanaged-short>IDirect3DCubeTexture9::LockRect</unmanaged-short>
  3163. </member>
  3164. <member name="M:SharpDX.Direct3D9.CubeTexture.UnlockRectangle(SharpDX.Direct3D9.CubeMapFace,System.Int32)">
  3165. <summary>
  3166. <p>Unlocks a rectangle on a cube texture resource.</p>
  3167. </summary>
  3168. <param name="faceType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.CubeMapFace" /></strong> enumerated type, identifying a cube map face. </p> </dd></param>
  3169. <param name="level"><dd> <p>Specifies a level of a mipmapped cube texture. </p> </dd></param>
  3170. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  3171. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DCubeTexture9::UnlockRect']/*" />
  3172. <msdn-id>bb174335</msdn-id>
  3173. <unmanaged>HRESULT IDirect3DCubeTexture9::UnlockRect([In] D3DCUBEMAP_FACES FaceType,[In] unsigned int Level)</unmanaged>
  3174. <unmanaged-short>IDirect3DCubeTexture9::UnlockRect</unmanaged-short>
  3175. </member>
  3176. <member name="M:SharpDX.Direct3D9.CubeTexture.AddDirtyRectangle(SharpDX.Direct3D9.CubeMapFace,System.IntPtr)">
  3177. <summary>
  3178. <p>Adds a dirty region to a cube texture resource.</p>
  3179. </summary>
  3180. <param name="faceType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.CubeMapFace" /></strong> enumerated type, identifying the cube map face. </p> </dd></param>
  3181. <param name="dirtyRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure, specifying the dirty region. Specifying <strong><c>null</c></strong> expands the dirty region to cover the entire cube texture. </p> </dd></param>
  3182. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  3183. <remarks>
  3184. <p>For performance reasons, dirty regions are only recorded for level zero of a texture. For sublevels, it is assumed that the corresponding (scaled) rectangle or box is also dirty. Dirty regions are automatically recorded when <strong><see cref="M:SharpDX.Direct3D9.CubeTexture.LockRectangle(SharpDX.Direct3D9.CubeMapFace,System.Int32,SharpDX.Direct3D9.LockFlags)" /></strong> is called without <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" />. The destination surface of <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong> is also marked dirty automatically.</p><p>Using <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> and explicitly specifying dirty regions can be used to increase the efficiency of <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong>. Using this method, applications can optimize what subset of a resource is copied by specifying dirty regions on the resource. However, the dirty regions may be expanded to optimize alignment.</p>
  3185. </remarks>
  3186. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DCubeTexture9::AddDirtyRect']/*" />
  3187. <msdn-id>bb174330</msdn-id>
  3188. <unmanaged>HRESULT IDirect3DCubeTexture9::AddDirtyRect([In] D3DCUBEMAP_FACES FaceType,[In] const void* pDirtyRect)</unmanaged>
  3189. <unmanaged-short>IDirect3DCubeTexture9::AddDirtyRect</unmanaged-short>
  3190. </member>
  3191. <member name="T:SharpDX.Direct3D9.CubeTextureRequirements">
  3192. <summary>
  3193. A Cube Texture requirement.
  3194. </summary>
  3195. </member>
  3196. <member name="F:SharpDX.Direct3D9.CubeTextureRequirements.Size">
  3197. <summary>
  3198. The corrected size of the texture, in pixels.
  3199. </summary>
  3200. </member>
  3201. <member name="F:SharpDX.Direct3D9.CubeTextureRequirements.Format">
  3202. <summary>
  3203. The corrected surface format.
  3204. </summary>
  3205. </member>
  3206. <member name="F:SharpDX.Direct3D9.CubeTextureRequirements.MipLevelCount">
  3207. <summary>
  3208. The corrected mip level count.
  3209. </summary>
  3210. </member>
  3211. <member name="T:SharpDX.Direct3D9.D3DX">
  3212. <summary>
  3213. D3DX constants and methods
  3214. </summary>
  3215. </member>
  3216. <member name="F:SharpDX.Direct3D9.D3DX.Default">
  3217. <summary>
  3218. The value used to signify that the default value for a parameter should be used.
  3219. </summary>
  3220. <unmanaged>D3DX_DEFAULT</unmanaged>
  3221. </member>
  3222. <member name="F:SharpDX.Direct3D9.D3DX.DefaultNonPowerOf2">
  3223. <summary>
  3224. The default value for non power-of-two textures.
  3225. </summary>
  3226. <unmanaged>D3DX_DEFAULT_NONPOW2</unmanaged>
  3227. </member>
  3228. <member name="F:SharpDX.Direct3D9.D3DX.FormatFromFile">
  3229. <summary>
  3230. Indicates that the method should format from file.
  3231. </summary>
  3232. <unmanaged>D3DFMT_FROM_FILE</unmanaged>
  3233. </member>
  3234. <member name="F:SharpDX.Direct3D9.D3DX.FromFile">
  3235. <summary>
  3236. Indicates that the method should load from file.
  3237. </summary>
  3238. <unmanaged>D3DX_FROM_FILE</unmanaged>
  3239. </member>
  3240. <member name="M:SharpDX.Direct3D9.D3DX.CheckVersion">
  3241. <summary>
  3242. Checks the D3DX runtime version against this compiled version.
  3243. </summary>
  3244. <returns>True if version are compatible</returns>
  3245. <unmanaged>BOOL D3DXCheckVersion([In] unsigned int D3DSdkVersion,[In] unsigned int D3DXSdkVersion)</unmanaged>
  3246. </member>
  3247. <member name="M:SharpDX.Direct3D9.D3DX.DebugMute(System.Boolean)">
  3248. <summary>
  3249. Get and set debug mute mode.
  3250. </summary>
  3251. <param name="mute">if set to <c>true</c> [mute].</param>
  3252. <returns>Return the debug mute mode</returns>
  3253. <unmanaged>BOOL D3DXDebugMute([In] BOOL Mute)</unmanaged>
  3254. </member>
  3255. <member name="M:SharpDX.Direct3D9.D3DX.DeclaratorFromFVF(SharpDX.Direct3D9.VertexFormat)">
  3256. <summary>
  3257. Converts a declarator from a flexible vertex format (FVF) code.
  3258. </summary>
  3259. <param name="fvf">Combination of <see cref="T:SharpDX.Direct3D9.VertexFormat"/> that describes the FVF from which to generate the returned declarator array..</param>
  3260. <returns>
  3261. A declarator from a flexible vertex format (FVF) code.
  3262. </returns>
  3263. <unmanaged>HRESULT D3DXDeclaratorFromFVF([In] D3DFVF FVF,[In, Buffer] D3DVERTEXELEMENT9* pDeclarator)</unmanaged>
  3264. </member>
  3265. <member name="M:SharpDX.Direct3D9.D3DX.FVFFromDeclarator(SharpDX.Direct3D9.VertexElement[])">
  3266. <summary>
  3267. Converts a flexible vertex format (FVF) code from a declarator.
  3268. </summary>
  3269. <param name="declarator">The declarator array.</param>
  3270. <returns>A <see cref="T:SharpDX.Direct3D9.VertexFormat"/> that describes the vertex format returned from the declarator.</returns>
  3271. <unmanaged>HRESULT D3DXFVFFromDeclarator([In, Buffer] const D3DVERTEXELEMENT9* pDeclarator,[Out] D3DFVF* pFVF)</unmanaged>
  3272. </member>
  3273. <member name="M:SharpDX.Direct3D9.D3DX.GenerateOutputDeclaration(SharpDX.Direct3D9.VertexElement[])">
  3274. <summary>
  3275. Generates an output vertex declaration from the input declaration. The output declaration is intended for use by the mesh tessellation functions.
  3276. </summary>
  3277. <param name="declaration">The input declaration.</param>
  3278. <returns>The output declaration</returns>
  3279. <unmanaged>HRESULT D3DXGenerateOutputDecl([In, Buffer] D3DVERTEXELEMENT9* pOutput,[In, Buffer] const D3DVERTEXELEMENT9* pInput)</unmanaged>
  3280. </member>
  3281. <member name="M:SharpDX.Direct3D9.D3DX.GetDeclarationLength(SharpDX.Direct3D9.VertexElement[])">
  3282. <summary>
  3283. Gets the number of elements in the vertex declaration.
  3284. </summary>
  3285. <param name="declaration">The declaration.</param>
  3286. <returns>The number of elements in the vertex declaration.</returns>
  3287. <unmanaged>unsigned int D3DXGetDeclLength([In, Buffer] const D3DVERTEXELEMENT9* pDecl)</unmanaged>
  3288. </member>
  3289. <member name="M:SharpDX.Direct3D9.D3DX.GetDeclarationVertexSize(SharpDX.Direct3D9.VertexElement[],System.Int32)">
  3290. <summary>
  3291. Gets the size of a vertex from the vertex declaration.
  3292. </summary>
  3293. <param name="elements">The elements.</param>
  3294. <param name="stream">The stream.</param>
  3295. <returns>The vertex declaration size, in bytes.</returns>
  3296. <unmanaged>unsigned int D3DXGetDeclVertexSize([In, Buffer] const D3DVERTEXELEMENT9* pDecl,[In] unsigned int Stream)</unmanaged>
  3297. </member>
  3298. <member name="M:SharpDX.Direct3D9.D3DX.GetFVFVertexSize(SharpDX.Direct3D9.VertexFormat)">
  3299. <summary>
  3300. Returns the size of a vertex for a flexible vertex format (FVF).
  3301. </summary>
  3302. <param name="fvf">The vertex format.</param>
  3303. <returns>The FVF vertex size, in bytes.</returns>
  3304. <unmanaged>unsigned int D3DXGetFVFVertexSize([In] D3DFVF FVF)</unmanaged>
  3305. </member>
  3306. <member name="M:SharpDX.Direct3D9.D3DX.GetRectanglePatchSize(System.Single,System.Int32@,System.Int32@)">
  3307. <summary>
  3308. Gets the size of the rectangle patch.
  3309. </summary>
  3310. <param name="segmentCount">The segment count.</param>
  3311. <param name="triangleCount">The triangle count.</param>
  3312. <param name="vertexCount">The vertex count.</param>
  3313. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3314. <unmanaged>HRESULT D3DXRectPatchSize([In] const float* pfNumSegs,[In] unsigned int* pdwTriangles,[In] unsigned int* pdwVertices)</unmanaged>
  3315. </member>
  3316. <member name="M:SharpDX.Direct3D9.D3DX.GetTrianglePatchSize(System.Single,System.Int32@,System.Int32@)">
  3317. <summary>
  3318. Gets the size of the triangle patch.
  3319. </summary>
  3320. <param name="segmentCount">The segment count.</param>
  3321. <param name="triangleCount">The triangle count.</param>
  3322. <param name="vertexCount">The vertex count.</param>
  3323. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3324. <unmanaged>HRESULT D3DXTriPatchSize([In] const float* pfNumSegs,[In] unsigned int* pdwTriangles,[In] unsigned int* pdwVertices)</unmanaged>
  3325. </member>
  3326. <member name="M:SharpDX.Direct3D9.D3DX.GetVectors(SharpDX.DataStream,System.Int32,SharpDX.Direct3D9.VertexFormat)">
  3327. <summary>
  3328. Gets an array of <see cref="T:SharpDX.Mathematics.Interop.RawVector3"/> from a <see cref="T:SharpDX.DataStream"/>.
  3329. </summary>
  3330. <param name="stream">The stream.</param>
  3331. <param name="vertexCount">The vertex count.</param>
  3332. <param name="format">The format.</param>
  3333. <returns>An array of <see cref="T:SharpDX.Mathematics.Interop.RawVector3"/> </returns>
  3334. </member>
  3335. <member name="M:SharpDX.Direct3D9.D3DX.GetVectors(SharpDX.DataStream,System.Int32,System.Int32)">
  3336. <summary>
  3337. Gets an array of <see cref="T:SharpDX.Mathematics.Interop.RawVector3"/> from a <see cref="T:SharpDX.DataStream"/>.
  3338. </summary>
  3339. <param name="stream">The stream.</param>
  3340. <param name="vertexCount">The vertex count.</param>
  3341. <param name="stride">The stride.</param>
  3342. <returns>An array of <see cref="T:SharpDX.Mathematics.Interop.RawVector3"/> </returns>
  3343. </member>
  3344. <member name="M:SharpDX.Direct3D9.D3DX.MakeFourCC(System.Byte,System.Byte,System.Byte,System.Byte)">
  3345. <summary>
  3346. Creates a FOURCC Format code from bytes description.
  3347. </summary>
  3348. <param name="c1">The c1.</param>
  3349. <param name="c2">The c2.</param>
  3350. <param name="c3">The c3.</param>
  3351. <param name="c4">The c4.</param>
  3352. <returns>A Format FourCC</returns>
  3353. <unmanaged>MAKEFOURCC</unmanaged>
  3354. </member>
  3355. <member name="M:SharpDX.Direct3D9.D3DX.OptimizeFaces(System.Int16[],System.Int32,System.Int32)">
  3356. <summary>
  3357. Generates an optimized face remapping for a triangle list.
  3358. </summary>
  3359. <param name="indices">The indices.</param>
  3360. <param name="faceCount">The face count.</param>
  3361. <param name="vertexCount">The vertex count.</param>
  3362. <returns>The original mesh face that was split to generate the current face.</returns>
  3363. <unmanaged>HRESULT D3DXOptimizeFaces([In] const void* pbIndices,[In] unsigned int cFaces,[In] unsigned int cVertices,[In] BOOL b32BitIndices,[In, Buffer] int* pFaceRemap)</unmanaged>
  3364. </member>
  3365. <member name="M:SharpDX.Direct3D9.D3DX.OptimizeFaces(System.Int32[],System.Int32,System.Int32)">
  3366. <summary>
  3367. Generates an optimized vertex remapping for a triangle list. This function is commonly used after applying the face remapping generated by D3DXOptimizeFaces.
  3368. </summary>
  3369. <param name="indices">The indices.</param>
  3370. <param name="faceCount">The face count.</param>
  3371. <param name="vertexCount">The vertex count.</param>
  3372. <returns>The original mesh face that was split to generate the current face.</returns>
  3373. <unmanaged>HRESULT D3DXOptimizeFaces([In] const void* pbIndices,[In] unsigned int cFaces,[In] unsigned int cVertices,[In] BOOL b32BitIndices,[In, Buffer] int* pFaceRemap)</unmanaged>
  3374. </member>
  3375. <member name="M:SharpDX.Direct3D9.D3DX.OptimizeVertices(System.Int16[],System.Int32,System.Int32)">
  3376. <summary>
  3377. Generates an optimized vertex remapping for a triangle list. This function is commonly used after applying the face remapping generated by <see cref="M:SharpDX.Direct3D9.D3DX.OptimizeFaces(System.Int16[],System.Int32,System.Int32)"/>.
  3378. </summary>
  3379. <param name="indices">The indices.</param>
  3380. <param name="faceCount">The face count.</param>
  3381. <param name="vertexCount">The vertex count.</param>
  3382. <returns>A buffer that will contain the new index for each vertex. The value stored in pVertexRemap for a given element is the source vertex location in the new vertex ordering.</returns>
  3383. <unmanaged>HRESULT D3DXOptimizeVertices([In] const void* pbIndices,[In] unsigned int cFaces,[In] unsigned int cVertices,[In] BOOL b32BitIndices,[In, Buffer] int* pVertexRemap)</unmanaged>
  3384. </member>
  3385. <member name="M:SharpDX.Direct3D9.D3DX.OptimizeVertices(System.Int32[],System.Int32,System.Int32)">
  3386. <summary>
  3387. Generates an optimized vertex remapping for a triangle list. This function is commonly used after applying the face remapping generated by <see cref="M:SharpDX.Direct3D9.D3DX.OptimizeFaces(System.Int32[],System.Int32,System.Int32)"/>.
  3388. </summary>
  3389. <param name="indices">The indices.</param>
  3390. <param name="faceCount">The face count.</param>
  3391. <param name="vertexCount">The vertex count.</param>
  3392. <returns>A buffer that will contain the new index for each vertex. The value stored in pVertexRemap for a given element is the source vertex location in the new vertex ordering.</returns>
  3393. <unmanaged>HRESULT D3DXOptimizeVertices([In] const void* pbIndices,[In] unsigned int cFaces,[In] unsigned int cVertices,[In] BOOL b32BitIndices,[In, Buffer] int* pVertexRemap)</unmanaged>
  3394. </member>
  3395. <member name="T:SharpDX.Direct3D9.Device">
  3396. <summary>
  3397. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.Device" /> interface to perform DrawPrimitive-based rendering, create resources, work with system-level variables, adjust gamma ramp levels, work with palettes, and create shaders.</p>
  3398. </summary>
  3399. <remarks>
  3400. <p>The <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong> method.</p><p>This interface, like all COM interfaces, inherits the <strong><see cref="T:SharpDX.ComObject" /></strong> interface methods.</p><p>The LPDIRECT3DDEVICE9 and PDIRECT3DDEVICE9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface.</p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.Device" /> *LPDIRECT3DDEVICE9, *PDIRECT3DDEVICE9;
  3401. </pre>
  3402. </remarks>
  3403. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9']/*" />
  3404. <msdn-id>bb174336</msdn-id>
  3405. <unmanaged>IDirect3DDevice9</unmanaged>
  3406. <unmanaged-short>IDirect3DDevice9</unmanaged-short>
  3407. </member>
  3408. <member name="M:SharpDX.Direct3D9.Device.#ctor(SharpDX.Direct3D9.Direct3D,System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[])">
  3409. <summary>
  3410. Creates a device to represent the display adapter.
  3411. </summary>
  3412. <remarks>
  3413. This method returns a fully working device interface, set to the required display mode (or windowed), and allocated with the appropriate back buffers. To begin rendering, the application needs only to create and set a depth buffer (assuming EnableAutoDepthStencil is FALSE in <see cref="T:SharpDX.Direct3D9.PresentParameters"/>). When you create a Direct3D device, you supply two different window parameters: a focus window (hFocusWindow) and a device window (the hDeviceWindow in <see cref="T:SharpDX.Direct3D9.PresentParameters"/>). The purpose of each window is: The focus window alerts Direct3D when an application switches from foreground mode to background mode (via Alt-Tab, a mouse click, or some other method). A single focus window is shared by each device created by an application. The device window determines the location and size of the back buffer on screen. This is used by Direct3D when the back buffer contents are copied to the front buffer during {{Present}}. This method should not be run during the handling of WM_CREATE. An application should never pass a window handle to Direct3D while handling WM_CREATE. Any call to create, release, or reset the device must be done using the same thread as the window procedure of the focus window. Note that D3DCREATE_HARDWARE_VERTEXPROCESSING, D3DCREATE_MIXED_VERTEXPROCESSING, and D3DCREATE_SOFTWARE_VERTEXPROCESSING are mutually exclusive flags, and at least one of these vertex processing flags must be specified when calling this method. Back buffers created as part of the device are only lockable if D3DPRESENTFLAG_LOCKABLE_BACKBUFFER is specified in the presentation parameters. (Multisampled back buffers and depth surfaces are never lockable.) The methods {{Reset}}, <see cref="T:SharpDX.ComObject"/>, and {{TestCooperativeLevel}} must be called from the same thread that used this method to create a device. D3DFMT_UNKNOWN can be specified for the windowed mode back buffer format when calling CreateDevice, {{Reset}}, and {{CreateAdditionalSwapChain}}. This means the application does not have to query the current desktop format before calling CreateDevice for windowed mode. For full-screen mode, the back buffer format must be specified. If you attempt to create a device on a 0x0 sized window, CreateDevice will fail.
  3414. </remarks>
  3415. <param name="direct3D">an instance of <see cref = "T:SharpDX.Direct3D9.Direct3D" /></param>
  3416. <param name="adapter"> Ordinal number that denotes the display adapter. {{D3DADAPTER_DEFAULT}} is always the primary display adapter. </param>
  3417. <param name="deviceType"> Member of the <see cref="T:SharpDX.Direct3D9.DeviceType"/> enumerated type that denotes the desired device type. If the desired device type is not available, the method will fail. </param>
  3418. <param name="hFocusWindow"> The focus window alerts Direct3D when an application switches from foreground mode to background mode. See Remarks. For full-screen mode, the window specified must be a top-level window. For windowed mode, this parameter may be NULL only if the hDeviceWindow member of pPresentationParameters is set to a valid, non-NULL value. </param>
  3419. <param name="behaviorFlags"> Combination of one or more options that control device creation. For more information, see {{D3DCREATE}}. </param>
  3420. <param name="presentationParametersRef"> Pointer to a <see cref="T:SharpDX.Direct3D9.PresentParameters"/> structure, describing the presentation parameters for the device to be created. If BehaviorFlags specifies {{D3DCREATE_ADAPTERGROUP_DEVICE}}, pPresentationParameters is an array. Regardless of the number of heads that exist, only one depth/stencil surface is automatically created. For Windows 2000 and Windows XP, the full-screen device display refresh rate is set in the following order: User-specified nonzero ForcedRefreshRate registry key, if supported by the device. Application-specified nonzero refresh rate value in the presentation parameter. Refresh rate of the latest desktop mode, if supported by the device. 75 hertz if supported by the device. 60 hertz if supported by the device. Device default. An unsupported refresh rate will default to the closest supported refresh rate below it. For example, if the application specifies 63 hertz, 60 hertz will be used. There are no supported refresh rates below 57 hertz. pPresentationParameters is both an input and an output parameter. Calling this method may change several members including: If BackBufferCount, BackBufferWidth, and BackBufferHeight are 0 before the method is called, they will be changed when the method returns. If BackBufferFormat equals <see cref="F:SharpDX.Direct3D9.Format.Unknown"/> before the method is called, it will be changed when the method returns. </param>
  3421. <returns> <see cref="T:System.Int32"/> If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be one of the following: D3DERR_DEVICELOST, D3DERR_INVALIDCALL, D3DERR_NOTAVAILABLE, D3DERR_OUTOFVIDEOMEMORY. </returns>
  3422. <unmanaged>HRESULT CreateDevice([None] UINT Adapter,[None] D3DDEVTYPE DeviceType,[None] HWND hFocusWindow,[None] int BehaviorFlags,[None] D3DPRESENT_PARAMETERS* pPresentationParameters,[None] IDirect3DDevice9** ppReturnedDeviceInterface)</unmanaged>
  3423. </member>
  3424. <member name="P:SharpDX.Direct3D9.Device.AvailableTextureMemory">
  3425. <summary>
  3426. Gets the available texture memory.
  3427. </summary>
  3428. </member>
  3429. <member name="P:SharpDX.Direct3D9.Device.DriverLevel">
  3430. <summary>
  3431. Gets the driver level.
  3432. </summary>
  3433. </member>
  3434. <member name="P:SharpDX.Direct3D9.Device.PixelShaderProfile">
  3435. <summary>
  3436. Gets the pixel shader profile.
  3437. </summary>
  3438. </member>
  3439. <member name="P:SharpDX.Direct3D9.Device.VertexShaderProfile">
  3440. <summary>
  3441. Gets the vertex shader profile.
  3442. </summary>
  3443. </member>
  3444. <member name="M:SharpDX.Direct3D9.Device.Clear(SharpDX.Direct3D9.ClearFlags,SharpDX.Mathematics.Interop.RawColorBGRA,System.Single,System.Int32)">
  3445. <summary>
  3446. Clears one or more surfaces such as a render target, a stencil buffer, and a depth buffer.
  3447. </summary>
  3448. <param name="clearFlags">Flags that specify which surfaces will be cleared.</param>
  3449. <param name="color">The color that will be used to fill the cleared render target.</param>
  3450. <param name="zdepth">The value that will be used to fill the cleared depth buffer.</param>
  3451. <param name="stencil">The value that will be used to fill the cleared stencil buffer.</param>
  3452. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3453. <unmanaged>HRESULT IDirect3DDevice9::Clear([None] int Count,[In, Buffer, Optional] const D3DRECT* pRects,[None] int Flags,[None] D3DCOLOR Color,[None] float Z,[None] int Stencil)</unmanaged>
  3454. </member>
  3455. <member name="M:SharpDX.Direct3D9.Device.Clear(SharpDX.Direct3D9.ClearFlags,SharpDX.Mathematics.Interop.RawColorBGRA,System.Single,System.Int32,SharpDX.Mathematics.Interop.RawRectangle[])">
  3456. <summary>
  3457. Clears one or more surfaces such as a render target, a stencil buffer, and a depth buffer.
  3458. </summary>
  3459. <param name="clearFlags">Flags that specify which surfaces will be cleared.</param>
  3460. <param name="color">The color that will be used to fill the cleared render target.</param>
  3461. <param name="zdepth">The value that will be used to fill the cleared depth buffer.</param>
  3462. <param name="stencil">The value that will be used to fill the cleared stencil buffer.</param>
  3463. <param name="rectangles">The areas on the surfaces that will be cleared.</param>
  3464. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3465. <unmanaged>HRESULT IDirect3DDevice9::Clear([None] int Count,[In, Buffer, Optional] const D3DRECT* pRects,[None] int Flags,[None] D3DCOLOR Color,[None] float Z,[None] int Stencil)</unmanaged>
  3466. </member>
  3467. <member name="M:SharpDX.Direct3D9.Device.ColorFill(SharpDX.Direct3D9.Surface,SharpDX.Mathematics.Interop.RawColorBGRA)">
  3468. <summary>
  3469. Allows an application to fill a rectangular area of a D3DPOOL_DEFAULT surface with a specified color.
  3470. </summary>
  3471. <remarks>
  3472. This method can only be applied to a render target, a render-target texture surface, or an off-screen plain surface with a pool type of D3DPOOL_DEFAULT. IDirect3DDevice9::ColorFill will work with all formats. However, when using a reference or software device, the only formats supported are D3DFMT_X1R5G5B5, D3DFMT_A1R5G5B5, D3DFMT_R5G6B5, D3DFMT_X8R8G8B8, D3DFMT_A8R8G8B8, D3DFMT_YUY2, D3DFMT_G8R8_G8B8, D3DFMT_UYVY, D3DFMT_R8G8_B8G8, D3DFMT_R16F, D3DFMT_G16R16F, D3DFMT_A16B16G16R16F, D3DFMT_R32F, D3DFMT_G32R32F, and D3DFMT_A32B32G32R32F. When using a DirectX 7 or DirectX 8.x driver, the only YUV formats supported are D3DFMT_UYVY and D3DFMT_YUY2.
  3473. </remarks>
  3474. <param name="surfaceRef"> Pointer to the surface to be filled. </param>
  3475. <param name="color"> Color used for filling. </param>
  3476. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3477. <unmanaged>HRESULT IDirect3DDevice9::ColorFill([None] IDirect3DSurface9* pSurface,[In, Optional] const RECT* pRect,[None] D3DCOLOR color)</unmanaged>
  3478. </member>
  3479. <member name="M:SharpDX.Direct3D9.Device.DrawIndexedUserPrimitives``2(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,``0[],SharpDX.Direct3D9.Format,``1[])">
  3480. <summary>
  3481. Draws the indexed user primitives.
  3482. </summary>
  3483. <typeparam name="S"></typeparam>
  3484. <typeparam name="T"></typeparam>
  3485. <param name="primitiveType">Type of the primitive.</param>
  3486. <param name="minimumVertexIndex">Minimum index of the vertex.</param>
  3487. <param name="vertexCount">The vertex count.</param>
  3488. <param name="primitiveCount">The primitive count.</param>
  3489. <param name="indexData">The index data.</param>
  3490. <param name="indexDataFormat">The index data format.</param>
  3491. <param name="vertexData">The vertex data.</param>
  3492. <param name="vertexStride">The vertex stride.</param>
  3493. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3494. </member>
  3495. <member name="M:SharpDX.Direct3D9.Device.DrawIndexedUserPrimitives``2(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.Int32,``0[],SharpDX.Direct3D9.Format,``1[])">
  3496. <summary>
  3497. Draws the indexed user primitives.
  3498. </summary>
  3499. <typeparam name="S"></typeparam>
  3500. <typeparam name="T"></typeparam>
  3501. <param name="primitiveType">Type of the primitive.</param>
  3502. <param name="startIndex">The start index.</param>
  3503. <param name="minimumVertexIndex">Minimum index of the vertex.</param>
  3504. <param name="vertexCount">The vertex count.</param>
  3505. <param name="primitiveCount">The primitive count.</param>
  3506. <param name="indexData">The index data.</param>
  3507. <param name="indexDataFormat">The index data format.</param>
  3508. <param name="vertexData">The vertex data.</param>
  3509. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3510. </member>
  3511. <member name="M:SharpDX.Direct3D9.Device.DrawIndexedUserPrimitives``2(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,``0[],SharpDX.Direct3D9.Format,``1[])">
  3512. <summary>
  3513. Draws the indexed user primitives.
  3514. </summary>
  3515. <typeparam name="S"></typeparam>
  3516. <typeparam name="T"></typeparam>
  3517. <param name="primitiveType">Type of the primitive.</param>
  3518. <param name="startIndex">The start index.</param>
  3519. <param name="startVertex">The start vertex.</param>
  3520. <param name="minimumVertexIndex">Minimum index of the vertex.</param>
  3521. <param name="vertexCount">The vertex count.</param>
  3522. <param name="primitiveCount">The primitive count.</param>
  3523. <param name="indexData">The index data.</param>
  3524. <param name="indexDataFormat">The index data format.</param>
  3525. <param name="vertexData">The vertex data.</param>
  3526. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3527. </member>
  3528. <member name="M:SharpDX.Direct3D9.Device.DrawRectanglePatch(System.Int32,System.Single[])">
  3529. <summary>
  3530. Draws the rectangle patch.
  3531. </summary>
  3532. <param name="handle">The handle.</param>
  3533. <param name="segmentCounts">The segment counts.</param>
  3534. <returns>
  3535. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3536. </returns>
  3537. <unmanaged>HRESULT IDirect3DDevice9::DrawRectPatch([In] unsigned int Handle,[In, Buffer] const float* pNumSegs,[In] const void* pRectPatchInfo)</unmanaged>
  3538. </member>
  3539. <member name="M:SharpDX.Direct3D9.Device.DrawRectanglePatch(System.Int32,System.Single[],SharpDX.Direct3D9.RectanglePatchInfo)">
  3540. <summary>
  3541. Draws the rectangle patch.
  3542. </summary>
  3543. <param name="handle">The handle.</param>
  3544. <param name="segmentCounts">The segment counts.</param>
  3545. <param name="info">The info.</param>
  3546. <returns>
  3547. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3548. </returns>
  3549. <unmanaged href="bb174373">IDirect3DDevice9::DrawRectPatch</unmanaged>
  3550. </member>
  3551. <member name="M:SharpDX.Direct3D9.Device.DrawTrianglePatch(System.Int32,System.Single[])">
  3552. <summary>
  3553. Draws the triangle patch.
  3554. </summary>
  3555. <param name="handle">The handle.</param>
  3556. <param name="segmentCounts">The segment counts.</param>
  3557. <returns>
  3558. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3559. </returns>
  3560. <unmanaged>HRESULT IDirect3DDevice9::DrawTriPatch([In] unsigned int Handle,[In, Buffer] const float* pNumSegs,[In] const void* pTriPatchInfo)</unmanaged>
  3561. </member>
  3562. <member name="M:SharpDX.Direct3D9.Device.DrawTrianglePatch(System.Int32,System.Single[],SharpDX.Direct3D9.TrianglePatchInfo)">
  3563. <summary>
  3564. Draws the triangle patch.
  3565. </summary>
  3566. <param name="handle">The handle.</param>
  3567. <param name="segmentCounts">The segment counts.</param>
  3568. <param name="info">The info.</param>
  3569. <returns>
  3570. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3571. </returns>
  3572. </member>
  3573. <member name="M:SharpDX.Direct3D9.Device.DrawUserPrimitives``1(SharpDX.Direct3D9.PrimitiveType,System.Int32,``0[])">
  3574. <summary>
  3575. Draws the user primitives.
  3576. </summary>
  3577. <typeparam name="T"></typeparam>
  3578. <param name="primitiveType">Type of the primitive.</param>
  3579. <param name="primitiveCount">The primitive count.</param>
  3580. <param name="data">The data.</param>
  3581. <returns>
  3582. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3583. </returns>
  3584. </member>
  3585. <member name="M:SharpDX.Direct3D9.Device.DrawUserPrimitives``1(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,``0[])">
  3586. <summary>
  3587. Draws the user primitives.
  3588. </summary>
  3589. <typeparam name="T"></typeparam>
  3590. <param name="primitiveType">Type of the primitive.</param>
  3591. <param name="startIndex">The start index.</param>
  3592. <param name="primitiveCount">The primitive count.</param>
  3593. <param name="data">The data.</param>
  3594. <returns>
  3595. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3596. </returns>
  3597. </member>
  3598. <member name="M:SharpDX.Direct3D9.Device.GetBackBuffer(System.Int32,System.Int32)">
  3599. <summary>
  3600. Gets the back buffer.
  3601. </summary>
  3602. <param name="swapChain">The swap chain.</param>
  3603. <param name="backBuffer">The back buffer.</param>
  3604. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3605. </member>
  3606. <member name="M:SharpDX.Direct3D9.Device.GetPaletteEntries(System.Int32)">
  3607. <summary>
  3608. Gets the palette entries.
  3609. </summary>
  3610. <param name="paletteNumber">The palette number.</param>
  3611. <returns>An array of <see cref="T:SharpDX.Direct3D9.PaletteEntry"/></returns>
  3612. </member>
  3613. <member name="M:SharpDX.Direct3D9.Device.GetPixelShaderBooleanConstant(System.Int32,System.Int32)">
  3614. <summary>
  3615. Gets the pixel shader boolean constant.
  3616. </summary>
  3617. <param name="startRegister">The start register.</param>
  3618. <param name="count">The count.</param>
  3619. <returns>An array of boolean constants</returns>
  3620. </member>
  3621. <member name="M:SharpDX.Direct3D9.Device.GetPixelShaderFloatConstant(System.Int32,System.Int32)">
  3622. <summary>
  3623. Gets the pixel shader float constant.
  3624. </summary>
  3625. <param name="startRegister">The start register.</param>
  3626. <param name="count">The count.</param>
  3627. <returns>An array of float constants</returns>
  3628. </member>
  3629. <member name="M:SharpDX.Direct3D9.Device.GetPixelShaderIntegerConstant(System.Int32,System.Int32)">
  3630. <summary>
  3631. Gets the pixel shader integer constant.
  3632. </summary>
  3633. <param name="startRegister">The start register.</param>
  3634. <param name="count">The count.</param>
  3635. <returns>An array of int constants</returns>
  3636. </member>
  3637. <member name="M:SharpDX.Direct3D9.Device.GetRenderState(SharpDX.Direct3D9.RenderState)">
  3638. <summary>
  3639. Gets the state of the render.
  3640. </summary>
  3641. <param name="state">The state.</param>
  3642. <returns>The render state value</returns>
  3643. <unmanaged>HRESULT IDirect3DDevice9::GetRenderState([In] D3DRENDERSTATETYPE State,[In] void* pValue)</unmanaged>
  3644. </member>
  3645. <member name="M:SharpDX.Direct3D9.Device.GetRenderState``1(SharpDX.Direct3D9.RenderState)">
  3646. <summary>
  3647. Gets the state of the render.
  3648. </summary>
  3649. <typeparam name="T">Type of the state value.</typeparam>
  3650. <param name="state">The state.</param>
  3651. <returns>
  3652. The render state value
  3653. </returns>
  3654. <unmanaged>HRESULT IDirect3DDevice9::GetRenderState([In] D3DRENDERSTATETYPE State,[In] void* pValue)</unmanaged>
  3655. </member>
  3656. <member name="M:SharpDX.Direct3D9.Device.GetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState)">
  3657. <summary>
  3658. Gets the state of the sampler.
  3659. </summary>
  3660. <param name="sampler">The sampler.</param>
  3661. <param name="state">The state.</param>
  3662. <returns>
  3663. The sampler state value
  3664. </returns>
  3665. <unmanaged>HRESULT IDirect3DDevice9::GetSamplerState([In] unsigned int Sampler,[In] D3DSAMPLERSTATETYPE Type,[In] void* pValue)</unmanaged>
  3666. </member>
  3667. <member name="M:SharpDX.Direct3D9.Device.GetSamplerState``1(System.Int32,SharpDX.Direct3D9.SamplerState)">
  3668. <summary>
  3669. Gets the state of the sampler.
  3670. </summary>
  3671. <typeparam name="T">Type of the sampler state value</typeparam>
  3672. <param name="sampler">The sampler.</param>
  3673. <param name="state">The state.</param>
  3674. <returns>
  3675. The sampler state value
  3676. </returns>
  3677. <unmanaged>HRESULT IDirect3DDevice9::GetSamplerState([In] unsigned int Sampler,[In] D3DSAMPLERSTATETYPE Type,[In] void* pValue)</unmanaged>
  3678. </member>
  3679. <member name="M:SharpDX.Direct3D9.Device.GetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage)">
  3680. <summary>
  3681. Gets the state of the texture stage.
  3682. </summary>
  3683. <param name="stage">The stage.</param>
  3684. <param name="type">The type.</param>
  3685. <returns>
  3686. The texture stage state.
  3687. </returns>
  3688. <unmanaged>HRESULT IDirect3DDevice9::GetTextureStageState([In] unsigned int Stage,[In] D3DTEXTURESTAGESTATETYPE Type,[In] void* pValue)</unmanaged>
  3689. </member>
  3690. <member name="M:SharpDX.Direct3D9.Device.GetTextureStageState``1(System.Int32,SharpDX.Direct3D9.TextureStage)">
  3691. <summary>
  3692. Gets the state of the texture stage.
  3693. </summary>
  3694. <typeparam name="T">Type of the texture stage state</typeparam>
  3695. <param name="stage">The stage.</param>
  3696. <param name="type">The type.</param>
  3697. <returns>
  3698. The texture stage state.
  3699. </returns>
  3700. <unmanaged>HRESULT IDirect3DDevice9::GetTextureStageState([In] unsigned int Stage,[In] D3DTEXTURESTAGESTATETYPE Type,[In] void* pValue)</unmanaged>
  3701. </member>
  3702. <member name="M:SharpDX.Direct3D9.Device.GetVertexShaderBooleanConstant(System.Int32,System.Int32)">
  3703. <summary>
  3704. Gets the vertex shader boolean constant.
  3705. </summary>
  3706. <param name="startRegister">The start register.</param>
  3707. <param name="count">The count.</param>
  3708. <returns>An array of boolean constants</returns>
  3709. <unmanaged>HRESULT IDirect3DDevice9::GetVertexShaderConstantB([In] unsigned int StartRegister,[In] void* pConstantData,[In] unsigned int BoolCount)</unmanaged>
  3710. </member>
  3711. <member name="M:SharpDX.Direct3D9.Device.GetVertexShaderFloatConstant(System.Int32,System.Int32)">
  3712. <summary>
  3713. Gets the vertex shader float constant.
  3714. </summary>
  3715. <param name="startRegister">The start register.</param>
  3716. <param name="count">The count.</param>
  3717. <returns>An array of float constants</returns>
  3718. <unmanaged>HRESULT IDirect3DDevice9::GetVertexShaderConstantF([In] unsigned int StartRegister,[In, Buffer] float* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  3719. </member>
  3720. <member name="M:SharpDX.Direct3D9.Device.GetVertexShaderIntegerConstant(System.Int32,System.Int32)">
  3721. <summary>
  3722. Gets the vertex shader integer constant.
  3723. </summary>
  3724. <param name="startRegister">The start register.</param>
  3725. <param name="count">The count.</param>
  3726. <returns>An array of int constants</returns>
  3727. <unmanaged>HRESULT IDirect3DDevice9::GetVertexShaderConstantI([In] unsigned int StartRegister,[Out] int* pConstantData,[In] unsigned int Vector4iCount)</unmanaged>
  3728. </member>
  3729. <member name="M:SharpDX.Direct3D9.Device.SetCursorPosition(SharpDX.Mathematics.Interop.RawPoint,System.Boolean)">
  3730. <summary>
  3731. Sets the cursor position.
  3732. </summary>
  3733. <param name="point">The point.</param>
  3734. <param name="flags">if set to <c>true</c> [flags].</param>
  3735. <unmanaged>void IDirect3DDevice9::SetCursorPosition([In] int X,[In] int Y,[In] unsigned int Flags)</unmanaged>
  3736. </member>
  3737. <member name="M:SharpDX.Direct3D9.Device.SetCursorPosition(System.Int32,System.Int32,System.Boolean)">
  3738. <summary>
  3739. Sets the cursor position.
  3740. </summary>
  3741. <param name="x">The x.</param>
  3742. <param name="y">The y.</param>
  3743. <param name="flags">if set to <c>true</c> [flags].</param>
  3744. <unmanaged>void IDirect3DDevice9::SetCursorPosition([In] int X,[In] int Y,[In] unsigned int Flags)</unmanaged>
  3745. </member>
  3746. <member name="M:SharpDX.Direct3D9.Device.SetCursorProperties(SharpDX.Mathematics.Interop.RawPoint,SharpDX.Direct3D9.Surface)">
  3747. <summary>
  3748. Sets the cursor properties.
  3749. </summary>
  3750. <param name="point">The point.</param>
  3751. <param name="cursorBitmapRef">The cursor bitmap ref.</param>
  3752. <returns></returns>
  3753. <unmanaged>HRESULT IDirect3DDevice9::SetCursorProperties([In] unsigned int XHotSpot,[In] unsigned int YHotSpot,[In] IDirect3DSurface9* pCursorBitmap)</unmanaged>
  3754. </member>
  3755. <member name="M:SharpDX.Direct3D9.Device.SetGammaRamp(System.Int32,SharpDX.Direct3D9.GammaRamp@,System.Boolean)">
  3756. <summary>
  3757. Sets the gamma ramp.
  3758. </summary>
  3759. <param name="swapChain">The swap chain.</param>
  3760. <param name="rampRef">The ramp ref.</param>
  3761. <param name="calibrate">if set to <c>true</c> [calibrate].</param>
  3762. <unmanaged>void IDirect3DDevice9::SetGammaRamp([In] unsigned int iSwapChain,[In] unsigned int Flags,[In] const D3DGAMMARAMP* pRamp)</unmanaged>
  3763. </member>
  3764. <member name="M:SharpDX.Direct3D9.Device.Present">
  3765. <summary>
  3766. Presents the contents of the next buffer in the sequence of back buffers to the screen.
  3767. </summary>
  3768. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3769. <unmanaged>IDirect3DDevice9::Present</unmanaged>
  3770. </member>
  3771. <member name="M:SharpDX.Direct3D9.Device.Present(SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle)">
  3772. <summary>
  3773. Presents the contents of the next buffer in the sequence of back buffers to the screen.
  3774. </summary>
  3775. <param name="sourceRectangle">The area of the back buffer that should be presented.</param>
  3776. <param name="destinationRectangle">The area of the front buffer that should receive the result of the presentation.</param>
  3777. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3778. <unmanaged>IDirect3DDevice9::Present</unmanaged>
  3779. </member>
  3780. <member name="M:SharpDX.Direct3D9.Device.Present(SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,System.IntPtr)">
  3781. <summary>
  3782. Presents the contents of the next buffer in the sequence of back buffers to the screen.
  3783. </summary>
  3784. <param name="sourceRectangle">The area of the back buffer that should be presented.</param>
  3785. <param name="destinationRectangle">The area of the front buffer that should receive the result of the presentation.</param>
  3786. <param name="windowOverride">The destination window whose client area is taken as the target for this presentation.</param>
  3787. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3788. <unmanaged>IDirect3DDevice9::Present</unmanaged>
  3789. </member>
  3790. <member name="M:SharpDX.Direct3D9.Device.Present(SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,System.IntPtr,System.IntPtr)">
  3791. <summary>
  3792. Presents the contents of the next buffer in the sequence of back buffers to the screen.
  3793. </summary>
  3794. <param name="sourceRectangle">The area of the back buffer that should be presented.</param>
  3795. <param name="destinationRectangle">The area of the front buffer that should receive the result of the presentation.</param>
  3796. <param name="windowOverride">The destination window whose client area is taken as the target for this presentation.</param>
  3797. <param name="region">Specifies a region on the back buffer that contains the minimal amount of pixels that need to be updated.</param>
  3798. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3799. <unmanaged>IDirect3DDevice9::Present</unmanaged>
  3800. </member>
  3801. <member name="M:SharpDX.Direct3D9.Device.ResetStreamSourceFrequency(System.Int32)">
  3802. <summary>
  3803. Resets the stream source frequency by setting the frequency to 1.
  3804. </summary>
  3805. <param name="stream">The stream index.</param>
  3806. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3807. <unmanaged>HRESULT IDirect3DDevice9::SetStreamSourceFreq([In] unsigned int StreamNumber,[In] unsigned int Setting)</unmanaged>
  3808. </member>
  3809. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawMatrix[])">
  3810. <summary>
  3811. Sets the pixel shader constant.
  3812. </summary>
  3813. <param name="startRegister">The start register.</param>
  3814. <param name="data">The data.</param>
  3815. <returns>
  3816. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3817. </returns>
  3818. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  3819. </member>
  3820. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawVector4[])">
  3821. <summary>
  3822. Sets the pixel shader constant.
  3823. </summary>
  3824. <param name="startRegister">The start register.</param>
  3825. <param name="data">The data.</param>
  3826. <returns>
  3827. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3828. </returns>
  3829. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  3830. </member>
  3831. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,System.Boolean[])">
  3832. <summary>
  3833. Sets the pixel shader constant.
  3834. </summary>
  3835. <param name="startRegister">The start register.</param>
  3836. <param name="data">The data.</param>
  3837. <returns>
  3838. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3839. </returns>
  3840. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantB([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int BoolCount)</unmanaged>
  3841. </member>
  3842. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,System.Int32[])">
  3843. <summary>
  3844. Sets the pixel shader constant.
  3845. </summary>
  3846. <param name="startRegister">The start register.</param>
  3847. <param name="data">The data.</param>
  3848. <returns>
  3849. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3850. </returns>
  3851. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantI([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4iCount)</unmanaged>
  3852. </member>
  3853. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,System.Single[])">
  3854. <summary>
  3855. Sets the pixel shader constant.
  3856. </summary>
  3857. <param name="startRegister">The start register.</param>
  3858. <param name="data">The data.</param>
  3859. <returns>
  3860. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3861. </returns>
  3862. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  3863. </member>
  3864. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawMatrix*)">
  3865. <summary>
  3866. Sets the pixel shader constant.
  3867. </summary>
  3868. <param name="startRegister">The start register.</param>
  3869. <param name="data">The data.</param>
  3870. <returns>
  3871. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3872. </returns>
  3873. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  3874. </member>
  3875. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawMatrix)">
  3876. <summary>
  3877. Sets the pixel shader constant.
  3878. </summary>
  3879. <param name="startRegister">The start register.</param>
  3880. <param name="data">The data.</param>
  3881. <returns>
  3882. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3883. </returns>
  3884. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  3885. </member>
  3886. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawMatrix*,System.Int32)">
  3887. <summary>
  3888. Sets the pixel shader constant.
  3889. </summary>
  3890. <param name="startRegister">The start register.</param>
  3891. <param name="data">The data.</param>
  3892. <param name="count">The count.</param>
  3893. <returns>
  3894. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3895. </returns>
  3896. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  3897. </member>
  3898. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawMatrix[],System.Int32,System.Int32)">
  3899. <summary>
  3900. Sets the pixel shader constant.
  3901. </summary>
  3902. <param name="startRegister">The start register.</param>
  3903. <param name="data">The data.</param>
  3904. <param name="offset">The offset.</param>
  3905. <param name="count">The count.</param>
  3906. <returns>
  3907. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  3908. </returns>
  3909. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  3910. </member>
  3911. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawVector4[],System.Int32,System.Int32)">
  3912. <summary>
  3913. Sets the pixel shader constant.
  3914. </summary>
  3915. <param name="startRegister">The start register.</param>
  3916. <param name="data">The data.</param>
  3917. <param name="offset">The offset.</param>
  3918. <param name="count">The count.</param>
  3919. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3920. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  3921. </member>
  3922. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,System.Boolean[],System.Int32,System.Int32)">
  3923. <summary>
  3924. Sets the pixel shader constant.
  3925. </summary>
  3926. <param name="startRegister">The start register.</param>
  3927. <param name="data">The data.</param>
  3928. <param name="offset">The offset.</param>
  3929. <param name="count">The count.</param>
  3930. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3931. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantB([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int BoolCount)</unmanaged>
  3932. </member>
  3933. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,System.Int32[],System.Int32,System.Int32)">
  3934. <summary>
  3935. Sets the pixel shader constant.
  3936. </summary>
  3937. <param name="startRegister">The start register.</param>
  3938. <param name="data">The data.</param>
  3939. <param name="offset">The offset.</param>
  3940. <param name="count">The count.</param>
  3941. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3942. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantI([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4iCount)</unmanaged>
  3943. </member>
  3944. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstant(System.Int32,System.Single[],System.Int32,System.Int32)">
  3945. <summary>
  3946. Sets the pixel shader constant.
  3947. </summary>
  3948. <param name="startRegister">The start register.</param>
  3949. <param name="data">The data.</param>
  3950. <param name="offset">The offset.</param>
  3951. <param name="count">The count.</param>
  3952. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3953. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  3954. </member>
  3955. <member name="M:SharpDX.Direct3D9.Device.SetRenderState(SharpDX.Direct3D9.RenderState,System.Boolean)">
  3956. <summary>
  3957. Sets the RenderState.
  3958. </summary>
  3959. <param name="renderState">State of the render.</param>
  3960. <param name="enable">if set to <c>true</c> [enable].</param>
  3961. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3962. <unmanaged>HRESULT IDirect3DDevice9::SetRenderState([In] D3DRENDERSTATETYPE State,[In] unsigned int Value)</unmanaged>
  3963. </member>
  3964. <member name="M:SharpDX.Direct3D9.Device.SetRenderState(SharpDX.Direct3D9.RenderState,System.Single)">
  3965. <summary>
  3966. Sets the RenderState.
  3967. </summary>
  3968. <param name="renderState">State of the render.</param>
  3969. <param name="value">A float value.</param>
  3970. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3971. <unmanaged>HRESULT IDirect3DDevice9::SetRenderState([In] D3DRENDERSTATETYPE State,[In] unsigned int Value)</unmanaged>
  3972. </member>
  3973. <member name="M:SharpDX.Direct3D9.Device.SetRenderState``1(SharpDX.Direct3D9.RenderState,``0)">
  3974. <summary>
  3975. Sets the RenderState.
  3976. </summary>
  3977. <typeparam name="T">Type of the enum value</typeparam>
  3978. <param name="renderState">State of the render.</param>
  3979. <param name="value">An enum value.</param>
  3980. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3981. <unmanaged>HRESULT IDirect3DDevice9::SetRenderState([In] D3DRENDERSTATETYPE State,[In] unsigned int Value)</unmanaged>
  3982. </member>
  3983. <member name="M:SharpDX.Direct3D9.Device.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,SharpDX.Direct3D9.TextureFilter)">
  3984. <summary>
  3985. Sets the SamplerState.
  3986. </summary>
  3987. <param name="sampler">The sampler.</param>
  3988. <param name="type">The type.</param>
  3989. <param name="textureFilter">The texture filter.</param>
  3990. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  3991. <unmanaged>HRESULT IDirect3DDevice9::SetSamplerState([In] unsigned int Sampler,[In] D3DSAMPLERSTATETYPE Type,[In] unsigned int Value)</unmanaged>
  3992. </member>
  3993. <member name="M:SharpDX.Direct3D9.Device.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,SharpDX.Direct3D9.TextureAddress)">
  3994. <summary>
  3995. Sets the SamplerState.
  3996. </summary>
  3997. <param name="sampler">The sampler.</param>
  3998. <param name="type">The type.</param>
  3999. <param name="textureAddress">The texture address.</param>
  4000. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  4001. <unmanaged>HRESULT IDirect3DDevice9::SetSamplerState([In] unsigned int Sampler,[In] D3DSAMPLERSTATETYPE Type,[In] unsigned int Value)</unmanaged>
  4002. </member>
  4003. <member name="M:SharpDX.Direct3D9.Device.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,System.Single)">
  4004. <summary>
  4005. Sets the SamplerState.
  4006. </summary>
  4007. <param name="sampler">The sampler.</param>
  4008. <param name="type">The type.</param>
  4009. <param name="value">A float value.</param>
  4010. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  4011. <unmanaged>HRESULT IDirect3DDevice9::SetSamplerState([In] unsigned int Sampler,[In] D3DSAMPLERSTATETYPE Type,[In] unsigned int Value)</unmanaged>
  4012. </member>
  4013. <member name="M:SharpDX.Direct3D9.Device.SetStreamSourceFrequency(System.Int32,System.Int32,SharpDX.Direct3D9.StreamSource)">
  4014. <summary>
  4015. Sets the stream source frequency.
  4016. </summary>
  4017. <param name="stream">The stream.</param>
  4018. <param name="frequency">The frequency.</param>
  4019. <param name="source">The source.</param>
  4020. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  4021. <unmanaged>HRESULT IDirect3DDevice9::SetStreamSourceFreq([In] unsigned int StreamNumber,[In] unsigned int Setting)</unmanaged>
  4022. </member>
  4023. <member name="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,SharpDX.Direct3D9.TextureArgument)">
  4024. <summary>
  4025. Sets the state of the texture stage.
  4026. </summary>
  4027. <param name="stage">The stage.</param>
  4028. <param name="type">The type.</param>
  4029. <param name="textureArgument">The texture argument.</param>
  4030. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  4031. <unmanaged>HRESULT IDirect3DDevice9::SetTextureStageState([In] unsigned int Stage,[In] D3DTEXTURESTAGESTATETYPE Type,[In] unsigned int Value)</unmanaged>
  4032. </member>
  4033. <member name="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,SharpDX.Direct3D9.TextureOperation)">
  4034. <summary>
  4035. Sets the state of the texture stage.
  4036. </summary>
  4037. <param name="stage">The stage.</param>
  4038. <param name="type">The type.</param>
  4039. <param name="textureOperation">The texture operation.</param>
  4040. <returns>
  4041. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4042. </returns>
  4043. <unmanaged>HRESULT IDirect3DDevice9::SetTextureStageState([In] unsigned int Stage,[In] D3DTEXTURESTAGESTATETYPE Type,[In] unsigned int Value)</unmanaged>
  4044. </member>
  4045. <member name="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,SharpDX.Direct3D9.TextureTransform)">
  4046. <summary>
  4047. Sets the state of the texture stage.
  4048. </summary>
  4049. <param name="stage">The stage.</param>
  4050. <param name="type">The type.</param>
  4051. <param name="textureTransform">The texture transform.</param>
  4052. <returns>
  4053. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4054. </returns>
  4055. <unmanaged>HRESULT IDirect3DDevice9::SetTextureStageState([In] unsigned int Stage,[In] D3DTEXTURESTAGESTATETYPE Type,[In] unsigned int Value)</unmanaged>
  4056. </member>
  4057. <member name="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,System.Single)">
  4058. <summary>
  4059. Sets the state of the texture stage.
  4060. </summary>
  4061. <param name="stage">The stage.</param>
  4062. <param name="type">The type.</param>
  4063. <param name="value">The value.</param>
  4064. <returns>
  4065. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4066. </returns>
  4067. <unmanaged>HRESULT IDirect3DDevice9::SetTextureStageState([In] unsigned int Stage,[In] D3DTEXTURESTAGESTATETYPE Type,[In] unsigned int Value)</unmanaged>
  4068. </member>
  4069. <member name="M:SharpDX.Direct3D9.Device.SetTransform(SharpDX.Direct3D9.TransformState,SharpDX.Mathematics.Interop.RawMatrix@)">
  4070. <summary>
  4071. Sets the transform.
  4072. </summary>
  4073. <param name="state">The state.</param>
  4074. <param name="matrixRef">The matrix ref.</param>
  4075. <returns>
  4076. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4077. </returns>
  4078. <unmanaged>HRESULT IDirect3DDevice9::SetTransform([In] D3DTRANSFORMSTATETYPE State,[In] const D3DMATRIX* pMatrix)</unmanaged>
  4079. </member>
  4080. <member name="M:SharpDX.Direct3D9.Device.SetTransform(System.Int32,SharpDX.Mathematics.Interop.RawMatrix@)">
  4081. <summary>
  4082. Sets the transform.
  4083. </summary>
  4084. <param name="index">The index.</param>
  4085. <param name="matrixRef">The matrix ref.</param>
  4086. <returns>
  4087. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4088. </returns>
  4089. <unmanaged>HRESULT IDirect3DDevice9::SetTransform([In] D3DTRANSFORMSTATETYPE State,[In] const D3DMATRIX* pMatrix)</unmanaged>
  4090. </member>
  4091. <member name="M:SharpDX.Direct3D9.Device.SetTransform(SharpDX.Direct3D9.TransformState,SharpDX.Mathematics.Interop.RawMatrix)">
  4092. <summary>
  4093. Sets the transform.
  4094. </summary>
  4095. <param name="state">The state.</param>
  4096. <param name="matrixRef">The matrix ref.</param>
  4097. <returns>
  4098. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4099. </returns>
  4100. <unmanaged>HRESULT IDirect3DDevice9::SetTransform([In] D3DTRANSFORMSTATETYPE State,[In] const D3DMATRIX* pMatrix)</unmanaged>
  4101. </member>
  4102. <member name="M:SharpDX.Direct3D9.Device.SetTransform(System.Int32,SharpDX.Mathematics.Interop.RawMatrix)">
  4103. <summary>
  4104. Sets the transform.
  4105. </summary>
  4106. <param name="index">The index.</param>
  4107. <param name="matrixRef">The matrix ref.</param>
  4108. <returns>
  4109. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4110. </returns>
  4111. <unmanaged>HRESULT IDirect3DDevice9::SetTransform([In] D3DTRANSFORMSTATETYPE State,[In] const D3DMATRIX* pMatrix)</unmanaged>
  4112. </member>
  4113. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawMatrix[])">
  4114. <summary>
  4115. Sets the vertex shader constant.
  4116. </summary>
  4117. <param name="startRegister">The start register.</param>
  4118. <param name="data">The data.</param>
  4119. <returns>
  4120. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4121. </returns>
  4122. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  4123. </member>
  4124. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawVector4[])">
  4125. <summary>
  4126. Sets the vertex shader constant.
  4127. </summary>
  4128. <param name="startRegister">The start register.</param>
  4129. <param name="data">The data.</param>
  4130. <returns>
  4131. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4132. </returns>
  4133. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  4134. </member>
  4135. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,System.Boolean[])">
  4136. <summary>
  4137. Sets the vertex shader constant.
  4138. </summary>
  4139. <param name="startRegister">The start register.</param>
  4140. <param name="data">The data.</param>
  4141. <returns>
  4142. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4143. </returns>
  4144. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantB([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int BoolCount)</unmanaged>
  4145. </member>
  4146. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,System.Int32[])">
  4147. <summary>
  4148. Sets the vertex shader constant.
  4149. </summary>
  4150. <param name="startRegister">The start register.</param>
  4151. <param name="data">The data.</param>
  4152. <returns>
  4153. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4154. </returns>
  4155. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantI([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4iCount)</unmanaged>
  4156. </member>
  4157. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,System.Single[])">
  4158. <summary>
  4159. Sets the vertex shader constant.
  4160. </summary>
  4161. <param name="startRegister">The start register.</param>
  4162. <param name="data">The data.</param>
  4163. <returns>
  4164. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4165. </returns>
  4166. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  4167. </member>
  4168. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawMatrix*)">
  4169. <summary>
  4170. Sets the vertex shader constant.
  4171. </summary>
  4172. <param name="startRegister">The start register.</param>
  4173. <param name="data">The data.</param>
  4174. <returns>
  4175. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4176. </returns>
  4177. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  4178. </member>
  4179. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawMatrix)">
  4180. <summary>
  4181. Sets the vertex shader constant.
  4182. </summary>
  4183. <param name="startRegister">The start register.</param>
  4184. <param name="data">The data.</param>
  4185. <returns>
  4186. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4187. </returns>
  4188. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  4189. </member>
  4190. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawMatrix*,System.Int32)">
  4191. <summary>
  4192. Sets the vertex shader constant.
  4193. </summary>
  4194. <param name="startRegister">The start register.</param>
  4195. <param name="data">The data.</param>
  4196. <param name="count">The count.</param>
  4197. <returns>
  4198. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4199. </returns>
  4200. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  4201. </member>
  4202. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawMatrix[],System.Int32,System.Int32)">
  4203. <summary>
  4204. Sets the vertex shader constant.
  4205. </summary>
  4206. <param name="startRegister">The start register.</param>
  4207. <param name="data">The data.</param>
  4208. <param name="offset">The offset.</param>
  4209. <param name="count">The count.</param>
  4210. <returns>
  4211. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4212. </returns>
  4213. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  4214. </member>
  4215. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,SharpDX.Mathematics.Interop.RawVector4[],System.Int32,System.Int32)">
  4216. <summary>
  4217. Sets the vertex shader constant.
  4218. </summary>
  4219. <param name="startRegister">The start register.</param>
  4220. <param name="data">The data.</param>
  4221. <param name="offset">The offset.</param>
  4222. <param name="count">The count.</param>
  4223. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  4224. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  4225. </member>
  4226. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,System.Boolean[],System.Int32,System.Int32)">
  4227. <summary>
  4228. Sets the vertex shader constant.
  4229. </summary>
  4230. <param name="startRegister">The start register.</param>
  4231. <param name="data">The data.</param>
  4232. <param name="offset">The offset.</param>
  4233. <param name="count">The count.</param>
  4234. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  4235. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantB([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int BoolCount)</unmanaged>
  4236. </member>
  4237. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,System.Int32[],System.Int32,System.Int32)">
  4238. <summary>
  4239. Sets the vertex shader constant.
  4240. </summary>
  4241. <param name="startRegister">The start register.</param>
  4242. <param name="data">The data.</param>
  4243. <param name="offset">The offset.</param>
  4244. <param name="count">The count.</param>
  4245. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  4246. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantI([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4iCount)</unmanaged>
  4247. </member>
  4248. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstant(System.Int32,System.Single[],System.Int32,System.Int32)">
  4249. <summary>
  4250. Sets the vertex shader constant.
  4251. </summary>
  4252. <param name="startRegister">The start register.</param>
  4253. <param name="data">The data.</param>
  4254. <param name="offset">The offset.</param>
  4255. <param name="count">The count.</param>
  4256. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  4257. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  4258. </member>
  4259. <member name="M:SharpDX.Direct3D9.Device.StretchRectangle(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.TextureFilter)">
  4260. <summary>
  4261. Stretches the rectangle.
  4262. </summary>
  4263. <param name="sourceSurfaceRef">The source surface ref.</param>
  4264. <param name="destSurfaceRef">The dest surface ref.</param>
  4265. <param name="filter">The filter.</param>
  4266. <returns>
  4267. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4268. </returns>
  4269. <unmanaged>HRESULT IDirect3DDevice9::StretchRect([In] IDirect3DSurface9* pSourceSurface,[In, Optional] const RECT* pSourceRect,[In] IDirect3DSurface9* pDestSurface,[In, Optional] const RECT* pDestRect,[In] D3DTEXTUREFILTERTYPE Filter)</unmanaged>
  4270. </member>
  4271. <member name="P:SharpDX.Direct3D9.Device.ShowCursor">
  4272. <summary>
  4273. Gets or sets a value indicating whether the cursor can be displayed.
  4274. </summary>
  4275. <value>
  4276. <c>true</c> if the cursor can be displayed; otherwise, <c>false</c>.
  4277. </value>
  4278. </member>
  4279. <member name="M:SharpDX.Direct3D9.Device.UpdateSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)">
  4280. <summary>
  4281. Updates the surface.
  4282. </summary>
  4283. <param name="sourceSurfaceRef">The source surface ref.</param>
  4284. <param name="destinationSurfaceRef">The destination surface ref.</param>
  4285. <returns>
  4286. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  4287. </returns>
  4288. <unmanaged>HRESULT IDirect3DDevice9::UpdateSurface([In] IDirect3DSurface9* pSourceSurface,[In] const RECT* pSourceRect,[In] IDirect3DSurface9* pDestinationSurface,[In] const POINT* pDestPoint)</unmanaged>
  4289. </member>
  4290. <member name="M:SharpDX.Direct3D9.Device.#ctor(System.IntPtr)">
  4291. <summary>
  4292. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Device"/> class.
  4293. </summary>
  4294. <param name="nativePtr">The native pointer.</param>
  4295. </member>
  4296. <member name="M:SharpDX.Direct3D9.Device.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Device">
  4297. <summary>
  4298. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Device"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  4299. </summary>
  4300. <param name="nativePointer">The native pointer.</param>
  4301. <returns>
  4302. The result of the conversion.
  4303. </returns>
  4304. </member>
  4305. <member name="P:SharpDX.Direct3D9.Device.Direct3D">
  4306. <summary>
  4307. <p>Returns an interface to the instance of the Direct3D object that created the device.</p>
  4308. </summary>
  4309. <remarks>
  4310. <p>Calling <strong><see cref="M:SharpDX.Direct3D9.Device.GetDirect3D(SharpDX.Direct3D9.Direct3D@)" /></strong> will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface results in a memory leak.</p>
  4311. </remarks>
  4312. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetDirect3D']/*" />
  4313. <msdn-id>bb174386</msdn-id>
  4314. <unmanaged>GetDirect3D</unmanaged>
  4315. <unmanaged-short>GetDirect3D</unmanaged-short>
  4316. <unmanaged>HRESULT IDirect3DDevice9::GetDirect3D([Out] IDirect3D9** ppD3D9)</unmanaged>
  4317. </member>
  4318. <member name="P:SharpDX.Direct3D9.Device.Capabilities">
  4319. <summary>
  4320. <p>Retrieves the capabilities of the rendering device.</p>
  4321. </summary>
  4322. <remarks>
  4323. <p><strong><see cref="M:SharpDX.Direct3D9.Device.GetCapabilities(SharpDX.Direct3D9.Capabilities@)" /></strong> retrieves the software vertex pipeline capabilities when the device is being used in software vertex processing mode. </p>
  4324. </remarks>
  4325. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetDeviceCaps']/*" />
  4326. <msdn-id>bb174385</msdn-id>
  4327. <unmanaged>GetDeviceCaps</unmanaged>
  4328. <unmanaged-short>GetDeviceCaps</unmanaged-short>
  4329. <unmanaged>HRESULT IDirect3DDevice9::GetDeviceCaps([Out] D3DCAPS9* pCaps)</unmanaged>
  4330. </member>
  4331. <member name="P:SharpDX.Direct3D9.Device.CreationParameters">
  4332. <summary>
  4333. <p>Retrieves the creation parameters of the device.</p>
  4334. </summary>
  4335. <remarks>
  4336. <p>You can query the AdapterOrdinal member of the returned <strong><see cref="T:SharpDX.Direct3D9.CreationParameters" /></strong> structure to retrieve the ordinal of the adapter represented by this device. </p>
  4337. </remarks>
  4338. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetCreationParameters']/*" />
  4339. <msdn-id>bb174382</msdn-id>
  4340. <unmanaged>GetCreationParameters</unmanaged>
  4341. <unmanaged-short>GetCreationParameters</unmanaged-short>
  4342. <unmanaged>HRESULT IDirect3DDevice9::GetCreationParameters([Out] D3DDEVICE_CREATION_PARAMETERS* pParameters)</unmanaged>
  4343. </member>
  4344. <member name="P:SharpDX.Direct3D9.Device.SwapChainCount">
  4345. <summary>
  4346. <p>Gets the number of implicit swap chains.</p>
  4347. </summary>
  4348. <remarks>
  4349. <p>Implicit swap chains are created by the device during <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong>. This method returns the number of swap chains created by CreateDevice. </p><p>An application may create additional swap chains using <strong><see cref="M:SharpDX.Direct3D9.Device.CreateAdditionalSwapChain(SharpDX.Direct3D9.PresentParameters@,SharpDX.Direct3D9.SwapChain)" /></strong>.</p>
  4350. </remarks>
  4351. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetNumberOfSwapChains']/*" />
  4352. <msdn-id>bb174396</msdn-id>
  4353. <unmanaged>GetNumberOfSwapChains</unmanaged>
  4354. <unmanaged-short>GetNumberOfSwapChains</unmanaged-short>
  4355. <unmanaged>unsigned int IDirect3DDevice9::GetNumberOfSwapChains()</unmanaged>
  4356. </member>
  4357. <member name="P:SharpDX.Direct3D9.Device.DialogBoxMode">
  4358. <summary>
  4359. <p>This method allows the use of GDI dialog boxes in full-screen mode applications.</p>
  4360. </summary>
  4361. <remarks>
  4362. <p>The GDI dialog boxes must be created as child to the device window. They should also be created within the same thread that created the device because this enables the parent window to manage redrawing the child window.</p><p>The method has no effect for windowed mode applications, but this setting will be respected if the application resets the device into full-screen mode. If SetDialogBoxMode succeeds in a windowed mode application, any subsequent reset to full-screen mode will be checked against the restrictions listed above. Also, SetDialogBoxMode causes all back buffers on the swap chain to be discarded, so an application is expected to refresh its content for all back buffers after this call.</p>
  4363. </remarks>
  4364. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetDialogBoxMode']/*" />
  4365. <msdn-id>bb174432</msdn-id>
  4366. <unmanaged>SetDialogBoxMode</unmanaged>
  4367. <unmanaged-short>SetDialogBoxMode</unmanaged-short>
  4368. <unmanaged>HRESULT IDirect3DDevice9::SetDialogBoxMode([In] BOOL bEnableDialogs)</unmanaged>
  4369. </member>
  4370. <member name="P:SharpDX.Direct3D9.Device.DepthStencilSurface">
  4371. <summary>
  4372. <p>Gets or sets the depth-stencil surface owned by the Direct3DDevice object.</p>
  4373. </summary>
  4374. <remarks>
  4375. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface results in a memory leak.</p>
  4376. </remarks>
  4377. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetDepthStencilSurface']/*" />
  4378. <msdn-id>bb174384</msdn-id>
  4379. <unmanaged>GetDepthStencilSurface / SetDepthStencilSurface</unmanaged>
  4380. <unmanaged-short>GetDepthStencilSurface</unmanaged-short>
  4381. <unmanaged>HRESULT IDirect3DDevice9::GetDepthStencilSurface([Out] IDirect3DSurface9** ppZStencilSurface)</unmanaged>
  4382. </member>
  4383. <member name="P:SharpDX.Direct3D9.Device.Viewport">
  4384. <summary>
  4385. <p>Retrieves or sets the viewport parameters currently set for the device.</p>
  4386. </summary>
  4387. <remarks>
  4388. <p>Typically, methods that return state will not work on a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. This method however, will work even on a pure device.</p>
  4389. </remarks>
  4390. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetViewport']/*" />
  4391. <msdn-id>bb174420</msdn-id>
  4392. <unmanaged>GetViewport / SetViewport</unmanaged>
  4393. <unmanaged-short>GetViewport</unmanaged-short>
  4394. <unmanaged>HRESULT IDirect3DDevice9::GetViewport([Out] D3DVIEWPORT9* pViewport)</unmanaged>
  4395. </member>
  4396. <member name="P:SharpDX.Direct3D9.Device.Material">
  4397. <summary>
  4398. <p>Retrieves or sets the current material properties for the device.</p>
  4399. </summary>
  4400. <remarks>
  4401. <p>This method will not return device state for a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. If you want to use this method, you must create your device with any of the other values in <see cref="T:SharpDX.Direct3D9.CreateFlags" />. </p>
  4402. </remarks>
  4403. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetMaterial']/*" />
  4404. <msdn-id>bb174394</msdn-id>
  4405. <unmanaged>GetMaterial / SetMaterial</unmanaged>
  4406. <unmanaged-short>GetMaterial</unmanaged-short>
  4407. <unmanaged>HRESULT IDirect3DDevice9::GetMaterial([Out] D3DMATERIAL9* pMaterial)</unmanaged>
  4408. </member>
  4409. <member name="P:SharpDX.Direct3D9.Device.ClipStatus">
  4410. <summary>
  4411. <p>Retrieves or sets the clip status.</p>
  4412. </summary>
  4413. <remarks>
  4414. <p>When clipping is enabled during vertex processing (by <strong><see cref="M:SharpDX.Direct3D9.Device.ProcessVertices(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexBuffer,SharpDX.Direct3D9.VertexDeclaration,SharpDX.Direct3D9.LockFlags)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)" /></strong>, or other drawing functions), Direct3D computes a clip code for every vertex. The clip code is a combination of D3DCS_* bits. When a vertex is outside a particular clipping plane, the corresponding bit is set in the clipping code. Direct3D maintains the clip status using <strong><see cref="T:SharpDX.Direct3D9.ClipStatus" /></strong>, which has ClipUnion and ClipIntersection members. ClipUnion is a bitwise "OR" of all vertex clip codes and ClipIntersection is a bitwise "AND" of all vertex clip codes. Initial values are zero for ClipUnion and 0xFFFFFFFF for ClipIntersection. When <see cref="F:SharpDX.Direct3D9.RenderState.Clipping" /> is set to <strong><see cref="F:SharpDX.Result.False" /></strong>, ClipUnion and ClipIntersection are set to zero. Direct3D updates the clip status during drawing calls. To compute clip status for a particular object, set ClipUnion and ClipIntersection to their initial value and continue drawing.</p><p>Clip status is not updated by <strong><see cref="M:SharpDX.Direct3D9.Device.DrawRectanglePatch(System.Int32,System.Single[])" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.DrawTrianglePatch(System.Int32,System.Single[])" /></strong> because there is no software emulation for them.</p><p>Clip status is used during software vertex processing. Therefore, this method is not supported on pure or nonpure hardware processing devices. For more information about pure devices, see <see cref="T:SharpDX.Direct3D9.CreateFlags" />.</p>
  4415. </remarks>
  4416. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetClipStatus']/*" />
  4417. <msdn-id>bb174381</msdn-id>
  4418. <unmanaged>GetClipStatus / SetClipStatus</unmanaged>
  4419. <unmanaged-short>GetClipStatus</unmanaged-short>
  4420. <unmanaged>HRESULT IDirect3DDevice9::GetClipStatus([Out] D3DCLIPSTATUS9* pClipStatus)</unmanaged>
  4421. </member>
  4422. <member name="P:SharpDX.Direct3D9.Device.CurrentTexturePalette">
  4423. <summary>
  4424. <p>Retrieves or sets the current texture palette.</p>
  4425. </summary>
  4426. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetCurrentTexturePalette']/*" />
  4427. <msdn-id>bb174383</msdn-id>
  4428. <unmanaged>GetCurrentTexturePalette / SetCurrentTexturePalette</unmanaged>
  4429. <unmanaged-short>GetCurrentTexturePalette</unmanaged-short>
  4430. <unmanaged>HRESULT IDirect3DDevice9::GetCurrentTexturePalette([Out] unsigned int* PaletteNumber)</unmanaged>
  4431. </member>
  4432. <member name="P:SharpDX.Direct3D9.Device.ScissorRect">
  4433. <summary>
  4434. <p>Gets or sets the scissor rectangle.</p>
  4435. </summary>
  4436. <remarks>
  4437. <p>The scissor rectangle is used as a rectangular clipping region.</p><p>See Rectangles (Direct3D 9) for further information on the use of rectangles in DirectX.</p>
  4438. </remarks>
  4439. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetScissorRect']/*" />
  4440. <msdn-id>bb174407</msdn-id>
  4441. <unmanaged>GetScissorRect / SetScissorRect</unmanaged>
  4442. <unmanaged-short>GetScissorRect</unmanaged-short>
  4443. <unmanaged>HRESULT IDirect3DDevice9::GetScissorRect([Out] RECT* pRect)</unmanaged>
  4444. </member>
  4445. <member name="P:SharpDX.Direct3D9.Device.SoftwareVertexProcessing">
  4446. <summary>
  4447. <p>Gets or sets the vertex processing (hardware or software) mode.</p>
  4448. </summary>
  4449. <remarks>
  4450. <p>An application can create a mixed-mode device to use both the software vertex processing and the hardware vertex processing. To switch between the two vertex processing modes in DirectX 8.x, use <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderState(SharpDX.Direct3D9.RenderState,System.Boolean)" /></strong> with the render state D3DRS_SOFTWAREVERTEXPROCESSING and the appropriate <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> argument. The drawback of the render state approach was the difficulty in defining the semantics for state blocks. Applications and the runtime had to do extra work and be careful while recording and playing back state blocks.</p><p>In Direct3D 9, use <strong><see cref="M:SharpDX.Direct3D9.Device.SetSoftwareVertexProcessing(SharpDX.Mathematics.Interop.RawBool)" /></strong> instead. This new API is not recorded by StateBlocks.</p>
  4451. </remarks>
  4452. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetSoftwareVertexProcessing']/*" />
  4453. <msdn-id>bb174408</msdn-id>
  4454. <unmanaged>GetSoftwareVertexProcessing / SetSoftwareVertexProcessing</unmanaged>
  4455. <unmanaged-short>GetSoftwareVertexProcessing</unmanaged-short>
  4456. <unmanaged>BOOL IDirect3DDevice9::GetSoftwareVertexProcessing()</unmanaged>
  4457. </member>
  4458. <member name="P:SharpDX.Direct3D9.Device.NPatchMode">
  4459. <summary>
  4460. <p>Gets or sets the N-patch mode segments.</p>
  4461. </summary>
  4462. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetNPatchMode']/*" />
  4463. <msdn-id>bb174395</msdn-id>
  4464. <unmanaged>GetNPatchMode / SetNPatchMode</unmanaged>
  4465. <unmanaged-short>GetNPatchMode</unmanaged-short>
  4466. <unmanaged>float IDirect3DDevice9::GetNPatchMode()</unmanaged>
  4467. </member>
  4468. <member name="P:SharpDX.Direct3D9.Device.VertexDeclaration">
  4469. <summary>
  4470. <p>Gets or sets a vertex shader declaration.</p>
  4471. </summary>
  4472. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetVertexDeclaration']/*" />
  4473. <msdn-id>bb174415</msdn-id>
  4474. <unmanaged>GetVertexDeclaration / SetVertexDeclaration</unmanaged>
  4475. <unmanaged-short>GetVertexDeclaration</unmanaged-short>
  4476. <unmanaged>HRESULT IDirect3DDevice9::GetVertexDeclaration([Out] IDirect3DVertexDeclaration9** ppDecl)</unmanaged>
  4477. </member>
  4478. <member name="P:SharpDX.Direct3D9.Device.VertexFormat">
  4479. <summary>
  4480. <p>Gets or sets the fixed vertex function declaration.</p>
  4481. </summary>
  4482. <remarks>
  4483. <p>The fixed vertex function declaration is a set of FVF flags that determine how vertices processed by the fixed function pipeline will be used.</p>
  4484. </remarks>
  4485. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetFVF']/*" />
  4486. <msdn-id>bb174389</msdn-id>
  4487. <unmanaged>GetFVF / SetFVF</unmanaged>
  4488. <unmanaged-short>GetFVF</unmanaged-short>
  4489. <unmanaged>HRESULT IDirect3DDevice9::GetFVF([Out] D3DFVF* pFVF)</unmanaged>
  4490. </member>
  4491. <member name="P:SharpDX.Direct3D9.Device.VertexShader">
  4492. <summary>
  4493. <p>Retrieves or sets the currently set vertex shader.</p>
  4494. </summary>
  4495. <remarks>
  4496. <p>Typically, methods that return state will not work on a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. This method however, will work even on a pure device because it returns an interface.</p>
  4497. </remarks>
  4498. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetVertexShader']/*" />
  4499. <msdn-id>bb174416</msdn-id>
  4500. <unmanaged>GetVertexShader / SetVertexShader</unmanaged>
  4501. <unmanaged-short>GetVertexShader</unmanaged-short>
  4502. <unmanaged>HRESULT IDirect3DDevice9::GetVertexShader([Out] IDirect3DVertexShader9** ppShader)</unmanaged>
  4503. </member>
  4504. <member name="P:SharpDX.Direct3D9.Device.Indices">
  4505. <summary>
  4506. <p>Retrieves or sets index data.</p>
  4507. </summary>
  4508. <remarks>
  4509. <p> Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface results in a memory leak.</p>
  4510. </remarks>
  4511. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetIndices']/*" />
  4512. <msdn-id>bb174391</msdn-id>
  4513. <unmanaged>GetIndices / SetIndices</unmanaged>
  4514. <unmanaged-short>GetIndices</unmanaged-short>
  4515. <unmanaged>HRESULT IDirect3DDevice9::GetIndices([Out] IDirect3DIndexBuffer9** ppIndexData)</unmanaged>
  4516. </member>
  4517. <member name="P:SharpDX.Direct3D9.Device.PixelShader">
  4518. <summary>
  4519. <p>Retrieves or sets the currently set pixel shader.</p>
  4520. </summary>
  4521. <remarks>
  4522. <p>This method will not work on a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />.</p>
  4523. </remarks>
  4524. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetPixelShader']/*" />
  4525. <msdn-id>bb174398</msdn-id>
  4526. <unmanaged>GetPixelShader / SetPixelShader</unmanaged>
  4527. <unmanaged-short>GetPixelShader</unmanaged-short>
  4528. <unmanaged>HRESULT IDirect3DDevice9::GetPixelShader([Out] IDirect3DPixelShader9** ppShader)</unmanaged>
  4529. </member>
  4530. <member name="M:SharpDX.Direct3D9.Device.TestCooperativeLevel">
  4531. <summary>
  4532. <p>Reports the current cooperative-level status of the Direct3D device for a windowed or full-screen application.</p>
  4533. </summary>
  4534. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />, indicating that the device is operational and the calling application can continue. If the method fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceNotReset" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DriverInternalError" />. </p></returns>
  4535. <remarks>
  4536. <p>If the device is lost but cannot be restored at the current time, <strong><see cref="M:SharpDX.Direct3D9.Device.TestCooperativeLevel" /></strong> returns the <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" /> return code. This would be the case, for example, when a full-screen device has lost focus. If an application detects a lost device, it should pause and periodically call <strong><see cref="M:SharpDX.Direct3D9.Device.TestCooperativeLevel" /></strong> until it receives a return value of <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceNotReset" />. The application may then attempt to reset the device by calling <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> and, if this succeeds, restore the necessary resources and resume normal operation. Note that <strong><see cref="M:SharpDX.Direct3D9.Device.Present" /></strong> will return <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" /> if the device is either "lost" or "not reset".</p><p>A call to <strong><see cref="M:SharpDX.Direct3D9.Device.TestCooperativeLevel" /></strong> will fail if called on a different thread than that used to create the device being reset.</p>
  4537. </remarks>
  4538. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::TestCooperativeLevel']/*" />
  4539. <msdn-id>bb174472</msdn-id>
  4540. <unmanaged>HRESULT IDirect3DDevice9::TestCooperativeLevel()</unmanaged>
  4541. <unmanaged-short>IDirect3DDevice9::TestCooperativeLevel</unmanaged-short>
  4542. </member>
  4543. <member name="M:SharpDX.Direct3D9.Device.GetAvailableTextureMem">
  4544. <summary>
  4545. <p>Returns an estimate of the amount of available texture memory.</p>
  4546. </summary>
  4547. <returns><p>The function returns an estimate of the available texture memory.</p></returns>
  4548. <remarks>
  4549. <p>The returned value is rounded to the nearest MB. This is done to reflect the fact that video memory estimates are never precise due to alignment and other issues that affect consumption by certain resources. Applications can use this value to make gross estimates of memory availability to make large-scale resource decisions such as how many levels of a mipmap to attempt to allocate, but applications cannot use this value to make small-scale decisions such as if there is enough memory left to allocate another resource.</p>
  4550. </remarks>
  4551. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetAvailableTextureMem']/*" />
  4552. <msdn-id>bb174378</msdn-id>
  4553. <unmanaged>unsigned int IDirect3DDevice9::GetAvailableTextureMem()</unmanaged>
  4554. <unmanaged-short>IDirect3DDevice9::GetAvailableTextureMem</unmanaged-short>
  4555. </member>
  4556. <member name="M:SharpDX.Direct3D9.Device.EvictManagedResources">
  4557. <summary>
  4558. <p>Evicts all managed resources, including both Direct3D and driver-managed resources.</p>
  4559. </summary>
  4560. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, D3DERR_COMMAND_UNPARSED.</p></returns>
  4561. <remarks>
  4562. <p>This function causes only the <see cref="F:SharpDX.Direct3D9.Pool.Default" /> copy of resources to be evicted. The resource copy in system memory is retained. See <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong>.</p>
  4563. </remarks>
  4564. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::EvictManagedResources']/*" />
  4565. <msdn-id>bb174377</msdn-id>
  4566. <unmanaged>HRESULT IDirect3DDevice9::EvictManagedResources()</unmanaged>
  4567. <unmanaged-short>IDirect3DDevice9::EvictManagedResources</unmanaged-short>
  4568. </member>
  4569. <member name="M:SharpDX.Direct3D9.Device.GetDirect3D(SharpDX.Direct3D9.Direct3D@)">
  4570. <summary>
  4571. <p>Returns an interface to the instance of the Direct3D object that created the device.</p>
  4572. </summary>
  4573. <param name="d3D9Out"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface, representing the interface of the Direct3D object that created the device. </p> </dd></param>
  4574. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  4575. <remarks>
  4576. <p>Calling <strong><see cref="M:SharpDX.Direct3D9.Device.GetDirect3D(SharpDX.Direct3D9.Direct3D@)" /></strong> will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface results in a memory leak.</p>
  4577. </remarks>
  4578. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetDirect3D']/*" />
  4579. <msdn-id>bb174386</msdn-id>
  4580. <unmanaged>HRESULT IDirect3DDevice9::GetDirect3D([Out] IDirect3D9** ppD3D9)</unmanaged>
  4581. <unmanaged-short>IDirect3DDevice9::GetDirect3D</unmanaged-short>
  4582. </member>
  4583. <member name="M:SharpDX.Direct3D9.Device.GetCapabilities(SharpDX.Direct3D9.Capabilities@)">
  4584. <summary>
  4585. <p>Retrieves the capabilities of the rendering device.</p>
  4586. </summary>
  4587. <param name="capsRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure, describing the returned device. </p> </dd></param>
  4588. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  4589. <remarks>
  4590. <p><strong><see cref="M:SharpDX.Direct3D9.Device.GetCapabilities(SharpDX.Direct3D9.Capabilities@)" /></strong> retrieves the software vertex pipeline capabilities when the device is being used in software vertex processing mode. </p>
  4591. </remarks>
  4592. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetDeviceCaps']/*" />
  4593. <msdn-id>bb174385</msdn-id>
  4594. <unmanaged>HRESULT IDirect3DDevice9::GetDeviceCaps([Out] D3DCAPS9* pCaps)</unmanaged>
  4595. <unmanaged-short>IDirect3DDevice9::GetDeviceCaps</unmanaged-short>
  4596. </member>
  4597. <member name="M:SharpDX.Direct3D9.Device.GetDisplayMode(System.Int32)">
  4598. <summary>
  4599. <p>Retrieves the display mode's spatial resolution, color resolution, and refresh frequency.</p>
  4600. </summary>
  4601. <param name="iSwapChain"><dd> <p>An unsigned integer specifying the swap chain.</p> </dd></param>
  4602. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.DisplayMode" /></strong> structure containing data about the display mode of the adapter. As opposed to the display mode of the device, which may not be active if the device does not own full-screen mode. </p> </dd></returns>
  4603. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetDisplayMode']/*" />
  4604. <msdn-id>bb174387</msdn-id>
  4605. <unmanaged>HRESULT IDirect3DDevice9::GetDisplayMode([In] unsigned int iSwapChain,[Out] D3DDISPLAYMODE* pMode)</unmanaged>
  4606. <unmanaged-short>IDirect3DDevice9::GetDisplayMode</unmanaged-short>
  4607. </member>
  4608. <member name="M:SharpDX.Direct3D9.Device.GetCreationParameters(SharpDX.Direct3D9.CreationParameters@)">
  4609. <summary>
  4610. <p>Retrieves the creation parameters of the device.</p>
  4611. </summary>
  4612. <param name="parametersRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.CreationParameters" /></strong> structure, describing the creation parameters of the device. </p> </dd></param>
  4613. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />.</p><p><see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if the argument is invalid.</p></returns>
  4614. <remarks>
  4615. <p>You can query the AdapterOrdinal member of the returned <strong><see cref="T:SharpDX.Direct3D9.CreationParameters" /></strong> structure to retrieve the ordinal of the adapter represented by this device. </p>
  4616. </remarks>
  4617. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetCreationParameters']/*" />
  4618. <msdn-id>bb174382</msdn-id>
  4619. <unmanaged>HRESULT IDirect3DDevice9::GetCreationParameters([Out] D3DDEVICE_CREATION_PARAMETERS* pParameters)</unmanaged>
  4620. <unmanaged-short>IDirect3DDevice9::GetCreationParameters</unmanaged-short>
  4621. </member>
  4622. <member name="M:SharpDX.Direct3D9.Device.SetCursorProperties(System.Int32,System.Int32,SharpDX.Direct3D9.Surface)">
  4623. <summary>
  4624. <p>Sets properties for the cursor.</p>
  4625. </summary>
  4626. <param name="xHotSpot"><dd> <p>X-coordinate offset (in pixels) that marks the center of the cursor. The offset is relative to the upper-left corner of the cursor. When the cursor is given a new position, the image is drawn at an offset from this new position determined by subtracting the hot spot coordinates from the position. </p> </dd></param>
  4627. <param name="yHotSpot"><dd> <p>Y-coordinate offset (in pixels) that marks the center of the cursor. The offset is relative to the upper-left corner of the cursor. When the cursor is given a new position, the image is drawn at an offset from this new position determined by subtracting the hot spot coordinates from the position. </p> </dd></param>
  4628. <param name="cursorBitmapRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. This parameter must point to an 8888 ARGB surface (format <see cref="F:SharpDX.Direct3D9.Format.A8R8G8B8" />). The contents of this surface will be copied and potentially format-converted into an internal buffer from which the cursor is displayed. The dimensions of this surface must be less than the dimensions of the display mode, and must be a power of two in each direction, although not necessarily the same power of two. The alpha channel must be either 0.0 or 1.0. </p> </dd></param>
  4629. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  4630. <remarks>
  4631. <p>An operating system cursor is created and used under either of these conditions:</p><ul> <li>The hardware has set <see cref="F:SharpDX.Direct3D9.CursorCaps.Color" /> (see <see cref="T:SharpDX.Direct3D9.CursorCaps" />), and the cursor size is 32x32 (which is the cursor size in the operating system).</li> <li>The application is running in windowed mode.</li> </ul><p>Otherwise, DirectX uses an emulated cursor. An application uses <strong><see cref="M:SharpDX.Direct3D9.Device.SetCursorPosition(SharpDX.Mathematics.Interop.RawPoint,System.Boolean)" /></strong> to move an emulated cursor to follow mouse movement.</p><p>It is recommended for applications to always trap WM_MOUSEMOVE events and call DXSetCursorPosition.</p><p>Direct3D cursor functions use either GDI cursor or software emulation, depending on the hardware. Users typically want to respond to a WM_SETCURSOR message. For example, they might want to write the message handler as follows:</p><pre> case WM_SETCURSOR:
  4632. // Turn off window cursor.
  4633. SetCursor( <c>null</c> );
  4634. m_pd3dDevice-&gt;ShowCursor( TRUE );
  4635. return TRUE; // Prevent Windows from setting cursor to window class cursor.
  4636. break;
  4637. </pre><p>Or, users might want to call the <strong><see cref="M:SharpDX.Direct3D9.Device.SetCursorProperties(SharpDX.Mathematics.Interop.RawPoint,SharpDX.Direct3D9.Surface)" /></strong> method if they want to change the cursor. </p><p>The application can determine what hardware support is available for cursors by examining appropriate members of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure. Typically, hardware supports only 32x32 cursors and, when windowed, the system might support only 32x32 cursors. In this case, <strong><see cref="M:SharpDX.Direct3D9.Device.SetCursorProperties(SharpDX.Mathematics.Interop.RawPoint,SharpDX.Direct3D9.Surface)" /></strong> still succeeds but the cursor might be reduced to that size. The hot spot is scaled appropriately.</p><p>The cursor does not survive when the device is lost. This method must be called after the device is reset.</p>
  4638. </remarks>
  4639. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetCursorProperties']/*" />
  4640. <msdn-id>bb174430</msdn-id>
  4641. <unmanaged>HRESULT IDirect3DDevice9::SetCursorProperties([In] unsigned int XHotSpot,[In] unsigned int YHotSpot,[In] IDirect3DSurface9* pCursorBitmap)</unmanaged>
  4642. <unmanaged-short>IDirect3DDevice9::SetCursorProperties</unmanaged-short>
  4643. </member>
  4644. <member name="M:SharpDX.Direct3D9.Device.SetCursorPosition(System.Int32,System.Int32,System.Int32)">
  4645. <summary>
  4646. <p>Sets the cursor position and update options.</p>
  4647. </summary>
  4648. <param name="x"><dd> <p>The new X-position of the cursor in virtual desktop coordinates. See Remarks. </p> </dd></param>
  4649. <param name="y"><dd> <p>The new Y-position of the cursor in virtual desktop coordinates. See Remarks. </p> </dd></param>
  4650. <param name="flags"><dd> <p> </p><p>Specifies the update options for the cursor. Currently, only one flag is defined.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong>D3DCURSOR_IMMEDIATE_UPDATE</strong></dt> </dl> </td><td> <p>Update cursor at the refresh rate.</p> <p>If this flag is specified, the system guarantees that the cursor will be updated at a minimum of half the display refresh rate, but never more frequently than the display refresh rate. Otherwise, the method delays cursor updates until the next <strong><see cref="M:SharpDX.Direct3D9.Device.Present" /></strong> call. Not setting this flag usually results in better performance than if the flag is set. However, applications should set this flag if the rate of calls to Present is low enough that users would notice a significant delay in cursor motion. This flag has no effect in a windowed-mode application. Some video cards implement hardware color cursors. This flag does not have an effect on these cards.</p> </td></tr> </table> <p>?</p> </dd></param>
  4651. <remarks>
  4652. <p>When running in full-screen mode, screen space coordinates are the back buffer coordinates appropriately scaled to the current display mode. When running in windowed mode, screen space coordinates are the desktop coordinates. The cursor image is drawn at the specified position minus the hotspot-offset specified by the <strong>SetCursorProperties</strong> method.</p><p>If the cursor has been hidden by <strong>ShowCursor</strong>, the cursor is not drawn.</p>
  4653. </remarks>
  4654. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetCursorPosition']/*" />
  4655. <msdn-id>bb174429</msdn-id>
  4656. <unmanaged>void IDirect3DDevice9::SetCursorPosition([In] int X,[In] int Y,[In] unsigned int Flags)</unmanaged>
  4657. <unmanaged-short>IDirect3DDevice9::SetCursorPosition</unmanaged-short>
  4658. </member>
  4659. <member name="M:SharpDX.Direct3D9.Device.GetSetShowCursor(SharpDX.Mathematics.Interop.RawBool)">
  4660. <summary>
  4661. <p>Displays or hides the cursor.</p>
  4662. </summary>
  4663. <param name="bShow"><dd> <p>If bShow is <strong>TRUE</strong>, the cursor is shown. If bShow is <strong><see cref="F:SharpDX.Result.False" /></strong>, the cursor is hidden. </p> </dd></param>
  4664. <returns><p>Value indicating whether the cursor was previously visible. <strong>TRUE</strong> if the cursor was previously visible, or <strong><see cref="F:SharpDX.Result.False" /></strong> if the cursor was not previously visible.</p></returns>
  4665. <remarks>
  4666. <p>Direct3D cursor functions use either GDI cursor or software emulation, depending on the hardware. Users usually want to respond to a WM_SETCURSOR message. For example, the users might want to write the message handler like this:</p><pre> case WM_SETCURSOR: // Turn off window cursor SetCursor( <c>null</c> ); m_pd3dDevice-&gt;ShowCursor( TRUE ); return TRUE; // prevent Windows from setting cursor to window class cursor break;
  4667. </pre><p>Or users might want to call the <strong><see cref="M:SharpDX.Direct3D9.Device.SetCursorProperties(SharpDX.Mathematics.Interop.RawPoint,SharpDX.Direct3D9.Surface)" /></strong> method if they want to change the cursor. See the code in the DirectX Graphics C/C++ Samples for more detail.</p>
  4668. </remarks>
  4669. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::ShowCursor']/*" />
  4670. <msdn-id>bb174470</msdn-id>
  4671. <unmanaged>BOOL IDirect3DDevice9::ShowCursor([In] BOOL bShow)</unmanaged>
  4672. <unmanaged-short>IDirect3DDevice9::ShowCursor</unmanaged-short>
  4673. </member>
  4674. <member name="M:SharpDX.Direct3D9.Device.CreateAdditionalSwapChain(SharpDX.Direct3D9.PresentParameters@,SharpDX.Direct3D9.SwapChain)">
  4675. <summary>
  4676. <p>Creates an additional swap chain for rendering multiple views.</p>
  4677. </summary>
  4678. <param name="presentationParametersRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structure, containing the presentation parameters for the new swap chain. This value cannot be <strong><c>null</c></strong>.</p> <p>Calling this method changes the value of members of the <see cref="T:SharpDX.Direct3D9.PresentParameters" /> structure.</p> <ul> <li>If BackBufferCount == 0, calling CreateAdditionalSwapChain will increase it to 1.</li> <li>If the application is in windowed mode, and if either the BackBufferWidth or the BackBufferHeight == 0, they will be set to the client area width and height of the hwnd.</li> </ul> </dd></param>
  4679. <param name="swapChainRef"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.SwapChain" /></strong> interface, representing the additional swap chain. </p> </dd></param>
  4680. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  4681. <remarks>
  4682. <p>There is always at least one swap chain (the implicit swap chain) for each device because Direct3D 9 has one swap chain as a property of the device. </p><p>Note that any given device can support only one full-screen swap chain.</p><p><see cref="F:SharpDX.Direct3D9.Format.Unknown" /> can be specified for the windowed mode back buffer format when calling <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> and CreateAdditionalSwapChain. This means the application does not have to query the current desktop format before calling CreateDevice for windowed mode. For full-screen mode, the back buffer format must be specified. </p>
  4683. </remarks>
  4684. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateAdditionalSwapChain']/*" />
  4685. <msdn-id>bb174354</msdn-id>
  4686. <unmanaged>HRESULT IDirect3DDevice9::CreateAdditionalSwapChain([In] D3DPRESENT_PARAMETERS* pPresentationParameters,[Out, Fast] IDirect3DSwapChain9** pSwapChain)</unmanaged>
  4687. <unmanaged-short>IDirect3DDevice9::CreateAdditionalSwapChain</unmanaged-short>
  4688. </member>
  4689. <member name="M:SharpDX.Direct3D9.Device.GetSwapChain(System.Int32)">
  4690. <summary>
  4691. <p>Gets a reference to a swap chain.</p>
  4692. </summary>
  4693. <param name="iSwapChain"><dd> <p>The swap chain ordinal value. For more information, see NumberOfAdaptersInGroup in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd></param>
  4694. <returns><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.SwapChain" /></strong> interface that will receive a copy of swap chain. </p> </dd></returns>
  4695. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetSwapChain']/*" />
  4696. <msdn-id>bb174411</msdn-id>
  4697. <unmanaged>HRESULT IDirect3DDevice9::GetSwapChain([In] unsigned int iSwapChain,[Out] IDirect3DSwapChain9** pSwapChain)</unmanaged>
  4698. <unmanaged-short>IDirect3DDevice9::GetSwapChain</unmanaged-short>
  4699. </member>
  4700. <member name="M:SharpDX.Direct3D9.Device.GetSwapChainCount">
  4701. <summary>
  4702. <p>Gets the number of implicit swap chains.</p>
  4703. </summary>
  4704. <returns><p>Number of implicit swap chains. See Remarks.</p></returns>
  4705. <remarks>
  4706. <p>Implicit swap chains are created by the device during <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong>. This method returns the number of swap chains created by CreateDevice. </p><p>An application may create additional swap chains using <strong><see cref="M:SharpDX.Direct3D9.Device.CreateAdditionalSwapChain(SharpDX.Direct3D9.PresentParameters@,SharpDX.Direct3D9.SwapChain)" /></strong>.</p>
  4707. </remarks>
  4708. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetNumberOfSwapChains']/*" />
  4709. <msdn-id>bb174396</msdn-id>
  4710. <unmanaged>unsigned int IDirect3DDevice9::GetNumberOfSwapChains()</unmanaged>
  4711. <unmanaged-short>IDirect3DDevice9::GetNumberOfSwapChains</unmanaged-short>
  4712. </member>
  4713. <member name="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])">
  4714. <summary>
  4715. <p>Resets the type, size, and format of the swap chain.</p>
  4716. </summary>
  4717. <param name="presentationParametersRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structure, describing the new presentation parameters. This value cannot be <strong><c>null</c></strong>. </p> <p>When switching to full-screen mode, Direct3D will try to find a desktop format that matches the back buffer format, so that back buffer and front buffer formats will be identical (to eliminate the need for color conversion).</p> <p>When this method returns:</p> <ul> <li>BackBufferCount, BackBufferWidth, and BackBufferHeight are set to zero.</li> <li>BackBufferFormat is set to <see cref="F:SharpDX.Direct3D9.Format.Unknown" /> for windowed mode only; a full-screen mode must specify a format.</li> </ul> </dd></param>
  4718. <returns><p>Possible return values include: <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceRemoved" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DriverInternalError" />, or <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" /> (see D3DERR).</p></returns>
  4719. <remarks>
  4720. <p>If a call to <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> fails, the device will be placed in the "lost" state (as indicated by a return value of <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" /> from a call to <strong><see cref="M:SharpDX.Direct3D9.Device.TestCooperativeLevel" /></strong>) unless it is already in the "not reset" state (as indicated by a return value of <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceNotReset" /> from a call to <strong><see cref="M:SharpDX.Direct3D9.Device.TestCooperativeLevel" /></strong>). Refer to <strong><see cref="M:SharpDX.Direct3D9.Device.TestCooperativeLevel" /></strong> and Lost Devices (Direct3D 9) for further information concerning the use of <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> in the context of lost devices.</p><p>Calling <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> causes all texture memory surfaces to be lost, managed textures to be flushed from video memory, and all state information to be lost. Before calling the <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> method for a device, an application should release any explicit render targets, depth stencil surfaces, additional swap chains, state blocks, and <see cref="F:SharpDX.Direct3D9.Pool.Default" /> resources associated with the device.</p><p>There are two different types of swap chains: full-screen or windowed. If the new swap chain is full-screen, the adapter will be placed in the display mode that matches the new size.</p><p>Direct3D 9 applications can expect messages to be sent to them during this call (for example, before this call is returned); applications should take precautions not to call into Direct3D at this time. In addition, when <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> fails, the only valid methods that can be called are <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.Device.TestCooperativeLevel" /></strong>, and the various Release member functions. Calling any other method can result in an exception.</p><p>A call to <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> will fail if called on a different thread than that used to create the device being reset.</p><p>Pixel shaders and vertex shaders survive <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> calls for Direct3D 9. They do not need to be re-created explicitly by the application.</p><p> <see cref="F:SharpDX.Direct3D9.Format.Unknown" /> can be specified for the windowed mode back buffer format when calling <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>, and <strong><see cref="M:SharpDX.Direct3D9.Device.CreateAdditionalSwapChain(SharpDX.Direct3D9.PresentParameters@,SharpDX.Direct3D9.SwapChain)" /></strong>. This means the application does not have to query the current desktop format before calling <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong> for windowed mode. For full-screen mode, the back buffer format must be specified. Setting BackBufferCount equal to zero (BackBufferCount = 0) results in one back buffer.</p><p>When trying to reset more than one display adapter in a group, set pPresentationParameters to point to an array of <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structures, one for each display in the adapter group.</p><p>If a multihead device was created with <see cref="F:SharpDX.Direct3D9.CreateFlags.AdapterGroupDevice" />, <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> requires an array of <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structures wherein each structure must specify a full-screen display. To switch back to windowed mode, the application must destroy the device and re-create a non-multihead device in windowed mode.</p>
  4721. </remarks>
  4722. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::Reset']/*" />
  4723. <msdn-id>bb174425</msdn-id>
  4724. <unmanaged>HRESULT IDirect3DDevice9::Reset([In, Out, Params] D3DPRESENT_PARAMETERS* pPresentationParameters)</unmanaged>
  4725. <unmanaged-short>IDirect3DDevice9::Reset</unmanaged-short>
  4726. </member>
  4727. <member name="M:SharpDX.Direct3D9.Device.Present(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)">
  4728. <summary>
  4729. <p>Presents the contents of the next buffer in the sequence of back buffers owned by the device.</p>
  4730. </summary>
  4731. <param name="sourceRectRef"><dd> <p>Pointer to a value that must be <strong><c>null</c></strong> unless the swap chain was created with <see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" />. pSourceRect is a reference to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure containing the source rectangle. If <strong><c>null</c></strong>, the entire source surface is presented. If the rectangle exceeds the source surface, the rectangle is clipped to the source surface. </p> </dd></param>
  4732. <param name="destRectRef"><dd> <p>Pointer to a value that must be <strong><c>null</c></strong> unless the swap chain was created with <see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" />. pDestRect is a reference to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure containing the destination rectangle, in window client coordinates. If <strong><c>null</c></strong>, the entire client area is filled. If the rectangle exceeds the destination client area, the rectangle is clipped to the destination client area. </p> </dd></param>
  4733. <param name="hDestWindowOverride"><dd> <p>Pointer to a destination window whose client area is taken as the target for this presentation. If this value is <strong><c>null</c></strong>, the runtime uses the <strong>hDeviceWindow</strong> member of <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> for the presentation.</p> </dd></param>
  4734. <param name="dirtyRegionRef"><dd> <p>Value must be <strong><c>null</c></strong> unless the swap chain was created with <see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" />. For more information about swap chains, see Flipping Surfaces (Direct3D 9) and <strong><see cref="T:SharpDX.Direct3D9.SwapEffect" /></strong>. If this value is non-<strong><c>null</c></strong>, the contained region is expressed in back buffer coordinates. The rectangles within the region are the minimal set of pixels that need to be updated. This method takes these rectangles into account when optimizing the presentation by copying only the pixels within the region, or some suitably expanded set of rectangles. This is an aid to optimization only, and the application should not rely on the region being copied exactly. The implementation can choose to copy the whole source rectangle. </p> </dd></param>
  4735. <returns><p>Possible return values include: <see cref="F:SharpDX.Direct3D9.ResultCode.Success" /> or <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceRemoved" /> (see D3DERR).</p></returns>
  4736. <remarks>
  4737. <p>If necessary, a stretch operation is applied to transfer the pixels within the source rectangle to the destination rectangle in the client area of the target window. </p><p><strong>Present</strong> will fail, returning <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, if called between BeginScene and EndScene pairs unless the render target is not the current render target (such as the back buffer you get from creating an additional swap chain). This is a new behavior for Direct3D 9. </p>
  4738. </remarks>
  4739. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::Present']/*" />
  4740. <msdn-id>bb174423</msdn-id>
  4741. <unmanaged>HRESULT IDirect3DDevice9::Present([In] const void* pSourceRect,[In] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const void* pDirtyRegion)</unmanaged>
  4742. <unmanaged-short>IDirect3DDevice9::Present</unmanaged-short>
  4743. </member>
  4744. <member name="M:SharpDX.Direct3D9.Device.GetBackBuffer(System.Int32,System.Int32,SharpDX.Direct3D9.BackBufferType)">
  4745. <summary>
  4746. <p>Retrieves a back buffer from the device's swap chain.</p>
  4747. </summary>
  4748. <param name="iSwapChain"><dd> <p>An unsigned integer specifying the swap chain.</p> </dd></param>
  4749. <param name="iBackBuffer"><dd> <p>Index of the back buffer object to return. Back buffers are numbered from 0 to the total number of back buffers minus one. A value of 0 returns the first back buffer, not the front buffer. The front buffer is not accessible through this method. Use <strong><see cref="M:SharpDX.Direct3D9.Device.GetFrontBufferData(System.Int32,SharpDX.Direct3D9.Surface)" /></strong> to retrieve a copy of the front buffer.</p> </dd></param>
  4750. <param name="type"><dd> <p>Stereo view is not supported in Direct3D 9, so the only valid value for this parameter is <see cref="F:SharpDX.Direct3D9.BackBufferType.Mono" />. </p> </dd></param>
  4751. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the returned back buffer surface. </p> </dd></returns>
  4752. <remarks>
  4753. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface results in a memory leak.</p>
  4754. </remarks>
  4755. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetBackBuffer']/*" />
  4756. <msdn-id>bb174379</msdn-id>
  4757. <unmanaged>HRESULT IDirect3DDevice9::GetBackBuffer([In] unsigned int iSwapChain,[In] unsigned int iBackBuffer,[In] D3DBACKBUFFER_TYPE Type,[Out] IDirect3DSurface9** ppBackBuffer)</unmanaged>
  4758. <unmanaged-short>IDirect3DDevice9::GetBackBuffer</unmanaged-short>
  4759. </member>
  4760. <member name="M:SharpDX.Direct3D9.Device.GetRasterStatus(System.Int32)">
  4761. <summary>
  4762. <p>Returns information describing the raster of the monitor on which the swap chain is presented.</p>
  4763. </summary>
  4764. <param name="iSwapChain"><dd> <p>An unsigned integer specifying the swap chain.</p> </dd></param>
  4765. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.RasterStatus" /></strong> structure filled with information about the position or other status of the raster on the monitor driven by this adapter. </p> </dd></returns>
  4766. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetRasterStatus']/*" />
  4767. <msdn-id>bb174402</msdn-id>
  4768. <unmanaged>HRESULT IDirect3DDevice9::GetRasterStatus([In] unsigned int iSwapChain,[Out] D3DRASTER_STATUS* pRasterStatus)</unmanaged>
  4769. <unmanaged-short>IDirect3DDevice9::GetRasterStatus</unmanaged-short>
  4770. </member>
  4771. <member name="M:SharpDX.Direct3D9.Device.SetDialogBoxMode(SharpDX.Mathematics.Interop.RawBool)">
  4772. <summary>
  4773. <p>This method allows the use of GDI dialog boxes in full-screen mode applications.</p>
  4774. </summary>
  4775. <param name="bEnableDialogs"><dd> <p><strong>TRUE</strong> to enable GDI dialog boxes, and <strong><see cref="F:SharpDX.Result.False" /></strong> to disable them.</p> </dd></param>
  4776. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> unless all of the following are true. </p><ul> <li>The application specified a back buffer format compatible with GDI, in other words, one of <see cref="F:SharpDX.Direct3D9.Format.X1R5G5B5" />, <see cref="F:SharpDX.Direct3D9.Format.R5G6B5" />, or <see cref="F:SharpDX.Direct3D9.Format.X8R8G8B8" />.</li> <li>The application specified no multisampling.</li> <li>The application specified <see cref="F:SharpDX.Direct3D9.SwapEffect.Discard" />.</li> <li>The application specified <see cref="F:SharpDX.Direct3D9.PresentFlags.LockableBackBuffer" />.</li> <li>The application did not specify <see cref="F:SharpDX.Direct3D9.CreateFlags.AdapterGroupDevice" />.</li> <li>The application is not between BeginScene and EndScene.</li> </ul></returns>
  4777. <remarks>
  4778. <p>The GDI dialog boxes must be created as child to the device window. They should also be created within the same thread that created the device because this enables the parent window to manage redrawing the child window.</p><p>The method has no effect for windowed mode applications, but this setting will be respected if the application resets the device into full-screen mode. If SetDialogBoxMode succeeds in a windowed mode application, any subsequent reset to full-screen mode will be checked against the restrictions listed above. Also, SetDialogBoxMode causes all back buffers on the swap chain to be discarded, so an application is expected to refresh its content for all back buffers after this call.</p>
  4779. </remarks>
  4780. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetDialogBoxMode']/*" />
  4781. <msdn-id>bb174432</msdn-id>
  4782. <unmanaged>HRESULT IDirect3DDevice9::SetDialogBoxMode([In] BOOL bEnableDialogs)</unmanaged>
  4783. <unmanaged-short>IDirect3DDevice9::SetDialogBoxMode</unmanaged-short>
  4784. </member>
  4785. <member name="M:SharpDX.Direct3D9.Device.SetGammaRamp(System.Int32,System.Int32,SharpDX.Direct3D9.GammaRamp@)">
  4786. <summary>
  4787. <p>Sets the gamma correction ramp for the implicit swap chain. This method will affect the entire screen (not just the active window if you are running in windowed mode).</p>
  4788. </summary>
  4789. <param name="iSwapChain"><dd> <p>Unsigned integer specifying the swap chain.</p> </dd></param>
  4790. <param name="flags"><dd> <p>Indicates whether correction should be applied. Gamma correction results in a more consistent display, but can incur processing overhead and should not be used frequently. Short-duration effects, such as flashing the whole screen red, should not be calibrated, but long-duration gamma changes should be calibrated. One of the following values can be set: </p> <p /> <table> <tr><th>Item</th><th>Description</th></tr> <tr><td> <p>D3DSGR_CALIBRATE</p> </td><td> <p>If a gamma calibrator is installed, the ramp will be modified before being sent to the device to account for the system and monitor response curves. If a calibrator is not installed, the ramp will be passed directly to the device.</p> </td></tr> <tr><td> <p>D3DSGR_NO_CALIBRATION</p> </td><td> <p>No gamma correction is applied. The supplied gamma table is transferred directly to the device.</p> </td></tr> </table> <p>?</p> </dd></param>
  4791. <param name="rampRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.GammaRamp" /></strong> structure, representing the gamma correction ramp to be set for the implicit swap chain. </p> </dd></param>
  4792. <remarks>
  4793. <p>There is always at least one swap chain (the implicit swap chain) for each device, because Direct3D 9 has one swap chain as a property of the device. The gamma ramp takes effect immediately; there is no wait for a vertical sync.</p><p>If the device does not support gamma ramps in the swap chain's current presentation mode (full-screen or windowed), no error return is given. Applications can check the <see cref="F:SharpDX.Direct3D9.Caps2.FullScreenGamma" /> and <see cref="F:SharpDX.Direct3D9.Caps2.CanCalibrateGamma" /> capability bits in the Caps2 member of the <see cref="T:SharpDX.Direct3D9.Capabilities" /> structure to determine the capabilities of the device and whether a calibrator is installed.</p><p>For windowed gamma correction presentation, use <strong><see cref="M:SharpDX.Direct3D9.SwapChain.Present(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Int32)" /></strong> if the hardware supports the feature. In DirectX 8, SetGammaRamp will set the gamma ramp only on a full-screen mode application. For more information about gamma correction, see Gamma (Direct3D 9).</p>
  4794. </remarks>
  4795. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetGammaRamp']/*" />
  4796. <msdn-id>bb174434</msdn-id>
  4797. <unmanaged>void IDirect3DDevice9::SetGammaRamp([In] unsigned int iSwapChain,[In] unsigned int Flags,[In] const D3DGAMMARAMP* pRamp)</unmanaged>
  4798. <unmanaged-short>IDirect3DDevice9::SetGammaRamp</unmanaged-short>
  4799. </member>
  4800. <member name="M:SharpDX.Direct3D9.Device.GetGammaRamp(System.Int32)">
  4801. <summary>
  4802. <p>Retrieves the gamma correction ramp for the swap chain.</p>
  4803. </summary>
  4804. <param name="iSwapChain"><dd> <p>An unsigned integer specifying the swap chain.</p> </dd></param>
  4805. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetGammaRamp']/*" />
  4806. <msdn-id>bb174390</msdn-id>
  4807. <unmanaged>void IDirect3DDevice9::GetGammaRamp([In] unsigned int iSwapChain,[Out] D3DGAMMARAMP* pRamp)</unmanaged>
  4808. <unmanaged-short>IDirect3DDevice9::GetGammaRamp</unmanaged-short>
  4809. </member>
  4810. <member name="M:SharpDX.Direct3D9.Device.CreateTexture(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Texture,System.IntPtr)">
  4811. <summary>
  4812. <p>Creates a texture resource.</p>
  4813. </summary>
  4814. <param name="width"><dd> <p>Width of the top-level of the texture, in pixels. The pixel dimensions of subsequent levels will be the truncated value of half of the previous level's pixel dimension (independently). Each dimension clamps at a size of 1 pixel. Thus, if the division by 2 results in 0, 1 will be taken instead. </p> </dd></param>
  4815. <param name="height"><dd> <p>Height of the top-level of the texture, in pixels. The pixel dimensions of subsequent levels will be the truncated value of half of the previous level's pixel dimension (independently). Each dimension clamps at a size of 1 pixel. Thus, if the division by 2 results in 0, 1 will be taken instead. </p> </dd></param>
  4816. <param name="levels"><dd> <p>Number of levels in the texture. If this is zero, Direct3D will generate all texture sublevels down to 1 by 1 pixels for hardware that supports mipmapped textures. Call <strong><see cref="M:SharpDX.Direct3D9.BaseTexture.GetLevelCount" /></strong> to see the number of levels generated. </p> </dd></param>
  4817. <param name="usage"><dd> <p>Usage can be 0, which indicates no usage value. However, if usage is desired, use a combination of one or more <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong> constants. It is good practice to match the usage parameter with the behavior flags in <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong>. </p> </dd></param>
  4818. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the format of all levels in the texture. </p> </dd></param>
  4819. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing the memory class into which the texture should be placed. </p> </dd></param>
  4820. <param name="textureOut"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface, representing the created texture resource. </p> </dd></param>
  4821. <param name="sharedHandleRef"><dd> <p>Reserved. Set this parameter to <strong><c>null</c></strong>. This parameter can be used in Direct3D 9 for Windows Vista to share resources.</p> </dd></param>
  4822. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  4823. <remarks>
  4824. <p>An application can discover support for Automatic Generation of Mipmaps (Direct3D 9) in a particular format by calling <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormat_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Direct3D9.ResourceType,SharpDX.Direct3D9.Format)" /></strong> with <see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" />. If <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormat_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Direct3D9.ResourceType,SharpDX.Direct3D9.Format)" /></strong> returns <see cref="F:SharpDX.Direct3D9.ResultCode.NoAutomaticGeneration" />, <strong><see cref="M:SharpDX.Direct3D9.Device.CreateTexture(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Texture,System.IntPtr)" /></strong> will succeed but it will return a one-level texture.</p><p>In Windows Vista CreateTexture can create a texture from a system memory reference allowing the application more flexibility over the use, allocation and deletion of the system memory. For example, an application could pass a GDI system memory bitmap reference and get a Direct3D texture interface around it. Using a system memory reference with CreateTexture has the following restrictions.</p><ul> <li>The pitch of the texture must be equal to the width multiplied by the number of bytes per pixel.</li> <li>Only textures with a single mipmap level are supported. The <em>Levels</em> argument must be 1.</li> <li>The <em>Pool</em> argument must be <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" />.</li> <li>The <em>pSharedHandle</em> argument must be a valid reference to a buffer that can hold the system memory point; <em>*pSharedHandle</em> must be a valid reference to system memory with a size in bytes of texture width * texture height * bytes per pixel of the texture format.</li> </ul>
  4825. </remarks>
  4826. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateTexture']/*" />
  4827. <msdn-id>bb174363</msdn-id>
  4828. <unmanaged>HRESULT IDirect3DDevice9::CreateTexture([In] unsigned int Width,[In] unsigned int Height,[In] unsigned int Levels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DTexture9** ppTexture,[In] void** pSharedHandle)</unmanaged>
  4829. <unmanaged-short>IDirect3DDevice9::CreateTexture</unmanaged-short>
  4830. </member>
  4831. <member name="M:SharpDX.Direct3D9.Device.CreateVolumeTexture(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VolumeTexture,System.IntPtr)">
  4832. <summary>
  4833. <p>Creates a volume texture resource.</p>
  4834. </summary>
  4835. <param name="width"><dd> <p>Width of the top-level of the volume texture, in pixels. This value must be a power of two if the <see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMapPow2" /> member of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> is set. The pixel dimensions of subsequent levels will be the truncated value of half of the previous level's pixel dimension (independently). Each dimension clamps at a size of 1 pixel. Thus, if the division by two results in 0 (zero), 1 will be taken instead. The maximum dimension that a driver supports (for width, height, and depth) can be found in MaxVolumeExtent in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd></param>
  4836. <param name="height"><dd> <p>Height of the top-level of the volume texture, in pixels. This value must be a power of two if the <see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMapPow2" /> member of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> is set. The pixel dimensions of subsequent levels will be the truncated value of half of the previous level's pixel dimension (independently). Each dimension clamps at a size of 1 pixel. Thus, if the division by 2 results in 0 (zero), 1 will be taken instead. The maximum dimension that a driver supports (for width, height, and depth) can be found in MaxVolumeExtent in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd></param>
  4837. <param name="depth"><dd> <p>Depth of the top-level of the volume texture, in pixels. This value must be a power of two if the <see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMapPow2" /> member of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> is set. The pixel dimensions of subsequent levels will be the truncated value of half of the previous level's pixel dimension (independently). Each dimension clamps at a size of 1 pixel. Thus, if the division by 2 results in 0 (zero), 1 will be taken instead. The maximum dimension that a driver supports (for width, height, and depth) can be found in MaxVolumeExtent in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd></param>
  4838. <param name="levels"><dd> <p>Number of levels in the texture. If this is zero, Direct3D will generate all texture sublevels down to 1x1 pixels for hardware that supports mipmapped volume textures. Call <strong><see cref="M:SharpDX.Direct3D9.BaseTexture.GetLevelCount" /></strong> to see the number of levels generated. </p> </dd></param>
  4839. <param name="usage"><dd> <p>Usage can be 0, which indicates no usage value. If usage is desired, use <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /> or <see cref="F:SharpDX.Direct3D9.Usage.SoftwareProcessing" />. For more information, see <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong>. </p> </dd></param>
  4840. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the format of all levels in the volume texture. </p> </dd></param>
  4841. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing the memory class into which the volume texture should be placed. </p> </dd></param>
  4842. <param name="volumeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> interface, representing the created volume texture resource. </p> </dd></param>
  4843. <param name="sharedHandleRef"><dd> <p>Reserved. Set this parameter to <strong><c>null</c></strong>. This parameter can be used in Direct3D 9 for Windows Vista to share resources.</p> </dd></param>
  4844. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  4845. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateVolumeTexture']/*" />
  4846. <msdn-id>bb174367</msdn-id>
  4847. <unmanaged>HRESULT IDirect3DDevice9::CreateVolumeTexture([In] unsigned int Width,[In] unsigned int Height,[In] unsigned int Depth,[In] unsigned int Levels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DVolumeTexture9** ppVolumeTexture,[In] void** pSharedHandle)</unmanaged>
  4848. <unmanaged-short>IDirect3DDevice9::CreateVolumeTexture</unmanaged-short>
  4849. </member>
  4850. <member name="M:SharpDX.Direct3D9.Device.CreateCubeTexture(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.CubeTexture,System.IntPtr)">
  4851. <summary>
  4852. <p>Creates a cube texture resource.</p>
  4853. </summary>
  4854. <param name="edgeLength"><dd> <p>Size of the edges of all the top-level faces of the cube texture. The pixel dimensions of subsequent levels of each face will be the truncated value of half of the previous level's pixel dimension (independently). Each dimension clamps at a size of 1 pixel. Thus, if the division by 2 results in 0 (zero), 1 will be taken instead. </p> </dd></param>
  4855. <param name="levels"><dd> <p>Number of levels in each face of the cube texture. If this is zero, Direct3D will generate all cube texture sublevels down to 1x1 pixels for each face for hardware that supports mipmapped cube textures. Call <strong><see cref="M:SharpDX.Direct3D9.BaseTexture.GetLevelCount" /></strong> to see the number of levels generated. </p> </dd></param>
  4856. <param name="usage"><dd> <p>Usage can be 0, which indicates no usage value. However, if usage is desired, use a combination of one or more <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong> constants. It is good practice to match the usage parameter in CreateCubeTexture with the behavior flags in <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong>. For more information, see Remarks. </p> </dd></param>
  4857. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the format of all levels in all faces of the cube texture. </p> </dd></param>
  4858. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing the memory class into which the cube texture should be placed. </p> </dd></param>
  4859. <param name="cubeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> interface, representing the created cube texture resource. </p> </dd></param>
  4860. <param name="sharedHandleRef"><dd> <p>Reserved. Set this parameter to <strong><c>null</c></strong>. This parameter can be used in Direct3D 9 for Windows Vista to share resources.</p> </dd></param>
  4861. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  4862. <remarks>
  4863. <p>A mipmap (texture) is a collection of successively downsampled (mipmapped) surfaces. On the other hand, a cube texture (created by <strong><see cref="M:SharpDX.Direct3D9.Device.CreateCubeTexture(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.CubeTexture,System.IntPtr)" /></strong>) is a collection of six textures (mipmaps), one for each face. All faces must be present in the cube texture. Also, a cube map surface must be the same pixel size in all three dimensions (x, y, and z).</p><p>An application can discover support for Automatic Generation of Mipmaps (Direct3D 9) in a particular format by calling <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormat_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Direct3D9.ResourceType,SharpDX.Direct3D9.Format)" /></strong> with <see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" />. If <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormat_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Direct3D9.ResourceType,SharpDX.Direct3D9.Format)" /></strong> returns <see cref="F:SharpDX.Direct3D9.ResultCode.NoAutomaticGeneration" />, <strong><see cref="M:SharpDX.Direct3D9.Device.CreateCubeTexture(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.CubeTexture,System.IntPtr)" /></strong> will succeed but it will return a one-level texture.</p>
  4864. </remarks>
  4865. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateCubeTexture']/*" />
  4866. <msdn-id>bb174355</msdn-id>
  4867. <unmanaged>HRESULT IDirect3DDevice9::CreateCubeTexture([In] unsigned int EdgeLength,[In] unsigned int Levels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DCubeTexture9** ppCubeTexture,[In] void** pSharedHandle)</unmanaged>
  4868. <unmanaged-short>IDirect3DDevice9::CreateCubeTexture</unmanaged-short>
  4869. </member>
  4870. <member name="M:SharpDX.Direct3D9.Device.CreateVertexBuffer(System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VertexBuffer,System.IntPtr)">
  4871. <summary>
  4872. <p>Creates a vertex buffer.</p>
  4873. </summary>
  4874. <param name="length"><dd> <p>Size of the vertex buffer, in bytes. For FVF vertex buffers, Length must be large enough to contain at least one vertex, but it need not be a multiple of the vertex size. Length is not validated for non-FVF buffers. See Remarks. </p> </dd></param>
  4875. <param name="usage"><dd> <p>Usage can be 0, which indicates no usage value. However, if usage is desired, use a combination of one or more <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong> constants. It is good practice to match the usage parameter in CreateVertexBuffer with the behavior flags in <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong>. For more information, see Remarks. </p> </dd></param>
  4876. <param name="vertexFormat"><dd> <p>Combination of <see cref="T:SharpDX.Direct3D9.VertexFormat" />, a usage specifier that describes the vertex format of the vertices in this buffer. If this parameter is set to a valid FVF code, the created vertex buffer is an FVF vertex buffer (see Remarks). Otherwise, if this parameter is set to zero, the vertex buffer is a non-FVF vertex buffer. </p> </dd></param>
  4877. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing a valid memory class into which to place the resource. Do not set to <see cref="F:SharpDX.Direct3D9.Pool.Scratch" />.</p> </dd></param>
  4878. <param name="vertexBufferOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong> interface, representing the created vertex buffer resource. </p> </dd></param>
  4879. <param name="sharedHandleRef"><dd> <p>Reserved. Set this parameter to <strong><c>null</c></strong>. This parameter can be used in Direct3D 9 for Windows Vista to share resources.</p> </dd></param>
  4880. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  4881. <remarks>
  4882. <p>A vertex buffer can be used with either hardware or software vertex processing. This is determined by how the device and the vertex buffer are created.</p><p>When a device is created, CreateDevice uses the behavior flag to determine whether to process vertices in hardware or software. There are three possibilities:</p><ul> <li>Process vertices in hardware by setting <see cref="F:SharpDX.Direct3D9.CreateFlags.HardwareVertexProcessing" />.</li> <li>Process vertices in software by setting <see cref="F:SharpDX.Direct3D9.CreateFlags.SoftwareVertexProcessing" />.</li> <li>Process vertices in either hardware or software by setting <see cref="F:SharpDX.Direct3D9.CreateFlags.MixedVertexProcessing" />.</li> </ul><p>Mixed-mode devices might need to switch between software and hardware processing (using <strong><see cref="M:SharpDX.Direct3D9.Device.SetSoftwareVertexProcessing(SharpDX.Mathematics.Interop.RawBool)" /></strong>) after the device is created. </p><p>When a vertex buffer is created, CreateVertexBuffer uses the usage parameter to decide whether to process vertices in hardware or software.</p><ul> <li>If CreateDevice uses <see cref="F:SharpDX.Direct3D9.CreateFlags.HardwareVertexProcessing" />, CreateVertexBuffer must use 0.</li> <li>If CreateDevice uses <see cref="F:SharpDX.Direct3D9.CreateFlags.SoftwareVertexProcessing" />, CreateVertexBuffer must use either 0 or <see cref="F:SharpDX.Direct3D9.Usage.SoftwareProcessing" />. For either value, vertices will be processed in software.</li> <li>If CreateDevice uses <see cref="F:SharpDX.Direct3D9.CreateFlags.MixedVertexProcessing" />, CreateVertexBuffer can use either 0 or <see cref="F:SharpDX.Direct3D9.Usage.SoftwareProcessing" />.</li> </ul><p>To use a vertex buffer with a mixed mode device, create a single vertex buffer which can be used for both hardware or software processing. Use <strong><see cref="M:SharpDX.Direct3D9.Device.SetStreamSource(System.Int32,SharpDX.Direct3D9.VertexBuffer,System.Int32,System.Int32)" /></strong> to set the current vertex buffer and use <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderState(SharpDX.Direct3D9.RenderState,System.Boolean)" /></strong>, if necessary, to change the device behavior to match. It is recommended that the vertex buffer usage matches the device behavior. Note that a vertex buffer created for software processing cannot be located in video memory.</p><p>The <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface supports rendering of primitives using vertex data stored in vertex buffer objects. Vertex buffers are created from the <see cref="T:SharpDX.Direct3D9.Device" />, and are usable only with the <see cref="T:SharpDX.Direct3D9.Device" /> object from which they are created.</p><p>When set to a nonzero value, which must be a valid FVF code, the FVF parameter indicates that the buffer content is to be characterized by an FVF code. A vertex buffer that is created with an FVF code is referred to as an FVF vertex buffer. For more information, see FVF Vertex Buffers (Direct3D 9). </p><p>Non-FVF buffers can be used to interleave data during multipass rendering or multitexture rendering in a single pass. To do this, one buffer contains geometry data and the others contain texture coordinates for each texture to be rendered. When rendering, the buffer containing the geometry data is interleaved with each of the buffers containing the texture coordinates. If FVF buffers were used instead, each of them would need to contain identical geometry data in addition to the texture coordinate data specific to each texture rendered. This would result in either a speed or memory penalty, depending on the strategy used. For more information about texture coordinates, see Texture Coordinates (Direct3D 9).</p>
  4883. </remarks>
  4884. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateVertexBuffer']/*" />
  4885. <msdn-id>bb174364</msdn-id>
  4886. <unmanaged>HRESULT IDirect3DDevice9::CreateVertexBuffer([In] unsigned int Length,[In] D3DUSAGE Usage,[In] D3DFVF FVF,[In] D3DPOOL Pool,[Out, Fast] IDirect3DVertexBuffer9** ppVertexBuffer,[In] void** pSharedHandle)</unmanaged>
  4887. <unmanaged-short>IDirect3DDevice9::CreateVertexBuffer</unmanaged-short>
  4888. </member>
  4889. <member name="M:SharpDX.Direct3D9.Device.CreateIndexBuffer(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.IndexBuffer,System.IntPtr)">
  4890. <summary>
  4891. <p>Creates an index buffer.</p>
  4892. </summary>
  4893. <param name="length"><dd> <p>Size of the index buffer, in bytes. </p> </dd></param>
  4894. <param name="usage"><dd> <p>Usage can be 0, which indicates no usage value. However, if usage is desired, use a combination of one or more <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong> constants. It is good practice to match the usage parameter in CreateIndexBuffer with the behavior flags in <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong>. For more information, see Remarks. </p> </dd></param>
  4895. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the format of the index buffer. For more information, see Remarks. The valid settings are the following: </p> <p /> <table> <tr><th>Item</th><th>Description</th></tr> <tr><td> <p><see cref="F:SharpDX.Direct3D9.Format.Index16" /></p> </td><td> <p>Indices are 16 bits each.</p> </td></tr> <tr><td> <p><see cref="F:SharpDX.Direct3D9.Format.Index32" /></p> </td><td> <p>Indices are 32 bits each.</p> </td></tr> </table> <p>?</p> </dd></param>
  4896. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing a valid memory class into which to place the resource. </p> </dd></param>
  4897. <param name="indexBufferOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface, representing the created index buffer resource. </p> </dd></param>
  4898. <param name="sharedHandleRef"><dd> <p>This parameter can be used in Direct3D?9 for Windows?Vista to share resources; set it to <strong><c>null</c></strong> to not share a resource. This parameter is not used in Direct3D?9 for operating systems earlier than Windows?Vista; set it to <strong><c>null</c></strong>. </p> </dd></param>
  4899. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY. </p></returns>
  4900. <remarks>
  4901. <p>Index buffers are memory resources used to hold indices, they are similar to both surfaces and vertex buffers. The use of index buffers enables Direct3D to avoid unnecessary data copying and to place the buffer in the optimal memory type for the expected usage.</p><p>To use index buffers, create an index buffer, lock it, fill it with indices, unlock it, pass it to <strong><see cref="M:SharpDX.Direct3D9.Device.SetIndices(SharpDX.Direct3D9.IndexBuffer)" /></strong>, set up the vertices, set up the vertex shader, and call <strong><see cref="M:SharpDX.Direct3D9.Device.DrawIndexedPrimitive(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" /></strong> for rendering.</p><p>The MaxVertexIndex member of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure indicates the types of index buffers that are valid for rendering.</p>
  4902. </remarks>
  4903. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateIndexBuffer']/*" />
  4904. <msdn-id>bb174357</msdn-id>
  4905. <unmanaged>HRESULT IDirect3DDevice9::CreateIndexBuffer([In] unsigned int Length,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DIndexBuffer9** ppIndexBuffer,[In] void** pSharedHandle)</unmanaged>
  4906. <unmanaged-short>IDirect3DDevice9::CreateIndexBuffer</unmanaged-short>
  4907. </member>
  4908. <member name="M:SharpDX.Direct3D9.Device.CreateRenderTarget(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.IntPtr)">
  4909. <summary>
  4910. <p>Creates a render-target surface.</p>
  4911. </summary>
  4912. <param name="width"><dd> <p>Width of the render-target surface, in pixels. </p> </dd></param>
  4913. <param name="height"><dd> <p>Height of the render-target surface, in pixels. </p> </dd></param>
  4914. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the format of the render target. </p> </dd></param>
  4915. <param name="multiSample"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.MultisampleType" /></strong> enumerated type, which describes the multisampling buffer type. This parameter specifies the antialiasing type for this render target. When this surface is passed to <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderTarget(System.Int32,SharpDX.Direct3D9.Surface)" /></strong>, its multisample type must be the same as that of the depth-stencil set by <strong><see cref="M:SharpDX.Direct3D9.Device.SetDepthStencilSurface(SharpDX.Direct3D9.Surface)" /></strong>. </p> </dd></param>
  4916. <param name="multisampleQuality"><dd> <p>Quality level. The valid range is between zero and one less than the level returned by pQualityLevels used by <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceMultiSampleType_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.MultisampleType,System.Int32@)" /></strong>. Passing a larger value returns the error, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. The MultisampleQuality values of paired render targets, depth stencil surfaces, and the multisample type must all match.</p> </dd></param>
  4917. <param name="lockable"><dd> <p>Render targets are not lockable unless the application specifies <strong>TRUE</strong> for Lockable.</p> <p>Note that lockable render targets reduce performance on some graphics hardware. The readback performance (moving data from video memory to system memory) depends on the type of hardware used (AGP vs. PCI Express) and is usually far lower than upload performance (moving data from system to video memory). If you need read access to render targets, use <strong>GetRenderTargetData</strong> instead of lockable render targets.</p> </dd></param>
  4918. <param name="sharedHandleRef"><dd> <p>Reserved. Set this parameter to <strong><c>null</c></strong>. This parameter can be used in Direct3D 9 for Windows Vista to share resources.</p> </dd></param>
  4919. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. </p> </dd></returns>
  4920. <remarks>
  4921. <p>Render-target surfaces are placed in the <see cref="F:SharpDX.Direct3D9.Pool.Default" /> memory class.</p><p>The creation of lockable, multisampled render targets is not supported.</p>
  4922. </remarks>
  4923. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateRenderTarget']/*" />
  4924. <msdn-id>bb174361</msdn-id>
  4925. <unmanaged>HRESULT IDirect3DDevice9::CreateRenderTarget([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Lockable,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle)</unmanaged>
  4926. <unmanaged-short>IDirect3DDevice9::CreateRenderTarget</unmanaged-short>
  4927. </member>
  4928. <member name="M:SharpDX.Direct3D9.Device.CreateDepthStencilSurface(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.IntPtr)">
  4929. <summary>
  4930. <p>Creates a depth-stencil resource.</p>
  4931. </summary>
  4932. <param name="width"><dd> <p>Width of the depth-stencil surface, in pixels. </p> </dd></param>
  4933. <param name="height"><dd> <p>Height of the depth-stencil surface, in pixels. </p> </dd></param>
  4934. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the format of the depth-stencil surface. This value must be one of the enumerated depth-stencil formats for this device.</p> </dd></param>
  4935. <param name="multiSample"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.MultisampleType" /></strong> enumerated type, describing the multisampling buffer type. This value must be one of the allowed multisample types. When this surface is passed to <strong><see cref="M:SharpDX.Direct3D9.Device.SetDepthStencilSurface(SharpDX.Direct3D9.Surface)" /></strong>, its multisample type must be the same as that of the render target set by <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderTarget(System.Int32,SharpDX.Direct3D9.Surface)" /></strong>.</p> </dd></param>
  4936. <param name="multisampleQuality"><dd> <p>Quality level. The valid range is between zero and one less than the level returned by pQualityLevels used by <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceMultiSampleType_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.MultisampleType,System.Int32@)" /></strong>. Passing a larger value returns the error <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. The MultisampleQuality values of paired render targets, depth stencil surfaces, and the MultiSample type must all match.</p> </dd></param>
  4937. <param name="discard"><dd> <p>Set this flag to <strong>TRUE</strong> to enable z-buffer discarding, and <strong><see cref="F:SharpDX.Result.False" /></strong> otherwise. If this flag is set, the contents of the depth stencil buffer will be invalid after calling either <strong><see cref="M:SharpDX.Direct3D9.Device.Present" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.Device.SetDepthStencilSurface(SharpDX.Direct3D9.Surface)" /></strong> with a different depth surface.</p> <p>This flag has the same behavior as the constant, <see cref="F:SharpDX.Direct3D9.PresentFlags.DiscardDepthStencil" />, in <see cref="T:SharpDX.Direct3D9.PresentFlags" />.</p> </dd></param>
  4938. <param name="sharedHandleRef"><dd> <p>Reserved. Set this parameter to <strong><c>null</c></strong>. This parameter can be used in Direct3D 9 for Windows Vista to share resources.</p> </dd></param>
  4939. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the created depth-stencil surface resource. </p> </dd></returns>
  4940. <remarks>
  4941. <p>The memory class of the depth-stencil buffer is always <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</p>
  4942. </remarks>
  4943. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateDepthStencilSurface']/*" />
  4944. <msdn-id>bb174356</msdn-id>
  4945. <unmanaged>HRESULT IDirect3DDevice9::CreateDepthStencilSurface([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Discard,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle)</unmanaged>
  4946. <unmanaged-short>IDirect3DDevice9::CreateDepthStencilSurface</unmanaged-short>
  4947. </member>
  4948. <member name="M:SharpDX.Direct3D9.Device.UpdateSurface(SharpDX.Direct3D9.Surface,System.Nullable{SharpDX.Mathematics.Interop.RawRectangle},SharpDX.Direct3D9.Surface,System.Nullable{SharpDX.Mathematics.Interop.RawPoint})">
  4949. <summary>
  4950. <p>Copies rectangular subsets of pixels from one surface to another. </p>
  4951. </summary>
  4952. <param name="sourceSurfaceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the source surface. This parameter must point to a different surface than pDestinationSurface. </p> </dd></param>
  4953. <param name="sourceRectRef"><dd> <p>Pointer to a rectangle on the source surface. Specifying <strong><c>null</c></strong> for this parameter causes the entire surface to be copied. </p> </dd></param>
  4954. <param name="destinationSurfaceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the destination surface.</p> </dd></param>
  4955. <param name="destPointRef"><dd> <p>Pointer to the upper left corner of the destination rectangle. Specifying <strong><c>null</c></strong> for this parameter causes the entire surface to be copied. </p> </dd></param>
  4956. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  4957. <remarks>
  4958. <p>This method is similar to CopyRects in DirectX 8.</p><p>This function has the following restrictions.</p><ul> <li>The source surface must have been created with <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" />.</li> <li>The destination surface must have been created with <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</li> <li>Neither surface can be locked or holding an outstanding device context.</li> <li>Neither surface can be created with multisampling. The only valid flag for both surfaces is <see cref="F:SharpDX.Direct3D9.MultisampleType.None" />.</li> <li>The surface format cannot be a depth stencil format.</li> <li>The source and dest rects must fit within the surface.</li> <li>No stretching or shrinking is allowed (the rects must be the same size).</li> <li>The source format must match the dest format.</li> </ul><p>The following table shows the supported combinations.</p><table> <tr><th /><th /><th>Dest formats</th><th /><th /><th /></tr> <tr><th /><td /><td>Texture</td><td>RT texture</td><td>RT</td><td>Off-screen plain</td></tr> <tr><th>Src formats</th><td>Texture</td><td>Yes</td><td>Yes</td><td>Yes*</td><td>Yes</td></tr> <tr><th /><td>RT texture</td><td>No</td><td>No</td><td>No</td><td>No</td></tr> <tr><th /><td>RT</td><td>No</td><td>No</td><td>No</td><td>No</td></tr> <tr><th /><td>Off-screen plain</td><td>Yes</td><td>Yes</td><td>Yes</td><td>Yes</td></tr> </table><p>?</p><p>* If the driver does not support the requested copy, it will be emulated using lock and copy.</p><p>If the application needs to copy data from a <see cref="F:SharpDX.Direct3D9.Pool.Default" /> render target to a <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /> surface, it can use <strong>GetRenderTargetData</strong>.</p>
  4959. </remarks>
  4960. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::UpdateSurface']/*" />
  4961. <msdn-id>bb205857</msdn-id>
  4962. <unmanaged>HRESULT IDirect3DDevice9::UpdateSurface([In] IDirect3DSurface9* pSourceSurface,[In, Optional] const RECT* pSourceRect,[In] IDirect3DSurface9* pDestinationSurface,[In, Optional] const POINT* pDestPoint)</unmanaged>
  4963. <unmanaged-short>IDirect3DDevice9::UpdateSurface</unmanaged-short>
  4964. </member>
  4965. <member name="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)">
  4966. <summary>
  4967. <p>Updates the dirty portions of a texture.</p>
  4968. </summary>
  4969. <param name="sourceTextureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface, representing the source texture. The source texture must be in system memory (<see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" />). </p> </dd></param>
  4970. <param name="destinationTextureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface, representing the destination texture. The destination texture must be in the <see cref="F:SharpDX.Direct3D9.Pool.Default" /> memory pool. </p> </dd></param>
  4971. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  4972. <remarks>
  4973. <p>You can dirty a portion of a texture by locking it, or by calling one of the following methods. </p><ul> <li> <strong><see cref="M:SharpDX.Direct3D9.CubeTexture.AddDirtyRectangle(SharpDX.Direct3D9.CubeMapFace)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Texture.AddDirtyRectangle(System.IntPtr)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.VolumeTexture.AddDirtyBox(System.IntPtr)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong> </li> </ul><p><strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong> retrieves the dirty portions of the texture by calculating what has been accumulated since the last update operation.</p><p>For performance reasons, dirty regions are only recorded for level zero of a texture. For sublevels, it is assumed that the corresponding (scaled) rectangle or box is also dirty. Dirty regions are automatically recorded when LockRect or <strong><see cref="M:SharpDX.Direct3D9.VolumeTexture.LockBox(System.Int32,SharpDX.Direct3D9.LockedBox@,System.IntPtr,SharpDX.Direct3D9.LockFlags)" /></strong> is called without <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" />. Also, the destination surface of <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong> is marked dirty.</p><p>This method fails if the textures are of different types, if their bottom-level buffers are of different sizes, or if their matching levels do not match. For example, consider a six-level source texture with the following dimensions. </p><pre> 32x16, 16x8, 8x4, 4x2, 2x1, 1x1
  4974. </pre><p>This six-level source texture could be the source for the following one-level destination. </p><pre> 1x1
  4975. </pre><p>For the following two-level destination. </p><pre> 2x1, 1x1
  4976. </pre><p>Or, for the following three-level destination. </p><pre> 4x2, 2x1, 1x1
  4977. </pre><p>In addition, this method will fail if the textures are of different formats. If the destination texture has fewer levels than the source, only the matching levels are copied. If the source texture has fewer levels than the destination, the method will fail. </p><p>If the source texture has dirty regions, the copy can be optimized by restricting the copy to only those regions. It is not guaranteed that only those bytes marked dirty will be copied.</p><p>Here are the possibilities for source and destination surface combinations:</p><ul> <li>If pSourceTexture is a non-autogenerated mipmap and pDestinationTexture is an autogenerated mipmap, only the topmost matching level is updated, and the destination sublevels are regenerated. All other source sublevels are ignored.</li> <li>If both pSourceTexture and pDestinationTexture are autogenerated mipmaps, only the topmost matching level is updated. The sublevels from the source are ignored and the destination sublevels are regenerated.</li> <li>If pSourceTexture is an autogenerated mipmap and pDestinationTexture a non-autogenerated mipmap, UpdateTexture will fail.</li> </ul>
  4978. </remarks>
  4979. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::UpdateTexture']/*" />
  4980. <msdn-id>bb205858</msdn-id>
  4981. <unmanaged>HRESULT IDirect3DDevice9::UpdateTexture([In] IDirect3DBaseTexture9* pSourceTexture,[In] IDirect3DBaseTexture9* pDestinationTexture)</unmanaged>
  4982. <unmanaged-short>IDirect3DDevice9::UpdateTexture</unmanaged-short>
  4983. </member>
  4984. <member name="M:SharpDX.Direct3D9.Device.GetRenderTargetData(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)">
  4985. <summary>
  4986. <p>Copies the render-target data from device memory to system memory.</p>
  4987. </summary>
  4988. <param name="renderTargetRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> object, representing a render target. </p> </dd></param>
  4989. <param name="destSurfaceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> object, representing a destination surface. </p> </dd></param>
  4990. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.DriverInternalError" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  4991. <remarks>
  4992. <p>The destination surface must be either an off-screen plain surface or a level of a texture (mipmap or cube texture) created with <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" />.</p><p>The source surface must be a regular render target or a level of a render-target texture (mipmap or cube texture) created with POOL_DEFAULT.</p><p>This method will fail if:</p><ul> <li>The render target is multisampled.</li> <li>The source render target is a different size than the destination surface.</li> <li>The source render target and destination surface formats do not match.</li> </ul>
  4993. </remarks>
  4994. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetRenderTargetData']/*" />
  4995. <msdn-id>bb174405</msdn-id>
  4996. <unmanaged>HRESULT IDirect3DDevice9::GetRenderTargetData([In] IDirect3DSurface9* pRenderTarget,[In] IDirect3DSurface9* pDestSurface)</unmanaged>
  4997. <unmanaged-short>IDirect3DDevice9::GetRenderTargetData</unmanaged-short>
  4998. </member>
  4999. <member name="M:SharpDX.Direct3D9.Device.GetFrontBufferData(System.Int32,SharpDX.Direct3D9.Surface)">
  5000. <summary>
  5001. <p>Generates a copy of the device's front buffer and places that copy in a system memory buffer provided by the application. </p>
  5002. </summary>
  5003. <param name="iSwapChain"><dd> <p>An unsigned integer specifying the swap chain.</p> </dd></param>
  5004. <param name="destSurfaceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface that will receive a copy of the contents of the front buffer. The data is returned in successive rows with no intervening space, starting from the vertically highest row on the device's output to the lowest.</p> <p /> <p>For windowed mode, the size of the destination surface should be the size of the desktop. For full-screen mode, the size of the destination surface should be the screen size. </p> </dd></param>
  5005. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.DriverInternalError" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  5006. <remarks>
  5007. <p>The buffer pointed to by pDestSurface will be filled with a representation of the front buffer, converted to the standard 32 bits per pixel format <see cref="F:SharpDX.Direct3D9.Format.A8R8G8B8" />. </p><p>This method is the only way to capture an antialiased screen shot.</p><p>This function is very slow, by design, and should not be used in any performance-critical path.</p><p>For more information, see Lost Devices and Retrieved Data.</p>
  5008. </remarks>
  5009. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetFrontBufferData']/*" />
  5010. <msdn-id>bb174388</msdn-id>
  5011. <unmanaged>HRESULT IDirect3DDevice9::GetFrontBufferData([In] unsigned int iSwapChain,[In] IDirect3DSurface9* pDestSurface)</unmanaged>
  5012. <unmanaged-short>IDirect3DDevice9::GetFrontBufferData</unmanaged-short>
  5013. </member>
  5014. <member name="M:SharpDX.Direct3D9.Device.StretchRectangle(SharpDX.Direct3D9.Surface,System.Nullable{SharpDX.Mathematics.Interop.RawRectangle},SharpDX.Direct3D9.Surface,System.Nullable{SharpDX.Mathematics.Interop.RawRectangle},SharpDX.Direct3D9.TextureFilter)">
  5015. <summary>
  5016. <p>Copy the contents of the source rectangle to the destination rectangle. The source rectangle can be stretched and filtered by the copy. This function is often used to change the aspect ratio of a video stream.</p>
  5017. </summary>
  5018. <param name="sourceSurfaceRef"><dd> <p>Pointer to the source surface. See <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong>.</p> </dd></param>
  5019. <param name="sourceRectRef"><dd> <p>Pointer to the source rectangle. A <strong><c>null</c></strong> for this parameter causes the entire source surface to be used.</p> </dd></param>
  5020. <param name="destSurfaceRef"><dd> <p>Pointer to the destination surface. See <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong>.</p> </dd></param>
  5021. <param name="destRectRef"><dd> <p>Pointer to the destination rectangle. A <strong><c>null</c></strong> for this parameter causes the entire destination surface to be used.</p> </dd></param>
  5022. <param name="filter"><dd> <p>Filter type. Allowable values are <see cref="F:SharpDX.Direct3D9.TextureFilter.None" />, <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" />, or <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" />. For more information, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p> </dd></param>
  5023. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5024. <remarks>
  5025. <p>StretchRect Restrictions</p><ul> <li>Driver support varies. See the section on driver support (below) to see which drivers support which source and destination formats.</li> <li>The source and destination surfaces must be created in the default memory pool.</li> <li>If filtering is specified, you must set the appropriate filter caps (see StretchRectFilterCaps in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>).</li> <li>Stretching is not supported between source and destination rectangles on the same surface.</li> <li>Stretching is not supported if the destination surface is an off-screen plain surface but the source is not.</li> <li>You many not stretch between source and destination rectangles if either surface is in a compressed format (see Using Compressed Textures (Direct3D 9)).</li> <li>Stretching supports color-space conversion from YUV to high-precision RGBA only. Since color conversion support is not supported by software emulation, use <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormatConversion_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format)" /></strong> to test the hardware for color conversion support.</li> <li>If the source or destination surface is a texture surface (or a cube texture surface), you must use a Direct3D 9 driver that supports <see cref="F:SharpDX.Direct3D9.DeviceCaps2.CanStretchRectFromTextures" /> (see <see cref="T:SharpDX.Direct3D9.DeviceCaps2" />).</li> </ul><p>Additional Restrictions for Depth and Stencil Surfaces</p><ul> <li>The source and destination surfaces must be plain depth stencil surfaces (not textures) (see <strong><see cref="M:SharpDX.Direct3D9.Device.CreateDepthStencilSurface(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.IntPtr)" /></strong>).</li> <li>Neither of the surfaces can be discardable.</li> <li>The entire surface must be copied (that is: sub-rectangle copies are not allowed).</li> <li>Format conversion, stretching, and shrinking are not supported.</li> <li>StretchRect cannot be called inside of a BeginScene/EndScene pair.</li> </ul><p>Using StretchRect to downsample a Multisample Rendertarget</p><p>You can use StretchRect to copy from one rendertarget to another. If the source rendertarget is multisampled, this results in downsampling the source rendertarget. For instance you could:</p><ul> <li>Create a multisampled rendertarget.</li> <li>Create a second rendertarget of the same size, that is not multisampled.</li> <li>Copy (using StretchRect the multisample rendertarget to the second rendertarget.</li> </ul><p>Note that use of the extra surface involved in using StretchRect to downsample a Multisample Rendertarget will result in a performance hit.</p><p>Driver Support</p><p>There are many restrictions as to which surface combinations are valid for StretchRect. Factors include whether the driver is a Direct3D 9 driver or older, and whether the operation will result in stretching/shrinking. Since applications are not expected to recognize if the driver is a Direct3D 9 driver or not, the runtime will automatically set a new cap, <see cref="F:SharpDX.Direct3D9.DeviceCaps2.CanStretchRectFromTextures" /> cap (see <see cref="T:SharpDX.Direct3D9.DeviceCaps2" />), for Direct3D 9-level drivers and above.</p><table> <tr><th>DirectX 8 Driver (no stretching)</th><th /><th /><th /><th /><th /></tr> <tr><th /><th /><th>Dest formats</th><th /><th /><th /></tr> <tr><th /><th /><th>Texture</th><th>RT texture</th><th>RT</th><th>Off-screen plain</th></tr> <tr><th>Src formats</th><th>Texture</th><td>No</td><td>No</td><td>No</td><td>No</td></tr> <tr><th /><th>RT texture</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> <tr><th /><th>RT</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> <tr><th /><th>Off-screen plain</th><td>Yes</td><td>Yes</td><td>Yes</td><td>Yes</td></tr> </table><p>?</p><table> <tr><th>DirectX 8 Driver (stretching)</th><th /><th /><th /><th /><th /></tr> <tr><th /><th /><th>Dest formats</th><th /><th /><th /></tr> <tr><th /><th /><th>Texture</th><th>RT texture</th><th>RT</th><th>Off-screen plain</th></tr> <tr><th>Src formats</th><th>Texture</th><td>No</td><td>No</td><td>No</td><td>No</td></tr> <tr><th /><th>RT texture</th><td>No</td><td>No</td><td>No</td><td>No</td></tr> <tr><th /><th>RT</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> <tr><th /><th>Off-screen plain</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> </table><p>?</p><table> <tr><th>Direct3D 9 Driver (no stretching)</th><th /><th /><th /><th /><th /></tr> <tr><th /><th /><th>Dest formats</th><th /><th /><th /></tr> <tr><th /><th /><th>Texture</th><th>RT texture</th><th>RT</th><th>Off-screen plain</th></tr> <tr><th>Src formats</th><th>Texture</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> <tr><th /><th>RT texture</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> <tr><th /><th>RT</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> <tr><th /><th>Off-screen plain</th><td>No</td><td>Yes</td><td>Yes</td><td>Yes</td></tr> </table><p>?</p><table> <tr><th>Direct3D 9 Driver (stretching)</th><th /><th /><th /><th /><th /></tr> <tr><th /><th /><th>Dest formats</th><th /><th /><th /></tr> <tr><th /><th /><th>Texture</th><th>RT texture</th><th>RT</th><th>Off-screen plain</th></tr> <tr><th>Src formats</th><th>Texture</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> <tr><th /><th>RT texture</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> <tr><th /><th>RT</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> <tr><th /><th>Off-screen plain</th><td>No</td><td>Yes</td><td>Yes</td><td>No</td></tr> </table><p>?</p>
  5026. </remarks>
  5027. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::StretchRect']/*" />
  5028. <msdn-id>bb174471</msdn-id>
  5029. <unmanaged>HRESULT IDirect3DDevice9::StretchRect([In] IDirect3DSurface9* pSourceSurface,[In, Optional] const RECT* pSourceRect,[In] IDirect3DSurface9* pDestSurface,[In, Optional] const RECT* pDestRect,[In] D3DTEXTUREFILTERTYPE Filter)</unmanaged>
  5030. <unmanaged-short>IDirect3DDevice9::StretchRect</unmanaged-short>
  5031. </member>
  5032. <member name="M:SharpDX.Direct3D9.Device.ColorFill(SharpDX.Direct3D9.Surface,System.Nullable{SharpDX.Mathematics.Interop.RawRectangle},SharpDX.Mathematics.Interop.RawColorBGRA)">
  5033. <summary>
  5034. <p>Allows an application to fill a rectangular area of a <see cref="F:SharpDX.Direct3D9.Pool.Default" /> surface with a specified color.</p>
  5035. </summary>
  5036. <param name="surfaceRef"><dd> <p>Pointer to the surface to be filled.</p> </dd></param>
  5037. <param name="rectRef"><dd> <p>Pointer to the source rectangle. Using <strong><c>null</c></strong> means that the entire surface will be filled.</p> </dd></param>
  5038. <param name="color"><dd> <p>Color used for filling.</p> </dd></param>
  5039. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5040. <remarks>
  5041. <p>This method can only be applied to a render target, a render-target texture surface, or an off-screen plain surface with a pool type of <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</p><p><strong><see cref="M:SharpDX.Direct3D9.Device.ColorFill(SharpDX.Direct3D9.Surface,SharpDX.Mathematics.Interop.RawColorBGRA)" /></strong> will work with all formats. However, when using a reference or software device, the only formats supported are <see cref="F:SharpDX.Direct3D9.Format.X1R5G5B5" />, <see cref="F:SharpDX.Direct3D9.Format.A1R5G5B5" />, <see cref="F:SharpDX.Direct3D9.Format.R5G6B5" />, <see cref="F:SharpDX.Direct3D9.Format.X8R8G8B8" />, <see cref="F:SharpDX.Direct3D9.Format.A8R8G8B8" />, <see cref="F:SharpDX.Direct3D9.Format.Yuy2" />, <see cref="F:SharpDX.Direct3D9.Format.G8R8_G8B8" />, <see cref="F:SharpDX.Direct3D9.Format.Uyvy" />, <see cref="F:SharpDX.Direct3D9.Format.R8G8_B8G8" />, <see cref="F:SharpDX.Direct3D9.Format.R16F" />, <see cref="F:SharpDX.Direct3D9.Format.G16R16F" />, <see cref="F:SharpDX.Direct3D9.Format.A16B16G16R16F" />, <see cref="F:SharpDX.Direct3D9.Format.R32F" />, <see cref="F:SharpDX.Direct3D9.Format.G32R32F" />, and <see cref="F:SharpDX.Direct3D9.Format.A32B32G32R32F" />.</p><p>When using a DirectX 7 or DirectX 8.x driver, the only YUV formats supported are <see cref="F:SharpDX.Direct3D9.Format.Uyvy" /> and <see cref="F:SharpDX.Direct3D9.Format.Yuy2" />.</p>
  5042. </remarks>
  5043. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::ColorFill']/*" />
  5044. <msdn-id>bb174353</msdn-id>
  5045. <unmanaged>HRESULT IDirect3DDevice9::ColorFill([In] IDirect3DSurface9* pSurface,[In, Optional] const RECT* pRect,[In] D3DCOLOR color)</unmanaged>
  5046. <unmanaged-short>IDirect3DDevice9::ColorFill</unmanaged-short>
  5047. </member>
  5048. <member name="M:SharpDX.Direct3D9.Device.CreateOffscreenPlainSurface(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.IntPtr)">
  5049. <summary>
  5050. <p>Create an off-screen surface.</p>
  5051. </summary>
  5052. <param name="width"><dd> <p>Width of the surface.</p> </dd></param>
  5053. <param name="height"><dd> <p>Height of the surface.</p> </dd></param>
  5054. <param name="format"><dd> <p>Format of the surface. See <see cref="T:SharpDX.Direct3D9.Format" />. </p> </dd></param>
  5055. <param name="pool"><dd> <p>Surface pool type. See <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong>.</p> </dd></param>
  5056. <param name="sharedHandleRef"><dd> <p>Reserved. Set this parameter to <strong><c>null</c></strong>. This parameter can be used in Direct3D 9 for Windows Vista to share resources.</p> </dd></param>
  5057. <returns><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface created.</p> </dd></returns>
  5058. <remarks>
  5059. <p><see cref="F:SharpDX.Direct3D9.Pool.Scratch" /> will return a surface that has identical characteristics to a surface created by the DirectX 8.x method CreateImageSurface.</p><p><see cref="F:SharpDX.Direct3D9.Pool.Default" /> is the appropriate pool for use with the <strong><see cref="M:SharpDX.Direct3D9.Device.StretchRectangle(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.TextureFilter)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.ColorFill(SharpDX.Direct3D9.Surface,SharpDX.Mathematics.Interop.RawColorBGRA)" /></strong>.</p><p><see cref="F:SharpDX.Direct3D9.Pool.Managed" /> is not allowed when creating an offscreen plain surface. For more information about memory pools, see <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong>.</p><p>Off-screen plain surfaces are always lockable, regardless of their pool types.</p>
  5060. </remarks>
  5061. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateOffscreenPlainSurface']/*" />
  5062. <msdn-id>bb174358</msdn-id>
  5063. <unmanaged>HRESULT IDirect3DDevice9::CreateOffscreenPlainSurface([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle)</unmanaged>
  5064. <unmanaged-short>IDirect3DDevice9::CreateOffscreenPlainSurface</unmanaged-short>
  5065. </member>
  5066. <member name="M:SharpDX.Direct3D9.Device.SetRenderTarget(System.Int32,SharpDX.Direct3D9.Surface)">
  5067. <summary>
  5068. <p>Sets a new color buffer for the device.</p>
  5069. </summary>
  5070. <param name="renderTargetIndex"><dd> <p>Index of the render target. See Remarks.</p> </dd></param>
  5071. <param name="renderTargetRef"><dd> <p>Pointer to a new color buffer. If <strong><c>null</c></strong>, the color buffer for the corresponding RenderTargetIndex is disabled. Devices always must be associated with a color buffer. The new render-target surface must have at least <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /> specified.</p> </dd></param>
  5072. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. This method will return <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> if either:</p><ul> <li>pRenderTarget = <strong><c>null</c></strong> and RenderTargetIndex = 0</li> <li>pRenderTarget is != <strong><c>null</c></strong> and the render target is invalid.</li> </ul></returns>
  5073. <remarks>
  5074. <p>The device can support multiple render targets. The number of render targets supported by a device is contained in the NumSimultaneousRTs member of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>. See Multiple Render Targets (Direct3D 9).</p><p>Setting a new render target will cause the viewport (see Viewports and Clipping (Direct3D 9)) to be set to the full size of the new render target.</p><p>Some hardware tests the compatibility of the depth stencil buffer with the color buffer. If this is done, it is only done in a debug build.</p><p>Restrictions for using this method include the following:</p><ul> <li>The multisample type must be the same for the render target and the depth stencil surface.</li> <li>The formats must be compatible for the render target and the depth stencil surface. See <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDepthStencilMatch_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format)" /></strong>.</li> <li>The size of the depth stencil surface must be greater than or equal to the size of the render target.</li> </ul><p>These restrictions are validated only when using the debug runtime when any of the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> Draw methods are called.</p><p>Cube textures differ from other surfaces in that they are collections of surfaces. To call <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderTarget(System.Int32,SharpDX.Direct3D9.Surface)" /></strong> with a cube texture, you must select an individual face using <strong><see cref="M:SharpDX.Direct3D9.CubeTexture.GetCubeMapSurface(SharpDX.Direct3D9.CubeMapFace,System.Int32)" /></strong> and pass the resulting surface to <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderTarget(System.Int32,SharpDX.Direct3D9.Surface)" /></strong>. </p>
  5075. </remarks>
  5076. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetRenderTarget']/*" />
  5077. <msdn-id>bb174455</msdn-id>
  5078. <unmanaged>HRESULT IDirect3DDevice9::SetRenderTarget([In] unsigned int RenderTargetIndex,[In] IDirect3DSurface9* pRenderTarget)</unmanaged>
  5079. <unmanaged-short>IDirect3DDevice9::SetRenderTarget</unmanaged-short>
  5080. </member>
  5081. <member name="M:SharpDX.Direct3D9.Device.GetRenderTarget(System.Int32)">
  5082. <summary>
  5083. <p>Retrieves a render-target surface.</p>
  5084. </summary>
  5085. <param name="renderTargetIndex"><dd> <p>Index of the render target. See Remarks.</p> </dd></param>
  5086. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the returned render-target surface for this device. </p> </dd></returns>
  5087. <remarks>
  5088. <p>Typically, methods that return state will not work on a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. This method however, will work even on a pure device because it returns an interface.</p><p>The device can now support multiple render targets. The number of render targets supported by a device is contained in the NumSimultaneousRTs member of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>. See Multiple Render Targets (Direct3D 9).</p><p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface results in a memory leak.</p>
  5089. </remarks>
  5090. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetRenderTarget']/*" />
  5091. <msdn-id>bb174404</msdn-id>
  5092. <unmanaged>HRESULT IDirect3DDevice9::GetRenderTarget([In] unsigned int RenderTargetIndex,[Out] IDirect3DSurface9** ppRenderTarget)</unmanaged>
  5093. <unmanaged-short>IDirect3DDevice9::GetRenderTarget</unmanaged-short>
  5094. </member>
  5095. <member name="M:SharpDX.Direct3D9.Device.SetDepthStencilSurface(SharpDX.Direct3D9.Surface)">
  5096. <summary>
  5097. <p>Sets the depth stencil surface.</p>
  5098. </summary>
  5099. <param name="newZStencilRef"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface representing the depth stencil surface. Setting this to <strong><c>null</c></strong> disables the depth stencil operation.</p> </dd></param>
  5100. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If pZStencilSurface is other than <strong><c>null</c></strong>, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> when the stencil surface is invalid. </p></returns>
  5101. <remarks>
  5102. <p>Restrictions for using this method include the following:</p><ul> <li>The multisample type must be the same for the render target and the depth stencil surface.</li> <li>The formats must be compatible for the render target and the depth stencil surface. See <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDepthStencilMatch_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format)" /></strong>.</li> <li>The size of the depth stencil surface must be greater than or equal to the size of the render target.</li> </ul><p>These restrictions are validated only when using the debug runtime when any of the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> Draw methods are called.</p><p>Cube textures differ from other surfaces in that they are collections of surfaces. To call <strong><see cref="M:SharpDX.Direct3D9.Device.SetDepthStencilSurface(SharpDX.Direct3D9.Surface)" /></strong> with a cube texture, you must select an individual face using <strong><see cref="M:SharpDX.Direct3D9.CubeTexture.GetCubeMapSurface(SharpDX.Direct3D9.CubeMapFace,System.Int32)" /></strong> and pass the resulting surface to <strong><see cref="M:SharpDX.Direct3D9.Device.SetDepthStencilSurface(SharpDX.Direct3D9.Surface)" /></strong>. </p>
  5103. </remarks>
  5104. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetDepthStencilSurface']/*" />
  5105. <msdn-id>bb174431</msdn-id>
  5106. <unmanaged>HRESULT IDirect3DDevice9::SetDepthStencilSurface([In] IDirect3DSurface9* pNewZStencil)</unmanaged>
  5107. <unmanaged-short>IDirect3DDevice9::SetDepthStencilSurface</unmanaged-short>
  5108. </member>
  5109. <member name="M:SharpDX.Direct3D9.Device.GetDepthStencilSurface(SharpDX.Direct3D9.Surface@)">
  5110. <summary>
  5111. <p>Gets the depth-stencil surface owned by the Direct3DDevice object.</p>
  5112. </summary>
  5113. <param name="zStencilSurfaceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the returned depth-stencil surface. </p> </dd></param>
  5114. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />.If the device doesn't have a depth stencil buffer associated with it, the return value will be <see cref="F:SharpDX.Direct3D9.ResultCode.NotFound" />. Otherwise, if the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5115. <remarks>
  5116. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface results in a memory leak.</p>
  5117. </remarks>
  5118. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetDepthStencilSurface']/*" />
  5119. <msdn-id>bb174384</msdn-id>
  5120. <unmanaged>HRESULT IDirect3DDevice9::GetDepthStencilSurface([Out] IDirect3DSurface9** ppZStencilSurface)</unmanaged>
  5121. <unmanaged-short>IDirect3DDevice9::GetDepthStencilSurface</unmanaged-short>
  5122. </member>
  5123. <member name="M:SharpDX.Direct3D9.Device.BeginScene">
  5124. <summary>
  5125. <p>Begins a scene. </p>
  5126. </summary>
  5127. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. The method will fail with <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> if <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> is called while already in a <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong>/<strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> pair. This happens only when <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> is called twice without first calling <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong>.</p></returns>
  5128. <remarks>
  5129. <p>Applications must call <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> before performing any rendering and must call <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> when rendering is complete and before calling <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> again.</p><p>If <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> fails, the device was unable to begin the scene, and there is no need to call <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong>. In fact, calls to <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> will fail if the previous <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> failed. This applies to any application that creates multiple swap chains.</p><p>There should be one <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong>/<strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> pair between any successive calls to present (either <strong><see cref="M:SharpDX.Direct3D9.Device.Present" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.SwapChain.Present(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Int32)" /></strong>). <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> should be called once before any rendering is performed, and <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> should be called once after all rendering for a frame has been submitted to the runtime. Multiple non-nested <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong>/<strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> pairs between calls to present are legal, but having more than one pair may incur a performance hit. To enable maximal parallelism between the CPU and the graphics accelerator, it is advantageous to call <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> as far ahead of calling present as possible.</p>
  5130. </remarks>
  5131. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::BeginScene']/*" />
  5132. <msdn-id>bb174350</msdn-id>
  5133. <unmanaged>HRESULT IDirect3DDevice9::BeginScene()</unmanaged>
  5134. <unmanaged-short>IDirect3DDevice9::BeginScene</unmanaged-short>
  5135. </member>
  5136. <member name="M:SharpDX.Direct3D9.Device.EndScene">
  5137. <summary>
  5138. <p>Ends a scene that was begun by calling <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong>.</p>
  5139. </summary>
  5140. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. The method will fail with <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> if <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> is called while already in a <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong>/<strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> pair. This happens only when <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> is called twice without first calling <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong>.</p></returns>
  5141. <remarks>
  5142. <p>When this method succeeds, the scene has been queued up for rendering by the driver. This is not a synchronous method, so the scene is not guaranteed to have completed rendering when this method returns.</p><p>Applications must call <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> before performing any rendering and must call <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> when rendering is complete and before calling <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> again.</p><p>If <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> fails, the device was unable to begin the scene, and there is no need to call <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong>. In fact, calls to <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> will fail if the previous <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> failed. This applies to any application that creates multiple swap chains.</p><p>There should be at most one <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong>/<strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> pair between any successive calls to present (either <strong><see cref="M:SharpDX.Direct3D9.Device.Present" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.SwapChain.Present(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Int32)" /></strong>). <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> should be called once before any rendering is performed, and <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> should be called once after all rendering for a frame has been submitted to the runtime. To enable maximal parallelism between the CPU and the graphics accelerator, it is advantageous to call <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> as far ahead of calling present as possible.</p>
  5143. </remarks>
  5144. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::EndScene']/*" />
  5145. <msdn-id>bb174375</msdn-id>
  5146. <unmanaged>HRESULT IDirect3DDevice9::EndScene()</unmanaged>
  5147. <unmanaged-short>IDirect3DDevice9::EndScene</unmanaged-short>
  5148. </member>
  5149. <member name="M:SharpDX.Direct3D9.Device.Clear_(System.Int32,SharpDX.Mathematics.Interop.RawRectangle[],SharpDX.Direct3D9.ClearFlags,SharpDX.Mathematics.Interop.RawColorBGRA,System.Single,System.Int32)">
  5150. <summary>
  5151. <p>Clears one or more surfaces such as a render target, multiple render targets, a stencil buffer, and a depth buffer.</p>
  5152. </summary>
  5153. <param name="count">No documentation.</param>
  5154. <param name="rectsRef">No documentation.</param>
  5155. <param name="flags">No documentation.</param>
  5156. <param name="color">No documentation.</param>
  5157. <param name="z">No documentation.</param>
  5158. <param name="stencil">No documentation.</param>
  5159. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5160. <remarks>
  5161. <p>Use this method to clear a surface including: a render target, all render targets in an MRT, a stencil buffer, or a depth buffer. Flags determines how many surfaces are cleared. Use pRects to clear a subset of a surface defined by an array of rectangles.</p><p><strong><see cref="M:SharpDX.Direct3D9.Device.Clear_(System.Int32,SharpDX.Mathematics.Interop.RawRectangle[],SharpDX.Direct3D9.ClearFlags,SharpDX.Mathematics.Interop.RawColorBGRA,System.Single,System.Int32)" /></strong> will fail if you:</p><ul> <li>Try to clear either the depth buffer or the stencil buffer of a render target that does not have an attached depth buffer.</li> <li>Try to clear the stencil buffer when the depth buffer does not contain stencil data.</li> </ul>
  5162. </remarks>
  5163. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::Clear']/*" />
  5164. <msdn-id>bb174352</msdn-id>
  5165. <unmanaged>HRESULT IDirect3DDevice9::Clear([In] unsigned int Count,[In, Buffer, Optional] const D3DRECT* pRects,[In] D3DCLEAR Flags,[In] D3DCOLOR Color,[In] float Z,[In] unsigned int Stencil)</unmanaged>
  5166. <unmanaged-short>IDirect3DDevice9::Clear</unmanaged-short>
  5167. </member>
  5168. <member name="M:SharpDX.Direct3D9.Device.SetTransform_(System.Int32,SharpDX.Mathematics.Interop.RawMatrix@)">
  5169. <summary>
  5170. <p>Sets a single device transformation-related state.</p>
  5171. </summary>
  5172. <param name="state"><dd> <p>Device-state variable that is being modified. This parameter can be any member of the <strong><see cref="T:SharpDX.Direct3D9.TransformState" /></strong> enumerated type, or the <strong>D3DTS_WORLDMATRIX</strong> macro. </p> </dd></param>
  5173. <param name="matrixRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong> structure that modifies the current transformation. </p> </dd></param>
  5174. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if one of the arguments is invalid. </p></returns>
  5175. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetTransform']/*" />
  5176. <msdn-id>bb174463</msdn-id>
  5177. <unmanaged>HRESULT IDirect3DDevice9::SetTransform([In] int State,[In] const D3DMATRIX* pMatrix)</unmanaged>
  5178. <unmanaged-short>IDirect3DDevice9::SetTransform</unmanaged-short>
  5179. </member>
  5180. <member name="M:SharpDX.Direct3D9.Device.GetTransform(SharpDX.Direct3D9.TransformState)">
  5181. <summary>
  5182. <p>Retrieves a matrix describing a transformation state.</p>
  5183. </summary>
  5184. <param name="state"><dd> <p>Device state variable that is being modified. This parameter can be any member of the <strong><see cref="T:SharpDX.Direct3D9.TransformState" /></strong> enumerated type, or the <strong>D3DTS_WORLDMATRIX</strong> macro. </p> </dd></param>
  5185. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong> structure, describing the returned transformation state. </p> </dd></returns>
  5186. <remarks>
  5187. <p>This method will not return device state for a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. If you want to use this method, you must create your device with any of the other flag values in <see cref="T:SharpDX.Direct3D9.CreateFlags" />. </p>
  5188. </remarks>
  5189. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetTransform']/*" />
  5190. <msdn-id>bb174414</msdn-id>
  5191. <unmanaged>HRESULT IDirect3DDevice9::GetTransform([In] D3DTRANSFORMSTATETYPE State,[Out] D3DMATRIX* pMatrix)</unmanaged>
  5192. <unmanaged-short>IDirect3DDevice9::GetTransform</unmanaged-short>
  5193. </member>
  5194. <member name="M:SharpDX.Direct3D9.Device.MultiplyTransform(SharpDX.Direct3D9.TransformState,SharpDX.Mathematics.Interop.RawMatrix@)">
  5195. <summary>
  5196. <p>Multiplies a device's world, view, or projection matrices by a specified matrix. </p>
  5197. </summary>
  5198. <param name="arg0"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.TransformState" /></strong> enumerated type, or the <strong>D3DTS_WORLDMATRIX</strong> macro that identifies which device matrix is to be modified. The most common setting, <strong>D3DTS_WORLDMATRIX</strong>(0), modifies the world matrix, but you can specify that the method modify the view or projection matrices, if needed. </p> </dd></param>
  5199. <param name="arg1"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong> structure that modifies the current transformation. </p> </dd></param>
  5200. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> if one of the arguments is invalid. </p></returns>
  5201. <remarks>
  5202. <p>The multiplication order is pMatrix times State.</p><p>An application might use the <strong><see cref="M:SharpDX.Direct3D9.Device.MultiplyTransform(SharpDX.Direct3D9.TransformState,SharpDX.Mathematics.Interop.RawMatrix@)" /></strong> method to work with hierarchies of transformations. For example, the geometry and transformations describing an arm might be arranged in the following hierarchy.</p><pre> shoulder_transformation upper_arm geometry elbow transformation lower_arm geometry wrist transformation hand geometry
  5203. </pre><p>An application might use the following series of calls to render this hierarchy. Not all the parameters are shown in this pseudocode. </p><pre> <see cref="M:SharpDX.Direct3D9.Device.SetTransform_(System.Int32,SharpDX.Mathematics.Interop.RawMatrix@)" />(D3DTS_WORLDMATRIX(0), shoulder_transform)
  5204. <see cref="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)" />(upper_arm)
  5205. <see cref="M:SharpDX.Direct3D9.Device.MultiplyTransform(SharpDX.Direct3D9.TransformState,SharpDX.Mathematics.Interop.RawMatrix@)" />(D3DTS_WORLDMATRIX(0), elbow_transform)
  5206. <see cref="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)" />(lower_arm)
  5207. <see cref="M:SharpDX.Direct3D9.Device.MultiplyTransform(SharpDX.Direct3D9.TransformState,SharpDX.Mathematics.Interop.RawMatrix@)" />(D3DTS_WORLDMATRIX(0), wrist_transform)
  5208. <see cref="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)" />(hand)</pre>
  5209. </remarks>
  5210. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::MultiplyTransform']/*" />
  5211. <msdn-id>bb174422</msdn-id>
  5212. <unmanaged>HRESULT IDirect3DDevice9::MultiplyTransform([In] D3DTRANSFORMSTATETYPE arg0,[In] const D3DMATRIX* arg1)</unmanaged>
  5213. <unmanaged-short>IDirect3DDevice9::MultiplyTransform</unmanaged-short>
  5214. </member>
  5215. <member name="M:SharpDX.Direct3D9.Device.SetViewport(SharpDX.Mathematics.Interop.RawViewport)">
  5216. <summary>
  5217. <p>Sets the viewport parameters for the device.</p>
  5218. </summary>
  5219. <param name="viewportRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawViewport" /></strong> structure, specifying the viewport parameters to set. </p> </dd></param>
  5220. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, it will return <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. This will happen if pViewport is invalid, or if pViewport describes a region that cannot exist within the render target surface.</p></returns>
  5221. <remarks>
  5222. <p>Direct3D sets the following default values for the viewport.</p><p /><pre> <see cref="T:SharpDX.Mathematics.Interop.RawViewport" /> vp;
  5223. vp.X = 0;
  5224. vp.Y = 0;
  5225. vp.Width = RenderTarget.Width;
  5226. vp.Height = RenderTarget.Height;
  5227. vp.MinZ = 0.0f;
  5228. vp.MaxZ = 1.0f;
  5229. </pre><p><strong><see cref="M:SharpDX.Direct3D9.Device.SetViewport(SharpDX.Mathematics.Interop.RawViewport)" /></strong> can be used to draw on part of the screen. Make sure to call it before any geometry is drawn so the viewport settings will take effect.</p><p>To draw multiple views within a scene, repeat the <strong><see cref="M:SharpDX.Direct3D9.Device.SetViewport(SharpDX.Mathematics.Interop.RawViewport)" /></strong> and draw geometry sequence for each view.</p>
  5230. </remarks>
  5231. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetViewport']/*" />
  5232. <msdn-id>bb174469</msdn-id>
  5233. <unmanaged>HRESULT IDirect3DDevice9::SetViewport([In] const D3DVIEWPORT9* pViewport)</unmanaged>
  5234. <unmanaged-short>IDirect3DDevice9::SetViewport</unmanaged-short>
  5235. </member>
  5236. <member name="M:SharpDX.Direct3D9.Device.GetViewport(SharpDX.Mathematics.Interop.RawViewport@)">
  5237. <summary>
  5238. <p>Retrieves the viewport parameters currently set for the device.</p>
  5239. </summary>
  5240. <param name="viewportRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawViewport" /></strong> structure, representing the returned viewport parameters. </p> </dd></param>
  5241. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if the pViewport parameter is invalid. </p></returns>
  5242. <remarks>
  5243. <p>Typically, methods that return state will not work on a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. This method however, will work even on a pure device.</p>
  5244. </remarks>
  5245. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetViewport']/*" />
  5246. <msdn-id>bb174420</msdn-id>
  5247. <unmanaged>HRESULT IDirect3DDevice9::GetViewport([Out] D3DVIEWPORT9* pViewport)</unmanaged>
  5248. <unmanaged-short>IDirect3DDevice9::GetViewport</unmanaged-short>
  5249. </member>
  5250. <member name="M:SharpDX.Direct3D9.Device.SetMaterial(SharpDX.Direct3D9.Material@)">
  5251. <summary>
  5252. <p>Sets the material properties for the device.</p>
  5253. </summary>
  5254. <param name="materialRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Material" /></strong> structure, describing the material properties to set. </p> </dd></param>
  5255. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> if the pMaterial parameter is invalid. </p></returns>
  5256. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetMaterial']/*" />
  5257. <msdn-id>bb174437</msdn-id>
  5258. <unmanaged>HRESULT IDirect3DDevice9::SetMaterial([In] const D3DMATERIAL9* pMaterial)</unmanaged>
  5259. <unmanaged-short>IDirect3DDevice9::SetMaterial</unmanaged-short>
  5260. </member>
  5261. <member name="M:SharpDX.Direct3D9.Device.GetMaterial(SharpDX.Direct3D9.Material@)">
  5262. <summary>
  5263. <p>Retrieves the current material properties for the device.</p>
  5264. </summary>
  5265. <param name="materialRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Material" /></strong> structure to fill with the currently set material properties. </p> </dd></param>
  5266. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> if the pMaterial parameter is invalid. </p></returns>
  5267. <remarks>
  5268. <p>This method will not return device state for a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. If you want to use this method, you must create your device with any of the other values in <see cref="T:SharpDX.Direct3D9.CreateFlags" />. </p>
  5269. </remarks>
  5270. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetMaterial']/*" />
  5271. <msdn-id>bb174394</msdn-id>
  5272. <unmanaged>HRESULT IDirect3DDevice9::GetMaterial([Out] D3DMATERIAL9* pMaterial)</unmanaged>
  5273. <unmanaged-short>IDirect3DDevice9::GetMaterial</unmanaged-short>
  5274. </member>
  5275. <member name="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)">
  5276. <summary>
  5277. <p>Assigns a set of lighting properties for this device.</p>
  5278. </summary>
  5279. <param name="index"><dd> <p>Zero-based index of the set of lighting properties to set. If a set of lighting properties exists at this index, it is overwritten by the new properties specified in pLight. </p> </dd></param>
  5280. <param name="arg1"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Light" /></strong> structure, containing the lighting parameters to set. </p> </dd></param>
  5281. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5282. <remarks>
  5283. <p>Set light properties by preparing a <strong><see cref="T:SharpDX.Direct3D9.Light" /></strong> structure and then calling the <strong><see cref="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)" /></strong> method. The <strong><see cref="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)" /></strong> method accepts the index at which the device should place the set of light properties to its internal list of light properties, and the address of a prepared <strong><see cref="T:SharpDX.Direct3D9.Light" /></strong> structure that defines those properties. You can call <strong><see cref="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)" /></strong> with new information as needed to update the light's illumination properties.</p><p>The system allocates memory to accommodate a set of lighting properties each time you call the <strong><see cref="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)" /></strong> method with an index that has never been assigned properties. Applications can set a number of lights, with only a subset of the assigned lights enabled at a time. Check the MaxActiveLights member of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure when you retrieve device capabilities to determine the maximum number of active lights supported by that device. If you no longer need a light, you can disable it or overwrite it with a new set of light properties.</p><p>The following example prepares and sets properties for a white point-light whose emitted light will not attenuate over distance.</p><pre> // Assume d3dDevice is a valid reference to an <see cref="T:SharpDX.Direct3D9.Device" /> interface.
  5284. <see cref="T:SharpDX.Direct3D9.Light" /> d3dLight;
  5285. <see cref="T:SharpDX.Result" /> hr; // Initialize the structure.
  5286. ZeroMemory(&amp;d3dLight, sizeof(d3dLight)); // Set up a white point light.
  5287. d3dLight.Type = <see cref="F:SharpDX.Direct3D9.LightType.Point" />;
  5288. d3dLight.Diffuse.r = 1.0f;
  5289. d3dLight.Diffuse.g = 1.0f;
  5290. d3dLight.Diffuse.b = 1.0f;
  5291. d3dLight.Ambient.r = 1.0f;
  5292. d3dLight.Ambient.g = 1.0f;
  5293. d3dLight.Ambient.b = 1.0f;
  5294. d3dLight.Specular.r = 1.0f;
  5295. d3dLight.Specular.g = 1.0f;
  5296. d3dLight.Specular.b = 1.0f; // Position it high in the scene and behind the user.
  5297. // Remember, these coordinates are in world space, so
  5298. // the user could be anywhere in world space, too.
  5299. // For the purposes of this example, assume the user
  5300. // is at the origin of world space.
  5301. d3dLight.Position.x = 0.0f;
  5302. d3dLight.Position.y = 1000.0f;
  5303. d3dLight.Position.z = -100.0f; // Don't attenuate.
  5304. d3dLight.Attenuation0 = 1.0f;
  5305. d3dLight.Range = 1000.0f; // Set the property information for the first light.
  5306. hr = d3dDevice-&gt;SetLight(0, &amp;d3dLight);
  5307. if (SUCCEEDED(hr)) // Handle Success
  5308. else // Handle failure
  5309. </pre><p>Enable a light source by calling the <strong><see cref="M:SharpDX.Direct3D9.Device.EnableLight(System.Int32,SharpDX.Mathematics.Interop.RawBool)" /></strong> method for the device.</p>
  5310. </remarks>
  5311. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetLight']/*" />
  5312. <msdn-id>bb174436</msdn-id>
  5313. <unmanaged>HRESULT IDirect3DDevice9::SetLight([In] unsigned int Index,[In] const D3DLIGHT9* arg1)</unmanaged>
  5314. <unmanaged-short>IDirect3DDevice9::SetLight</unmanaged-short>
  5315. </member>
  5316. <member name="M:SharpDX.Direct3D9.Device.GetLight(System.Int32)">
  5317. <summary>
  5318. <p>Retrieves a set of lighting properties that this device uses.</p>
  5319. </summary>
  5320. <param name="index"><dd> <p>Zero-based index of the lighting property set to retrieve. This method will fail if a lighting property has not been set for this index by calling the <strong><see cref="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)" /></strong> method. </p> </dd></param>
  5321. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Light" /></strong> structure that is filled with the retrieved lighting-parameter set. </p> </dd></returns>
  5322. <remarks>
  5323. <p>This method will not return device state for a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. If you want to use this method, you must create your device with any of the other values in <see cref="T:SharpDX.Direct3D9.CreateFlags" />.</p><p>Retrieve all the properties for an existing light source by calling the <strong><see cref="M:SharpDX.Direct3D9.Device.GetLight(System.Int32)" /></strong> method for the device. When calling the <strong><see cref="M:SharpDX.Direct3D9.Device.GetLight(System.Int32)" /></strong> method, pass the zero-based index of the light source for which the properties will be retrieved as the first parameter, and supply the address of a <strong><see cref="T:SharpDX.Direct3D9.Light" /></strong> structure as the second parameter. The device fills the <strong><see cref="T:SharpDX.Direct3D9.Light" /></strong> structure to describe the lighting properties it uses for the light source at that index.</p><pre> // Assume d3dDevice is a valid reference to an <see cref="T:SharpDX.Direct3D9.Device" /> interface.
  5324. <see cref="T:SharpDX.Result" /> hr;
  5325. D3DLight9 light; // Get the property information for the first light.
  5326. hr = pd3dDevice-&gt;GetLight(0, &amp;light);
  5327. if (SUCCEEDED(hr)) // Handle Success
  5328. else // Handle failure
  5329. </pre><p>If you supply an index outside the range of the light sources assigned in the device, the <strong><see cref="M:SharpDX.Direct3D9.Device.GetLight(System.Int32)" /></strong> method fails, returning <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p><p>When you assign a set of light properties for a light source in a scene, the light source can be activated by calling the <strong><see cref="M:SharpDX.Direct3D9.Device.EnableLight(System.Int32,SharpDX.Mathematics.Interop.RawBool)" /></strong> method for the device. New light sources are disabled by default. The <strong><see cref="M:SharpDX.Direct3D9.Device.EnableLight(System.Int32,SharpDX.Mathematics.Interop.RawBool)" /></strong> method accepts two parameters. Set the first parameter to the zero-based index of the light source to be affected by the method, and set the second parameter to <strong>TRUE</strong> to enable the light or <strong><see cref="F:SharpDX.Result.False" /></strong> to disable it. The following code example illustrates the use of this method by enabling the first light source in the device's list of light source properties.</p><pre> // Assume d3dDevice is a valid reference to an <see cref="T:SharpDX.Direct3D9.Device" /> interface.
  5330. <see cref="T:SharpDX.Result" /> hr; hr = pd3dDevice-&gt;LightEnable(0, TRUE);
  5331. if (SUCCEEDED(hr)) // Handle Success
  5332. else // Handle failure
  5333. </pre><p>Check the MaxActiveLights member of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure when you retrieve device capabilities to determine the maximum number of active lights supported by that device.</p><p>If you enable or disable a light that has no properties that are set with <strong><see cref="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)" /></strong>, the <strong><see cref="M:SharpDX.Direct3D9.Device.EnableLight(System.Int32,SharpDX.Mathematics.Interop.RawBool)" /></strong> method creates a light source with the properties listed in following table and enables or disables it.</p>
  5334. </remarks>
  5335. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetLight']/*" />
  5336. <msdn-id>bb174392</msdn-id>
  5337. <unmanaged>HRESULT IDirect3DDevice9::GetLight([In] unsigned int Index,[Out] D3DLIGHT9* arg1)</unmanaged>
  5338. <unmanaged-short>IDirect3DDevice9::GetLight</unmanaged-short>
  5339. </member>
  5340. <member name="M:SharpDX.Direct3D9.Device.EnableLight(System.Int32,SharpDX.Mathematics.Interop.RawBool)">
  5341. <summary>
  5342. <p>Enables or disables a set of lighting parameters within a device.</p>
  5343. </summary>
  5344. <param name="index"><dd> <p>Zero-based index of the set of lighting parameters that are the target of this method. </p> </dd></param>
  5345. <param name="enable"><dd> <p>Value that indicates if the set of lighting parameters are being enabled or disabled. Set this parameter to <strong>TRUE</strong> to enable lighting with the parameters at the specified index, or <strong><see cref="F:SharpDX.Result.False" /></strong> to disable it. </p> </dd></param>
  5346. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5347. <remarks>
  5348. <p>If a value for LightIndex is outside the range of the light property sets assigned within the device, the <strong><see cref="M:SharpDX.Direct3D9.Device.EnableLight(System.Int32,SharpDX.Mathematics.Interop.RawBool)" /></strong> method creates a light source represented by a <strong><see cref="T:SharpDX.Direct3D9.Light" /></strong> structure with the following properties and sets its enabled state to the value specified in bEnable.</p><table> <tr><th>Member</th><th>Default</th></tr> <tr><td> Type </td><td><see cref="F:SharpDX.Direct3D9.LightType.Directional" /></td></tr> <tr><td> Diffuse </td><td>(R:1, G:1, B:1, A:0)</td></tr> <tr><td> Specular </td><td>(R:0, G:0, B:0, A:0)</td></tr> <tr><td> Ambient </td><td>(R:0, G:0, B:0, A:0)</td></tr> <tr><td> Position </td><td>(0, 0, 0)</td></tr> <tr><td> Direction </td><td>(0, 0, 1)</td></tr> <tr><td> Range </td><td>0</td></tr> <tr><td> Falloff </td><td>0</td></tr> <tr><td> Attenuation0 </td><td>0</td></tr> <tr><td> Attenuation1 </td><td>0</td></tr> <tr><td> Attenuation2 </td><td>0</td></tr> <tr><td> Theta </td><td>0</td></tr> <tr><td> Phi </td><td>0</td></tr> </table><p>?</p>
  5349. </remarks>
  5350. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::LightEnable']/*" />
  5351. <msdn-id>bb174421</msdn-id>
  5352. <unmanaged>HRESULT IDirect3DDevice9::LightEnable([In] unsigned int Index,[In] BOOL Enable)</unmanaged>
  5353. <unmanaged-short>IDirect3DDevice9::LightEnable</unmanaged-short>
  5354. </member>
  5355. <member name="M:SharpDX.Direct3D9.Device.IsLightEnabled(System.Int32)">
  5356. <summary>
  5357. <p>Retrieves the activity status - enabled or disabled - for a set of lighting parameters within a device.</p>
  5358. </summary>
  5359. <param name="index"><dd> <p>Zero-based index of the set of lighting parameters that are the target of this method. </p> </dd></param>
  5360. <returns><dd> <p>Pointer to a variable to fill with the status of the specified lighting parameters. After the call, a nonzero value at this address indicates that the specified lighting parameters are enabled; a value of 0 indicates that they are disabled. </p> </dd></returns>
  5361. <remarks>
  5362. <p>This method will not return device state for a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. If you want to use this method, you must create your device with any of the other values in <see cref="T:SharpDX.Direct3D9.CreateFlags" />. </p>
  5363. </remarks>
  5364. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetLightEnable']/*" />
  5365. <msdn-id>bb174393</msdn-id>
  5366. <unmanaged>HRESULT IDirect3DDevice9::GetLightEnable([In] unsigned int Index,[Out] BOOL* pEnable)</unmanaged>
  5367. <unmanaged-short>IDirect3DDevice9::GetLightEnable</unmanaged-short>
  5368. </member>
  5369. <member name="M:SharpDX.Direct3D9.Device.SetClipPlane(System.Int32,SharpDX.Mathematics.Interop.RawVector4)">
  5370. <summary>
  5371. <p>Sets the coefficients of a user-defined clipping plane for the device.</p>
  5372. </summary>
  5373. <param name="index"><dd> <p>Index of the clipping plane for which the plane equation coefficients are to be set. </p> </dd></param>
  5374. <param name="planeRef"><dd> <p>Pointer to an address of a four-element array of values that represent the clipping plane coefficients to be set, in the form of the general plane equation. See Remarks. </p> </dd></param>
  5375. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. This error indicates that the value in Index exceeds the maximum clipping plane index supported by the device or that the array at pPlane is not large enough to contain four floating-point values. </p></returns>
  5376. <remarks>
  5377. <p>The coefficients that this method sets take the form of the general plane equation. If the values in the array at pPlane were labeled A, B, C, and D in the order that they appear in the array, they would fit into the general plane equation so that Ax + By + Cz + Dw = 0. A point with homogeneous coordinates (x, y, z, w) is visible in the half space of the plane if Ax + By + Cz + Dw &gt;= 0. Points that exist behind the clipping plane are clipped from the scene.</p><p>When the fixed function pipeline is used the plane equations are assumed to be in world space. When the programmable pipeline is used the plane equations are assumed to be in the clipping space (the same space as output vertices).</p><p>This method does not enable the clipping plane equation being set. To enable a clipping plane, set the corresponding bit in the DWORD value applied to the <see cref="F:SharpDX.Direct3D9.RenderState.ClipPlaneEnable" /> render state.</p>
  5378. </remarks>
  5379. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetClipPlane']/*" />
  5380. <msdn-id>bb174426</msdn-id>
  5381. <unmanaged>HRESULT IDirect3DDevice9::SetClipPlane([In] unsigned int Index,[In] const SHARPDX_VECTOR4* pPlane)</unmanaged>
  5382. <unmanaged-short>IDirect3DDevice9::SetClipPlane</unmanaged-short>
  5383. </member>
  5384. <member name="M:SharpDX.Direct3D9.Device.GetClipPlane(System.Int32)">
  5385. <summary>
  5386. <p>Retrieves the coefficients of a user-defined clipping plane for the device.</p>
  5387. </summary>
  5388. <param name="index"><dd> <p>Index of the clipping plane for which the plane equation coefficients are retrieved. </p> </dd></param>
  5389. <returns><dd> <p>Pointer to a four-element array of values that represent the coefficients of the clipping plane in the form of the general plane equation. See Remarks. </p> </dd></returns>
  5390. <remarks>
  5391. <p>This method will not return device state for a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. If you want to use this method, you must create your device with any of the other values in <see cref="T:SharpDX.Direct3D9.CreateFlags" />." </p><p>The coefficients that this method reports take the form of the general plane equation. If the values in the array at pPlane were labeled A, B, C, and D in the order that they appear in the array, they would fit into the general plane equation so that Ax + By + Cz + Dw = 0. A point with homogeneous coordinates (x, y, z, w) is visible in the half space of the plane if Ax + By + Cz + Dw &gt;= 0. Points that exist on or behind the clipping plane are clipped from the scene.</p><p>The plane equation used by this method exists in world space and is set by a previous call to the <strong><see cref="M:SharpDX.Direct3D9.Device.SetClipPlane(System.Int32,SharpDX.Mathematics.Interop.RawVector4)" /></strong> method.</p>
  5392. </remarks>
  5393. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetClipPlane']/*" />
  5394. <msdn-id>bb174380</msdn-id>
  5395. <unmanaged>HRESULT IDirect3DDevice9::GetClipPlane([In] unsigned int Index,[Out] float* pPlane)</unmanaged>
  5396. <unmanaged-short>IDirect3DDevice9::GetClipPlane</unmanaged-short>
  5397. </member>
  5398. <member name="M:SharpDX.Direct3D9.Device.SetRenderState(SharpDX.Direct3D9.RenderState,System.Int32)">
  5399. <summary>
  5400. <p>Sets a single device render-state parameter.</p>
  5401. </summary>
  5402. <param name="state"><dd> <p>Device state variable that is being modified. This parameter can be any member of the <strong><see cref="T:SharpDX.Direct3D9.RenderState" /></strong> enumerated type. </p> </dd></param>
  5403. <param name="value"><dd> <p>New value for the device render state to be set. The meaning of this parameter is dependent on the value specified for <em>State</em>. For example, if <em>State</em> were <see cref="F:SharpDX.Direct3D9.RenderState.ShadeMode" />, the second parameter would be one member of the <strong><see cref="T:SharpDX.Direct3D9.ShadeMode" /></strong> enumerated type. </p> </dd></param>
  5404. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if one of the arguments is invalid. </p></returns>
  5405. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetRenderState']/*" />
  5406. <msdn-id>bb174454</msdn-id>
  5407. <unmanaged>HRESULT IDirect3DDevice9::SetRenderState([In] D3DRENDERSTATETYPE State,[In] unsigned int Value)</unmanaged>
  5408. <unmanaged-short>IDirect3DDevice9::SetRenderState</unmanaged-short>
  5409. </member>
  5410. <member name="M:SharpDX.Direct3D9.Device.GetRenderState(SharpDX.Direct3D9.RenderState,System.IntPtr)">
  5411. <summary>
  5412. <p>Retrieves a render-state value for a device.</p>
  5413. </summary>
  5414. <param name="state"><dd> <p>Device state variable that is being queried. This parameter can be any member of the <strong><see cref="T:SharpDX.Direct3D9.RenderState" /></strong> enumerated type. </p> </dd></param>
  5415. <param name="valueRef"><dd> <p>Pointer to a variable that receives the value of the queried render state variable when the method returns. </p> </dd></param>
  5416. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> if one of the arguments is invalid. </p></returns>
  5417. <remarks>
  5418. <p>This method will not return device state for a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. If you want to use this method, you must create your device with any of the other values in <see cref="T:SharpDX.Direct3D9.CreateFlags" />." </p>
  5419. </remarks>
  5420. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetRenderState']/*" />
  5421. <msdn-id>bb174403</msdn-id>
  5422. <unmanaged>HRESULT IDirect3DDevice9::GetRenderState([In] D3DRENDERSTATETYPE State,[In] void* pValue)</unmanaged>
  5423. <unmanaged-short>IDirect3DDevice9::GetRenderState</unmanaged-short>
  5424. </member>
  5425. <member name="M:SharpDX.Direct3D9.Device.CreateStateBlock(SharpDX.Direct3D9.StateBlockType,SharpDX.Direct3D9.StateBlock)">
  5426. <summary>
  5427. <p>Creates a new state block that contains the values for all device states, vertex-related states, or pixel-related states.</p>
  5428. </summary>
  5429. <param name="type"><dd> <p>Type of state data that the method should capture. This parameter can be set to a value defined in the <strong><see cref="T:SharpDX.Direct3D9.StateBlockType" /></strong> enumerated type. </p> </dd></param>
  5430. <param name="sBOut"><dd> <p>Pointer to a state block interface. See <strong><see cref="T:SharpDX.Direct3D9.StateBlock" /></strong>.</p> </dd></param>
  5431. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  5432. <remarks>
  5433. <p>Vertex-related device states typically refer to those states that affect how the system processes vertices. Pixel-related states generally refer to device states that affect how the system processes pixel or depth-buffer data during rasterization. Some states are contained in both groups. </p><table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 10:</p> <p>In Direct3D 9, a state block contains state data, for the states it was requested to capture, when the object is created. To change the value of the state block, call <strong><see cref="M:SharpDX.Direct3D9.StateBlock.Capture" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.Device.BeginStateBlock" /></strong>/<strong><see cref="M:SharpDX.Direct3D9.Device.EndStateBlock" /></strong>. There is no state saved when a state block object is created in Direct3D 10.</p> </td></tr> </table><p>?</p>
  5434. </remarks>
  5435. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateStateBlock']/*" />
  5436. <msdn-id>bb174362</msdn-id>
  5437. <unmanaged>HRESULT IDirect3DDevice9::CreateStateBlock([In] D3DSTATEBLOCKTYPE Type,[Out, Fast] IDirect3DStateBlock9** ppSB)</unmanaged>
  5438. <unmanaged-short>IDirect3DDevice9::CreateStateBlock</unmanaged-short>
  5439. </member>
  5440. <member name="M:SharpDX.Direct3D9.Device.BeginStateBlock">
  5441. <summary>
  5442. <p>Signals Direct3D to begin recording a device-state block.</p>
  5443. </summary>
  5444. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  5445. <remarks>
  5446. <p>Applications can ensure that all recorded states are valid by calling the <strong><see cref="M:SharpDX.Direct3D9.Device.ValidateDevice(System.Int32)" /></strong> method prior to calling this method.</p><p>The following methods can be recorded in a state block, after calling <strong><see cref="M:SharpDX.Direct3D9.Device.BeginStateBlock" /></strong> and before <strong><see cref="M:SharpDX.Direct3D9.Device.EndStateBlock" /></strong>. </p><ul> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.EnableLight(System.Int32,SharpDX.Mathematics.Interop.RawBool)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetClipPlane(System.Int32,SharpDX.Mathematics.Interop.RawVector4)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetCurrentTexturePalette(System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexFormat(SharpDX.Direct3D9.VertexFormat)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetIndices(SharpDX.Direct3D9.IndexBuffer)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetMaterial(SharpDX.Direct3D9.Material@)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetNPatchMode(System.Single)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetPixelShader(SharpDX.Direct3D9.PixelShader)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetPixelShaderConstantB(System.Int32,System.IntPtr,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetPixelShaderConstantF(System.Int32,System.IntPtr,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetPixelShaderConstantI(System.Int32,System.IntPtr,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderState(SharpDX.Direct3D9.RenderState,System.Boolean)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,SharpDX.Direct3D9.TextureFilter)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetScissorRect(SharpDX.Mathematics.Interop.RawRectangle)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetStreamSource(System.Int32,SharpDX.Direct3D9.VertexBuffer,System.Int32,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetStreamSourceFrequency(System.Int32,System.Int32,SharpDX.Direct3D9.StreamSource)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetTexture(System.Int32,SharpDX.Direct3D9.BaseTexture)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,SharpDX.Direct3D9.TextureArgument)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetTransform_(System.Int32,SharpDX.Mathematics.Interop.RawMatrix@)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetViewport(SharpDX.Mathematics.Interop.RawViewport)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexDeclaration(SharpDX.Direct3D9.VertexDeclaration)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexShader(SharpDX.Direct3D9.VertexShader)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexShaderConstantB(System.Int32,System.IntPtr,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexShaderConstantF(System.Int32,System.IntPtr,System.Int32)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexShaderConstantI(System.Int32,System.IntPtr,System.Int32)" /></strong> </li> </ul><p>The ordering of state changes in a state block is not guaranteed. If the same state is specified multiple times in a state block, only the last value is used.</p>
  5447. </remarks>
  5448. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::BeginStateBlock']/*" />
  5449. <msdn-id>bb174351</msdn-id>
  5450. <unmanaged>HRESULT IDirect3DDevice9::BeginStateBlock()</unmanaged>
  5451. <unmanaged-short>IDirect3DDevice9::BeginStateBlock</unmanaged-short>
  5452. </member>
  5453. <member name="M:SharpDX.Direct3D9.Device.EndStateBlock">
  5454. <summary>
  5455. <p>Signals Direct3D to stop recording a device-state block and retrieve a reference to the state block interface.</p>
  5456. </summary>
  5457. <returns><dd> <p>Pointer to a state block interface. See <strong><see cref="T:SharpDX.Direct3D9.StateBlock" /></strong>.</p> </dd></returns>
  5458. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::EndStateBlock']/*" />
  5459. <msdn-id>bb174376</msdn-id>
  5460. <unmanaged>HRESULT IDirect3DDevice9::EndStateBlock([In] IDirect3DStateBlock9** ppSB)</unmanaged>
  5461. <unmanaged-short>IDirect3DDevice9::EndStateBlock</unmanaged-short>
  5462. </member>
  5463. <member name="M:SharpDX.Direct3D9.Device.SetClipStatus(SharpDX.Direct3D9.ClipStatus)">
  5464. <summary>
  5465. <p>Sets the clip status.</p>
  5466. </summary>
  5467. <param name="clipStatusRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.ClipStatus" /></strong> structure, describing the clip status settings to be set. </p> </dd></param>
  5468. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If one of the arguments is invalid, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5469. <remarks>
  5470. <p>Clip status is used during software vertex processing. Therefore, this method is not supported on pure or nonpure hardware processing devices. For more information about pure devices, see <see cref="T:SharpDX.Direct3D9.CreateFlags" />.</p><p>When clipping is enabled during vertex processing (by <strong><see cref="M:SharpDX.Direct3D9.Device.ProcessVertices(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexBuffer,SharpDX.Direct3D9.VertexDeclaration,SharpDX.Direct3D9.LockFlags)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)" /></strong>, or other drawing functions), Direct3D computes a clip code for every vertex. The clip code is a combination of D3DCS_* bits. When a vertex is outside a particular clipping plane, the corresponding bit is set in the clipping code. Direct3D maintains the clip status using <strong><see cref="T:SharpDX.Direct3D9.ClipStatus" /></strong>, which has ClipUnion and ClipIntersection members. ClipUnion is a bitwise "OR" of all vertex clip codes and ClipIntersection is a bitwise "AND" of all vertex clip codes. Initial values are zero for ClipUnion and 0xFFFFFFFF for ClipIntersection. When <see cref="F:SharpDX.Direct3D9.RenderState.Clipping" /> is set to <strong><see cref="F:SharpDX.Result.False" /></strong>, ClipUnion and ClipIntersection are set to zero. Direct3D updates the clip status during drawing calls. To compute clip status for a particular object, set ClipUnion and ClipIntersection to their initial value and continue drawing.</p><p>Clip status is not updated by <strong><see cref="M:SharpDX.Direct3D9.Device.DrawRectanglePatch(System.Int32,System.Single[])" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.DrawTrianglePatch(System.Int32,System.Single[])" /></strong> because there is no software emulation for them.</p>
  5471. </remarks>
  5472. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetClipStatus']/*" />
  5473. <msdn-id>bb174427</msdn-id>
  5474. <unmanaged>HRESULT IDirect3DDevice9::SetClipStatus([In] const D3DCLIPSTATUS9* pClipStatus)</unmanaged>
  5475. <unmanaged-short>IDirect3DDevice9::SetClipStatus</unmanaged-short>
  5476. </member>
  5477. <member name="M:SharpDX.Direct3D9.Device.GetClipStatus(SharpDX.Direct3D9.ClipStatus@)">
  5478. <summary>
  5479. <p>Retrieves the clip status.</p>
  5480. </summary>
  5481. <param name="clipStatusRef"><dd> <p> Pointer to a <strong><see cref="T:SharpDX.Direct3D9.ClipStatus" /></strong> structure that describes the clip status. </p> </dd></param>
  5482. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />.</p><p><see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if the argument is invalid.</p></returns>
  5483. <remarks>
  5484. <p>When clipping is enabled during vertex processing (by <strong><see cref="M:SharpDX.Direct3D9.Device.ProcessVertices(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexBuffer,SharpDX.Direct3D9.VertexDeclaration,SharpDX.Direct3D9.LockFlags)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)" /></strong>, or other drawing functions), Direct3D computes a clip code for every vertex. The clip code is a combination of D3DCS_* bits. When a vertex is outside a particular clipping plane, the corresponding bit is set in the clipping code. Direct3D maintains the clip status using <strong><see cref="T:SharpDX.Direct3D9.ClipStatus" /></strong>, which has ClipUnion and ClipIntersection members. ClipUnion is a bitwise "OR" of all vertex clip codes and ClipIntersection is a bitwise "AND" of all vertex clip codes. Initial values are zero for ClipUnion and 0xFFFFFFFF for ClipIntersection. When <see cref="F:SharpDX.Direct3D9.RenderState.Clipping" /> is set to <strong><see cref="F:SharpDX.Result.False" /></strong>, ClipUnion and ClipIntersection are set to zero. Direct3D updates the clip status during drawing calls. To compute clip status for a particular object, set ClipUnion and ClipIntersection to their initial value and continue drawing.</p><p>Clip status is not updated by <strong><see cref="M:SharpDX.Direct3D9.Device.DrawRectanglePatch(System.Int32,System.Single[])" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.DrawTrianglePatch(System.Int32,System.Single[])" /></strong> because there is no software emulation for them.</p><p>Clip status is used during software vertex processing. Therefore, this method is not supported on pure or nonpure hardware processing devices. For more information about pure devices, see <see cref="T:SharpDX.Direct3D9.CreateFlags" />.</p>
  5485. </remarks>
  5486. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetClipStatus']/*" />
  5487. <msdn-id>bb174381</msdn-id>
  5488. <unmanaged>HRESULT IDirect3DDevice9::GetClipStatus([Out] D3DCLIPSTATUS9* pClipStatus)</unmanaged>
  5489. <unmanaged-short>IDirect3DDevice9::GetClipStatus</unmanaged-short>
  5490. </member>
  5491. <member name="M:SharpDX.Direct3D9.Device.GetTexture(System.Int32)">
  5492. <summary>
  5493. <p>Retrieves a texture assigned to a stage for a device.</p>
  5494. </summary>
  5495. <param name="stage"><dd> <p>Stage identifier of the texture to retrieve. Stage identifiers are zero-based.</p> </dd></param>
  5496. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface, representing the returned texture. </p> </dd></returns>
  5497. <remarks>
  5498. <p>Typically, methods that return state will not work on a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. This method however, will work even on a pure device because it returns an interface.</p><p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface results in a memory leak.</p>
  5499. </remarks>
  5500. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetTexture']/*" />
  5501. <msdn-id>bb174412</msdn-id>
  5502. <unmanaged>HRESULT IDirect3DDevice9::GetTexture([In] unsigned int Stage,[Out] IDirect3DBaseTexture9** ppTexture)</unmanaged>
  5503. <unmanaged-short>IDirect3DDevice9::GetTexture</unmanaged-short>
  5504. </member>
  5505. <member name="M:SharpDX.Direct3D9.Device.SetTexture(System.Int32,SharpDX.Direct3D9.BaseTexture)">
  5506. <summary>
  5507. <p>Assigns a texture to a stage for a device.</p>
  5508. </summary>
  5509. <param name="stage"><dd> <p>Zero based sampler number. Textures are bound to samplers; samplers define sampling state such as the filtering mode and the address wrapping mode. Textures are referenced differently by the programmable and the fixed function pipeline: </p> <ul> <li>Programmable shaders reference textures using the sampler number. The number of samplers available to a programmable shader is dependent on the shader version. For vertex shaders, see Sampler (Direct3D 9 asm-vs). For pixel shaders see Sampler (Direct3D 9 asm-ps).</li> <li>The fixed function pipeline on the other hand, references textures by texture stage number. The maximum number of samplers is determined from two caps: MaxSimultaneousTextures and MaxTextureBlendStages of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure.</li> </ul> <p>There are two other special cases for stage/sampler numbers.</p> <ul> <li>A special number called D3DDMAPSAMPLER is used for Displacement Mapping (Direct3D 9).</li> <li>A programmable vertex shader uses a special number defined by a <see cref="T:SharpDX.Direct3D9.VertexTextureSampler" /> when accessing Vertex Textures in vs_3_0 (DirectX HLSL).</li> </ul> </dd></param>
  5510. <param name="textureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface, representing the texture being set. </p> </dd></param>
  5511. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5512. <remarks>
  5513. <p><strong>SetTexture</strong> is not allowed if the texture is created with a pool type of <see cref="F:SharpDX.Direct3D9.Pool.Scratch" />. <strong>SetTexture</strong> is not allowed with a pool type of <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /> texture unless DevCaps is set with <see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureSystemMemory" />.</p>
  5514. </remarks>
  5515. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetTexture']/*" />
  5516. <msdn-id>bb174461</msdn-id>
  5517. <unmanaged>HRESULT IDirect3DDevice9::SetTexture([In] unsigned int Stage,[In] IDirect3DBaseTexture9* pTexture)</unmanaged>
  5518. <unmanaged-short>IDirect3DDevice9::SetTexture</unmanaged-short>
  5519. </member>
  5520. <member name="M:SharpDX.Direct3D9.Device.GetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,System.IntPtr)">
  5521. <summary>
  5522. <p>Retrieves a state value for an assigned texture.</p>
  5523. </summary>
  5524. <param name="stage"><dd> <p>Stage identifier of the texture for which the state is retrieved. Stage identifiers are zero-based. Devices can have up to eight set textures, so the maximum value allowed for Stage is 7. </p> </dd></param>
  5525. <param name="type"><dd> <p>Texture state to retrieve. This parameter can be any member of the <strong><see cref="T:SharpDX.Direct3D9.TextureStage" /></strong> enumerated type. </p> </dd></param>
  5526. <param name="valueRef"><dd> <p>Pointer a variable to fill with the retrieved state value. The meaning of the retrieved value is determined by the Type parameter. </p> </dd></param>
  5527. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5528. <remarks>
  5529. <p>This method will not return device state for a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. If you want to use this method, you must create your device with any of the other flag values in <see cref="T:SharpDX.Direct3D9.CreateFlags" />." </p>
  5530. </remarks>
  5531. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetTextureStageState']/*" />
  5532. <msdn-id>bb174413</msdn-id>
  5533. <unmanaged>HRESULT IDirect3DDevice9::GetTextureStageState([In] unsigned int Stage,[In] D3DTEXTURESTAGESTATETYPE Type,[In] void* pValue)</unmanaged>
  5534. <unmanaged-short>IDirect3DDevice9::GetTextureStageState</unmanaged-short>
  5535. </member>
  5536. <member name="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,System.Int32)">
  5537. <summary>
  5538. <p>Sets the state value for the currently assigned texture.</p>
  5539. </summary>
  5540. <param name="stage"><dd> <p>Stage identifier of the texture for which the state value is set. Stage identifiers are zero-based. Devices can have up to eight set textures, so the maximum value allowed for Stage is 7. </p> </dd></param>
  5541. <param name="type"><dd> <p>Texture state to set. This parameter can be any member of the <strong><see cref="T:SharpDX.Direct3D9.TextureStage" /></strong> enumerated type. </p> </dd></param>
  5542. <param name="value"><dd> <p>State value to set. The meaning of this value is determined by the Type parameter. </p> </dd></param>
  5543. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5544. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetTextureStageState']/*" />
  5545. <msdn-id>bb174462</msdn-id>
  5546. <unmanaged>HRESULT IDirect3DDevice9::SetTextureStageState([In] unsigned int Stage,[In] D3DTEXTURESTAGESTATETYPE Type,[In] unsigned int Value)</unmanaged>
  5547. <unmanaged-short>IDirect3DDevice9::SetTextureStageState</unmanaged-short>
  5548. </member>
  5549. <member name="M:SharpDX.Direct3D9.Device.GetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,System.IntPtr)">
  5550. <summary>
  5551. <p>Gets the sampler state value.</p>
  5552. </summary>
  5553. <param name="sampler"><dd> <p>The sampler stage index.</p> </dd></param>
  5554. <param name="type"><dd> <p>This parameter can be any member of the <strong><see cref="T:SharpDX.Direct3D9.SamplerState" /></strong> enumerated type. </p> </dd></param>
  5555. <param name="valueRef"><dd> <p>State value to get. The meaning of this value is determined by the Type parameter. </p> </dd></param>
  5556. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5557. <remarks>
  5558. <p>This method will not return device state for a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. If you want to use this method, you must create your device with any of the other values in <see cref="T:SharpDX.Direct3D9.CreateFlags" />." </p>
  5559. </remarks>
  5560. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetSamplerState']/*" />
  5561. <msdn-id>bb174406</msdn-id>
  5562. <unmanaged>HRESULT IDirect3DDevice9::GetSamplerState([In] unsigned int Sampler,[In] D3DSAMPLERSTATETYPE Type,[In] void* pValue)</unmanaged>
  5563. <unmanaged-short>IDirect3DDevice9::GetSamplerState</unmanaged-short>
  5564. </member>
  5565. <member name="M:SharpDX.Direct3D9.Device.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,System.Int32)">
  5566. <summary>
  5567. <p>Sets the sampler state value.</p>
  5568. </summary>
  5569. <param name="sampler"><dd> <p>The sampler stage index. For more info about sampler stage, see Sampling Stage Registers in vs_3_0 (DirectX HLSL).</p> </dd></param>
  5570. <param name="type"><dd> <p>This parameter can be any member of the <strong><see cref="T:SharpDX.Direct3D9.SamplerState" /></strong> enumerated type. </p> </dd></param>
  5571. <param name="value"><dd> <p>State value to set. The meaning of this value is determined by the Type parameter. </p> </dd></param>
  5572. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5573. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetSamplerState']/*" />
  5574. <msdn-id>bb174456</msdn-id>
  5575. <unmanaged>HRESULT IDirect3DDevice9::SetSamplerState([In] unsigned int Sampler,[In] D3DSAMPLERSTATETYPE Type,[In] unsigned int Value)</unmanaged>
  5576. <unmanaged-short>IDirect3DDevice9::SetSamplerState</unmanaged-short>
  5577. </member>
  5578. <member name="M:SharpDX.Direct3D9.Device.ValidateDevice(System.Int32)">
  5579. <summary>
  5580. <p>Reports the device's ability to render the current texture-blending operations and arguments in a single pass.</p>
  5581. </summary>
  5582. <param name="numPassesRef"><dd> <p>Pointer to a DWORD value to fill with the number of rendering passes needed to complete the desired effect through multipass rendering. </p> </dd></param>
  5583. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.ConflictingRenderState" />, <see cref="F:SharpDX.Direct3D9.ResultCode.ConflictingTextureFilter" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DriverInternalError" />, <see cref="F:SharpDX.Direct3D9.ResultCode.TooManyOperations" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedAlphaArgument" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedAlphaOperation" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedColorArgument" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedColorOperation" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedFactorValue" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedTextureFilter" />, <see cref="F:SharpDX.Direct3D9.ResultCode.WrongTextureFormat" />,.</p></returns>
  5584. <remarks>
  5585. <p>The <strong><see cref="M:SharpDX.Direct3D9.Device.ValidateDevice(System.Int32)" /></strong> method should be used to validate scenarios only when other capabilities are deficient. For example, in a multistage texturing scenario, you could query the MaxTextureBlendStages and MaxSimultaneousTextures members of a <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure to determine if multistage texturing is possible on the device.</p><p>Current hardware does not necessarily implement all possible combinations of operations and arguments. You can determine whether a particular blending operation can be performed with given arguments by setting the desired blending operation, and then calling the <strong><see cref="M:SharpDX.Direct3D9.Device.ValidateDevice(System.Int32)" /></strong> method. </p><p>The <strong><see cref="M:SharpDX.Direct3D9.Device.ValidateDevice(System.Int32)" /></strong> method uses the current render states, textures, and texture-stage states to perform validation at the time of the call. Changes to these factors after the call invalidate the previous result, and the method must be called again before rendering a scene.</p><p>For best performance, call <strong><see cref="M:SharpDX.Direct3D9.Device.ValidateDevice(System.Int32)" /></strong> at initialization time; do not use it within a render loop.</p><p>Using diffuse iterated values, either as an argument or as an operation (D3DTA_DIFFUSED3DTOP_BLENDDIFFUSEALPHA) is rarely supported on current hardware. Most hardware can introduce iterated color data only at the last texture operation stage.</p><p>Try to specify the texture (<see cref="F:SharpDX.Direct3D9.TextureArgument.Texture" />) for each stage as the first argument, rather than the second argument.</p><p>Many cards do not support use of diffuse or scalar values at arbitrary texture stages. Often, these are available only at the first or last texture-blending stage.</p><p>Many cards do not have a blending unit associated with the first texture that is capable of more than replicating alpha to color channels or inverting the input. Therefore, your application might need to use only the second texture stage, if possible. On such hardware, the first unit is presumed to be in its default state, which has the first color argument set to <see cref="F:SharpDX.Direct3D9.TextureArgument.Texture" /> with the <see cref="F:SharpDX.Direct3D9.TextureOperation.SelectArg1" /> operation.</p><p>Operations on the output alpha that are more intricate than or substantially different from the color operations are less likely to be supported. </p><p>Some hardware does not support simultaneous use of <see cref="F:SharpDX.Direct3D9.TextureArgument.TFactor" /> and <see cref="F:SharpDX.Direct3D9.TextureArgument.Diffuse" />.</p><p>Many cards do not support simultaneous use of multiple textures and mipmapped trilinear filtering. If trilinear filtering has been requested for a texture involved in multitexture blending operations and validation fails, turn off trilinear filtering and revalidate. In this case, you might want to perform multipass rendering instead.</p>
  5586. </remarks>
  5587. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::ValidateDevice']/*" />
  5588. <msdn-id>bb205859</msdn-id>
  5589. <unmanaged>HRESULT IDirect3DDevice9::ValidateDevice([In] unsigned int* pNumPasses)</unmanaged>
  5590. <unmanaged-short>IDirect3DDevice9::ValidateDevice</unmanaged-short>
  5591. </member>
  5592. <member name="M:SharpDX.Direct3D9.Device.SetPaletteEntries(System.Int32,SharpDX.Direct3D9.PaletteEntry[])">
  5593. <summary>
  5594. <p>Sets palette entries.</p>
  5595. </summary>
  5596. <param name="paletteNumber"><dd> <p>An ordinal value identifying the particular palette upon which the operation is to be performed. </p> </dd></param>
  5597. <param name="entriesRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, representing the palette entries to set. The number of <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structures pointed to by pEntries is assumed to be 256. See Remarks. </p> </dd></param>
  5598. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5599. <remarks>
  5600. <p>For Direct3D 9 applications, any palette sent to this method must conform to the <see cref="F:SharpDX.Direct3D9.TextureCaps.AlphaPalette" /> capability bit of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure. If <see cref="F:SharpDX.Direct3D9.TextureCaps.AlphaPalette" /> is not set, every entry in the palette must have alpha set to 1.0 or this method will fail with <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. If <see cref="F:SharpDX.Direct3D9.TextureCaps.AlphaPalette" /> is set, then any set of alpha values are allowed. Note that the debug runtime will print a warning message if all palette entries have alpha set to 0. </p><p>A single logical palette is associated with the device, and is shared by all texture stages.</p>
  5601. </remarks>
  5602. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetPaletteEntries']/*" />
  5603. <msdn-id>bb174439</msdn-id>
  5604. <unmanaged>HRESULT IDirect3DDevice9::SetPaletteEntries([In] unsigned int PaletteNumber,[In, Buffer] const PALETTEENTRY* pEntries)</unmanaged>
  5605. <unmanaged-short>IDirect3DDevice9::SetPaletteEntries</unmanaged-short>
  5606. </member>
  5607. <member name="M:SharpDX.Direct3D9.Device.GetPaletteEntries(System.Int32,SharpDX.Direct3D9.PaletteEntry[])">
  5608. <summary>
  5609. <p>Retrieves palette entries.</p>
  5610. </summary>
  5611. <param name="paletteNumber"><dd> <p>An ordinal value identifying the particular palette to retrieve. </p> </dd></param>
  5612. <param name="entriesRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, representing the returned palette entries. </p> </dd></param>
  5613. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5614. <remarks>
  5615. <p>For more information about <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong>, see the Platform SDK.</p><p><strong>Note</strong>??As of Direct3D 9, the peFlags member of the <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure does not work the way it is documented in the Platform SDK. The peFlags member is now the alpha channel for 8-bit palettized formats.</p>
  5616. </remarks>
  5617. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetPaletteEntries']/*" />
  5618. <msdn-id>bb174397</msdn-id>
  5619. <unmanaged>HRESULT IDirect3DDevice9::GetPaletteEntries([In] unsigned int PaletteNumber,[In, Buffer] PALETTEENTRY* pEntries)</unmanaged>
  5620. <unmanaged-short>IDirect3DDevice9::GetPaletteEntries</unmanaged-short>
  5621. </member>
  5622. <member name="M:SharpDX.Direct3D9.Device.SetCurrentTexturePalette(System.Int32)">
  5623. <summary>
  5624. <p>Sets the current texture palette.</p>
  5625. </summary>
  5626. <param name="paletteNumber"><dd> <p>Value that specifies the texture palette to set as the current texture palette. </p> </dd></param>
  5627. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5628. <remarks>
  5629. <p>A single logical palette is associated with the device, and is shared by all texture stages.</p>
  5630. </remarks>
  5631. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetCurrentTexturePalette']/*" />
  5632. <msdn-id>bb174428</msdn-id>
  5633. <unmanaged>HRESULT IDirect3DDevice9::SetCurrentTexturePalette([In] unsigned int PaletteNumber)</unmanaged>
  5634. <unmanaged-short>IDirect3DDevice9::SetCurrentTexturePalette</unmanaged-short>
  5635. </member>
  5636. <member name="M:SharpDX.Direct3D9.Device.GetCurrentTexturePalette(System.Int32@)">
  5637. <summary>
  5638. <p>Retrieves the current texture palette.</p>
  5639. </summary>
  5640. <param name="paletteNumber"><dd> <p>Pointer to a returned value that identifies the current texture palette. </p> </dd></param>
  5641. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5642. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetCurrentTexturePalette']/*" />
  5643. <msdn-id>bb174383</msdn-id>
  5644. <unmanaged>HRESULT IDirect3DDevice9::GetCurrentTexturePalette([Out] unsigned int* PaletteNumber)</unmanaged>
  5645. <unmanaged-short>IDirect3DDevice9::GetCurrentTexturePalette</unmanaged-short>
  5646. </member>
  5647. <member name="M:SharpDX.Direct3D9.Device.SetScissorRect(SharpDX.Mathematics.Interop.RawRectangle)">
  5648. <summary>
  5649. <p>Sets the scissor rectangle.</p>
  5650. </summary>
  5651. <param name="rectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure that defines the rendering area within the render target if scissor test is enabled. This parameter may not be <strong><c>null</c></strong>.</p> </dd></param>
  5652. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5653. <remarks>
  5654. <p>The scissor rectangle is used as a rectangular clipping region.</p><p>See Rectangles (Direct3D 9) for further information on the use of rectangles in DirectX.</p>
  5655. </remarks>
  5656. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetScissorRect']/*" />
  5657. <msdn-id>bb174457</msdn-id>
  5658. <unmanaged>HRESULT IDirect3DDevice9::SetScissorRect([In] const RECT* pRect)</unmanaged>
  5659. <unmanaged-short>IDirect3DDevice9::SetScissorRect</unmanaged-short>
  5660. </member>
  5661. <member name="M:SharpDX.Direct3D9.Device.GetScissorRect(SharpDX.Mathematics.Interop.RawRectangle@)">
  5662. <summary>
  5663. <p>Gets the scissor rectangle.</p>
  5664. </summary>
  5665. <param name="rectRef"><dd> <p>Returns a reference to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure that defines the rendering area within the render target if scissor test is enabled.</p> </dd></param>
  5666. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5667. <remarks>
  5668. <p>The scissor rectangle is used as a rectangular clipping region.</p><p>See Rectangles (Direct3D 9) for further information on the use of rectangles in DirectX.</p>
  5669. </remarks>
  5670. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetScissorRect']/*" />
  5671. <msdn-id>bb174407</msdn-id>
  5672. <unmanaged>HRESULT IDirect3DDevice9::GetScissorRect([Out] RECT* pRect)</unmanaged>
  5673. <unmanaged-short>IDirect3DDevice9::GetScissorRect</unmanaged-short>
  5674. </member>
  5675. <member name="M:SharpDX.Direct3D9.Device.SetSoftwareVertexProcessing(SharpDX.Mathematics.Interop.RawBool)">
  5676. <summary>
  5677. <p>Use this method to switch between software and hardware vertex processing.</p>
  5678. </summary>
  5679. <param name="bSoftware"><dd> <p><strong>TRUE</strong> to specify software vertex processing; <strong><see cref="F:SharpDX.Result.False" /></strong> to specify hardware vertex processing.</p> </dd></param>
  5680. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5681. <remarks>
  5682. <p>The restrictions for changing modes are as follows:</p><ul> <li>If a device is created with <see cref="F:SharpDX.Direct3D9.CreateFlags.SoftwareVertexProcessing" />, the vertex processing will be done in software and cannot be changed.</li> <li>If a device is created with <see cref="F:SharpDX.Direct3D9.CreateFlags.HardwareVertexProcessing" />, the vertex processing will be done in hardware and cannot be changed.</li> <li>If a device is created with <see cref="F:SharpDX.Direct3D9.CreateFlags.MixedVertexProcessing" />, the vertex processing will be done in hardware by default. The processing can be switched to software (or back to hardware) using <strong><see cref="M:SharpDX.Direct3D9.Device.SetSoftwareVertexProcessing(SharpDX.Mathematics.Interop.RawBool)" /></strong>.</li> </ul><p>An application can create a mixed-mode device to use both the software vertex processing and the hardware vertex processing. To switch between the two vertex processing modes in DirectX 8.x, use IDirect3DDevice8::SetRenderState with the render state D3DRS_SOFTWAREVERTEXPROCESSING and the appropriate DWORD argument. The drawback of the render state approach was the difficulty in defining the semantics for state blocks. Applications and the runtime had to do extra work and be careful while recording and playing back state blocks.</p><p>In Direct3D 9, use <strong>SetSoftwareVertexProcessing</strong> instead. This new API is not recorded by StateBlocks.</p>
  5683. </remarks>
  5684. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetSoftwareVertexProcessing']/*" />
  5685. <msdn-id>bb174458</msdn-id>
  5686. <unmanaged>HRESULT IDirect3DDevice9::SetSoftwareVertexProcessing([In] BOOL bSoftware)</unmanaged>
  5687. <unmanaged-short>IDirect3DDevice9::SetSoftwareVertexProcessing</unmanaged-short>
  5688. </member>
  5689. <member name="M:SharpDX.Direct3D9.Device.GetSoftwareVertexProcessing">
  5690. <summary>
  5691. <p>Gets the vertex processing (hardware or software) mode.</p>
  5692. </summary>
  5693. <returns><p>Returns <strong>TRUE</strong> if software vertex processing is set. Otherwise, it returns <strong><see cref="F:SharpDX.Result.False" /></strong>.</p></returns>
  5694. <remarks>
  5695. <p>An application can create a mixed-mode device to use both the software vertex processing and the hardware vertex processing. To switch between the two vertex processing modes in DirectX 8.x, use <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderState(SharpDX.Direct3D9.RenderState,System.Boolean)" /></strong> with the render state D3DRS_SOFTWAREVERTEXPROCESSING and the appropriate <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> argument. The drawback of the render state approach was the difficulty in defining the semantics for state blocks. Applications and the runtime had to do extra work and be careful while recording and playing back state blocks.</p><p>In Direct3D 9, use <strong><see cref="M:SharpDX.Direct3D9.Device.SetSoftwareVertexProcessing(SharpDX.Mathematics.Interop.RawBool)" /></strong> instead. This new API is not recorded by StateBlocks.</p>
  5696. </remarks>
  5697. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetSoftwareVertexProcessing']/*" />
  5698. <msdn-id>bb174408</msdn-id>
  5699. <unmanaged>BOOL IDirect3DDevice9::GetSoftwareVertexProcessing()</unmanaged>
  5700. <unmanaged-short>IDirect3DDevice9::GetSoftwareVertexProcessing</unmanaged-short>
  5701. </member>
  5702. <member name="M:SharpDX.Direct3D9.Device.SetNPatchMode(System.Single)">
  5703. <summary>
  5704. <p>Enable or disable N-patches.</p>
  5705. </summary>
  5706. <param name="nSegments"><dd> <p>Specifies the number of subdivision segments. If the number of segments is less than 1.0, N-patches are disabled. The default value is 0.0. </p> </dd></param>
  5707. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. </p></returns>
  5708. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetNPatchMode']/*" />
  5709. <msdn-id>bb174438</msdn-id>
  5710. <unmanaged>HRESULT IDirect3DDevice9::SetNPatchMode([In] float nSegments)</unmanaged>
  5711. <unmanaged-short>IDirect3DDevice9::SetNPatchMode</unmanaged-short>
  5712. </member>
  5713. <member name="M:SharpDX.Direct3D9.Device.GetNPatchMode">
  5714. <summary>
  5715. <p>Gets the N-patch mode segments.</p>
  5716. </summary>
  5717. <returns><p>Specifies the number of subdivision segments. If the number of segments is less than 1.0, N-patches are disabled. The default value is 0.0. </p></returns>
  5718. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetNPatchMode']/*" />
  5719. <msdn-id>bb174395</msdn-id>
  5720. <unmanaged>float IDirect3DDevice9::GetNPatchMode()</unmanaged>
  5721. <unmanaged-short>IDirect3DDevice9::GetNPatchMode</unmanaged-short>
  5722. </member>
  5723. <member name="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)">
  5724. <summary>
  5725. <p>Renders a sequence of nonindexed, geometric primitives of the specified type from the current set of data input streams.</p>
  5726. </summary>
  5727. <param name="primitiveType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.PrimitiveType" /></strong> enumerated type, describing the type of primitive to render. </p> </dd></param>
  5728. <param name="startVertex"><dd> <p>Index of the first vertex to load. Beginning at StartVertex the correct number of vertices will be read out of the vertex buffer. </p> </dd></param>
  5729. <param name="primitiveCount"><dd> <p>Number of primitives to render. The maximum number of primitives allowed is determined by checking the MaxPrimitiveCount member of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure. PrimitiveCount is the number of primitives as determined by the primitive type. If it is a line list, each primitive has two vertices. If it is a triangle list, each primitive has three vertices. </p> </dd></param>
  5730. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5731. <remarks>
  5732. <p>When converting a legacy application to Direct3D 9, you must add a call to either <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexFormat(SharpDX.Direct3D9.VertexFormat)" /></strong> to use the fixed function pipeline, or <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexDeclaration(SharpDX.Direct3D9.VertexDeclaration)" /></strong> to use a vertex shader before you make any Draw calls.</p>
  5733. </remarks>
  5734. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::DrawPrimitive']/*" />
  5735. <msdn-id>bb174371</msdn-id>
  5736. <unmanaged>HRESULT IDirect3DDevice9::DrawPrimitive([In] D3DPRIMITIVETYPE PrimitiveType,[In] unsigned int StartVertex,[In] unsigned int PrimitiveCount)</unmanaged>
  5737. <unmanaged-short>IDirect3DDevice9::DrawPrimitive</unmanaged-short>
  5738. </member>
  5739. <member name="M:SharpDX.Direct3D9.Device.DrawIndexedPrimitive(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  5740. <summary>
  5741. <p>Based on indexing, renders the specified geometric primitive into an array of vertices.</p>
  5742. </summary>
  5743. <param name="arg0"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.PrimitiveType" /></strong> enumerated type, describing the type of primitive to render. <see cref="F:SharpDX.Direct3D9.PrimitiveType.PointList" /> is not supported with this method. See Remarks. </p> </dd></param>
  5744. <param name="baseVertexIndex"><dd> <p>Offset from the start of the vertex buffer to the first vertex. See Scenario 4.</p> </dd></param>
  5745. <param name="minVertexIndex"><dd> <p>Minimum vertex index for vertices used during this call. This is a zero based index relative to BaseVertexIndex.</p> </dd></param>
  5746. <param name="numVertices"><dd> <p>Number of vertices used during this call. The first vertex is located at index: BaseVertexIndex + MinIndex.</p> </dd></param>
  5747. <param name="startIndex"><dd> <p>Index of the first index to use when accesssing the vertex buffer. Beginning at StartIndex to index vertices from the vertex buffer.</p> </dd></param>
  5748. <param name="primCount"><dd> <p>Number of primitives to render. The number of vertices used is a function of the primitive count and the primitive type. The maximum number of primitives allowed is determined by checking the MaxPrimitiveCount member of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure. </p> </dd></param>
  5749. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5750. <remarks>
  5751. <p>This method draws indexed primitives from the current set of data input streams. MinIndex and all the indices in the index stream are relative to the BaseVertexIndex.</p><p>The MinIndex and NumVertices parameters specify the range of vertex indices used for each <strong><see cref="M:SharpDX.Direct3D9.Device.DrawIndexedPrimitive(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" /></strong> call. These are used to optimize vertex processing of indexed primitives by processing a sequential range of vertices prior to indexing into these vertices. It is invalid for any indices used during this call to reference any vertices outside of this range.</p><p><strong><see cref="M:SharpDX.Direct3D9.Device.DrawIndexedPrimitive(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" /></strong> fails if no index array is set.</p><p>The <see cref="F:SharpDX.Direct3D9.PrimitiveType.PointList" /> member of the <strong><see cref="T:SharpDX.Direct3D9.PrimitiveType" /></strong> enumerated type is not supported and is not a valid type for this method.</p><p>When converting a legacy application to Direct3D 9, you must add a call to either <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexFormat(SharpDX.Direct3D9.VertexFormat)" /></strong> to use the fixed function pipeline, or <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexDeclaration(SharpDX.Direct3D9.VertexDeclaration)" /></strong> to use a vertex shader before you make any Draw calls.</p>
  5752. </remarks>
  5753. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::DrawIndexedPrimitive']/*" />
  5754. <msdn-id>bb174369</msdn-id>
  5755. <unmanaged>HRESULT IDirect3DDevice9::DrawIndexedPrimitive([In] D3DPRIMITIVETYPE arg0,[In] int BaseVertexIndex,[In] unsigned int MinVertexIndex,[In] unsigned int NumVertices,[In] unsigned int startIndex,[In] unsigned int primCount)</unmanaged>
  5756. <unmanaged-short>IDirect3DDevice9::DrawIndexedPrimitive</unmanaged-short>
  5757. </member>
  5758. <member name="M:SharpDX.Direct3D9.Device.DrawPrimitiveUP(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.IntPtr,System.Int32)">
  5759. <summary>
  5760. <p>Renders data specified by a user memory reference as a sequence of geometric primitives of the specified type.</p>
  5761. </summary>
  5762. <param name="primitiveType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.PrimitiveType" /></strong> enumerated type, describing the type of primitive to render. </p> </dd></param>
  5763. <param name="primitiveCount"><dd> <p>Number of primitives to render. The maximum number of primitives allowed is determined by checking the MaxPrimitiveCount member of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure. </p> </dd></param>
  5764. <param name="vertexStreamZeroDataRef"><dd> <p>User memory reference to the vertex data.</p> </dd></param>
  5765. <param name="vertexStreamZeroStride"><dd> <p>The number of bytes of data for each vertex. This value may not be 0.</p> </dd></param>
  5766. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5767. <remarks>
  5768. <p>This method is intended for use in applications that are unable to store their vertex data in vertex buffers. This method supports only a single vertex stream. The effect of this call is to use the provided vertex data reference and stride for vertex stream 0. It is invalid to have the declaration of the current vertex shader refer to vertex streams other than stream 0.</p><p>Following any <strong><see cref="M:SharpDX.Direct3D9.Device.DrawPrimitiveUP(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.IntPtr,System.Int32)" /></strong> call, the stream 0 settings, referenced by <strong><see cref="M:SharpDX.Direct3D9.Device.GetStreamSource(System.Int32,SharpDX.Direct3D9.VertexBuffer@,System.Int32@,System.Int32@)" /></strong>, are set to <strong><c>null</c></strong>.</p><p>The vertex data passed to <strong><see cref="M:SharpDX.Direct3D9.Device.DrawPrimitiveUP(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.IntPtr,System.Int32)" /></strong> does not need to persist after the call. Direct3D completes its access to that data prior to returning from the call.</p><p>When converting a legacy application to Direct3D 9, you must add a call to either <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexFormat(SharpDX.Direct3D9.VertexFormat)" /></strong> to use the fixed function pipeline, or <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexDeclaration(SharpDX.Direct3D9.VertexDeclaration)" /></strong> to use a vertex shader before you make any Draw calls.</p>
  5769. </remarks>
  5770. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::DrawPrimitiveUP']/*" />
  5771. <msdn-id>bb174372</msdn-id>
  5772. <unmanaged>HRESULT IDirect3DDevice9::DrawPrimitiveUP([In] D3DPRIMITIVETYPE PrimitiveType,[In] unsigned int PrimitiveCount,[In] const void* pVertexStreamZeroData,[In] unsigned int VertexStreamZeroStride)</unmanaged>
  5773. <unmanaged-short>IDirect3DDevice9::DrawPrimitiveUP</unmanaged-short>
  5774. </member>
  5775. <member name="M:SharpDX.Direct3D9.Device.DrawIndexedPrimitiveUP(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.IntPtr,SharpDX.Direct3D9.Format,System.IntPtr,System.Int32)">
  5776. <summary>
  5777. <p>Renders the specified geometric primitive with data specified by a user memory reference.</p>
  5778. </summary>
  5779. <param name="primitiveType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.PrimitiveType" /></strong> enumerated type, describing the type of primitive to render. </p> </dd></param>
  5780. <param name="minVertexIndex"><dd> <p>Minimum vertex index. This is a zero-based index.</p> </dd></param>
  5781. <param name="numVertices"><dd> <p> Number of vertices used during this call. The first vertex is located at index: MinVertexIndex.</p> </dd></param>
  5782. <param name="primitiveCount"><dd> <p>Number of primitives to render. The maximum number of primitives allowed is determined by checking the MaxPrimitiveCount member of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure (the number of indices is a function of the primitive count and the primitive type).</p> </dd></param>
  5783. <param name="indexDataRef"><dd> <p>User memory reference to the index data. </p> </dd></param>
  5784. <param name="indexDataFormat"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the format of the index data. The valid settings are either: </p> <ul> <li> <see cref="F:SharpDX.Direct3D9.Format.Index16" /> </li> <li> <see cref="F:SharpDX.Direct3D9.Format.Index32" /> </li> </ul> </dd></param>
  5785. <param name="vertexStreamZeroDataRef"><dd> <p>User memory reference to the vertex data. The vertex data must be in stream 0.</p> </dd></param>
  5786. <param name="vertexStreamZeroStride"><dd> <p>The number of bytes of data for each vertex. This value may not be 0.</p> </dd></param>
  5787. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5788. <remarks>
  5789. <p>This method is intended for use in applications that are unable to store their vertex data in vertex buffers. This method supports only a single vertex stream, which must be declared as stream 0.</p><p>Following any <strong><see cref="M:SharpDX.Direct3D9.Device.DrawIndexedPrimitiveUP(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.IntPtr,SharpDX.Direct3D9.Format,System.IntPtr,System.Int32)" /></strong> call, the stream 0 settings, referenced by <strong><see cref="M:SharpDX.Direct3D9.Device.GetStreamSource(System.Int32,SharpDX.Direct3D9.VertexBuffer@,System.Int32@,System.Int32@)" /></strong>, are set to <strong><c>null</c></strong>. Also, the index buffer setting for <strong><see cref="M:SharpDX.Direct3D9.Device.SetIndices(SharpDX.Direct3D9.IndexBuffer)" /></strong> is set to <strong><c>null</c></strong>.</p><p>The vertex data passed to <strong><see cref="M:SharpDX.Direct3D9.Device.DrawIndexedPrimitiveUP(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.IntPtr,SharpDX.Direct3D9.Format,System.IntPtr,System.Int32)" /></strong> does not need to persist after the call. Direct3D completes its access to that data prior to returning from the call.</p><p>When converting a legacy application to Direct3D 9, you must add a call to either <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexFormat(SharpDX.Direct3D9.VertexFormat)" /></strong> to use the fixed function pipeline, or <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexDeclaration(SharpDX.Direct3D9.VertexDeclaration)" /></strong> to use a vertex shader before you make any Draw calls.</p>
  5790. </remarks>
  5791. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::DrawIndexedPrimitiveUP']/*" />
  5792. <msdn-id>bb174370</msdn-id>
  5793. <unmanaged>HRESULT IDirect3DDevice9::DrawIndexedPrimitiveUP([In] D3DPRIMITIVETYPE PrimitiveType,[In] unsigned int MinVertexIndex,[In] unsigned int NumVertices,[In] unsigned int PrimitiveCount,[In] const void* pIndexData,[In] D3DFORMAT IndexDataFormat,[In] const void* pVertexStreamZeroData,[In] unsigned int VertexStreamZeroStride)</unmanaged>
  5794. <unmanaged-short>IDirect3DDevice9::DrawIndexedPrimitiveUP</unmanaged-short>
  5795. </member>
  5796. <member name="M:SharpDX.Direct3D9.Device.ProcessVertices(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexBuffer,SharpDX.Direct3D9.VertexDeclaration,SharpDX.Direct3D9.LockFlags)">
  5797. <summary>
  5798. <p>Applies the vertex processing defined by the vertex shader to the set of input data streams, generating a single stream of interleaved vertex data to the destination vertex buffer. </p>
  5799. </summary>
  5800. <param name="srcStartIndex"><dd> <p>Index of first vertex to load. </p> </dd></param>
  5801. <param name="destIndex"><dd> <p>Index of first vertex in the destination vertex buffer into which the results are placed. </p> </dd></param>
  5802. <param name="vertexCount"><dd> <p>Number of vertices to process. </p> </dd></param>
  5803. <param name="destBufferRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong> interface, the destination vertex buffer representing the stream of interleaved vertex data. </p> </dd></param>
  5804. <param name="vertexDeclRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.VertexDeclaration" /></strong> interface that represents the output vertex data declaration. When vertex shader 3.0 or above is set as the current vertex shader, the output vertex declaration must be present.</p> </dd></param>
  5805. <param name="flags"><dd> <p>Processing options. Set this parameter to 0 for default processing. Set to D3DPV_DONOTCOPYDATA to prevent the system from copying vertex data not affected by the vertex operation into the destination buffer. The D3DPV_DONOTCOPYDATA value may be combined with one or more <see cref="T:SharpDX.Direct3D9.LockFlags" /> values appropriate for the destination buffer.</p> </dd></param>
  5806. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5807. <remarks>
  5808. <p>The order of operations for this method is as follows:</p><ul> <li>Transform vertices to projection space using the world + view + projection matrix.</li> <li>Compute screen coordinates using viewport settings.</li> <li>If clipping is enabled, compute clipping codes and store them in an internal buffer, associated with the destination vertex buffer. If a vertex is inside the viewing frustum, its screen coordinates are computed. If the vertex is outside the viewing frustum, the vertex is stored in the destination vertex buffer in projection space coordinates.</li> <li>Other notes: The user does not have access to the internal clip code buffer. No clipping is done on triangles or any other primitives.</li> </ul><p>The destination vertex buffer, pDestBuffer, must be created with a nonzero FVF parameter in <strong><see cref="M:SharpDX.Direct3D9.Device.CreateVertexBuffer(System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VertexBuffer,System.IntPtr)" /></strong>. The FVF code specified during the call to the <strong><see cref="M:SharpDX.Direct3D9.Device.CreateVertexBuffer(System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VertexBuffer,System.IntPtr)" /></strong> method specifies the vertex elements present in the destination vertex buffer.</p><p>When Direct3D generates texture coordinates, or copies or transforms input texture coordinates, and the output texture coordinate format defines more texture coordinate components than Direct3D generates, Direct3D does not change these extra components.</p>
  5809. </remarks>
  5810. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::ProcessVertices']/*" />
  5811. <msdn-id>bb174424</msdn-id>
  5812. <unmanaged>HRESULT IDirect3DDevice9::ProcessVertices([In] unsigned int SrcStartIndex,[In] unsigned int DestIndex,[In] unsigned int VertexCount,[In] IDirect3DVertexBuffer9* pDestBuffer,[In] IDirect3DVertexDeclaration9* pVertexDecl,[In] D3DLOCK Flags)</unmanaged>
  5813. <unmanaged-short>IDirect3DDevice9::ProcessVertices</unmanaged-short>
  5814. </member>
  5815. <member name="M:SharpDX.Direct3D9.Device.CreateVertexDeclaration(SharpDX.Direct3D9.VertexElement[],SharpDX.Direct3D9.VertexDeclaration)">
  5816. <summary>
  5817. <p>Create a vertex shader declaration from the device and the vertex elements.</p>
  5818. </summary>
  5819. <param name="vertexElementsRef"><dd> <p>An array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> vertex elements.</p> </dd></param>
  5820. <param name="declOut"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.VertexDeclaration" /></strong> reference that returns the created vertex shader declaration.</p> </dd></param>
  5821. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5822. <remarks>
  5823. <p>See the Vertex Declaration (Direct3D 9) page for a detailed description of how to map vertex declarations between different versions of DirectX.</p>
  5824. </remarks>
  5825. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateVertexDeclaration']/*" />
  5826. <msdn-id>bb174365</msdn-id>
  5827. <unmanaged>HRESULT IDirect3DDevice9::CreateVertexDeclaration([In, Buffer] const D3DVERTEXELEMENT9* pVertexElements,[Out, Fast] IDirect3DVertexDeclaration9** ppDecl)</unmanaged>
  5828. <unmanaged-short>IDirect3DDevice9::CreateVertexDeclaration</unmanaged-short>
  5829. </member>
  5830. <member name="M:SharpDX.Direct3D9.Device.SetVertexDeclaration(SharpDX.Direct3D9.VertexDeclaration)">
  5831. <summary>
  5832. <p>Sets a Vertex Declaration (Direct3D 9).</p>
  5833. </summary>
  5834. <param name="declRef">No documentation.</param>
  5835. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. The return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5836. <remarks>
  5837. <p>A vertex declaration is an <see cref="T:SharpDX.Direct3D9.VertexDeclaration" /> object that defines the data members of a vertex (i.e. texture coordinates, colors, normals, etc.). This data can be useful for implementing vertex shaders and pixel shaders.</p>
  5838. </remarks>
  5839. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetVertexDeclaration']/*" />
  5840. <msdn-id>bb174464</msdn-id>
  5841. <unmanaged>HRESULT IDirect3DDevice9::SetVertexDeclaration([In] IDirect3DVertexDeclaration9* pDecl)</unmanaged>
  5842. <unmanaged-short>IDirect3DDevice9::SetVertexDeclaration</unmanaged-short>
  5843. </member>
  5844. <member name="M:SharpDX.Direct3D9.Device.GetVertexDeclaration(SharpDX.Direct3D9.VertexDeclaration@)">
  5845. <summary>
  5846. <p>Gets a vertex shader declaration.</p>
  5847. </summary>
  5848. <param name="declOut"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.VertexDeclaration" /></strong> object that is returned.</p> </dd></param>
  5849. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. The return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5850. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetVertexDeclaration']/*" />
  5851. <msdn-id>bb174415</msdn-id>
  5852. <unmanaged>HRESULT IDirect3DDevice9::GetVertexDeclaration([Out] IDirect3DVertexDeclaration9** ppDecl)</unmanaged>
  5853. <unmanaged-short>IDirect3DDevice9::GetVertexDeclaration</unmanaged-short>
  5854. </member>
  5855. <member name="M:SharpDX.Direct3D9.Device.SetVertexFormat(SharpDX.Direct3D9.VertexFormat)">
  5856. <summary>
  5857. <p>Sets the current vertex stream declaration.</p>
  5858. </summary>
  5859. <param name="vertexFormat"><dd> <p>DWORD containing the fixed function vertex type. For more information, see <see cref="T:SharpDX.Direct3D9.VertexFormat" />.</p> </dd></param>
  5860. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5861. <remarks>
  5862. <p>Here are the steps necessary to initialize and use vertices that have a position, diffuse and specular color, and texture coordinates:</p><ol> <li>Define the custom vertex type and FVF code. <pre> struct LVertex
  5863. { FLOAT x, y, z; <see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /> specular, diffuse; FLOAT tu, tv;
  5864. }; const DWORD VertexFVF = (<see cref="F:SharpDX.Direct3D9.VertexFormat.Position" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Diffuse" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Specular" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Texture1" /> );
  5865. </pre> </li> <li>Create a vertex buffer with enough room for four vertices using <strong><see cref="M:SharpDX.Direct3D9.Device.CreateVertexBuffer(System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VertexBuffer,System.IntPtr)" /></strong>. <pre> g_d3dDevice-&gt;CreateVertexBuffer( 4*sizeof(LVertex), <see cref="F:SharpDX.Direct3D9.Usage.WriteOnly" />, VertexFVF, <see cref="F:SharpDX.Direct3D9.Pool.Default" />, &amp;pBigSquareVB, <c>null</c> );
  5866. </pre> </li> <li>Set the values for each vertex. <pre> LVertex * v;
  5867. pBigSquareVB-&gt;Lock( 0, 0, (BYTE**)&amp;v, 0 ); v[0].x = 0.0f; v[0].y = 10.0; v[0].z = 10.0f;
  5868. v[0].diffuse = 0xffff0000;
  5869. v[0].specular = 0xff00ff00;
  5870. v[0].tu = 0.0f; v[0].tv = 0.0f; v[1].x = 0.0f; v[1].y = 0.0f; v[1].z = 10.0f;
  5871. v[1].diffuse = 0xff00ff00;
  5872. v[1].specular = 0xff00ffff;
  5873. v[1].tu = 0.0f; v[1].tv = 0.0f; v[2].x = 10.0f; v[2].y = 10.0f; v[2].z = 10.0f;
  5874. v[2].diffuse = 0xffff00ff;
  5875. v[2].specular = 0xff000000;
  5876. v[2].tu = 0.0f; v[2].tv = 0.0f; v[3].x = 0.0f; v[3].y = 10.0f; v[3].z = 10.0f;
  5877. v[3].diffuse = 0xffffff00;
  5878. v[3].specular = 0xffff0000;
  5879. v[3].tu = 0.0f; v[3].tv = 0.0f; pBigSquareVB-&gt;Unlock();
  5880. </pre> </li> <li>The vertex buffer has been initialized and is ready to render. The following code example shows how to use the legacy FVF to draw a square. <pre> g_d3dDevice-&gt;SetFVF(VertexFVF);
  5881. g_d3dDevice-&gt;SetStreamSource(0, pBigSquareVB, 0, sizeof(LVertex));
  5882. g_d3dDevice-&gt;DrawPrimitive(<see cref="F:SharpDX.Direct3D9.PrimitiveType.TriangleStrip" />, 0 ,2);
  5883. </pre> </li> </ol><p>Here are the steps necessary to initialize and use vertices that have a position, a normal, and texture coordinates:</p><ol> <li>Define the custom vertex type and FVF code. <pre> struct Vertex
  5884. { FLOAT x, y, z; FLOAT nx, ny, nz; FLOAT tu, tv;
  5885. }; const DWORD VertexFVF = ( <see cref="F:SharpDX.Direct3D9.VertexFormat.Position" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Texture1" /> );
  5886. </pre> </li> <li>Create a vertex buffer with enough room for four vertices using <strong><see cref="M:SharpDX.Direct3D9.Device.CreateVertexBuffer(System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VertexBuffer,System.IntPtr)" /></strong> (similar to the example above).</li> <li>Set the values for each vertex. <pre> Vertex * v;
  5887. pBigSquareVB-&gt;Lock(0, 0, (BYTE**)&amp;v, 0); v[0].x = 0.0f; v[0].y = 10.0; v[0].z = 10.0f;
  5888. v[0].nx = 0.0f; v[0].ny = 1.0f; v[0].nz = 0.0f;
  5889. v[0].tu = 0.0f; v[0].tv = 0.0f; v[1].x = 0.0f; v[1].y = 0.0f; v[1].z = 10.0f;
  5890. v[1].nx = 0.0f; v[1].ny = 1.0f; v[1].nz = 0.0f;
  5891. v[1].tu = 0.0f; v[1].tv = 0.0f; v[2].x = 10.0f; v[2].y = 10.0f; v[2].z = 10.0f;
  5892. v[2].nx = 0.0f; v[2].ny = 1.0f; v[2].nz = 0.0f;
  5893. v[2].tu = 0.0f; v[2].tv = 0.0f; v[3].x = 0.0f; v[3].y = 10.0f; v[3].z = 10.0f;
  5894. v[3].nx = 0.0f; v[3].ny = 1.0f; v[3].nz = 0.0f;
  5895. v[3].tu = 0.0f; v[3].tv = 0.0f; pBigSquareVB-&gt;Unlock();
  5896. </pre> </li> <li>Draw the object (similar to the example above).</li> </ol>
  5897. </remarks>
  5898. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetFVF']/*" />
  5899. <msdn-id>bb174433</msdn-id>
  5900. <unmanaged>HRESULT IDirect3DDevice9::SetFVF([In] D3DFVF FVF)</unmanaged>
  5901. <unmanaged-short>IDirect3DDevice9::SetFVF</unmanaged-short>
  5902. </member>
  5903. <member name="M:SharpDX.Direct3D9.Device.GetVertexFormat(SharpDX.Direct3D9.VertexFormat@)">
  5904. <summary>
  5905. <p>Gets the fixed vertex function declaration.</p>
  5906. </summary>
  5907. <param name="ertexFormatRef"><dd> <p>A DWORD reference to the fixed function vertex type. For more information, see <see cref="T:SharpDX.Direct3D9.VertexFormat" />.</p> </dd></param>
  5908. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5909. <remarks>
  5910. <p>The fixed vertex function declaration is a set of FVF flags that determine how vertices processed by the fixed function pipeline will be used.</p>
  5911. </remarks>
  5912. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetFVF']/*" />
  5913. <msdn-id>bb174389</msdn-id>
  5914. <unmanaged>HRESULT IDirect3DDevice9::GetFVF([Out] D3DFVF* pFVF)</unmanaged>
  5915. <unmanaged-short>IDirect3DDevice9::GetFVF</unmanaged-short>
  5916. </member>
  5917. <member name="M:SharpDX.Direct3D9.Device.CreateVertexShader(System.IntPtr,SharpDX.Direct3D9.VertexShader)">
  5918. <summary>
  5919. <p>Creates a vertex shader.</p>
  5920. </summary>
  5921. <param name="functionRef"><dd> <p>Pointer to an array of tokens that represents the vertex shader, including any embedded debug and symbol table information. </p> <ul> <li>Use a function such as <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CompileShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" /></strong> to create the array from a HLSL shader.</li> <li>Use a function like <strong><see cref="M:SharpDX.Direct3D9.D3DX9.AssembleShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)" /></strong> to create the token array from an assembly language shader.</li> <li>Use a function like <strong><see cref="M:SharpDX.Direct3D9.EffectCompiler.CompileShader(SharpDX.Direct3D9.EffectHandle,System.String,SharpDX.Direct3D9.ShaderFlags)" /></strong> to create the array from an effect.</li> </ul> </dd></param>
  5922. <param name="shaderOut"><dd> <p>Pointer to the returned vertex shader interface (see <strong><see cref="T:SharpDX.Direct3D9.VertexShader" /></strong>).</p> </dd></param>
  5923. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  5924. <remarks>
  5925. <p>When a device is created, <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong> uses the behavior flag to determine whether to process vertices in hardware or software. There are three possibilities:</p><ul> <li>Process vertices in hardware by setting <see cref="F:SharpDX.Direct3D9.CreateFlags.HardwareVertexProcessing" />.</li> <li>Process vertices in software by setting <see cref="F:SharpDX.Direct3D9.CreateFlags.SoftwareVertexProcessing" />.</li> <li>Process vertices in either hardware or software by setting <see cref="F:SharpDX.Direct3D9.CreateFlags.MixedVertexProcessing" />. To switch a mixed-mode device between software and hardware processing, use <strong><see cref="M:SharpDX.Direct3D9.Device.SetSoftwareVertexProcessing(SharpDX.Mathematics.Interop.RawBool)" /></strong>.</li> </ul><p>For an example using <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CompileShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" /></strong>, see HLSLwithoutEffects Sample.</p>
  5926. </remarks>
  5927. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateVertexShader']/*" />
  5928. <msdn-id>bb174366</msdn-id>
  5929. <unmanaged>HRESULT IDirect3DDevice9::CreateVertexShader([In] const void* pFunction,[Out, Fast] IDirect3DVertexShader9** ppShader)</unmanaged>
  5930. <unmanaged-short>IDirect3DDevice9::CreateVertexShader</unmanaged-short>
  5931. </member>
  5932. <member name="M:SharpDX.Direct3D9.Device.SetVertexShader(SharpDX.Direct3D9.VertexShader)">
  5933. <summary>
  5934. <p>Sets the vertex shader.</p>
  5935. </summary>
  5936. <param name="shaderRef"><dd> <p>Vertex shader interface. For more information, see <strong><see cref="T:SharpDX.Direct3D9.VertexShader" /></strong>.</p> </dd></param>
  5937. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  5938. <remarks>
  5939. <p>To set a fixed-function vertex shader (after having set a programmable vertex shader), call <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexShader(SharpDX.Direct3D9.VertexShader)" /></strong>(<c>null</c>) to release the programmable shader, and then call <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexFormat(SharpDX.Direct3D9.VertexFormat)" /></strong> with the fixed-function vertex format.</p>
  5940. </remarks>
  5941. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetVertexShader']/*" />
  5942. <msdn-id>bb174465</msdn-id>
  5943. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShader([In] IDirect3DVertexShader9* pShader)</unmanaged>
  5944. <unmanaged-short>IDirect3DDevice9::SetVertexShader</unmanaged-short>
  5945. </member>
  5946. <member name="M:SharpDX.Direct3D9.Device.GetVertexShader(SharpDX.Direct3D9.VertexShader@)">
  5947. <summary>
  5948. <p>Retrieves the currently set vertex shader.</p>
  5949. </summary>
  5950. <param name="shaderOut"><dd> <p>Pointer to a vertex shader interface.</p> </dd></param>
  5951. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If ppShader is invalid, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned. </p></returns>
  5952. <remarks>
  5953. <p>Typically, methods that return state will not work on a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />. This method however, will work even on a pure device because it returns an interface.</p>
  5954. </remarks>
  5955. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetVertexShader']/*" />
  5956. <msdn-id>bb174416</msdn-id>
  5957. <unmanaged>HRESULT IDirect3DDevice9::GetVertexShader([Out] IDirect3DVertexShader9** ppShader)</unmanaged>
  5958. <unmanaged-short>IDirect3DDevice9::GetVertexShader</unmanaged-short>
  5959. </member>
  5960. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstantF(System.Int32,System.IntPtr,System.Int32)">
  5961. <summary>
  5962. <p>Sets a floating-point vertex shader constant.</p>
  5963. </summary>
  5964. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  5965. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  5966. <param name="vector4fCount"><dd> <p>Number of four float vectors in the array of constants.</p> </dd></param>
  5967. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5968. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetVertexShaderConstantF']/*" />
  5969. <msdn-id>bb174467</msdn-id>
  5970. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  5971. <unmanaged-short>IDirect3DDevice9::SetVertexShaderConstantF</unmanaged-short>
  5972. </member>
  5973. <member name="M:SharpDX.Direct3D9.Device.GetVertexShaderConstantF(System.Int32,System.Single[],System.Int32)">
  5974. <summary>
  5975. <p>Gets a floating-point vertex shader constant.</p>
  5976. </summary>
  5977. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  5978. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  5979. <param name="vector4fCount"><dd> <p>Number of four float vectors in the array of constants.</p> </dd></param>
  5980. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5981. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetVertexShaderConstantF']/*" />
  5982. <msdn-id>bb174418</msdn-id>
  5983. <unmanaged>HRESULT IDirect3DDevice9::GetVertexShaderConstantF([In] unsigned int StartRegister,[In, Buffer] float* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  5984. <unmanaged-short>IDirect3DDevice9::GetVertexShaderConstantF</unmanaged-short>
  5985. </member>
  5986. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstantI(System.Int32,System.IntPtr,System.Int32)">
  5987. <summary>
  5988. <p>Sets an integer vertex shader constant.</p>
  5989. </summary>
  5990. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  5991. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  5992. <param name="vector4iCount"><dd> <p>Number of four integer vectors in the array of constants.</p> </dd></param>
  5993. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  5994. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetVertexShaderConstantI']/*" />
  5995. <msdn-id>bb174468</msdn-id>
  5996. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantI([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4iCount)</unmanaged>
  5997. <unmanaged-short>IDirect3DDevice9::SetVertexShaderConstantI</unmanaged-short>
  5998. </member>
  5999. <member name="M:SharpDX.Direct3D9.Device.GetVertexShaderConstantI(System.Int32,System.Int32[],System.Int32)">
  6000. <summary>
  6001. <p>Gets an integer vertex shader constant.</p>
  6002. </summary>
  6003. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  6004. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  6005. <param name="vector4iCount"><dd> <p>Number of four integer vectors in the array of constants.</p> </dd></param>
  6006. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6007. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetVertexShaderConstantI']/*" />
  6008. <msdn-id>bb174419</msdn-id>
  6009. <unmanaged>HRESULT IDirect3DDevice9::GetVertexShaderConstantI([In] unsigned int StartRegister,[In, Buffer] int* pConstantData,[In] unsigned int Vector4iCount)</unmanaged>
  6010. <unmanaged-short>IDirect3DDevice9::GetVertexShaderConstantI</unmanaged-short>
  6011. </member>
  6012. <member name="M:SharpDX.Direct3D9.Device.SetVertexShaderConstantB(System.Int32,System.IntPtr,System.Int32)">
  6013. <summary>
  6014. <p>Sets a Boolean vertex shader constant.</p>
  6015. </summary>
  6016. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  6017. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  6018. <param name="boolCount"><dd> <p>Number of boolean values in the array of constants.</p> </dd></param>
  6019. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6020. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetVertexShaderConstantB']/*" />
  6021. <msdn-id>bb174466</msdn-id>
  6022. <unmanaged>HRESULT IDirect3DDevice9::SetVertexShaderConstantB([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int BoolCount)</unmanaged>
  6023. <unmanaged-short>IDirect3DDevice9::SetVertexShaderConstantB</unmanaged-short>
  6024. </member>
  6025. <member name="M:SharpDX.Direct3D9.Device.GetVertexShaderConstantB(System.Int32,System.IntPtr,System.Int32)">
  6026. <summary>
  6027. <p>Gets a Boolean vertex shader constant.</p>
  6028. </summary>
  6029. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  6030. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  6031. <param name="boolCount"><dd> <p>Number of Boolean values in the array of constants.</p> </dd></param>
  6032. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6033. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetVertexShaderConstantB']/*" />
  6034. <msdn-id>bb174417</msdn-id>
  6035. <unmanaged>HRESULT IDirect3DDevice9::GetVertexShaderConstantB([In] unsigned int StartRegister,[In] void* pConstantData,[In] unsigned int BoolCount)</unmanaged>
  6036. <unmanaged-short>IDirect3DDevice9::GetVertexShaderConstantB</unmanaged-short>
  6037. </member>
  6038. <member name="M:SharpDX.Direct3D9.Device.SetStreamSource(System.Int32,SharpDX.Direct3D9.VertexBuffer,System.Int32,System.Int32)">
  6039. <summary>
  6040. <p>Binds a vertex buffer to a device data stream. For more information, see Setting the Stream Source (Direct3D 9).</p>
  6041. </summary>
  6042. <param name="streamNumber">No documentation.</param>
  6043. <param name="streamDataRef">No documentation.</param>
  6044. <param name="offsetInBytes">No documentation.</param>
  6045. <param name="stride">No documentation.</param>
  6046. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  6047. <remarks>
  6048. <p>When a FVF vertex shader is used, the stride of the vertex stream must match the vertex size, computed from the FVF. When a declaration is used, the stride should be greater than or equal to the stream size computed from the declaration.</p><p>When calling SetStreamSource, the stride is normally required to be equal to the vertex size. However, there are times when you may want to draw multiple instances of the same or similar geometry (such as when using instancing to draw). For this case, use a zero stride to tell the runtime not to increment the vertex buffer offset (ie: use the same vertex data for all instances). For more information about instancing, see Efficiently Drawing Multiple Instances of Geometry (Direct3D 9).</p>
  6049. </remarks>
  6050. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetStreamSource']/*" />
  6051. <msdn-id>bb174459</msdn-id>
  6052. <unmanaged>HRESULT IDirect3DDevice9::SetStreamSource([In] unsigned int StreamNumber,[In] IDirect3DVertexBuffer9* pStreamData,[In] unsigned int OffsetInBytes,[In] unsigned int Stride)</unmanaged>
  6053. <unmanaged-short>IDirect3DDevice9::SetStreamSource</unmanaged-short>
  6054. </member>
  6055. <member name="M:SharpDX.Direct3D9.Device.GetStreamSource(System.Int32,SharpDX.Direct3D9.VertexBuffer@,System.Int32@,System.Int32@)">
  6056. <summary>
  6057. <p>Retrieves a vertex buffer bound to the specified data stream.</p>
  6058. </summary>
  6059. <param name="streamNumber"><dd> <p>Specifies the data stream, in the range from 0 to the maximum number of streams minus one. </p> </dd></param>
  6060. <param name="streamDataOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong> interface, representing the returned vertex buffer bound to the specified data stream. </p> </dd></param>
  6061. <param name="offsetInBytesRef"><dd> <p>Pointer containing the offset from the beginning of the stream to the beginning of the vertex data. The offset is measured in bytes. See Remarks.</p> </dd></param>
  6062. <param name="strideRef"><dd> <p>Pointer to a returned stride of the component, in bytes. See Remarks. </p> </dd></param>
  6063. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  6064. <remarks>
  6065. <p>A stream is defined as a uniform array of component data, where each component consists of one or more elements representing a single entity such as position, normal, color, and so on.</p><p>When a FVF vertex shader is used, the stride of the vertex stream must match the vertex size, computed from the FVF. When a declaration is used, the stride should be greater than or equal to the stream size computed from the declaration.</p><p> Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong> interface results in a memory leak.</p>
  6066. </remarks>
  6067. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetStreamSource']/*" />
  6068. <msdn-id>bb174409</msdn-id>
  6069. <unmanaged>HRESULT IDirect3DDevice9::GetStreamSource([In] unsigned int StreamNumber,[Out] IDirect3DVertexBuffer9** ppStreamData,[Out] unsigned int* pOffsetInBytes,[Out] unsigned int* pStride)</unmanaged>
  6070. <unmanaged-short>IDirect3DDevice9::GetStreamSource</unmanaged-short>
  6071. </member>
  6072. <member name="M:SharpDX.Direct3D9.Device.SetStreamSourceFrequency(System.Int32,System.Int32)">
  6073. <summary>
  6074. <p>Sets the stream source frequency divider value. This may be used to draw several instances of geometry.</p>
  6075. </summary>
  6076. <param name="streamNumber"><dd> <p>Stream source number.</p> </dd></param>
  6077. <param name="setting"><dd> <p>This parameter may have two different values. See remarks.</p> </dd></param>
  6078. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  6079. <remarks>
  6080. <p>There are two constants defined in d3d9types.h that are designed to use with SetStreamSourceFreq: <see cref="F:SharpDX.Direct3D9.StreamSource.IndexedData" /> and <see cref="F:SharpDX.Direct3D9.StreamSource.InstanceData" />. To see how to use the constants, see Efficiently Drawing Multiple Instances of Geometry (Direct3D 9).</p>
  6081. </remarks>
  6082. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetStreamSourceFreq']/*" />
  6083. <msdn-id>bb174460</msdn-id>
  6084. <unmanaged>HRESULT IDirect3DDevice9::SetStreamSourceFreq([In] unsigned int StreamNumber,[In] unsigned int Setting)</unmanaged>
  6085. <unmanaged-short>IDirect3DDevice9::SetStreamSourceFreq</unmanaged-short>
  6086. </member>
  6087. <member name="M:SharpDX.Direct3D9.Device.GetStreamSourceFrequency(System.Int32,System.Int32@)">
  6088. <summary>
  6089. <p>Gets the stream source frequency divider value.</p>
  6090. </summary>
  6091. <param name="streamNumber"><dd> <p>Stream source number.</p> </dd></param>
  6092. <param name="settingRef"><dd> <p>Returns the frequency divider value.</p> </dd></param>
  6093. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  6094. <remarks>
  6095. <p>Vertex shaders can now be invoked more than once per vertex. See Drawing Non-Indexed Geometry.</p>
  6096. </remarks>
  6097. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetStreamSourceFreq']/*" />
  6098. <msdn-id>bb174410</msdn-id>
  6099. <unmanaged>HRESULT IDirect3DDevice9::GetStreamSourceFreq([In] unsigned int StreamNumber,[Out] unsigned int* pSetting)</unmanaged>
  6100. <unmanaged-short>IDirect3DDevice9::GetStreamSourceFreq</unmanaged-short>
  6101. </member>
  6102. <member name="M:SharpDX.Direct3D9.Device.SetIndices(SharpDX.Direct3D9.IndexBuffer)">
  6103. <summary>
  6104. <p>Sets index data.</p>
  6105. </summary>
  6106. <param name="indexDataRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface, representing the index data to be set. </p> </dd></param>
  6107. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6108. <remarks>
  6109. <p>When an application no longer holds a references to this interface, the interface will automatically be freed.</p><p>The <strong><see cref="M:SharpDX.Direct3D9.Device.SetIndices(SharpDX.Direct3D9.IndexBuffer)" /></strong> method sets the current index array to an index buffer. The single set of indices is used to index all streams. </p>
  6110. </remarks>
  6111. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetIndices']/*" />
  6112. <msdn-id>bb174435</msdn-id>
  6113. <unmanaged>HRESULT IDirect3DDevice9::SetIndices([In] IDirect3DIndexBuffer9* pIndexData)</unmanaged>
  6114. <unmanaged-short>IDirect3DDevice9::SetIndices</unmanaged-short>
  6115. </member>
  6116. <member name="M:SharpDX.Direct3D9.Device.GetIndices(SharpDX.Direct3D9.IndexBuffer@)">
  6117. <summary>
  6118. <p>Retrieves index data.</p>
  6119. </summary>
  6120. <param name="indexDataOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface, representing the returned index data. </p> </dd></param>
  6121. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  6122. <remarks>
  6123. <p> Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface results in a memory leak.</p>
  6124. </remarks>
  6125. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetIndices']/*" />
  6126. <msdn-id>bb174391</msdn-id>
  6127. <unmanaged>HRESULT IDirect3DDevice9::GetIndices([Out] IDirect3DIndexBuffer9** ppIndexData)</unmanaged>
  6128. <unmanaged-short>IDirect3DDevice9::GetIndices</unmanaged-short>
  6129. </member>
  6130. <member name="M:SharpDX.Direct3D9.Device.CreatePixelShader(System.IntPtr,SharpDX.Direct3D9.PixelShader)">
  6131. <summary>
  6132. <p>Creates a pixel shader.</p>
  6133. </summary>
  6134. <param name="functionRef"><dd> <p>Pointer to the pixel shader function token array, specifying the blending operations. This value cannot be <strong><c>null</c></strong>. </p> </dd></param>
  6135. <param name="shaderOut"><dd> <p>Pointer to the returned pixel shader interface. See <strong><see cref="T:SharpDX.Direct3D9.PixelShader" /></strong>.</p> </dd></param>
  6136. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  6137. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreatePixelShader']/*" />
  6138. <msdn-id>bb174359</msdn-id>
  6139. <unmanaged>HRESULT IDirect3DDevice9::CreatePixelShader([In] const void* pFunction,[Out, Fast] IDirect3DPixelShader9** ppShader)</unmanaged>
  6140. <unmanaged-short>IDirect3DDevice9::CreatePixelShader</unmanaged-short>
  6141. </member>
  6142. <member name="M:SharpDX.Direct3D9.Device.SetPixelShader(SharpDX.Direct3D9.PixelShader)">
  6143. <summary>
  6144. <p>Sets the current pixel shader to a previously created pixel shader.</p>
  6145. </summary>
  6146. <param name="shaderRef"><dd> <p>Pixel shader interface.</p> </dd></param>
  6147. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  6148. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetPixelShader']/*" />
  6149. <msdn-id>bb174450</msdn-id>
  6150. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShader([In] IDirect3DPixelShader9* pShader)</unmanaged>
  6151. <unmanaged-short>IDirect3DDevice9::SetPixelShader</unmanaged-short>
  6152. </member>
  6153. <member name="M:SharpDX.Direct3D9.Device.GetPixelShader(SharpDX.Direct3D9.PixelShader@)">
  6154. <summary>
  6155. <p>Retrieves the currently set pixel shader.</p>
  6156. </summary>
  6157. <param name="shaderOut"><dd> <p>Pointer to a pixel shader interface.</p> </dd></param>
  6158. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  6159. <remarks>
  6160. <p>This method will not work on a device that is created using <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" />.</p>
  6161. </remarks>
  6162. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetPixelShader']/*" />
  6163. <msdn-id>bb174398</msdn-id>
  6164. <unmanaged>HRESULT IDirect3DDevice9::GetPixelShader([Out] IDirect3DPixelShader9** ppShader)</unmanaged>
  6165. <unmanaged-short>IDirect3DDevice9::GetPixelShader</unmanaged-short>
  6166. </member>
  6167. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstantF(System.Int32,System.IntPtr,System.Int32)">
  6168. <summary>
  6169. <p>Sets a floating-point shader constant.</p>
  6170. </summary>
  6171. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  6172. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  6173. <param name="vector4fCount"><dd> <p>Number of four float vectors in the array of constants.</p> </dd></param>
  6174. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6175. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetPixelShaderConstantF']/*" />
  6176. <msdn-id>bb174452</msdn-id>
  6177. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantF([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  6178. <unmanaged-short>IDirect3DDevice9::SetPixelShaderConstantF</unmanaged-short>
  6179. </member>
  6180. <member name="M:SharpDX.Direct3D9.Device.GetPixelShaderConstantF(System.Int32,System.Single[],System.Int32)">
  6181. <summary>
  6182. <p>Gets a floating-point shader constant.</p>
  6183. </summary>
  6184. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  6185. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  6186. <param name="vector4fCount"><dd> <p>Number of four float vectors in the array of constants.</p> </dd></param>
  6187. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6188. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetPixelShaderConstantF']/*" />
  6189. <msdn-id>bb174400</msdn-id>
  6190. <unmanaged>HRESULT IDirect3DDevice9::GetPixelShaderConstantF([In] unsigned int StartRegister,[In, Buffer] float* pConstantData,[In] unsigned int Vector4fCount)</unmanaged>
  6191. <unmanaged-short>IDirect3DDevice9::GetPixelShaderConstantF</unmanaged-short>
  6192. </member>
  6193. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstantI(System.Int32,System.IntPtr,System.Int32)">
  6194. <summary>
  6195. <p>Sets an integer shader constant.</p>
  6196. </summary>
  6197. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  6198. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  6199. <param name="vector4iCount"><dd> <p>Number of four integer vectors in the array of constants.</p> </dd></param>
  6200. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6201. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetPixelShaderConstantI']/*" />
  6202. <msdn-id>bb174453</msdn-id>
  6203. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantI([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int Vector4iCount)</unmanaged>
  6204. <unmanaged-short>IDirect3DDevice9::SetPixelShaderConstantI</unmanaged-short>
  6205. </member>
  6206. <member name="M:SharpDX.Direct3D9.Device.GetPixelShaderConstantI(System.Int32,System.Int32[],System.Int32)">
  6207. <summary>
  6208. <p>Gets an integer shader constant.</p>
  6209. </summary>
  6210. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  6211. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  6212. <param name="vector4iCount"><dd> <p>Number of four integer vectors in the array of constants.</p> </dd></param>
  6213. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6214. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetPixelShaderConstantI']/*" />
  6215. <msdn-id>bb174401</msdn-id>
  6216. <unmanaged>HRESULT IDirect3DDevice9::GetPixelShaderConstantI([In] unsigned int StartRegister,[In, Buffer] int* pConstantData,[In] unsigned int Vector4iCount)</unmanaged>
  6217. <unmanaged-short>IDirect3DDevice9::GetPixelShaderConstantI</unmanaged-short>
  6218. </member>
  6219. <member name="M:SharpDX.Direct3D9.Device.SetPixelShaderConstantB(System.Int32,System.IntPtr,System.Int32)">
  6220. <summary>
  6221. <p>Sets a Boolean shader constant.</p>
  6222. </summary>
  6223. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  6224. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  6225. <param name="boolCount"><dd> <p>Number of boolean values in the array of constants.</p> </dd></param>
  6226. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6227. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::SetPixelShaderConstantB']/*" />
  6228. <msdn-id>bb174451</msdn-id>
  6229. <unmanaged>HRESULT IDirect3DDevice9::SetPixelShaderConstantB([In] unsigned int StartRegister,[In] const void* pConstantData,[In] unsigned int BoolCount)</unmanaged>
  6230. <unmanaged-short>IDirect3DDevice9::SetPixelShaderConstantB</unmanaged-short>
  6231. </member>
  6232. <member name="M:SharpDX.Direct3D9.Device.GetPixelShaderConstantB(System.Int32,System.IntPtr,System.Int32)">
  6233. <summary>
  6234. <p>Gets a Boolean shader constant.</p>
  6235. </summary>
  6236. <param name="startRegister"><dd> <p>Register number that will contain the first constant value.</p> </dd></param>
  6237. <param name="constantDataRef"><dd> <p>Pointer to an array of constants.</p> </dd></param>
  6238. <param name="boolCount"><dd> <p>Number of Boolean values in the array of constants.</p> </dd></param>
  6239. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6240. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::GetPixelShaderConstantB']/*" />
  6241. <msdn-id>bb174399</msdn-id>
  6242. <unmanaged>HRESULT IDirect3DDevice9::GetPixelShaderConstantB([In] unsigned int StartRegister,[In] void* pConstantData,[In] unsigned int BoolCount)</unmanaged>
  6243. <unmanaged-short>IDirect3DDevice9::GetPixelShaderConstantB</unmanaged-short>
  6244. </member>
  6245. <member name="M:SharpDX.Direct3D9.Device.DrawRectanglePatch(System.Int32,System.Single[],System.IntPtr)">
  6246. <summary>
  6247. <p>Draws a rectangular patch using the currently set streams.</p>
  6248. </summary>
  6249. <param name="handle"><dd> <p>Handle to the rectangular patch to draw. </p> </dd></param>
  6250. <param name="numSegsRef"><dd> <p>Pointer to an array of four floating-point values that identify the number of segments each edge of the rectangle patch should be divided into when tessellated. See <strong><see cref="T:SharpDX.Direct3D9.RectanglePatchInfo" /></strong>. </p> </dd></param>
  6251. <param name="rectPatchInfoRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.RectanglePatchInfo" /></strong> structure, describing the rectangular patch to draw. </p> </dd></param>
  6252. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6253. <remarks>
  6254. <p>For static patches: Set the vertex shader, set the appropriate streams, supply patch information in the pRectPatchInfo parameter, and specify a handle so that Direct3D can capture and cache information. Call <strong><see cref="M:SharpDX.Direct3D9.Device.DrawRectanglePatch(System.Int32,System.Single[])" /></strong> subsequently with pRectPatchInfo set to <strong><c>null</c></strong> to efficiently draw the patch. When drawing a cached patch, the currently set streams are ignored. Override the cached pNumSegs by specifying a new value for pNumSegs. When rendering a cached patch, you must set the same vertex shader that was set when it was captured.</p><p>Calling <strong><see cref="M:SharpDX.Direct3D9.Device.DrawRectanglePatch(System.Int32,System.Single[])" /></strong> with a handle invalidates the same handle cached by a previous <strong><see cref="M:SharpDX.Direct3D9.Device.DrawTrianglePatch(System.Int32,System.Single[])" /></strong> call.</p><p>For dynamic patches, the patch data changes for every rendering of the patch, so it is not efficient to cache information. The application can convey this to Direct3D by setting Handle to 0. In this case, Direct3D draws the patch using the currently set streams and the pNumSegs values, and does not cache any information. It is not valid to simultaneously set Handle to 0 and pRectPatchInfo to <strong><c>null</c></strong>.</p>
  6255. </remarks>
  6256. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::DrawRectPatch']/*" />
  6257. <msdn-id>bb174373</msdn-id>
  6258. <unmanaged>HRESULT IDirect3DDevice9::DrawRectPatch([In] unsigned int Handle,[In, Buffer] const float* pNumSegs,[In] const void* pRectPatchInfo)</unmanaged>
  6259. <unmanaged-short>IDirect3DDevice9::DrawRectPatch</unmanaged-short>
  6260. </member>
  6261. <member name="M:SharpDX.Direct3D9.Device.DrawTrianglePatch(System.Int32,System.Single[],System.IntPtr)">
  6262. <summary>
  6263. <p>Draws a triangular patch using the currently set streams.</p>
  6264. </summary>
  6265. <param name="handle"><dd> <p>Handle to the triangular patch to draw. </p> </dd></param>
  6266. <param name="numSegsRef"><dd> <p>Pointer to an array of three floating-point values that identify the number of segments each edge of the triangle patch should be divided into when tessellated. See <strong><see cref="T:SharpDX.Direct3D9.TrianglePatchInfo" /></strong>. </p> </dd></param>
  6267. <param name="triPatchInfoRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.TrianglePatchInfo" /></strong> structure, describing the triangular high-order patch to draw. </p> </dd></param>
  6268. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6269. <remarks>
  6270. <p>For static patches: Set the vertex shader, set the appropriate streams, supply patch information in the pTriPatchInfo parameter, and specify a handle so that Direct3D can capture and cache information. To efficiently draw the patch, call <strong><see cref="M:SharpDX.Direct3D9.Device.DrawTrianglePatch(System.Int32,System.Single[])" /></strong> with pTriPatchInfo set to <strong><c>null</c></strong>. When drawing a cached patch, the currently set streams are ignored. Override the cached pNumSegs by specifying a new value for pNumSegs. When rendering a cached patch, you must set the same vertex shader that was set when it was captured.</p><p>Calling <strong><see cref="M:SharpDX.Direct3D9.Device.DrawTrianglePatch(System.Int32,System.Single[])" /></strong> with a handle invalidates the same handle cached by a previous <strong><see cref="M:SharpDX.Direct3D9.Device.DrawRectanglePatch(System.Int32,System.Single[])" /></strong> call.</p><p>For dynamic patches, the patch data changes for every rendering of the patch so it is not efficient to cache information. The application can convey this to Direct3D by setting Handle to 0. In this case, Direct3D draws the patch using the currently set streams and the pNumSegs values, and does not cache any information. It is not valid to simultaneously set Handle to 0 and pTriPatchInfo to <strong><c>null</c></strong>.</p>
  6271. </remarks>
  6272. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::DrawTriPatch']/*" />
  6273. <msdn-id>bb174374</msdn-id>
  6274. <unmanaged>HRESULT IDirect3DDevice9::DrawTriPatch([In] unsigned int Handle,[In, Buffer] const float* pNumSegs,[In] const void* pTriPatchInfo)</unmanaged>
  6275. <unmanaged-short>IDirect3DDevice9::DrawTriPatch</unmanaged-short>
  6276. </member>
  6277. <member name="M:SharpDX.Direct3D9.Device.DeletePatch(System.Int32)">
  6278. <summary>
  6279. <p>Frees a cached high-order patch.</p>
  6280. </summary>
  6281. <param name="handle"><dd> <p>Handle of the cached high-order patch to delete. </p> </dd></param>
  6282. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  6283. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::DeletePatch']/*" />
  6284. <msdn-id>bb174368</msdn-id>
  6285. <unmanaged>HRESULT IDirect3DDevice9::DeletePatch([In] unsigned int Handle)</unmanaged>
  6286. <unmanaged-short>IDirect3DDevice9::DeletePatch</unmanaged-short>
  6287. </member>
  6288. <member name="M:SharpDX.Direct3D9.Device.CreateQuery(SharpDX.Direct3D9.QueryType,SharpDX.Direct3D9.Query)">
  6289. <summary>
  6290. <p>Creates a status query.</p>
  6291. </summary>
  6292. <param name="type"><dd> <p>Identifies the query type. For more information, see <strong><see cref="T:SharpDX.Direct3D9.QueryType" /></strong>.</p> </dd></param>
  6293. <param name="queryOut"><dd> <p>Returns a reference to the query interface that manages the query object. See <strong><see cref="T:SharpDX.Direct3D9.Query" /></strong>. </p> <p>This parameter can be set to <strong><c>null</c></strong> to see if a query is supported. If the query is not supported, the method returns <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />.</p> </dd></param>
  6294. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" /> or E_OUTOFMEMORY. </p></returns>
  6295. <remarks>
  6296. <p>This method is provided for both synchronous and asynchronous queries. It takes the place of GetInfo, which is no longer supported in Direct3D 9.</p><p>Synchronous and asynchronous queries are created with <strong><see cref="M:SharpDX.Direct3D9.Device.CreateQuery(SharpDX.Direct3D9.QueryType,SharpDX.Direct3D9.Query)" /></strong> with <strong><see cref="T:SharpDX.Direct3D9.QueryType" /></strong>. When a query has been created and the API calls have been made that are being queried, use <strong><see cref="M:SharpDX.Direct3D9.Query.Issue(SharpDX.Direct3D9.Issue)" /></strong> to issue a query and <strong><see cref="M:SharpDX.Direct3D9.Query.GetData(System.IntPtr,System.Int32,System.Int32)" /></strong> to get the results of the query.</p>
  6297. </remarks>
  6298. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9::CreateQuery']/*" />
  6299. <msdn-id>bb174360</msdn-id>
  6300. <unmanaged>HRESULT IDirect3DDevice9::CreateQuery([In] D3DQUERYTYPE Type,[Out, Fast] IDirect3DQuery9** ppQuery)</unmanaged>
  6301. <unmanaged-short>IDirect3DDevice9::CreateQuery</unmanaged-short>
  6302. </member>
  6303. <member name="T:SharpDX.Direct3D9.DeviceEx">
  6304. <summary>
  6305. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.DeviceEx" /> interface to render primitives, create resources, work with system-level variables, adjust gamma ramp levels, work with palettes, and create shaders. The <see cref="T:SharpDX.Direct3D9.DeviceEx" /> interface derives from the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface.</p>
  6306. </summary>
  6307. <remarks>
  6308. <p>The <strong><see cref="T:SharpDX.Direct3D9.DeviceEx" /></strong> interface is obtained by calling <strong><see cref="M:SharpDX.Direct3D9.Direct3DEx.CreateDeviceEx(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,System.Int32,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.DisplayModeEx[],SharpDX.Direct3D9.DeviceEx)" /></strong>.</p><p>The LPDIRECT3DDEVICE9EX and PDIRECT3DDEVICE9EX types are defined as references to the <see cref="T:SharpDX.Direct3D9.DeviceEx" /> interface:</p><p> </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.DeviceEx" /> *LPDIRECT3DDEVICE9EX, *PDIRECT3DDEVICE9EX;
  6309. </pre>
  6310. </remarks>
  6311. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex']/*" />
  6312. <msdn-id>bb174337</msdn-id>
  6313. <unmanaged>IDirect3DDevice9Ex</unmanaged>
  6314. <unmanaged-short>IDirect3DDevice9Ex</unmanaged-short>
  6315. </member>
  6316. <member name="M:SharpDX.Direct3D9.DeviceEx.#ctor(SharpDX.Direct3D9.Direct3DEx,System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[])">
  6317. <summary>
  6318. Creates a device to represent the display adapter.
  6319. </summary>
  6320. <param name="direct3D">an instance of <see cref="T:SharpDX.Direct3D9.Direct3D"/></param>
  6321. <param name="adapter">Ordinal number that denotes the display adapter. {{D3DADAPTER_DEFAULT}} is always the primary display adapter.</param>
  6322. <param name="deviceType">Member of the <see cref="T:SharpDX.Direct3D9.DeviceType"/> enumerated type that denotes the desired device type. If the desired device type is not available, the method will fail.</param>
  6323. <param name="controlHandle">The focus window alerts Direct3D when an application switches from foreground mode to background mode. See Remarks. For full-screen mode, the window specified must be a top-level window. For windowed mode, this parameter may be NULL only if the hDeviceWindow member of pPresentationParameters is set to a valid, non-NULL value.</param>
  6324. <param name="createFlags">Combination of one or more options that control device creation. For more information, see {{D3DCREATE}}.</param>
  6325. <param name="presentParameters">Pointer to a <see cref="T:SharpDX.Direct3D9.PresentParameters"/> structure, describing the presentation parameters for the device to be created. If BehaviorFlags specifies {{D3DCREATE_ADAPTERGROUP_DEVICE}}, pPresentationParameters is an array. Regardless of the number of heads that exist, only one depth/stencil surface is automatically created. For Windows 2000 and Windows XP, the full-screen device display refresh rate is set in the following order: User-specified nonzero ForcedRefreshRate registry key, if supported by the device. Application-specified nonzero refresh rate value in the presentation parameter. Refresh rate of the latest desktop mode, if supported by the device. 75 hertz if supported by the device. 60 hertz if supported by the device. Device default. An unsupported refresh rate will default to the closest supported refresh rate below it. For example, if the application specifies 63 hertz, 60 hertz will be used. There are no supported refresh rates below 57 hertz. pPresentationParameters is both an input and an output parameter. Calling this method may change several members including: If BackBufferCount, BackBufferWidth, and BackBufferHeight are 0 before the method is called, they will be changed when the method returns. If BackBufferFormat equals <see cref="F:SharpDX.Direct3D9.Format.Unknown"/> before the method is called, it will be changed when the method returns.</param>
  6326. <remarks>
  6327. This method returns a fully working device interface, set to the required display mode (or windowed), and allocated with the appropriate back buffers. To begin rendering, the application needs only to create and set a depth buffer (assuming EnableAutoDepthStencil is FALSE in <see cref="T:SharpDX.Direct3D9.PresentParameters"/>). When you create a Direct3D device, you supply two different window parameters: a focus window (hFocusWindow) and a device window (the hDeviceWindow in <see cref="T:SharpDX.Direct3D9.PresentParameters"/>). The purpose of each window is: The focus window alerts Direct3D when an application switches from foreground mode to background mode (via Alt-Tab, a mouse click, or some other method). A single focus window is shared by each device created by an application. The device window determines the location and size of the back buffer on screen. This is used by Direct3D when the back buffer contents are copied to the front buffer during {{Present}}. This method should not be run during the handling of WM_CREATE. An application should never pass a window handle to Direct3D while handling WM_CREATE. Any call to create, release, or reset the device must be done using the same thread as the window procedure of the focus window. Note that D3DCREATE_HARDWARE_VERTEXPROCESSING, D3DCREATE_MIXED_VERTEXPROCESSING, and D3DCREATE_SOFTWARE_VERTEXPROCESSING are mutually exclusive flags, and at least one of these vertex processing flags must be specified when calling this method. Back buffers created as part of the device are only lockable if D3DPRESENTFLAG_LOCKABLE_BACKBUFFER is specified in the presentation parameters. (Multisampled back buffers and depth surfaces are never lockable.) The methods {{Reset}}, <see cref="T:SharpDX.ComObject"/>, and {{TestCooperativeLevel}} must be called from the same thread that used this method to create a device. D3DFMT_UNKNOWN can be specified for the windowed mode back buffer format when calling CreateDevice, {{Reset}}, and {{CreateAdditionalSwapChain}}. This means the application does not have to query the current desktop format before calling CreateDevice for windowed mode. For full-screen mode, the back buffer format must be specified. If you attempt to create a device on a 0x0 sized window, CreateDevice will fail.
  6328. </remarks>
  6329. <unmanaged>HRESULT CreateDevice([None] UINT Adapter,[None] D3DDEVTYPE DeviceType,[None] HWND hFocusWindow,[None] int BehaviorFlags,[None] D3DPRESENT_PARAMETERS* pPresentationParameters,[None] IDirect3DDevice9** ppReturnedDeviceInterface)</unmanaged>
  6330. </member>
  6331. <member name="M:SharpDX.Direct3D9.DeviceEx.#ctor(SharpDX.Direct3D9.Direct3DEx,System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters)">
  6332. <summary>
  6333. Creates a device to represent the display adapter.
  6334. </summary>
  6335. <param name="direct3D">an instance of <see cref="T:SharpDX.Direct3D9.Direct3D"/></param>
  6336. <param name="adapter">Ordinal number that denotes the display adapter. {{D3DADAPTER_DEFAULT}} is always the primary display adapter.</param>
  6337. <param name="deviceType">Member of the <see cref="T:SharpDX.Direct3D9.DeviceType"/> enumerated type that denotes the desired device type. If the desired device type is not available, the method will fail.</param>
  6338. <param name="controlHandle">The focus window alerts Direct3D when an application switches from foreground mode to background mode. See Remarks. For full-screen mode, the window specified must be a top-level window. For windowed mode, this parameter may be NULL only if the hDeviceWindow member of pPresentationParameters is set to a valid, non-NULL value.</param>
  6339. <param name="createFlags">Combination of one or more options that control device creation. For more information, see {{D3DCREATE}}.</param>
  6340. <param name="presentParameters">Pointer to a <see cref="T:SharpDX.Direct3D9.PresentParameters"/> structure, describing the presentation parameters for the device to be created. If BehaviorFlags specifies {{D3DCREATE_ADAPTERGROUP_DEVICE}}, pPresentationParameters is an array. Regardless of the number of heads that exist, only one depth/stencil surface is automatically created. For Windows 2000 and Windows XP, the full-screen device display refresh rate is set in the following order: User-specified nonzero ForcedRefreshRate registry key, if supported by the device. Application-specified nonzero refresh rate value in the presentation parameter. Refresh rate of the latest desktop mode, if supported by the device. 75 hertz if supported by the device. 60 hertz if supported by the device. Device default. An unsupported refresh rate will default to the closest supported refresh rate below it. For example, if the application specifies 63 hertz, 60 hertz will be used. There are no supported refresh rates below 57 hertz. pPresentationParameters is both an input and an output parameter. Calling this method may change several members including: If BackBufferCount, BackBufferWidth, and BackBufferHeight are 0 before the method is called, they will be changed when the method returns. If BackBufferFormat equals <see cref="F:SharpDX.Direct3D9.Format.Unknown"/> before the method is called, it will be changed when the method returns.</param>
  6341. <remarks>
  6342. This method returns a fully working device interface, set to the required display mode (or windowed), and allocated with the appropriate back buffers. To begin rendering, the application needs only to create and set a depth buffer (assuming EnableAutoDepthStencil is FALSE in <see cref="T:SharpDX.Direct3D9.PresentParameters"/>). When you create a Direct3D device, you supply two different window parameters: a focus window (hFocusWindow) and a device window (the hDeviceWindow in <see cref="T:SharpDX.Direct3D9.PresentParameters"/>). The purpose of each window is: The focus window alerts Direct3D when an application switches from foreground mode to background mode (via Alt-Tab, a mouse click, or some other method). A single focus window is shared by each device created by an application. The device window determines the location and size of the back buffer on screen. This is used by Direct3D when the back buffer contents are copied to the front buffer during {{Present}}. This method should not be run during the handling of WM_CREATE. An application should never pass a window handle to Direct3D while handling WM_CREATE. Any call to create, release, or reset the device must be done using the same thread as the window procedure of the focus window. Note that D3DCREATE_HARDWARE_VERTEXPROCESSING, D3DCREATE_MIXED_VERTEXPROCESSING, and D3DCREATE_SOFTWARE_VERTEXPROCESSING are mutually exclusive flags, and at least one of these vertex processing flags must be specified when calling this method. Back buffers created as part of the device are only lockable if D3DPRESENTFLAG_LOCKABLE_BACKBUFFER is specified in the presentation parameters. (Multisampled back buffers and depth surfaces are never lockable.) The methods {{Reset}}, <see cref="T:SharpDX.ComObject"/>, and {{TestCooperativeLevel}} must be called from the same thread that used this method to create a device. D3DFMT_UNKNOWN can be specified for the windowed mode back buffer format when calling CreateDevice, {{Reset}}, and {{CreateAdditionalSwapChain}}. This means the application does not have to query the current desktop format before calling CreateDevice for windowed mode. For full-screen mode, the back buffer format must be specified. If you attempt to create a device on a 0x0 sized window, CreateDevice will fail.
  6343. </remarks>
  6344. <unmanaged>HRESULT CreateDevice([None] UINT Adapter,[None] D3DDEVTYPE DeviceType,[None] HWND hFocusWindow,[None] int BehaviorFlags,[None] D3DPRESENT_PARAMETERS* pPresentationParameters,[None] IDirect3DDevice9** ppReturnedDeviceInterface)</unmanaged>
  6345. </member>
  6346. <member name="M:SharpDX.Direct3D9.DeviceEx.#ctor(SharpDX.Direct3D9.Direct3DEx,System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters,SharpDX.Direct3D9.DisplayModeEx)">
  6347. <summary>
  6348. Creates a device to represent the display adapter.
  6349. </summary>
  6350. <param name="direct3D">an instance of <see cref="T:SharpDX.Direct3D9.Direct3D"/></param>
  6351. <param name="adapter">Ordinal number that denotes the display adapter. {{D3DADAPTER_DEFAULT}} is always the primary display adapter.</param>
  6352. <param name="deviceType">Member of the <see cref="T:SharpDX.Direct3D9.DeviceType"/> enumerated type that denotes the desired device type. If the desired device type is not available, the method will fail.</param>
  6353. <param name="controlHandle">The focus window alerts Direct3D when an application switches from foreground mode to background mode. See Remarks. For full-screen mode, the window specified must be a top-level window. For windowed mode, this parameter may be NULL only if the hDeviceWindow member of pPresentationParameters is set to a valid, non-NULL value.</param>
  6354. <param name="createFlags">Combination of one or more options that control device creation. For more information, see {{D3DCREATE}}.</param>
  6355. <param name="presentParameters">Pointer to a <see cref="T:SharpDX.Direct3D9.PresentParameters"/> structure, describing the presentation parameters for the device to be created. If BehaviorFlags specifies {{D3DCREATE_ADAPTERGROUP_DEVICE}}, pPresentationParameters is an array. Regardless of the number of heads that exist, only one depth/stencil surface is automatically created. For Windows 2000 and Windows XP, the full-screen device display refresh rate is set in the following order: User-specified nonzero ForcedRefreshRate registry key, if supported by the device. Application-specified nonzero refresh rate value in the presentation parameter. Refresh rate of the latest desktop mode, if supported by the device. 75 hertz if supported by the device. 60 hertz if supported by the device. Device default. An unsupported refresh rate will default to the closest supported refresh rate below it. For example, if the application specifies 63 hertz, 60 hertz will be used. There are no supported refresh rates below 57 hertz. pPresentationParameters is both an input and an output parameter. Calling this method may change several members including: If BackBufferCount, BackBufferWidth, and BackBufferHeight are 0 before the method is called, they will be changed when the method returns. If BackBufferFormat equals <see cref="F:SharpDX.Direct3D9.Format.Unknown"/> before the method is called, it will be changed when the method returns.</param>
  6356. <param name="fullScreenDisplayMode">The full screen display mode.</param>
  6357. <remarks>
  6358. This method returns a fully working device interface, set to the required display mode (or windowed), and allocated with the appropriate back buffers. To begin rendering, the application needs only to create and set a depth buffer (assuming EnableAutoDepthStencil is FALSE in <see cref="T:SharpDX.Direct3D9.PresentParameters"/>). When you create a Direct3D device, you supply two different window parameters: a focus window (hFocusWindow) and a device window (the hDeviceWindow in <see cref="T:SharpDX.Direct3D9.PresentParameters"/>). The purpose of each window is: The focus window alerts Direct3D when an application switches from foreground mode to background mode (via Alt-Tab, a mouse click, or some other method). A single focus window is shared by each device created by an application. The device window determines the location and size of the back buffer on screen. This is used by Direct3D when the back buffer contents are copied to the front buffer during {{Present}}. This method should not be run during the handling of WM_CREATE. An application should never pass a window handle to Direct3D while handling WM_CREATE. Any call to create, release, or reset the device must be done using the same thread as the window procedure of the focus window. Note that D3DCREATE_HARDWARE_VERTEXPROCESSING, D3DCREATE_MIXED_VERTEXPROCESSING, and D3DCREATE_SOFTWARE_VERTEXPROCESSING are mutually exclusive flags, and at least one of these vertex processing flags must be specified when calling this method. Back buffers created as part of the device are only lockable if D3DPRESENTFLAG_LOCKABLE_BACKBUFFER is specified in the presentation parameters. (Multisampled back buffers and depth surfaces are never lockable.) The methods {{Reset}}, <see cref="T:SharpDX.ComObject"/>, and {{TestCooperativeLevel}} must be called from the same thread that used this method to create a device. D3DFMT_UNKNOWN can be specified for the windowed mode back buffer format when calling CreateDevice, {{Reset}}, and {{CreateAdditionalSwapChain}}. This means the application does not have to query the current desktop format before calling CreateDevice for windowed mode. For full-screen mode, the back buffer format must be specified. If you attempt to create a device on a 0x0 sized window, CreateDevice will fail.
  6359. </remarks>
  6360. <unmanaged>HRESULT CreateDevice([None] UINT Adapter,[None] D3DDEVTYPE DeviceType,[None] HWND hFocusWindow,[None] int BehaviorFlags,[None] D3DPRESENT_PARAMETERS* pPresentationParameters,[None] IDirect3DDevice9** ppReturnedDeviceInterface)</unmanaged>
  6361. </member>
  6362. <member name="M:SharpDX.Direct3D9.DeviceEx.#ctor(SharpDX.Direct3D9.Direct3DEx,System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.DisplayModeEx[])">
  6363. <summary>
  6364. Creates a device to represent the display adapter.
  6365. </summary>
  6366. <param name="direct3D">an instance of <see cref="T:SharpDX.Direct3D9.Direct3D"/></param>
  6367. <param name="adapter">Ordinal number that denotes the display adapter. {{D3DADAPTER_DEFAULT}} is always the primary display adapter.</param>
  6368. <param name="deviceType">Member of the <see cref="T:SharpDX.Direct3D9.DeviceType"/> enumerated type that denotes the desired device type. If the desired device type is not available, the method will fail.</param>
  6369. <param name="controlHandle">The focus window alerts Direct3D when an application switches from foreground mode to background mode. See Remarks. For full-screen mode, the window specified must be a top-level window. For windowed mode, this parameter may be NULL only if the hDeviceWindow member of pPresentationParameters is set to a valid, non-NULL value.</param>
  6370. <param name="createFlags">Combination of one or more options that control device creation. For more information, see {{D3DCREATE}}.</param>
  6371. <param name="presentParameters">Pointer to a <see cref="T:SharpDX.Direct3D9.PresentParameters"/> structure, describing the presentation parameters for the device to be created. If BehaviorFlags specifies {{D3DCREATE_ADAPTERGROUP_DEVICE}}, pPresentationParameters is an array. Regardless of the number of heads that exist, only one depth/stencil surface is automatically created. For Windows 2000 and Windows XP, the full-screen device display refresh rate is set in the following order: User-specified nonzero ForcedRefreshRate registry key, if supported by the device. Application-specified nonzero refresh rate value in the presentation parameter. Refresh rate of the latest desktop mode, if supported by the device. 75 hertz if supported by the device. 60 hertz if supported by the device. Device default. An unsupported refresh rate will default to the closest supported refresh rate below it. For example, if the application specifies 63 hertz, 60 hertz will be used. There are no supported refresh rates below 57 hertz. pPresentationParameters is both an input and an output parameter. Calling this method may change several members including: If BackBufferCount, BackBufferWidth, and BackBufferHeight are 0 before the method is called, they will be changed when the method returns. If BackBufferFormat equals <see cref="F:SharpDX.Direct3D9.Format.Unknown"/> before the method is called, it will be changed when the method returns.</param>
  6372. <param name="fullScreenDisplayMode">The full screen display mode.</param>
  6373. <remarks>
  6374. This method returns a fully working device interface, set to the required display mode (or windowed), and allocated with the appropriate back buffers. To begin rendering, the application needs only to create and set a depth buffer (assuming EnableAutoDepthStencil is FALSE in <see cref="T:SharpDX.Direct3D9.PresentParameters"/>). When you create a Direct3D device, you supply two different window parameters: a focus window (hFocusWindow) and a device window (the hDeviceWindow in <see cref="T:SharpDX.Direct3D9.PresentParameters"/>). The purpose of each window is: The focus window alerts Direct3D when an application switches from foreground mode to background mode (via Alt-Tab, a mouse click, or some other method). A single focus window is shared by each device created by an application. The device window determines the location and size of the back buffer on screen. This is used by Direct3D when the back buffer contents are copied to the front buffer during {{Present}}. This method should not be run during the handling of WM_CREATE. An application should never pass a window handle to Direct3D while handling WM_CREATE. Any call to create, release, or reset the device must be done using the same thread as the window procedure of the focus window. Note that D3DCREATE_HARDWARE_VERTEXPROCESSING, D3DCREATE_MIXED_VERTEXPROCESSING, and D3DCREATE_SOFTWARE_VERTEXPROCESSING are mutually exclusive flags, and at least one of these vertex processing flags must be specified when calling this method. Back buffers created as part of the device are only lockable if D3DPRESENTFLAG_LOCKABLE_BACKBUFFER is specified in the presentation parameters. (Multisampled back buffers and depth surfaces are never lockable.) The methods {{Reset}}, <see cref="T:SharpDX.ComObject"/>, and {{TestCooperativeLevel}} must be called from the same thread that used this method to create a device. D3DFMT_UNKNOWN can be specified for the windowed mode back buffer format when calling CreateDevice, {{Reset}}, and {{CreateAdditionalSwapChain}}. This means the application does not have to query the current desktop format before calling CreateDevice for windowed mode. For full-screen mode, the back buffer format must be specified. If you attempt to create a device on a 0x0 sized window, CreateDevice will fail.
  6375. </remarks>
  6376. <unmanaged>HRESULT CreateDevice([None] UINT Adapter,[None] D3DDEVTYPE DeviceType,[None] HWND hFocusWindow,[None] int BehaviorFlags,[None] D3DPRESENT_PARAMETERS* pPresentationParameters,[None] IDirect3DDevice9** ppReturnedDeviceInterface)</unmanaged>
  6377. </member>
  6378. <member name="M:SharpDX.Direct3D9.DeviceEx.CheckDeviceState(System.IntPtr)">
  6379. <summary>
  6380. Reports the current cooperative-level status of the Direct3D device for a windowed or full-screen application.
  6381. </summary>
  6382. <param name="windowHandle">The window handle.</param>
  6383. <returns>State of the device</returns>
  6384. <unmanaged>HRESULT IDirect3DDevice9Ex::CheckDeviceState([In] HWND hDestinationWindow)</unmanaged>
  6385. </member>
  6386. <member name="M:SharpDX.Direct3D9.DeviceEx.CheckResourceResidency(SharpDX.Direct3D9.Resource[])">
  6387. <summary>
  6388. Checks an array of resources to determine if it is likely that they will cause a large stall at Draw time because the system must make the resources GPU-accessible.
  6389. </summary>
  6390. <param name="resources">An array of <see cref="T:SharpDX.Direct3D9.Resource"/> that indicate the resources to check.</param>
  6391. <returns>The <see cref="T:SharpDX.Direct3D9.ResourceResidency"/> status.</returns>
  6392. <unmanaged>HRESULT IDirect3DDevice9Ex::CheckDeviceState([In] HWND hDestinationWindow)</unmanaged>
  6393. </member>
  6394. <member name="M:SharpDX.Direct3D9.DeviceEx.GetDisplayModeEx(System.Int32)">
  6395. <summary>
  6396. Retrieves the display mode's spatial resolution, color resolution, refresh frequency, and rotation settings.
  6397. </summary>
  6398. <param name="swapChain">The swap chain.</param>
  6399. <returns><see cref="T:SharpDX.Direct3D9.DisplayModeEx"/> structure containing data about the display mode of the adapter</returns>
  6400. <unmanaged>HRESULT IDirect3DDevice9Ex::GetDisplayModeEx([In] unsigned int iSwapChain,[Out] D3DDISPLAYMODEEX* pMode,[In] void* pRotation)</unmanaged>
  6401. </member>
  6402. <member name="M:SharpDX.Direct3D9.DeviceEx.GetDisplayModeEx(System.Int32,SharpDX.Direct3D9.DisplayRotation@)">
  6403. <summary>
  6404. Retrieves the display mode's spatial resolution, color resolution, refresh frequency, and rotation settings.
  6405. </summary>
  6406. <param name="swapChain">The swap chain.</param>
  6407. <param name="rotation">The <see cref="T:SharpDX.Direct3D9.DisplayRotation"/> structure indicating the type of screen rotation the application will do.</param>
  6408. <returns><see cref="T:SharpDX.Direct3D9.DisplayModeEx"/> structure containing data about the display mode of the adapter</returns>
  6409. <unmanaged>HRESULT IDirect3DDevice9Ex::GetDisplayModeEx([In] unsigned int iSwapChain,[Out] D3DDISPLAYMODEEX* pMode,[In] void* pRotation)</unmanaged>
  6410. </member>
  6411. <member name="M:SharpDX.Direct3D9.DeviceEx.PresentEx(SharpDX.Direct3D9.Present)">
  6412. <summary>
  6413. Swap the swapchain's next buffer with the front buffer.
  6414. </summary>
  6415. <param name="flags">The flags.</param>
  6416. <returns>
  6417. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  6418. </returns>
  6419. <unmanaged>HRESULT IDirect3DDevice9Ex::PresentEx([In] const void* pSourceRect,[In] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const RGNDATA* pDirtyRegion,[In] unsigned int dwFlags)</unmanaged>
  6420. </member>
  6421. <member name="M:SharpDX.Direct3D9.DeviceEx.PresentEx(SharpDX.Direct3D9.Present,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle)">
  6422. <summary>
  6423. Swap the swapchain's next buffer with the front buffer.
  6424. </summary>
  6425. <param name="flags">The flags.</param>
  6426. <param name="sourceRectangle">The source rectangle.</param>
  6427. <param name="destinationRectangle">The destination rectangle.</param>
  6428. <returns>
  6429. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  6430. </returns>
  6431. <unmanaged>HRESULT IDirect3DDevice9Ex::PresentEx([In] const void* pSourceRect,[In] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const RGNDATA* pDirtyRegion,[In] unsigned int dwFlags)</unmanaged>
  6432. </member>
  6433. <member name="M:SharpDX.Direct3D9.DeviceEx.PresentEx(SharpDX.Direct3D9.Present,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,System.IntPtr)">
  6434. <summary>
  6435. Swap the swapchain's next buffer with the front buffer.
  6436. </summary>
  6437. <param name="flags">The flags.</param>
  6438. <param name="sourceRectangle">The source rectangle.</param>
  6439. <param name="destinationRectangle">The destination rectangle.</param>
  6440. <param name="windowOverride">The window override.</param>
  6441. <returns>
  6442. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  6443. </returns>
  6444. <unmanaged>HRESULT IDirect3DDevice9Ex::PresentEx([In] const void* pSourceRect,[In] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const RGNDATA* pDirtyRegion,[In] unsigned int dwFlags)</unmanaged>
  6445. </member>
  6446. <member name="M:SharpDX.Direct3D9.DeviceEx.PresentEx(SharpDX.Direct3D9.Present,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,System.IntPtr,System.IntPtr)">
  6447. <summary>
  6448. Swap the swapchain's next buffer with the front buffer.
  6449. </summary>
  6450. <param name="flags">The flags.</param>
  6451. <param name="sourceRectangle">The source rectangle.</param>
  6452. <param name="destinationRectangle">The destination rectangle.</param>
  6453. <param name="windowOverride">The window override.</param>
  6454. <param name="dirtyRegionRGNData">The region.</param>
  6455. <returns>
  6456. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  6457. </returns>
  6458. <unmanaged>HRESULT IDirect3DDevice9Ex::PresentEx([In] const void* pSourceRect,[In] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const RGNDATA* pDirtyRegion,[In] unsigned int dwFlags)</unmanaged>
  6459. </member>
  6460. <member name="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@)">
  6461. <summary>
  6462. Resets the type, size, and format of the swap chain with all other surfaces persistent.
  6463. </summary>
  6464. <param name="presentationParametersRef">A reference describing the new presentation parameters.</param>
  6465. <returns>
  6466. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  6467. </returns>
  6468. <unmanaged>HRESULT IDirect3DDevice9Ex::ResetEx([In] D3DPRESENT_PARAMETERS* pPresentationParameters,[In] void* pFullscreenDisplayMode)</unmanaged>
  6469. </member>
  6470. <member name="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@,SharpDX.Direct3D9.DisplayModeEx)">
  6471. <summary>
  6472. Resets the type, size, and format of the swap chain with all other surfaces persistent.
  6473. </summary>
  6474. <param name="presentationParametersRef">A reference describing the new presentation parameters.</param>
  6475. <param name="fullScreenDisplayMode">The full screen display mode.</param>
  6476. <returns>
  6477. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  6478. </returns>
  6479. <unmanaged>HRESULT IDirect3DDevice9Ex::ResetEx([In] D3DPRESENT_PARAMETERS* pPresentationParameters,[In] void* pFullscreenDisplayMode)</unmanaged>
  6480. </member>
  6481. <member name="M:SharpDX.Direct3D9.DeviceEx.#ctor(System.IntPtr)">
  6482. <summary>
  6483. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.DeviceEx"/> class.
  6484. </summary>
  6485. <param name="nativePtr">The native pointer.</param>
  6486. </member>
  6487. <member name="M:SharpDX.Direct3D9.DeviceEx.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.DeviceEx">
  6488. <summary>
  6489. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.DeviceEx"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  6490. </summary>
  6491. <param name="nativePointer">The native pointer.</param>
  6492. <returns>
  6493. The result of the conversion.
  6494. </returns>
  6495. </member>
  6496. <member name="P:SharpDX.Direct3D9.DeviceEx.GPUThreadPriority">
  6497. <summary>
  6498. <p>Get or sets the priority of the GPU thread.</p>
  6499. </summary>
  6500. <remarks>
  6501. <p>Use <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.SetGPUThreadPriority(System.Int32)" /></strong> to set the priority of a thread.</p><p>This method will retrieve the priority of the thread stored with the Direct3D device even if it was created with the <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" /> flag.</p>
  6502. </remarks>
  6503. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::GetGPUThreadPriority']/*" />
  6504. <msdn-id>bb174341</msdn-id>
  6505. <unmanaged>GetGPUThreadPriority / SetGPUThreadPriority</unmanaged>
  6506. <unmanaged-short>GetGPUThreadPriority</unmanaged-short>
  6507. <unmanaged>HRESULT IDirect3DDevice9Ex::GetGPUThreadPriority([Out] int* pPriority)</unmanaged>
  6508. </member>
  6509. <member name="P:SharpDX.Direct3D9.DeviceEx.MaximumFrameLatency">
  6510. <summary>
  6511. <p>Retrieves or sets the number of frames of data that the system is allowed to queue.</p>
  6512. </summary>
  6513. <remarks>
  6514. <p>Frame latency is the number of frames that are allowed to be stored in a queue, before submission for rendering. Latency is often used to control how the CPU chooses between responding to user input and frames that are in the render queue.</p><p>It is often beneficial for applications that have no user input (for example, video playback) to queue more than 3 frames of data.</p>
  6515. </remarks>
  6516. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::GetMaximumFrameLatency']/*" />
  6517. <msdn-id>bb174342</msdn-id>
  6518. <unmanaged>GetMaximumFrameLatency / SetMaximumFrameLatency</unmanaged>
  6519. <unmanaged-short>GetMaximumFrameLatency</unmanaged-short>
  6520. <unmanaged>HRESULT IDirect3DDevice9Ex::GetMaximumFrameLatency([Out] unsigned int* pMaxLatency)</unmanaged>
  6521. </member>
  6522. <member name="M:SharpDX.Direct3D9.DeviceEx.SetConvolutionMonoKernel(System.Int32,System.Int32,System.Single[],System.Single[])">
  6523. <summary>
  6524. <p>Prepare the texture sampler for monochrome convolution filtering on a single-color texture.</p>
  6525. </summary>
  6526. <param name="width"><dd> <p>The width of the filter kernel; ranging from 1 - <strong>D3DCONVOLUTIONMONO_MAXWIDTH</strong>. The default value is 1.</p> </dd></param>
  6527. <param name="height"><dd> <p>The height of the filter kernel; ranging from 1 - <strong>D3DCONVOLUTIONMONO_MAXHEIGHT</strong>. The default value is 1.</p> </dd></param>
  6528. <param name="rows"><dd> <p>An array of weights, one weight for each kernel sub-element in the width. This parameter must be <strong><c>null</c></strong>, which will set the weights equal to the default value.</p> </dd></param>
  6529. <param name="columns"><dd> <p>An array of weights, one weight for each kernel sub-element in the height. This parameter must be <strong><c>null</c></strong>, which will set the weights equal to the default value.</p> </dd></param>
  6530. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />.</p></returns>
  6531. <remarks>
  6532. <p>This method is designed to filter a single color texture. A monochrome convolution filter is a 2D box filter with all of the weights set to 1.0; the filter kernel resolution ranges from 1 x 1 to 7 x 7. When monochrome texture filtering is set to a texture sampler and texture sampling is performed at location, then Direct3D performs convolution. </p><p>Restrictions include:</p><ul> <li>The filter specified by this method is recorded in state blocks as a part of <strong><see cref="F:SharpDX.Direct3D9.StateBlockType.PixelState" /></strong>.</li> <li>The only texture address mode supported is: <see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Border" />; the border color is always 0.</li> <li>This method is not supported for mipmaps.</li> <li>Using a non-monochrome texture with convolution filtering will generate a driver error.</li> </ul>
  6533. </remarks>
  6534. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::SetConvolutionMonoKernel']/*" />
  6535. <msdn-id>bb174345</msdn-id>
  6536. <unmanaged>HRESULT IDirect3DDevice9Ex::SetConvolutionMonoKernel([In] unsigned int width,[In] unsigned int height,[In, Buffer] float* rows,[In, Buffer] float* columns)</unmanaged>
  6537. <unmanaged-short>IDirect3DDevice9Ex::SetConvolutionMonoKernel</unmanaged-short>
  6538. </member>
  6539. <member name="M:SharpDX.Direct3D9.DeviceEx.ComposeRects(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.VertexBuffer,System.Int32,SharpDX.Direct3D9.VertexBuffer,SharpDX.Direct3D9.ComposeRectOperation,System.Int32,System.Int32)">
  6540. <summary>
  6541. <p>Copy a text string to one surface using an alphabet of glyphs on another surface. Composition is done by the GPU using bitwise operations.</p>
  6542. </summary>
  6543. <param name="srcRef"><dd> <p>A reference to a source surface (prepared by <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong>) that supplies the alphabet glyphs. This surface must be created with the <strong><see cref="F:SharpDX.Direct3D9.Usage.TextApi" /></strong> flag.</p> </dd></param>
  6544. <param name="dstRef"><dd> <p>A reference to the destination surface (prepared by <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong>) that receives the glyph data. The surface must be part of a texture.</p> </dd></param>
  6545. <param name="srcRectDescsRef"><dd> <p>A reference to a vertex buffer (see <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong>) containing rectangles (see <strong>D3DCOMPOSERECTDESC</strong>) that enclose the desired glyphs in the source surface.</p> </dd></param>
  6546. <param name="numRects"><dd> <p>The number of rectangles or glyphs that are used in the operation. The number applies to both the source and destination surfaces. The range is 0 to <strong>D3DCOMPOSERECTS_MAXNUMRECTS</strong>.</p> </dd></param>
  6547. <param name="dstRectDescsRef"><dd> <p>A reference to a vertex buffer (see <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong>) containing rectangles (see <strong>D3DCOMPOSERECTDESTINATION</strong>) that describe the destination to which the indicated glyph from the source surface will be copied.</p> </dd></param>
  6548. <param name="operation"><dd> <p>Specifies how to combine the source and destination surfaces. See <strong><see cref="T:SharpDX.Direct3D9.ComposeRectOperation" /></strong>.</p> </dd></param>
  6549. <param name="xoffset"><dd> <p>A value added to the <em>x</em> coordinates of all destination rectangles. This value can be negative, which may cause the glyph to be rejected or clipped if the result is beyond the bounds of the surface.</p> </dd></param>
  6550. <param name="yoffset"><dd> <p>A value added to the <em>y</em> coordinates of all destination rectangles. This value can be negative, which may cause the glyph to be rejected or clipped if the result is beyond the bounds of the surface.</p> </dd></param>
  6551. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />.</p></returns>
  6552. <remarks>
  6553. <p>Glyphs from a one-bit source surface are put together into another one-bit texture surface with this method. The destination surface can then be used as the source for a normal texturing operation that will filter and scale the strings of text onto some other non-monochrome surface.</p><p>This method has several constraints (which are similar to <strong>StretchRect</strong>):</p><ul> <li>Surfaces cannot be locked.</li> <li>The source and destination surfaces cannot be the same surface.</li> <li>The source and destination surfaces must be created with the <see cref="F:SharpDX.Direct3D9.Format.A1" /> format.</li> <li>The source surface and both vertex buffers must be created with the <strong><see cref="F:SharpDX.Direct3D9.Pool.Default" /></strong> flag.</li> <li>The destination surface must be created with either the <strong><see cref="F:SharpDX.Direct3D9.Pool.Default" /></strong> or <strong><see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /></strong> flags.</li> <li>The source rectangles must be within the source surface.</li> </ul><p>The method is not recorded in state blocks.</p>
  6554. </remarks>
  6555. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::ComposeRects']/*" />
  6556. <msdn-id>bb174340</msdn-id>
  6557. <unmanaged>HRESULT IDirect3DDevice9Ex::ComposeRects([In] IDirect3DSurface9* pSrc,[In] IDirect3DSurface9* pDst,[In] IDirect3DVertexBuffer9* pSrcRectDescs,[In] unsigned int NumRects,[In] IDirect3DVertexBuffer9* pDstRectDescs,[In] D3DCOMPOSERECTSOP Operation,[In] int Xoffset,[In] int Yoffset)</unmanaged>
  6558. <unmanaged-short>IDirect3DDevice9Ex::ComposeRects</unmanaged-short>
  6559. </member>
  6560. <member name="M:SharpDX.Direct3D9.DeviceEx.PresentEx(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Int32)">
  6561. <summary>
  6562. <p>Swap the swapchain's next buffer with the front buffer.</p>
  6563. </summary>
  6564. <param name="sourceRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure indicating region on the source surface to copy in window client coordinates. Only applies when the swapchain was created with the <strong><see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" /></strong> flag. If <strong><c>null</c></strong>, the entire source surface is presented. If the rectangle exceeds the source surface, it is clipped to the source surface.</p> </dd></param>
  6565. <param name="destRectRef"><dd> <p>Pointer to <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure indicating the target region on the destination surface in window client coordinates. Only applies when the swapchain was created with the <strong><see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" /></strong> flag. If <strong><c>null</c></strong>, the entire client area is filled. If the rectangle exceeds the destination client area, it is clipped to the destination client area.</p> </dd></param>
  6566. <param name="hDestWindowOverride"><dd> <p>Pointer to a destination window whose client area is taken as the target for this presentation. If this value is <strong><c>null</c></strong>, the runtime uses the <strong>hDeviceWindow</strong> member of <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> for the presentation.</p> <p><strong>Note</strong>??If you create a swap chain with <see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" />, you must pass <strong><c>null</c></strong> to <em>hDestWindowOverride</em></p> </dd></param>
  6567. <param name="dirtyRegionRef"><dd> <p>Pointer to a <strong><see cref="T:System.IntPtr" /></strong> structure indicating the smallest set of pixels that need to be transferred. This value must be <strong><c>null</c></strong> unless the swapchain was created with the <strong><see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" /></strong> flag. For more information about swapchains, see Flipping Surfaces (Direct3D 9).</p> <p>If this value is non-<strong><c>null</c></strong>, the contained region is expressed in back buffer coordinates. The method takes these rectangles into account when optimizing the presentation by copying only the pixels within the region, or some suitably expanded set of rectangles. This is an aid to optimization only, and the application should not rely on the region being copied exactly. The implementation can choose to copy the whole source rectangle.</p> </dd></param>
  6568. <param name="dwFlags"><dd> <p>Allows the application to request that the method return immediately when the driver reports that it cannot schedule a presentation. Valid values are 0, or any combination of <see cref="T:SharpDX.Direct3D9.Present" /> flags. </p> <ul> <li>If dwFlags = 0, this method behaves as it did prior to Direct3D 9. Present will spin until the hardware is free, without returning an error.</li> <li>If dwFlags = <see cref="F:SharpDX.Direct3D9.Present.DoNotFlip" /> the display driver is called with the front buffer as both the source and target surface. The driver responds by scheduling a frame synch, but not changing the displayed surface. This flag is only available in full-screen mode or when using <see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" /> in windowed mode.</li> <li>If dwFlags = <see cref="F:SharpDX.Direct3D9.Present.DoNotWait" />, and the hardware is busy processing or waiting for a vertical sync interval, the method will return <see cref="F:SharpDX.Direct3D9.ResultCode.WasStillDrawing" />.</li> <li>If dwFlags = <see cref="F:SharpDX.Direct3D9.Present.ForceImmediate" />, <see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" /> is enforced on this Present call. This flag can only be specified when using <see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" />. This behavior is the same for windowed and full-screen modes.</li> <li>If dwFlags = <see cref="F:SharpDX.Direct3D9.Present.LinearContent" />, gamma correction is performed from linear space to sRGB for windowed swap chains. This flag will take effect only when the driver exposes <see cref="F:SharpDX.Direct3D9.Caps3.LinearToSrgbPresentation" /> (see Gamma (Direct3D 9)).</li> </ul> </dd></param>
  6569. <returns><p>Possible return values include: <see cref="F:SharpDX.Result.Ok" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceHung" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceRemoved" />, or <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" /> (see <strong>D3DERR</strong>). See Lost Device Behavior Changes for more information about lost, hung, and removed devices.</p><table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 9Ex:</p> <p><strong><see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" /></strong> is only available in Direct3D9Ex running on Windows 7 (or more current operating system).</p> </td></tr> </table><p>?</p></returns>
  6570. <remarks>
  6571. <p>Similar to the <strong><see cref="M:SharpDX.Direct3D9.Device.Present" /></strong> Method, PresentEx adds a dwflags parameter.</p><p>When the swapchain is created with <strong><see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" /></strong> flag, <strong>pSourceRect</strong>, <strong>pDestRect</strong> and <strong>pDirtyRegion</strong> values must be set to <strong><c>null</c></strong>.</p>
  6572. </remarks>
  6573. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::PresentEx']/*" />
  6574. <msdn-id>bb174343</msdn-id>
  6575. <unmanaged>HRESULT IDirect3DDevice9Ex::PresentEx([In] const void* pSourceRect,[In] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const RGNDATA* pDirtyRegion,[In] unsigned int dwFlags)</unmanaged>
  6576. <unmanaged-short>IDirect3DDevice9Ex::PresentEx</unmanaged-short>
  6577. </member>
  6578. <member name="M:SharpDX.Direct3D9.DeviceEx.GetGPUThreadPriority(System.Int32@)">
  6579. <summary>
  6580. <p>Get the priority of the GPU thread.</p>
  6581. </summary>
  6582. <param name="priorityRef"><dd> <p>Current GPU priority. Valid values range from -7 to 7.</p> </dd></param>
  6583. <returns><p>Possible return values include: <see cref="F:SharpDX.Direct3D9.ResultCode.Success" /> or <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceRemoved" /> (see D3DERR).</p></returns>
  6584. <remarks>
  6585. <p>Use <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.SetGPUThreadPriority(System.Int32)" /></strong> to set the priority of a thread.</p><p>This method will retrieve the priority of the thread stored with the Direct3D device even if it was created with the <see cref="F:SharpDX.Direct3D9.CreateFlags.PureDevice" /> flag.</p>
  6586. </remarks>
  6587. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::GetGPUThreadPriority']/*" />
  6588. <msdn-id>bb174341</msdn-id>
  6589. <unmanaged>HRESULT IDirect3DDevice9Ex::GetGPUThreadPriority([Out] int* pPriority)</unmanaged>
  6590. <unmanaged-short>IDirect3DDevice9Ex::GetGPUThreadPriority</unmanaged-short>
  6591. </member>
  6592. <member name="M:SharpDX.Direct3D9.DeviceEx.SetGPUThreadPriority(System.Int32)">
  6593. <summary>
  6594. <p>Set the priority on the GPU thread.</p>
  6595. </summary>
  6596. <param name="priority"><dd> <p>The thread priority, ranging from -7 to 7.</p> </dd></param>
  6597. <returns><p>Possible return values include: <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, or <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceRemoved" /> (see D3DERR).</p></returns>
  6598. <remarks>
  6599. <p>GPU thread priority is not reset when a device is lost. The effects of calls to this method are not recorded in state blocks.</p>
  6600. </remarks>
  6601. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::SetGPUThreadPriority']/*" />
  6602. <msdn-id>bb174346</msdn-id>
  6603. <unmanaged>HRESULT IDirect3DDevice9Ex::SetGPUThreadPriority([In] int Priority)</unmanaged>
  6604. <unmanaged-short>IDirect3DDevice9Ex::SetGPUThreadPriority</unmanaged-short>
  6605. </member>
  6606. <member name="M:SharpDX.Direct3D9.DeviceEx.WaitForVBlank(System.Int32)">
  6607. <summary>
  6608. <p>Suspend execution of the calling thread until the next vertical blank signal.</p>
  6609. </summary>
  6610. <param name="iSwapChain"><dd> <p>Swap chain index. This is an optional, zero-based index used to specify a swap chain on a multihead card.</p> </dd></param>
  6611. <returns><p>This method will always return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />.</p></returns>
  6612. <remarks>
  6613. <p>This method allows applications to efficiently throttle their frame rate to that of the monitor associated with the device. Following a vertical blank, the amount of time it takes for the thread to wake up is typically very short.</p><p>In some scenarios the hardware may stop generating vertical blank signals when nothing is being displayed on the monitor. In this case, the method will wait approximately 100ms and return with <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />.</p>
  6614. </remarks>
  6615. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::WaitForVBlank']/*" />
  6616. <msdn-id>bb174349</msdn-id>
  6617. <unmanaged>HRESULT IDirect3DDevice9Ex::WaitForVBlank([In] unsigned int iSwapChain)</unmanaged>
  6618. <unmanaged-short>IDirect3DDevice9Ex::WaitForVBlank</unmanaged-short>
  6619. </member>
  6620. <member name="M:SharpDX.Direct3D9.DeviceEx.CheckResourceResidency(SharpDX.Direct3D9.Resource[],System.Int32)">
  6621. <summary>
  6622. <p>Checks an array of resources to determine if it is likely that they will cause a large stall at Draw time because the system must make the resources GPU-accessible.</p>
  6623. </summary>
  6624. <param name="resourceArrayRef"><dd> <p>An array of <strong><see cref="T:SharpDX.Direct3D9.Resource" /></strong> references that indicate the resources to check.</p> </dd></param>
  6625. <param name="numResources"><dd> <p>A value indicating the number of resources passed into the <em>pResourceArray</em> parameter up to a maximum of 65535.</p> </dd></param>
  6626. <returns><p>If all the resources are in GPU-accessible memory, the method will return <see cref="F:SharpDX.Result.Ok" />. The system may need to perform a remapping operation to promote the resources, but will not have to copy data.</p><p> If no allocation that comprises the resources is on disk, but at least one allocation is not in GPU-accessible memory, the method will return <see cref="F:SharpDX.Direct3D9.ResultCode.ResidentInSharedMemory" />. The system may need to perform a copy to promote the resource.</p><p> If at least one allocation that comprises the resources is on disk, this method will return S_NOT_RESIDENT. The system may need to perform a copy to promote the resource.</p></returns>
  6627. <remarks>
  6628. <p>This API is no more than a reasonable guess at residency, since resources may have been demoted by the time the application uses them.</p><p>The expected usage pattern is as follows. If the application determines that a set of resources are not resident, then the application will substitute a lower-LOD version of the resource and continue with rendering. The video memory manager API, offers a feature to allow the application to express that it would like these lower-LOD resources to be made more likely to stay resident in GPU-accessible memory. It is the app's responsibility to create, fill and destroy these lower-LOD versions, if it so chooses.</p><p>The application also needs to begin promotion of the higher-LOD versions when the residency check indicates that the resource is not resident in GPU-accessible memory. Since a per-process lock exists in kernel mode, a performant implementation will spawn a separate process whose sole job is to promote resources. The application communicates resource identity between the two process by means of the Sharing Resources shared surfaces API and promotes them by means of the <strong>SetPriority</strong>.</p>
  6629. </remarks>
  6630. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::CheckResourceResidency']/*" />
  6631. <msdn-id>bb174339</msdn-id>
  6632. <unmanaged>HRESULT IDirect3DDevice9Ex::CheckResourceResidency([In, Buffer] IDirect3DResource9** pResourceArray,[In] unsigned int NumResources)</unmanaged>
  6633. <unmanaged-short>IDirect3DDevice9Ex::CheckResourceResidency</unmanaged-short>
  6634. </member>
  6635. <member name="M:SharpDX.Direct3D9.DeviceEx.CheckResourceResidency(SharpDX.ComArray{SharpDX.Direct3D9.Resource},System.Int32)">
  6636. <summary>
  6637. <p>Checks an array of resources to determine if it is likely that they will cause a large stall at Draw time because the system must make the resources GPU-accessible.</p>
  6638. </summary>
  6639. <param name="resourceArrayRef"><dd> <p>An array of <strong><see cref="T:SharpDX.Direct3D9.Resource" /></strong> references that indicate the resources to check.</p> </dd></param>
  6640. <param name="numResources"><dd> <p>A value indicating the number of resources passed into the <em>pResourceArray</em> parameter up to a maximum of 65535.</p> </dd></param>
  6641. <returns><p>If all the resources are in GPU-accessible memory, the method will return <see cref="F:SharpDX.Result.Ok" />. The system may need to perform a remapping operation to promote the resources, but will not have to copy data.</p><p> If no allocation that comprises the resources is on disk, but at least one allocation is not in GPU-accessible memory, the method will return <see cref="F:SharpDX.Direct3D9.ResultCode.ResidentInSharedMemory" />. The system may need to perform a copy to promote the resource.</p><p> If at least one allocation that comprises the resources is on disk, this method will return S_NOT_RESIDENT. The system may need to perform a copy to promote the resource.</p></returns>
  6642. <remarks>
  6643. <p>This API is no more than a reasonable guess at residency, since resources may have been demoted by the time the application uses them.</p><p>The expected usage pattern is as follows. If the application determines that a set of resources are not resident, then the application will substitute a lower-LOD version of the resource and continue with rendering. The video memory manager API, offers a feature to allow the application to express that it would like these lower-LOD resources to be made more likely to stay resident in GPU-accessible memory. It is the app's responsibility to create, fill and destroy these lower-LOD versions, if it so chooses.</p><p>The application also needs to begin promotion of the higher-LOD versions when the residency check indicates that the resource is not resident in GPU-accessible memory. Since a per-process lock exists in kernel mode, a performant implementation will spawn a separate process whose sole job is to promote resources. The application communicates resource identity between the two process by means of the Sharing Resources shared surfaces API and promotes them by means of the <strong>SetPriority</strong>.</p>
  6644. </remarks>
  6645. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::CheckResourceResidency']/*" />
  6646. <msdn-id>bb174339</msdn-id>
  6647. <unmanaged>HRESULT IDirect3DDevice9Ex::CheckResourceResidency([In, Buffer] IDirect3DResource9** pResourceArray,[In] unsigned int NumResources)</unmanaged>
  6648. <unmanaged-short>IDirect3DDevice9Ex::CheckResourceResidency</unmanaged-short>
  6649. </member>
  6650. <member name="M:SharpDX.Direct3D9.DeviceEx.CheckResourceResidency(System.IntPtr,System.Int32)">
  6651. <summary>
  6652. <p>Checks an array of resources to determine if it is likely that they will cause a large stall at Draw time because the system must make the resources GPU-accessible.</p>
  6653. </summary>
  6654. <param name="resourceArrayRef"><dd> <p>An array of <strong><see cref="T:SharpDX.Direct3D9.Resource" /></strong> references that indicate the resources to check.</p> </dd></param>
  6655. <param name="numResources"><dd> <p>A value indicating the number of resources passed into the <em>pResourceArray</em> parameter up to a maximum of 65535.</p> </dd></param>
  6656. <returns><p>If all the resources are in GPU-accessible memory, the method will return <see cref="F:SharpDX.Result.Ok" />. The system may need to perform a remapping operation to promote the resources, but will not have to copy data.</p><p> If no allocation that comprises the resources is on disk, but at least one allocation is not in GPU-accessible memory, the method will return <see cref="F:SharpDX.Direct3D9.ResultCode.ResidentInSharedMemory" />. The system may need to perform a copy to promote the resource.</p><p> If at least one allocation that comprises the resources is on disk, this method will return S_NOT_RESIDENT. The system may need to perform a copy to promote the resource.</p></returns>
  6657. <remarks>
  6658. <p>This API is no more than a reasonable guess at residency, since resources may have been demoted by the time the application uses them.</p><p>The expected usage pattern is as follows. If the application determines that a set of resources are not resident, then the application will substitute a lower-LOD version of the resource and continue with rendering. The video memory manager API, offers a feature to allow the application to express that it would like these lower-LOD resources to be made more likely to stay resident in GPU-accessible memory. It is the app's responsibility to create, fill and destroy these lower-LOD versions, if it so chooses.</p><p>The application also needs to begin promotion of the higher-LOD versions when the residency check indicates that the resource is not resident in GPU-accessible memory. Since a per-process lock exists in kernel mode, a performant implementation will spawn a separate process whose sole job is to promote resources. The application communicates resource identity between the two process by means of the Sharing Resources shared surfaces API and promotes them by means of the <strong>SetPriority</strong>.</p>
  6659. </remarks>
  6660. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::CheckResourceResidency']/*" />
  6661. <msdn-id>bb174339</msdn-id>
  6662. <unmanaged>HRESULT IDirect3DDevice9Ex::CheckResourceResidency([In, Buffer] IDirect3DResource9** pResourceArray,[In] unsigned int NumResources)</unmanaged>
  6663. <unmanaged-short>IDirect3DDevice9Ex::CheckResourceResidency</unmanaged-short>
  6664. </member>
  6665. <member name="M:SharpDX.Direct3D9.DeviceEx.SetMaximumFrameLatency(System.Int32)">
  6666. <summary>
  6667. <p>Set the number of frames that the system is allowed to queue for rendering.</p>
  6668. </summary>
  6669. <param name="maxLatency"><dd> <p>The maximum number of back buffer frames that a driver can queue. The value is typically 3, but can range from 1 to 20. A value of 0 will reset latency to the default. For multi-head devices, <em>MaxLatency</em> is specified per-head.</p> </dd></param>
  6670. <returns><p>Possible return values include: <see cref="F:SharpDX.Direct3D9.ResultCode.Success" /> or <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceRemoved" /> (see D3DERR).</p></returns>
  6671. <remarks>
  6672. <p>Frame latency is the number of frames that are allowed to be stored in a queue, before submission for rendering. Latency is often used to control how the CPU chooses between responding to user input and frames that are in the render queue.</p><p>It is often beneficial for applications that have no user input (for example, video playback) to queue more than 3 frames of data.</p>
  6673. </remarks>
  6674. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::SetMaximumFrameLatency']/*" />
  6675. <msdn-id>bb174347</msdn-id>
  6676. <unmanaged>HRESULT IDirect3DDevice9Ex::SetMaximumFrameLatency([In] unsigned int MaxLatency)</unmanaged>
  6677. <unmanaged-short>IDirect3DDevice9Ex::SetMaximumFrameLatency</unmanaged-short>
  6678. </member>
  6679. <member name="M:SharpDX.Direct3D9.DeviceEx.GetMaximumFrameLatency(System.Int32@)">
  6680. <summary>
  6681. <p>Retrieves the number of frames of data that the system is allowed to queue.</p>
  6682. </summary>
  6683. <param name="maxLatencyRef"><dd> <p>Returns the number of frames that can be queued for render. The value is typically 3, but can range from 1 to 20.</p> </dd></param>
  6684. <returns><p>Possible return values include: <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceRemoved" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DriverInternalError" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, or <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" /> (see D3DERR).</p></returns>
  6685. <remarks>
  6686. <p>Frame latency is the number of frames that are allowed to be stored in a queue, before submission for rendering. Latency is often used to control how the CPU chooses between responding to user input and frames that are in the render queue.</p><p>It is often beneficial for applications that have no user input (for example, video playback) to queue more than 3 frames of data.</p>
  6687. </remarks>
  6688. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::GetMaximumFrameLatency']/*" />
  6689. <msdn-id>bb174342</msdn-id>
  6690. <unmanaged>HRESULT IDirect3DDevice9Ex::GetMaximumFrameLatency([Out] unsigned int* pMaxLatency)</unmanaged>
  6691. <unmanaged-short>IDirect3DDevice9Ex::GetMaximumFrameLatency</unmanaged-short>
  6692. </member>
  6693. <member name="M:SharpDX.Direct3D9.DeviceEx.CheckDeviceState_(System.IntPtr)">
  6694. <summary>
  6695. <p>Reports the current cooperative-level status of the Direct3D device for a windowed or full-screen application.</p>
  6696. </summary>
  6697. <param name="hDestinationWindow"><dd> <p>The destination window handle to check for occlusion. When this parameter is <strong><c>null</c></strong>, <see cref="F:SharpDX.Direct3D9.ResultCode.PresentOccluded" /> is returned when another device has fullscreen ownership. When the window handle is not <strong><c>null</c></strong>, window's client area is checked for occlusion. A window is occluded if any part of it is obscured by another application.</p> </dd></param>
  6698. <returns><p>Possible return values include: <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceHung" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceRemoved" />, or <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" /> (see D3DERR), or <see cref="F:SharpDX.Direct3D9.ResultCode.PresentModeChanged" />, or <see cref="F:SharpDX.Direct3D9.ResultCode.PresentOccluded" /> (see S_PRESENT).</p></returns>
  6699. <remarks>
  6700. <p>This method replaces <strong><see cref="M:SharpDX.Direct3D9.Device.TestCooperativeLevel" /></strong>, which always returns <see cref="F:SharpDX.Result.Ok" /> in Direct3D 9Ex applications.</p><p>We recommend not to call <strong>CheckDeviceState</strong> every frame. Instead, call <strong>CheckDeviceState</strong> only if the <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.PresentEx(SharpDX.Direct3D9.Present)" /></strong> method returns a failure code.</p><p>See Lost Device Behavior Changes for more information about lost, hung, and removed devices.</p>
  6701. </remarks>
  6702. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::CheckDeviceState']/*" />
  6703. <msdn-id>bb174338</msdn-id>
  6704. <unmanaged>HRESULT IDirect3DDevice9Ex::CheckDeviceState([In] HWND hDestinationWindow)</unmanaged>
  6705. <unmanaged-short>IDirect3DDevice9Ex::CheckDeviceState</unmanaged-short>
  6706. </member>
  6707. <member name="M:SharpDX.Direct3D9.DeviceEx.CreateRenderTargetEx(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.IntPtr,System.Int32)">
  6708. <summary>
  6709. <p>Creates a render-target surface.</p>
  6710. </summary>
  6711. <param name="width"><dd> <p>Width of the render-target surface, in pixels. </p> </dd></param>
  6712. <param name="height"><dd> <p>Height of the render-target surface, in pixels. </p> </dd></param>
  6713. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the format of the render target. </p> </dd></param>
  6714. <param name="multiSample"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.MultisampleType" /></strong> enumerated type, which describes the multisampling buffer type. This parameter specifies the antialiasing type for this render target. When this surface is passed to <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderTarget(System.Int32,SharpDX.Direct3D9.Surface)" /></strong>, its multisample type must be the same as that of the depth-stencil set by <strong><see cref="M:SharpDX.Direct3D9.Device.SetDepthStencilSurface(SharpDX.Direct3D9.Surface)" /></strong>. </p> </dd></param>
  6715. <param name="multisampleQuality"><dd> <p>Quality level. The valid range is between zero and one less than the level returned by pQualityLevels used by <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceMultiSampleType_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.MultisampleType,System.Int32@)" /></strong>. Passing a larger value returns the error, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. The MultisampleQuality values of paired render targets, depth stencil surfaces, and the multisample type must all match.</p> </dd></param>
  6716. <param name="lockable"><dd> <p>Render targets are not lockable unless the application specifies <strong>TRUE</strong> for Lockable.</p> <p>Note that lockable render targets reduce performance on some graphics hardware. The readback performance (moving data from video memory to system memory) depends on the type of hardware used (AGP vs. PCI Express) and is usually far lower than upload performance (moving data from system to video memory). If you need read access to render targets, use <strong>GetRenderTargetData</strong> instead of lockable render targets.</p> </dd></param>
  6717. <param name="sharedHandleRef"><dd> <p>Reserved. Set this parameter to <strong><c>null</c></strong>. This parameter can be used in Direct3D 9 for Windows Vista to share resources.</p> </dd></param>
  6718. <param name="usage"><dd> <p>Combination of one or more <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong> constants which can be OR'd together. Value of 0 indicates no usage.</p> </dd></param>
  6719. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. </p> </dd></returns>
  6720. <remarks>
  6721. <p>Render-target surfaces are placed in the <see cref="F:SharpDX.Direct3D9.Pool.Default" /> memory class.</p><p>The creation of lockable, multisampled render targets is not supported.</p>
  6722. </remarks>
  6723. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::CreateRenderTargetEx']/*" />
  6724. <msdn-id>bb509713</msdn-id>
  6725. <unmanaged>HRESULT IDirect3DDevice9Ex::CreateRenderTargetEx([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Lockable,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle,[In] unsigned int Usage)</unmanaged>
  6726. <unmanaged-short>IDirect3DDevice9Ex::CreateRenderTargetEx</unmanaged-short>
  6727. </member>
  6728. <member name="M:SharpDX.Direct3D9.DeviceEx.CreateOffscreenPlainSurfaceEx(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.IntPtr,System.Int32)">
  6729. <summary>
  6730. <p>Create an off-screen surface.</p>
  6731. </summary>
  6732. <param name="width"><dd> <p>Width of the surface.</p> </dd></param>
  6733. <param name="height"><dd> <p>Height of the surface.</p> </dd></param>
  6734. <param name="format"><dd> <p>Format of the surface. See <see cref="T:SharpDX.Direct3D9.Format" />. </p> </dd></param>
  6735. <param name="pool"><dd> <p>Surface pool type. See <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong>.</p> </dd></param>
  6736. <param name="sharedHandleRef"><dd> <p>Reserved. Set this parameter to <strong><c>null</c></strong>. This parameter can be used in Direct3D 9 for Windows Vista to share resources.</p> </dd></param>
  6737. <param name="usage"><dd> <p>Combination of one or more <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong> constants which can be OR'd together. Value of 0 indicates no usage.</p> </dd></param>
  6738. <returns><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface created.</p> </dd></returns>
  6739. <remarks>
  6740. <p><see cref="F:SharpDX.Direct3D9.Pool.Scratch" /> will return a surface that has identical characteristics to a surface created by the DirectX 8.x method CreateImageSurface.</p><p><see cref="F:SharpDX.Direct3D9.Pool.Default" /> is the appropriate pool for use with the <strong><see cref="M:SharpDX.Direct3D9.Device.StretchRectangle(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.TextureFilter)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.ColorFill(SharpDX.Direct3D9.Surface,SharpDX.Mathematics.Interop.RawColorBGRA)" /></strong>.</p><p><see cref="F:SharpDX.Direct3D9.Pool.Managed" /> is not allowed when creating an offscreen plain surface. For more information about memory pools, see <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong>.</p><p>Off-screen plain surfaces are always lockable, regardless of their pool types.</p>
  6741. </remarks>
  6742. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::CreateOffscreenPlainSurfaceEx']/*" />
  6743. <msdn-id>bb509712</msdn-id>
  6744. <unmanaged>HRESULT IDirect3DDevice9Ex::CreateOffscreenPlainSurfaceEx([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle,[In] unsigned int Usage)</unmanaged>
  6745. <unmanaged-short>IDirect3DDevice9Ex::CreateOffscreenPlainSurfaceEx</unmanaged-short>
  6746. </member>
  6747. <member name="M:SharpDX.Direct3D9.DeviceEx.CreateDepthStencilSurfaceEx(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.IntPtr,System.Int32)">
  6748. <summary>
  6749. <p>Creates a depth-stencil surface.</p>
  6750. </summary>
  6751. <param name="width"><dd> <p>Width of the depth-stencil surface, in pixels. </p> </dd></param>
  6752. <param name="height"><dd> <p>Height of the depth-stencil surface, in pixels. </p> </dd></param>
  6753. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the format of the depth-stencil surface. This value must be one of the enumerated depth-stencil formats for this device.</p> </dd></param>
  6754. <param name="multiSample"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.MultisampleType" /></strong> enumerated type, describing the multisampling buffer type. This value must be one of the allowed multisample types. When this surface is passed to <strong><see cref="M:SharpDX.Direct3D9.Device.SetDepthStencilSurface(SharpDX.Direct3D9.Surface)" /></strong>, its multisample type must be the same as that of the render target set by <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderTarget(System.Int32,SharpDX.Direct3D9.Surface)" /></strong>.</p> </dd></param>
  6755. <param name="multisampleQuality"><dd> <p>Quality level. The valid range is between zero and one less than the level returned by pQualityLevels used by <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceMultiSampleType_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.MultisampleType,System.Int32@)" /></strong>. Passing a larger value returns the error <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. The MultisampleQuality values of paired render targets, depth stencil surfaces, and the MultiSample type must all match.</p> </dd></param>
  6756. <param name="discard"><dd> <p>Set this flag to <strong>TRUE</strong> to enable z-buffer discarding, and <strong><see cref="F:SharpDX.Result.False" /></strong> otherwise. If this flag is set, the contents of the depth stencil buffer will be invalid after calling either <strong><see cref="M:SharpDX.Direct3D9.Device.Present" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.Device.SetDepthStencilSurface(SharpDX.Direct3D9.Surface)" /></strong> with a different depth surface.</p> <p>This flag has the same behavior as the constant, <see cref="F:SharpDX.Direct3D9.PresentFlags.DiscardDepthStencil" />, in <see cref="T:SharpDX.Direct3D9.PresentFlags" />.</p> </dd></param>
  6757. <param name="sharedHandleRef"><dd> <p>Reserved. Set this parameter to <strong><c>null</c></strong>. This parameter can be used in Direct3D 9 for Windows Vista to share resources.</p> </dd></param>
  6758. <param name="usage"><dd> <p>Combination of one or more <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong> constants which can be OR'd together. Value of 0 indicates no usage.</p> </dd></param>
  6759. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the created depth-stencil surface resource. </p> </dd></returns>
  6760. <remarks>
  6761. <p>The memory class of the depth-stencil buffer is always <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</p>
  6762. </remarks>
  6763. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::CreateDepthStencilSurfaceEx']/*" />
  6764. <msdn-id>bb509711</msdn-id>
  6765. <unmanaged>HRESULT IDirect3DDevice9Ex::CreateDepthStencilSurfaceEx([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Discard,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle,[In] unsigned int Usage)</unmanaged>
  6766. <unmanaged-short>IDirect3DDevice9Ex::CreateDepthStencilSurfaceEx</unmanaged-short>
  6767. </member>
  6768. <member name="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@,System.IntPtr)">
  6769. <summary>
  6770. <p>Resets the type, size, and format of the swap chain with all other surfaces persistent.</p>
  6771. </summary>
  6772. <param name="presentationParametersRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structure, describing the new presentation parameters. This value cannot be <strong><c>null</c></strong>. </p> <p>When switching to full-screen mode, Direct3D will try to find a desktop format that matches the back buffer format, so that back buffer and front buffer formats will be identical (to eliminate the need for color conversion).</p> <p>When this method returns:</p> <ul> <li>BackBufferCount, BackBufferWidth, and BackBufferHeight are set to zero.</li> <li>BackBufferFormat is set to <see cref="T:SharpDX.Direct3D9.Format" /> for windowed mode only; a full-screen mode must specify a format.</li> </ul> </dd></param>
  6773. <param name="fullscreenDisplayModeRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.DisplayModeEx" /></strong> structure that describes the properties of the desired display mode. This value must be provided for fullscreen applications, but can be <strong><c>null</c></strong> for windowed applications. </p> </dd></param>
  6774. <returns><p>The method can return: <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" /> or <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceHung" /> (see D3DERR). </p><p>If this method returns <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" /> or <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceHung" /> then the application can only call <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.CheckDeviceState_(System.IntPtr)" /></strong> or release the interface reference; any other API call will cause an exception.</p></returns>
  6775. <remarks>
  6776. <p>If a call to <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@)" /></strong> fails, the device will be placed in the lost state (as indicated by a return value of <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" /> from a call to <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.CheckDeviceState_(System.IntPtr)" /></strong>). Refer to <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.CheckDeviceState_(System.IntPtr)" /></strong> and Lost Device Behavior Changes for further information concerning the use of <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@)" /></strong> in the context of lost devices.</p><p>Unlike previous versions of DirectX, calling <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@)" /></strong> does not cause surfaces, textures or state information to be lost.</p><p>Pixel shaders and vertex shaders survive <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@)" /></strong> calls for Direct3D 9. They do not need to be re-created explicitly by the application.</p><p>There are two different types of swap chains: full-screen or windowed. If the new swap chain is full-screen, the adapter will be placed in the display mode that matches the new size.</p><p>Applications can expect messages to be sent to them during this call (for example, before this call is returned); applications should take precautions not to call into Direct3D at this time.</p><p>A call to <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@)" /></strong> will fail if called on a different thread than that used to create the device being reset.</p><p><see cref="F:SharpDX.Direct3D9.Format.Unknown" /> can be specified for the windowed mode back buffer format when calling <strong><see cref="M:SharpDX.Direct3D9.Direct3DEx.CreateDeviceEx(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,System.Int32,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.DisplayModeEx[],SharpDX.Direct3D9.DeviceEx)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@)" /></strong>, and <strong><see cref="M:SharpDX.Direct3D9.Device.CreateAdditionalSwapChain(SharpDX.Direct3D9.PresentParameters@,SharpDX.Direct3D9.SwapChain)" /></strong>. This means the application does not have to query the current desktop format before calling <strong><see cref="M:SharpDX.Direct3D9.Direct3DEx.CreateDeviceEx(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,System.Int32,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.DisplayModeEx[],SharpDX.Direct3D9.DeviceEx)" /></strong> for windowed mode. For full-screen mode, the back buffer format must be specified. Setting BackBufferCount equal to zero (BackBufferCount = 0) results in one back buffer.</p><p>When trying to reset more than one display adapter in a group, set pPresentationParameters to point to an array of <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structures, one for each display in the adapter group.</p><p>If a multihead device was created with <see cref="F:SharpDX.Direct3D9.CreateFlags.AdapterGroupDevice" />, <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.ResetEx(SharpDX.Direct3D9.PresentParameters@)" /></strong> requires an array of <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structures wherein each structure must specify a full-screen display. To switch back to windowed mode, the application must destroy the device and re-create a non-multihead device in windowed mode.</p>
  6777. </remarks>
  6778. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::ResetEx']/*" />
  6779. <msdn-id>bb174344</msdn-id>
  6780. <unmanaged>HRESULT IDirect3DDevice9Ex::ResetEx([In] D3DPRESENT_PARAMETERS* pPresentationParameters,[In] void* pFullscreenDisplayMode)</unmanaged>
  6781. <unmanaged-short>IDirect3DDevice9Ex::ResetEx</unmanaged-short>
  6782. </member>
  6783. <member name="M:SharpDX.Direct3D9.DeviceEx.GetDisplayModeEx(System.Int32,System.IntPtr)">
  6784. <summary>
  6785. <p>Retrieves the display mode's spatial resolution, color resolution, refresh frequency, and rotation settings.</p>
  6786. </summary>
  6787. <param name="iSwapChain"><dd> <p>An unsigned integer specifying the swap chain.</p> </dd></param>
  6788. <param name="rotationRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.DisplayRotation" /></strong> indicating the type of screen rotation the application will do. The value returned through this reference is important when the <see cref="F:SharpDX.Direct3D9.PresentFlags.NoAutoRotate" /> flag is used; otherwise, it can be set to <strong><c>null</c></strong>.</p> </dd></param>
  6789. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.DisplayModeEx" /></strong> structure containing data about the display mode of the adapter. As opposed to the display mode of the device, which may not be active if the device does not own full-screen mode. Can be set to <strong><c>null</c></strong>.</p> </dd></returns>
  6790. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DDevice9Ex::GetDisplayModeEx']/*" />
  6791. <msdn-id>bb509714</msdn-id>
  6792. <unmanaged>HRESULT IDirect3DDevice9Ex::GetDisplayModeEx([In] unsigned int iSwapChain,[Out] D3DDISPLAYMODEEX* pMode,[In] void* pRotation)</unmanaged>
  6793. <unmanaged-short>IDirect3DDevice9Ex::GetDisplayModeEx</unmanaged-short>
  6794. </member>
  6795. <member name="T:SharpDX.Direct3D9.Direct3D">
  6796. <summary>
  6797. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.Direct3D" /> interface to create Microsoft Direct3D objects and set up the environment. This interface includes methods for enumerating and retrieving capabilities of the device.</p>
  6798. </summary>
  6799. <remarks>
  6800. <p>The <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface is obtained by calling the <strong>Direct3DCreate9</strong> function.</p><p>The LPDIRECT3D9 and PDIRECT3D9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface. </p><pre>typedef struct <see cref="T:SharpDX.Direct3D9.Direct3D" /> *LPDIRECT3D9, *PDIRECT3D9;</pre>
  6801. </remarks>
  6802. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9']/*" />
  6803. <msdn-id>bb174300</msdn-id>
  6804. <unmanaged>IDirect3D9</unmanaged>
  6805. <unmanaged-short>IDirect3D9</unmanaged-short>
  6806. </member>
  6807. <member name="M:SharpDX.Direct3D9.Direct3D.#ctor">
  6808. <summary>
  6809. Create an IDirect3D9 object and return an interface to it.
  6810. </summary>
  6811. <remarks>
  6812. The Direct3D object is the first Direct3D COM object that your graphical application needs to create and the last object that your application needs to release. Functions for enumerating and retrieving capabilities of a device are accessible through the Direct3D object. This enables applications to select devices without creating them. Create an IDirect3D9 object as shown here:
  6813. <code> LPDIRECT3D9 g_pD3D = NULL; if( NULL == (g_pD3D = Direct3DCreate9(D3D_SDK_VERSION))) return E_FAIL; </code>
  6814. The IDirect3D9 interface supports enumeration of active display adapters and allows the creation of <see cref="T:SharpDX.Direct3D9.Device"/> objects. If the user dynamically adds adapters (either by adding devices to the desktop, or by hot-docking a laptop), those devices will not be included in the enumeration. Creating a new IDirect3D9 interface will expose the new devices. D3D_SDK_VERSION is passed to this function to ensure that the header files against which an application is compiled match the version of the runtime DLL's that are installed on the machine. D3D_SDK_VERSION is only changed in the runtime when a header change (or other code change) would require an application to be rebuilt. If this function fails, it indicates that the header file version does not match the runtime DLL version. For an example, see {{Creating a Device (Direct3D 9)}}.
  6815. </remarks>
  6816. </member>
  6817. <member name="M:SharpDX.Direct3D9.Direct3D.CheckVersion">
  6818. <summary>
  6819. Checks the version of D3DX runtime against the version of this library..
  6820. </summary>
  6821. </member>
  6822. <member name="P:SharpDX.Direct3D9.Direct3D.Adapters">
  6823. <summary>
  6824. Gets the adapters.
  6825. </summary>
  6826. </member>
  6827. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDepthStencilMatch(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format)">
  6828. <summary>
  6829. Determines whether a depth-stencil format is compatible with a render-target format in a particular display mode.
  6830. </summary>
  6831. <param name="adapter">The adapter.</param>
  6832. <param name="deviceType">Type of the device.</param>
  6833. <param name="adapterFormat">The adapter format.</param>
  6834. <param name="renderTargetFormat">The render target format.</param>
  6835. <param name="depthStencilFormat">The depth stencil format.</param>
  6836. <returns>If the depth-stencil format is compatible with the render-target format in the display mode, this method returns <c>true</c></returns>
  6837. <unmanaged>HRESULT IDirect3D9::CheckDepthStencilMatch([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT AdapterFormat,[In] D3DFORMAT RenderTargetFormat,[In] D3DFORMAT DepthStencilFormat)</unmanaged>
  6838. </member>
  6839. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDepthStencilMatch(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format,SharpDX.Result@)">
  6840. <summary>
  6841. Determines whether a depth-stencil format is compatible with a render-target format in a particular display mode.
  6842. </summary>
  6843. <param name="adapter">The adapter.</param>
  6844. <param name="deviceType">Type of the device.</param>
  6845. <param name="adapterFormat">The adapter format.</param>
  6846. <param name="renderTargetFormat">The render target format.</param>
  6847. <param name="depthStencilFormat">The depth stencil format.</param>
  6848. <param name="result">The result.</param>
  6849. <returns>
  6850. If the depth-stencil format is compatible with the render-target format in the display mode, this method returns <c>true</c>
  6851. </returns>
  6852. <unmanaged>HRESULT IDirect3D9::CheckDepthStencilMatch([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT AdapterFormat,[In] D3DFORMAT RenderTargetFormat,[In] D3DFORMAT DepthStencilFormat)</unmanaged>
  6853. </member>
  6854. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormat(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.ResourceType,SharpDX.Direct3D9.Format)">
  6855. <summary>
  6856. Determines whether a surface format is available as a specified resource type and can be used as a texture, depth-stencil buffer, or render target, or any combination of the three, on a device representing this adapter.
  6857. </summary>
  6858. <param name="adapter">The adapter.</param>
  6859. <param name="deviceType">Type of the device.</param>
  6860. <param name="adapterFormat">The adapter format.</param>
  6861. <param name="usage">The usage.</param>
  6862. <param name="resourceType">Type of the resource.</param>
  6863. <param name="checkFormat">The check format.</param>
  6864. <returns>
  6865. If the format is compatible with the specified device for the requested usage, this method returns <c>true</c>
  6866. </returns>
  6867. <unmanaged>HRESULT IDirect3D9::CheckDeviceFormat([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT AdapterFormat,[In] unsigned int Usage,[In] D3DRESOURCETYPE RType,[In] D3DFORMAT CheckFormat)</unmanaged>
  6868. </member>
  6869. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormat(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.ResourceType,SharpDX.Direct3D9.Format,SharpDX.Result@)">
  6870. <summary>
  6871. Determines whether a surface format is available as a specified resource type and can be used as a texture, depth-stencil buffer, or render target, or any combination of the three, on a device representing this adapter.
  6872. </summary>
  6873. <param name="adapter">The adapter.</param>
  6874. <param name="deviceType">Type of the device.</param>
  6875. <param name="adapterFormat">The adapter format.</param>
  6876. <param name="usage">The usage.</param>
  6877. <param name="resourceType">Type of the resource.</param>
  6878. <param name="checkFormat">The check format.</param>
  6879. <param name="result">The result.</param>
  6880. <returns>If the format is compatible with the specified device for the requested usage, this method returns <c>true</c></returns>
  6881. <unmanaged>HRESULT IDirect3D9::CheckDeviceFormat([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT AdapterFormat,[In] unsigned int Usage,[In] D3DRESOURCETYPE RType,[In] D3DFORMAT CheckFormat)</unmanaged>
  6882. </member>
  6883. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormatConversion(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format)">
  6884. <summary>
  6885. Tests the device to see if it supports conversion from one display format to another.
  6886. </summary>
  6887. <param name="adapter">The adapter.</param>
  6888. <param name="deviceType">Type of the device.</param>
  6889. <param name="sourceFormat">The source format.</param>
  6890. <param name="targetFormat">The target format.</param>
  6891. <returns>
  6892. True if the method succeeds.
  6893. </returns>
  6894. <unmanaged>HRESULT IDirect3D9::CheckDeviceFormatConversion([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT SourceFormat,[In] D3DFORMAT TargetFormat)</unmanaged>
  6895. </member>
  6896. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormatConversion(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format,SharpDX.Result@)">
  6897. <summary>
  6898. Tests the device to see if it supports conversion from one display format to another.
  6899. </summary>
  6900. <param name="adapter">The adapter.</param>
  6901. <param name="deviceType">Type of the device.</param>
  6902. <param name="sourceFormat">The source format.</param>
  6903. <param name="targetFormat">The target format.</param>
  6904. <param name="result">The result.</param>
  6905. <returns>True if the method succeeds.</returns>
  6906. <unmanaged>HRESULT IDirect3D9::CheckDeviceFormatConversion([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT SourceFormat,[In] D3DFORMAT TargetFormat)</unmanaged>
  6907. </member>
  6908. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceMultisampleType(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,System.Boolean,SharpDX.Direct3D9.MultisampleType)">
  6909. <summary>
  6910. Determines if a multisampling technique is available on this device.
  6911. </summary>
  6912. <param name="adapter">The adapter.</param>
  6913. <param name="deviceType">Type of the device.</param>
  6914. <param name="surfaceFormat">The surface format.</param>
  6915. <param name="windowed">if set to <c>true</c> [windowed].</param>
  6916. <param name="multisampleType">Type of the multisample.</param>
  6917. <returns>
  6918. f the device can perform the specified multisampling method, this method returns <c>true</c>
  6919. </returns>
  6920. <unmanaged>HRESULT IDirect3D9::CheckDeviceMultiSampleType([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT SurfaceFormat,[In] BOOL Windowed,[In] D3DMULTISAMPLE_TYPE MultiSampleType,[Out] unsigned int* pQualityLevels)</unmanaged>
  6921. </member>
  6922. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceMultisampleType(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,System.Boolean,SharpDX.Direct3D9.MultisampleType,System.Int32@)">
  6923. <summary>
  6924. Determines if a multisampling technique is available on this device.
  6925. </summary>
  6926. <param name="adapter">The adapter.</param>
  6927. <param name="deviceType">Type of the device.</param>
  6928. <param name="surfaceFormat">The surface format.</param>
  6929. <param name="windowed">if set to <c>true</c> [windowed].</param>
  6930. <param name="multisampleType">Type of the multisample.</param>
  6931. <param name="qualityLevels">The quality levels.</param>
  6932. <returns>
  6933. f the device can perform the specified multisampling method, this method returns <c>true</c>
  6934. </returns>
  6935. <unmanaged>HRESULT IDirect3D9::CheckDeviceMultiSampleType([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT SurfaceFormat,[In] BOOL Windowed,[In] D3DMULTISAMPLE_TYPE MultiSampleType,[Out] unsigned int* pQualityLevels)</unmanaged>
  6936. </member>
  6937. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceMultisampleType(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,System.Boolean,SharpDX.Direct3D9.MultisampleType,System.Int32@,SharpDX.Result@)">
  6938. <summary>
  6939. Determines if a multisampling technique is available on this device.
  6940. </summary>
  6941. <param name="adapter">The adapter.</param>
  6942. <param name="deviceType">Type of the device.</param>
  6943. <param name="surfaceFormat">The surface format.</param>
  6944. <param name="windowed">if set to <c>true</c> [windowed].</param>
  6945. <param name="multisampleType">Type of the multisample.</param>
  6946. <param name="qualityLevels">The quality levels.</param>
  6947. <param name="result">The result.</param>
  6948. <returns>f the device can perform the specified multisampling method, this method returns <c>true</c></returns>
  6949. <unmanaged>HRESULT IDirect3D9::CheckDeviceMultiSampleType([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT SurfaceFormat,[In] BOOL Windowed,[In] D3DMULTISAMPLE_TYPE MultiSampleType,[Out] unsigned int* pQualityLevels)</unmanaged>
  6950. </member>
  6951. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceType(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format,System.Boolean)">
  6952. <summary>
  6953. Verifies whether a hardware accelerated device type can be used on this adapter.
  6954. </summary>
  6955. <param name="adapter">The adapter.</param>
  6956. <param name="deviceType">Type of the device.</param>
  6957. <param name="adapterFormat">The adapter format.</param>
  6958. <param name="backBufferFormat">The back buffer format.</param>
  6959. <param name="windowed">if set to <c>true</c> [windowed].</param>
  6960. <returns>
  6961. <c>true</c> if the device can be used on this adapter
  6962. </returns>
  6963. <unmanaged>HRESULT IDirect3D9::CheckDeviceType([In] unsigned int Adapter,[In] D3DDEVTYPE DevType,[In] D3DFORMAT AdapterFormat,[In] D3DFORMAT BackBufferFormat,[In] BOOL bWindowed)</unmanaged>
  6964. </member>
  6965. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceType(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format,System.Boolean,SharpDX.Result@)">
  6966. <summary>
  6967. Verifies whether a hardware accelerated device type can be used on this adapter.
  6968. </summary>
  6969. <param name="adapter">The adapter.</param>
  6970. <param name="deviceType">Type of the device.</param>
  6971. <param name="adapterFormat">The adapter format.</param>
  6972. <param name="backBufferFormat">The back buffer format.</param>
  6973. <param name="windowed">if set to <c>true</c> [windowed].</param>
  6974. <param name="result">The result.</param>
  6975. <returns><c>true</c> if the device can be used on this adapter</returns>
  6976. <unmanaged>HRESULT IDirect3D9::CheckDeviceType([In] unsigned int Adapter,[In] D3DDEVTYPE DevType,[In] D3DFORMAT AdapterFormat,[In] D3DFORMAT BackBufferFormat,[In] BOOL bWindowed)</unmanaged>
  6977. </member>
  6978. <member name="M:SharpDX.Direct3D9.Direct3D.GetAdapterIdentifier(System.Int32)">
  6979. <summary>
  6980. Get the physical display adapters present in the system when this <see cref="T:SharpDX.Direct3D9.Direct3D"/> was instantiated.
  6981. </summary>
  6982. <param name="adapter">The adapter.</param>
  6983. <returns>The physical display adapters</returns>
  6984. <unmanaged>HRESULT IDirect3D9::GetAdapterIdentifier([In] unsigned int Adapter,[In] unsigned int Flags,[Out] D3DADAPTER_IDENTIFIER9* pIdentifier)</unmanaged>
  6985. </member>
  6986. <member name="M:SharpDX.Direct3D9.Direct3D.#ctor(System.IntPtr)">
  6987. <summary>
  6988. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Direct3D"/> class.
  6989. </summary>
  6990. <param name="nativePtr">The native pointer.</param>
  6991. </member>
  6992. <member name="M:SharpDX.Direct3D9.Direct3D.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Direct3D">
  6993. <summary>
  6994. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Direct3D"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  6995. </summary>
  6996. <param name="nativePointer">The native pointer.</param>
  6997. <returns>
  6998. The result of the conversion.
  6999. </returns>
  7000. </member>
  7001. <member name="P:SharpDX.Direct3D9.Direct3D.AdapterCount">
  7002. <summary>
  7003. <p>Returns the number of adapters on the system.</p>
  7004. </summary>
  7005. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::GetAdapterCount']/*" />
  7006. <msdn-id>bb174315</msdn-id>
  7007. <unmanaged>GetAdapterCount</unmanaged>
  7008. <unmanaged-short>GetAdapterCount</unmanaged-short>
  7009. <unmanaged>unsigned int IDirect3D9::GetAdapterCount()</unmanaged>
  7010. </member>
  7011. <member name="M:SharpDX.Direct3D9.Direct3D.RegisterSoftwareDevice(System.IntPtr)">
  7012. <summary>
  7013. <p>Registers a pluggable software device. Software devices provide software rasterization enabling applications to access a variety of software rasterizers.</p>
  7014. </summary>
  7015. <param name="initializeFunctionRef"><dd> <p>Pointer to the initialization function for the software device to be registered. </p> </dd></param>
  7016. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. The method call is invalid. For example, a method's parameter may have an invalid value: <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />. </p></returns>
  7017. <remarks>
  7018. <p>If the user's computer provides no special hardware acceleration for 3D operations, your application might emulate 3D hardware in software. Software rasterization devices emulate the functions of color 3D hardware in software. A software device runs more slowly than a hal. However, software devices take advantage of any special instructions supported by the CPU to increase performance. Instruction sets include the AMD 3DNow! instruction set on some AMD processors and the MMX instruction set supported by many Intel processors. Direct3D uses the 3D-Now! instruction set to accelerate transformation and lighting operations and the MMX instruction set to accelerate rasterization.</p><p>Software devices communicate with Direct3D through an interface similar to the hardware device driver interface (DDI).</p><p>Software devices are loaded by the application and registered with the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> object. Direct3D uses the software device for rendering. </p><p>The Direct3D Driver Development Kit (DDK) provides the documentation and headers for developing pluggable software devices.</p>
  7019. </remarks>
  7020. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::RegisterSoftwareDevice']/*" />
  7021. <msdn-id>bb174321</msdn-id>
  7022. <unmanaged>HRESULT IDirect3D9::RegisterSoftwareDevice([In] void* pInitializeFunction)</unmanaged>
  7023. <unmanaged-short>IDirect3D9::RegisterSoftwareDevice</unmanaged-short>
  7024. </member>
  7025. <member name="M:SharpDX.Direct3D9.Direct3D.GetAdapterCount">
  7026. <summary>
  7027. <p>Returns the number of adapters on the system.</p>
  7028. </summary>
  7029. <returns><p>A UINT value that denotes the number of adapters on the system at the time this <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface was instantiated.</p></returns>
  7030. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::GetAdapterCount']/*" />
  7031. <msdn-id>bb174315</msdn-id>
  7032. <unmanaged>unsigned int IDirect3D9::GetAdapterCount()</unmanaged>
  7033. <unmanaged-short>IDirect3D9::GetAdapterCount</unmanaged-short>
  7034. </member>
  7035. <member name="M:SharpDX.Direct3D9.Direct3D.GetAdapterIdentifier(System.Int32,System.Int32)">
  7036. <summary>
  7037. <p>Describes the physical display adapters present in the system when the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface was instantiated.</p>
  7038. </summary>
  7039. <param name="adapter">No documentation.</param>
  7040. <param name="flags">No documentation.</param>
  7041. <returns>No documentation.</returns>
  7042. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::GetAdapterIdentifier']/*" />
  7043. <msdn-id>bb174317</msdn-id>
  7044. <unmanaged>HRESULT IDirect3D9::GetAdapterIdentifier([In] unsigned int Adapter,[In] unsigned int Flags,[Out] D3DADAPTER_IDENTIFIER9* pIdentifier)</unmanaged>
  7045. <unmanaged-short>IDirect3D9::GetAdapterIdentifier</unmanaged-short>
  7046. </member>
  7047. <member name="M:SharpDX.Direct3D9.Direct3D.GetAdapterModeCount(System.Int32,SharpDX.Direct3D9.Format)">
  7048. <summary>
  7049. <p>Returns the number of display modes available on this adapter.</p>
  7050. </summary>
  7051. <param name="adapter"><dd> <p>Ordinal number that denotes the display adapter. D3DADAPTER_DEFAULT is always the primary display adapter. </p> </dd></param>
  7052. <param name="format"><dd> <p>Identifies the format of the surface type using <see cref="T:SharpDX.Direct3D9.Format" />. Use <strong>EnumAdapterModes</strong> to see the valid formats.</p> </dd></param>
  7053. <returns><p>This method returns the number of display modes on this adapter or zero if Adapter is greater than or equal to the number of adapters on the system.</p></returns>
  7054. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::GetAdapterModeCount']/*" />
  7055. <msdn-id>bb174318</msdn-id>
  7056. <unmanaged>unsigned int IDirect3D9::GetAdapterModeCount([In] unsigned int Adapter,[In] D3DFORMAT Format)</unmanaged>
  7057. <unmanaged-short>IDirect3D9::GetAdapterModeCount</unmanaged-short>
  7058. </member>
  7059. <member name="M:SharpDX.Direct3D9.Direct3D.EnumAdapterModes(System.Int32,SharpDX.Direct3D9.Format,System.Int32)">
  7060. <summary>
  7061. <p>Queries the device to determine whether the specified adapter supports the requested format and display mode. This method could be used in a loop to enumerate all the available adapter modes.</p>
  7062. </summary>
  7063. <param name="adapter"><dd> <p>Ordinal number denoting the display adapter to enumerate. D3DADAPTER_DEFAULT is always the primary display adapter. This method returns <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> when this value equals or exceeds the number of display adapters in the system. </p> </dd></param>
  7064. <param name="format"><dd> <p>Allowable pixel formats. See Remarks.</p> </dd></param>
  7065. <param name="mode"><dd> <p>Represents the display-mode index which is an unsigned integer between zero and the value returned by <strong>GetAdapterModeCount</strong> minus one.</p> </dd></param>
  7066. <returns><dd> <p>A reference to the available display mode of type <strong><see cref="T:SharpDX.Direct3D9.DisplayMode" /></strong>. See Remarks.</p> </dd></returns>
  7067. <remarks>
  7068. <p>An application supplies a display mode and a format to <strong>EnumAdapterModes</strong> which returns a display mode. This method could be used in a loop to enumerate all available display modes.</p><p>The application specifies a format and the enumeration is restricted to those display modes that exactly match the format (alpha is ignored). Allowed formats (which are members of <see cref="T:SharpDX.Direct3D9.Format" />) are as follows:</p><ul> <li><see cref="F:SharpDX.Direct3D9.Format.A1R5G5B5" /></li> <li><see cref="F:SharpDX.Direct3D9.Format.A2R10G10B10" /></li> <li><see cref="F:SharpDX.Direct3D9.Format.A8R8G8B8" /></li> <li><see cref="F:SharpDX.Direct3D9.Format.R5G6B5" /></li> <li><see cref="F:SharpDX.Direct3D9.Format.X1R5G5B5" /></li> <li><see cref="F:SharpDX.Direct3D9.Format.X8R8G8B8" /></li> </ul><p>In addition, <strong>EnumAdapterModes</strong> treats pixel formats 565 and 555 as equivalent, and returns the correct version. The difference comes into play only when the application locks the back buffer and there is an explicit flag that the application must set in order to accomplish this.</p>
  7069. </remarks>
  7070. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::EnumAdapterModes']/*" />
  7071. <msdn-id>bb174314</msdn-id>
  7072. <unmanaged>HRESULT IDirect3D9::EnumAdapterModes([In] unsigned int Adapter,[In] D3DFORMAT Format,[In] unsigned int Mode,[Out] D3DDISPLAYMODE* pMode)</unmanaged>
  7073. <unmanaged-short>IDirect3D9::EnumAdapterModes</unmanaged-short>
  7074. </member>
  7075. <member name="M:SharpDX.Direct3D9.Direct3D.GetAdapterDisplayMode(System.Int32)">
  7076. <summary>
  7077. <p>Retrieves the current display mode of the adapter.</p>
  7078. </summary>
  7079. <param name="adapter"><dd> <p>Ordinal number that denotes the display adapter to query. D3DADAPTER_DEFAULT is always the primary display adapter. </p> </dd></param>
  7080. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.DisplayMode" /></strong> structure, to be filled with information describing the current adapter's mode. </p> </dd></returns>
  7081. <remarks>
  7082. <p><strong>GetAdapterDisplayMode</strong> will not return the correct format when the display is in an extended format, such as 2:10:10:10. Instead, it returns the format X8R8G8B8. </p>
  7083. </remarks>
  7084. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::GetAdapterDisplayMode']/*" />
  7085. <msdn-id>bb174316</msdn-id>
  7086. <unmanaged>HRESULT IDirect3D9::GetAdapterDisplayMode([In] unsigned int Adapter,[Out] D3DDISPLAYMODE* pMode)</unmanaged>
  7087. <unmanaged-short>IDirect3D9::GetAdapterDisplayMode</unmanaged-short>
  7088. </member>
  7089. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceType_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool)">
  7090. <summary>
  7091. <p>Verifies whether a hardware accelerated device type can be used on this adapter.</p>
  7092. </summary>
  7093. <param name="adapter"><dd> <p>Ordinal number denoting the display adapter to enumerate. D3DADAPTER_DEFAULT is always the primary display adapter. This method returns <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> when this value equals or exceeds the number of display adapters in the system. </p> </dd></param>
  7094. <param name="devType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type, indicating the device type to check. </p> </dd></param>
  7095. <param name="adapterFormat"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, indicating the format of the adapter display mode for which the device type is to be checked. For example, some devices will operate only in 16-bits-per-pixel modes. </p> </dd></param>
  7096. <param name="backBufferFormat"><dd> <p>Back buffer format. For more information about formats, see <see cref="T:SharpDX.Direct3D9.Format" />. This value must be one of the render-target formats. You can use <strong>GetAdapterDisplayMode</strong> to obtain the current format. For windowed applications, the back buffer format does not need to match the display mode format if the hardware supports color conversion. The set of possible back buffer formats is constrained, but the runtime will allow any valid back buffer format to be presented to any desktop format. There is the additional requirement that the device be operable in the desktop because devices typically do not operate in 8 bits per pixel modes. Full-screen applications cannot do color conversion. <see cref="F:SharpDX.Direct3D9.Format.Unknown" /> is allowed for windowed mode. </p> </dd></param>
  7097. <param name="bWindowed"><dd> <p>Value indicating whether the device type will be used in full-screen or windowed mode. If set to <strong>TRUE</strong>, the query is performed for windowed applications; otherwise, this value should be set <strong><see cref="F:SharpDX.Result.False" /></strong>. </p> </dd></param>
  7098. <returns><p>If the device can be used on this adapter, <see cref="F:SharpDX.Direct3D9.ResultCode.Success" /> is returned. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if Adapter equals or exceeds the number of display adapters in the system. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is also returned if <strong>CheckDeviceType</strong> specified a device that does not exist. <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" /> is returned if the requested back buffer format is not supported, or if hardware acceleration is not available for the specified formats. </p></returns>
  7099. <remarks>
  7100. <p>A hal device type requires hardware acceleration. Applications can use CheckDeviceType to determine if the needed hardware and drivers are present to support a hal device. </p><p>Full-screen applications should not specify a DisplayFormat that contains an alpha channel. This will result in a failed call. Note that an alpha channel can be present in the back buffer but the two display formats must be identical in all other respects. For example, if DisplayFormat = <see cref="F:SharpDX.Direct3D9.Format.X1R5G5B5" />, valid values for BackBufferFormat include <see cref="F:SharpDX.Direct3D9.Format.X1R5G5B5" /> and <see cref="F:SharpDX.Direct3D9.Format.A1R5G5B5" /> but exclude <see cref="F:SharpDX.Direct3D9.Format.R5G6B5" />.</p><p>The following code fragment shows how you could use CheckDeviceType to test whether a certain device type can be used on this adapter.</p><pre> if(SUCCEEDED(pD3Device-&gt;CheckDeviceType(D3DADAPTER_DEFAULT, <see cref="F:SharpDX.Direct3D9.DeviceType.Hardware" />, DisplayFormat, BackBufferFormat, bIsWindowed))) return <see cref="F:SharpDX.Result.Ok" />;
  7101. // There is no HAL on this adapter using this render-target format.
  7102. // Try again, using another format.
  7103. </pre><p>This code returns <see cref="F:SharpDX.Result.Ok" /> if the device can be used on the default adapter with the specified surface format.</p><p>Using <strong>CheckDeviceType</strong> to test for compatibility between a back buffer that differs from the display format will return appropriate values. This means that the call will reflect device capabilities. If the device cannot render to the requested back-buffer format, the call will still return <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />. If the device can render to the format, but cannot perform the color-converting presentation, the return value will also be <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />. Applications can discover hardware support for the presentation itself by calling <strong>CheckDeviceFormatConversion</strong>. No software emulation for the color-converting presentation itself will be offered.</p>
  7104. </remarks>
  7105. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::CheckDeviceType']/*" />
  7106. <msdn-id>bb174312</msdn-id>
  7107. <unmanaged>HRESULT IDirect3D9::CheckDeviceType([In] unsigned int Adapter,[In] D3DDEVTYPE DevType,[In] D3DFORMAT AdapterFormat,[In] D3DFORMAT BackBufferFormat,[In] BOOL bWindowed)</unmanaged>
  7108. <unmanaged-short>IDirect3D9::CheckDeviceType</unmanaged-short>
  7109. </member>
  7110. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormat_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Direct3D9.ResourceType,SharpDX.Direct3D9.Format)">
  7111. <summary>
  7112. <p>Determines whether a surface format is available as a specified resource type and can be used as a texture, depth-stencil buffer, or render target, or any combination of the three, on a device representing this adapter.</p>
  7113. </summary>
  7114. <param name="adapter"><dd> <p>Ordinal number denoting the display adapter to query. D3DADAPTER_DEFAULT is always the primary display adapter. This method returns <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> when this value equals or exceeds the number of display adapters in the system. </p> </dd></param>
  7115. <param name="deviceType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type, identifying the device type.</p> </dd></param>
  7116. <param name="adapterFormat"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, identifying the format of the display mode into which the adapter will be placed.</p> </dd></param>
  7117. <param name="usage"><dd> <p>Requested usage options for the surface. Usage options are any combination of <see cref="T:SharpDX.Direct3D9.Usage" /> and D3DUSAGE_QUERY constants (only a subset of the <see cref="T:SharpDX.Direct3D9.Usage" /> constants are valid for <strong>CheckDeviceFormat</strong>; see the table on the <see cref="T:SharpDX.Direct3D9.Usage" /> page).</p> </dd></param>
  7118. <param name="rType"><dd> <p>Resource type requested for use with the queried format. Member of <strong><see cref="T:SharpDX.Direct3D9.ResourceType" /></strong>. </p> </dd></param>
  7119. <param name="checkFormat"><dd> <p>Format of the surfaces which may be used, as defined by Usage. Member of <see cref="T:SharpDX.Direct3D9.Format" />.</p> </dd></param>
  7120. <returns><p>If the format is compatible with the specified device for the requested usage, this method returns <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />.</p><p><see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if Adapter equals or exceeds the number of display adapters in the system, or if DeviceType is unsupported.</p><p><see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" /> is returned if the format is not acceptable to the device for this usage.</p></returns>
  7121. <remarks>
  7122. <p>Here are some examples using <strong>CheckDeviceFormat</strong> to check for hardware support of:</p><ul> <li>An off-screen plain surface format - Specify Usage = 0 and RType = <see cref="F:SharpDX.Direct3D9.ResourceType.Surface" />.</li> <li>A depth-stencil format - The following snippet tests for the passed in depth-stencil format: <pre> <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> IsDepthFormatExisting( <see cref="T:SharpDX.Direct3D9.Format" /> DepthFormat, <see cref="T:SharpDX.Direct3D9.Format" /> AdapterFormat )
  7123. { <see cref="T:SharpDX.Result" /> hr = pD3D-&gt;CheckDeviceFormat( D3DADAPTER_DEFAULT, <see cref="F:SharpDX.Direct3D9.DeviceType.Hardware" />, AdapterFormat, <see cref="F:SharpDX.Direct3D9.Usage.DepthStencil" />, <see cref="F:SharpDX.Direct3D9.ResourceType.Surface" />, DepthFormat); return SUCCEEDED( hr );
  7124. }</pre> <p>See Selecting a Device (Direct3D 9) for more detail on the enumeration process.</p> </li> <li>Can this texture be rendered in a particular format - Given the current display mode, this example shows how to verify that the texture format is compatible with the specific back-buffer format: <pre> <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> IsTextureFormatOk( <see cref="T:SharpDX.Direct3D9.Format" /> TextureFormat, <see cref="T:SharpDX.Direct3D9.Format" /> AdapterFormat )
  7125. { <see cref="T:SharpDX.Result" /> hr = pD3D-&gt;CheckDeviceFormat( D3DADAPTER_DEFAULT, <see cref="F:SharpDX.Direct3D9.DeviceType.Hardware" />, AdapterFormat, 0, <see cref="F:SharpDX.Direct3D9.ResourceType.Texture" />, TextureFormat); return SUCCEEDED( hr );
  7126. }</pre> </li> <li>Alpha blending in a pixel shader - Set Usage to <see cref="F:SharpDX.Direct3D9.Usage.QueryPostPixelShaderBlending" />. Expect this to fail for all floating-point render targets.</li> <li>Autogeneration of mipmaps - Set Usage to <see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" />. If the mipmap automatic generation fails, the application will get a non-mipmapped texture. Calling this method is considered a hint, so this method can return <see cref="F:SharpDX.Direct3D9.ResultCode.NoAutomaticGeneration" /> (a valid success code) if the only thing that fails is the mipmap generation. For more information about mipmap generation, see Automatic Generation of Mipmaps (Direct3D 9).</li> </ul><p>When migrating code from Direct3D 9 to Direct3D 10, the Direct3D 10 equivalent to CheckDeviceFormat is <strong>CheckFormatSupport</strong>.</p>
  7127. </remarks>
  7128. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::CheckDeviceFormat']/*" />
  7129. <msdn-id>bb174309</msdn-id>
  7130. <unmanaged>HRESULT IDirect3D9::CheckDeviceFormat([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT AdapterFormat,[In] unsigned int Usage,[In] D3DRESOURCETYPE RType,[In] D3DFORMAT CheckFormat)</unmanaged>
  7131. <unmanaged-short>IDirect3D9::CheckDeviceFormat</unmanaged-short>
  7132. </member>
  7133. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceMultiSampleType_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.MultisampleType,System.Int32@)">
  7134. <summary>
  7135. <p>Determines if a multisampling technique is available on this device.</p>
  7136. </summary>
  7137. <param name="adapter"><dd> <p>Ordinal number denoting the display adapter to query. D3DADAPTER_DEFAULT is always the primary display adapter. This method returns <strong><see cref="F:SharpDX.Result.False" /></strong> when this value equals or exceeds the number of display adapters in the system. See Remarks.</p> </dd></param>
  7138. <param name="deviceType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type, identifying the device type.</p> </dd></param>
  7139. <param name="surfaceFormat"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type that specifies the format of the surface to be multisampled. For more information, see Remarks.</p> </dd></param>
  7140. <param name="windowed"><dd> <p>bool value. Specify <strong>TRUE</strong> to inquire about windowed multisampling, and specify <strong><see cref="F:SharpDX.Result.False" /></strong> to inquire about full-screen multisampling.</p> </dd></param>
  7141. <param name="multiSampleType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.MultisampleType" /></strong> enumerated type, identifying the multisampling technique to test.</p> </dd></param>
  7142. <param name="qualityLevelsRef"><dd> <p><strong>pQualityLevels</strong> returns the number of device-specific sampling variations available with the given sample type. For example, if the returned value is 3, then quality levels 0, 1 and 2 can be used when creating resources with the given sample count. The meanings of these quality levels are defined by the device manufacturer and cannot be queried through D3D. For example, for a particular device different quality levels at a fixed sample count might refer to different spatial layouts of the sample locations or different methods of resolving. This can be <strong><c>null</c></strong> if it is not necessary to return the quality levels.</p> </dd></param>
  7143. <returns><p>If the device can perform the specified multisampling method, this method returns <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if the Adapter or MultiSampleType parameters are invalid. This method returns <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" /> if the queried multisampling technique is not supported by this device. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidDevice" /> is returned if DeviceType does not apply to this adapter. </p></returns>
  7144. <remarks>
  7145. <p>This method is intended for use with both render-target and depth-stencil surfaces because you must create both surfaces multisampled if you want to use them together.</p><p>The following code fragment shows how you could use <strong>CheckDeviceMultiSampleType</strong> to test for devices that support a specific multisampling method.</p><pre> if( SUCCEEDED(pD3D-&gt;CheckDeviceMultiSampleType( pCaps-&gt;AdapterOrdinal, pCaps-&gt;DeviceType, BackBufferFormat, <see cref="F:SharpDX.Result.False" />, <see cref="F:SharpDX.Direct3D9.MultisampleType.ThreeSamples" />, <c>null</c> ) ) &amp;&amp; SUCCEEDED(pD3D-&gt;CheckDeviceMultiSampleType( pCaps-&gt;AdapterOrdinal, pCaps-&gt;DeviceType, DepthBufferFormat, <see cref="F:SharpDX.Result.False" />, <see cref="F:SharpDX.Direct3D9.MultisampleType.ThreeSamples" />, <c>null</c> ) ) ) return <see cref="F:SharpDX.Result.Ok" />;
  7146. </pre><p>The preceding code will return <see cref="F:SharpDX.Result.Ok" /> if the device supports the full-screen <see cref="F:SharpDX.Direct3D9.MultisampleType.ThreeSamples" /> multisampling method with the surface format.</p><p>See the remarks in <strong><see cref="T:SharpDX.Direct3D9.MultisampleType" /></strong> for additional information on working with and setting multisample types and quality levels.</p>
  7147. </remarks>
  7148. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::CheckDeviceMultiSampleType']/*" />
  7149. <msdn-id>bb174311</msdn-id>
  7150. <unmanaged>HRESULT IDirect3D9::CheckDeviceMultiSampleType([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT SurfaceFormat,[In] BOOL Windowed,[In] D3DMULTISAMPLE_TYPE MultiSampleType,[Out] unsigned int* pQualityLevels)</unmanaged>
  7151. <unmanaged-short>IDirect3D9::CheckDeviceMultiSampleType</unmanaged-short>
  7152. </member>
  7153. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDepthStencilMatch_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format)">
  7154. <summary>
  7155. <p>Determines whether a depth-stencil format is compatible with a render-target format in a particular display mode.</p>
  7156. </summary>
  7157. <param name="adapter"><dd> <p>Ordinal number denoting the display adapter to query. D3DADAPTER_DEFAULT is always the primary display adapter.</p> </dd></param>
  7158. <param name="deviceType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type, identifying the device type.</p> </dd></param>
  7159. <param name="adapterFormat"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, identifying the format of the display mode into which the adapter will be placed. </p> </dd></param>
  7160. <param name="renderTargetFormat"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, identifying the format of the render-target surface to be tested. </p> </dd></param>
  7161. <param name="depthStencilFormat"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, identifying the format of the depth-stencil surface to be tested. </p> </dd></param>
  7162. <returns><p>If the depth-stencil format is compatible with the render-target format in the display mode, this method returns <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> can be returned if one or more of the parameters is invalid. If a depth-stencil format is not compatible with the render target in the display mode, then this method returns <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />.</p></returns>
  7163. <remarks>
  7164. <p>This method is provided to enable applications to work with hardware requiring that certain depth formats can only work with certain render-target formats.</p><p>The behavior of this method has been changed for DirectX 8.1. This method now pays attention to the D24x8 and D32 depth-stencil formats. The previous version assumed that these formats would always be usable with 32- or 16-bit render targets. This method will now return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" /> for these formats only if the device is capable of mixed-depth operations.</p><p>The following code fragment shows how you could use <strong>CheckDeviceFormat</strong> to validate a depth stencil format.</p><pre> <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> IsDepthFormatOk(<see cref="T:SharpDX.Direct3D9.Format" /> DepthFormat, <see cref="T:SharpDX.Direct3D9.Format" /> AdapterFormat, <see cref="T:SharpDX.Direct3D9.Format" /> BackBufferFormat)
  7165. { // Verify that the depth format exists <see cref="T:SharpDX.Result" /> hr = pD3D-&gt;CheckDeviceFormat(D3DADAPTER_DEFAULT, <see cref="F:SharpDX.Direct3D9.DeviceType.Hardware" />, AdapterFormat, <see cref="F:SharpDX.Direct3D9.Usage.DepthStencil" />, <see cref="F:SharpDX.Direct3D9.ResourceType.Surface" />, DepthFormat); if(FAILED(hr)) return <see cref="F:SharpDX.Result.False" />; // Verify that the depth format is compatible hr = pD3D-&gt;CheckDepthStencilMatch(D3DADAPTER_DEFAULT, <see cref="F:SharpDX.Direct3D9.DeviceType.Hardware" />, AdapterFormat, BackBufferFormat, DepthFormat); return SUCCEEDED(hr); }
  7166. </pre><p>The preceding call will return <strong><see cref="F:SharpDX.Result.False" /></strong> if DepthFormat cannot be used in conjunction with AdapterFormat and BackBufferFormat.</p>
  7167. </remarks>
  7168. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::CheckDepthStencilMatch']/*" />
  7169. <msdn-id>bb174308</msdn-id>
  7170. <unmanaged>HRESULT IDirect3D9::CheckDepthStencilMatch([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT AdapterFormat,[In] D3DFORMAT RenderTargetFormat,[In] D3DFORMAT DepthStencilFormat)</unmanaged>
  7171. <unmanaged-short>IDirect3D9::CheckDepthStencilMatch</unmanaged-short>
  7172. </member>
  7173. <member name="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormatConversion_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Format)">
  7174. <summary>
  7175. <p>Tests the device to see if it supports conversion from one display format to another.</p>
  7176. </summary>
  7177. <param name="adapter"><dd> <p>Display adapter ordinal number. D3DADAPTER_DEFAULT is always the primary display adapter. This method returns <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> when this value equals or exceeds the number of display adapters in the system. </p> </dd></param>
  7178. <param name="deviceType"><dd> <p>Device type. Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type. </p> </dd></param>
  7179. <param name="sourceFormat"><dd> <p>Source adapter format. Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type.</p> </dd></param>
  7180. <param name="targetFormat"><dd> <p>Target adapter format. Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type.</p> </dd></param>
  7181. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. The method will return <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" /> when the hardware does not support conversion between the two formats. </p></returns>
  7182. <remarks>
  7183. <p>Using <strong>CheckDeviceType</strong> to test for compatibility between a back buffer that differs from the display format will return appropriate values. This means that the call will reflect device capabilities. If the device cannot render to the requested back buffer format, the call will still return <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />. If the device can render to the format, but cannot perform the color-converting presentation, the return value will also be <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />. Applications can discover hardware support for the presentation itself by calling <strong>CheckDeviceFormatConversion</strong>. No software emulation for the color-converting presentation itself will be offered.</p><p><strong>CheckDeviceFormatConversion</strong> can also be used to determine which combinations of source surface formats and destination surface formats are permissible in calls to <strong>StretchRect</strong>. </p><p>Color conversion is restricted to the following source and target formats.</p><ul> <li>The source format must be a FOURCC format or a valid back buffer format. For a list of these, see FourCC Formats and BackBuffer or Display Formats.</li> <li>The target format must be one of these unsigned formats: <table> <tr><td><see cref="F:SharpDX.Direct3D9.Format.X1R5G5B5" /></td><td><see cref="F:SharpDX.Direct3D9.Format.A1R5G5B5" /></td><td><see cref="F:SharpDX.Direct3D9.Format.R5G6B5" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.Format.R8G8B8" /></td><td><see cref="F:SharpDX.Direct3D9.Format.X8R8G8B8" /></td><td><see cref="F:SharpDX.Direct3D9.Format.A8R8G8B8" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.Format.A2R10G10B10" /></td><td><see cref="F:SharpDX.Direct3D9.Format.A16B16G16R16" /></td><td><see cref="F:SharpDX.Direct3D9.Format.A2B10G10R10" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.Format.A8B8G8R8" /></td><td><see cref="F:SharpDX.Direct3D9.Format.X8B8G8R8" /></td><td><see cref="F:SharpDX.Direct3D9.Format.A16B16G16R16F" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.Format.A32B32G32R32F" /></td><td /><td /></tr> </table> <p>?</p> </li> </ul>
  7184. </remarks>
  7185. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::CheckDeviceFormatConversion']/*" />
  7186. <msdn-id>bb174310</msdn-id>
  7187. <unmanaged>HRESULT IDirect3D9::CheckDeviceFormatConversion([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] D3DFORMAT SourceFormat,[In] D3DFORMAT TargetFormat)</unmanaged>
  7188. <unmanaged-short>IDirect3D9::CheckDeviceFormatConversion</unmanaged-short>
  7189. </member>
  7190. <member name="M:SharpDX.Direct3D9.Direct3D.GetDeviceCaps(System.Int32,SharpDX.Direct3D9.DeviceType)">
  7191. <summary>
  7192. <p>Retrieves device-specific information about a device. </p>
  7193. </summary>
  7194. <param name="adapter"><dd> <p>Ordinal number that denotes the display adapter. D3DADAPTER_DEFAULT is always the primary display adapter. </p> </dd></param>
  7195. <param name="deviceType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type. Denotes the device type. </p> </dd></param>
  7196. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure to be filled with information describing the capabilities of the device. </p> </dd></returns>
  7197. <remarks>
  7198. <p>The application should not assume the persistence of vertex processing capabilities across Direct3D device objects. The particular capabilities that a physical device exposes may depend on parameters supplied to <strong>CreateDevice</strong>. For example, the capabilities may yield different vertex processing capabilities before and after creating a Direct3D Device Object with hardware vertex processing enabled. For more information see the description of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p>
  7199. </remarks>
  7200. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::GetDeviceCaps']/*" />
  7201. <msdn-id>bb174320</msdn-id>
  7202. <unmanaged>HRESULT IDirect3D9::GetDeviceCaps([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[Out] D3DCAPS9* pCaps)</unmanaged>
  7203. <unmanaged-short>IDirect3D9::GetDeviceCaps</unmanaged-short>
  7204. </member>
  7205. <member name="M:SharpDX.Direct3D9.Direct3D.GetAdapterMonitor(System.Int32)">
  7206. <summary>
  7207. <p>Returns the handle of the monitor associated with the Direct3D object.</p>
  7208. </summary>
  7209. <param name="adapter"><dd> <p>Ordinal number that denotes the display adapter. D3DADAPTER_DEFAULT is always the primary display adapter. </p> </dd></param>
  7210. <returns><p>Handle of the monitor associated with the Direct3D object.</p></returns>
  7211. <remarks>
  7212. <p>As shown in the following code fragment, which illustrates how to obtain a handle to the monitor associated with a given device, use <strong>GetDirect3D</strong> to return the Direct3D enumerator from the device and use <strong>GetCreationParameters</strong> to retrieve the value for Adapter.</p><pre> if( FAILED( pDevice-&gt;GetCreationParameters( &amp;Parameters ) ) ) return <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />; if( FAILED( pDevice-&gt;GetDirect3D(&amp;pD3D) ) ) return <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />; hMonitor = pD3D-&gt;GetAdapterMonitor(Parameters.AdapterOrdinal); pD3D-&gt;Release();
  7213. </pre>
  7214. </remarks>
  7215. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::GetAdapterMonitor']/*" />
  7216. <msdn-id>bb174319</msdn-id>
  7217. <unmanaged>HMONITOR IDirect3D9::GetAdapterMonitor([In] unsigned int Adapter)</unmanaged>
  7218. <unmanaged-short>IDirect3D9::GetAdapterMonitor</unmanaged-short>
  7219. </member>
  7220. <member name="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)">
  7221. <summary>
  7222. <p>Creates a device to represent the display adapter.</p>
  7223. </summary>
  7224. <param name="adapter"><dd> <p>Ordinal number that denotes the display adapter. D3DADAPTER_DEFAULT is always the primary display adapter. </p> </dd></param>
  7225. <param name="deviceType"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type that denotes the desired device type. If the desired device type is not available, the method will fail. </p> </dd></param>
  7226. <param name="hFocusWindow"><dd> <p>The focus window alerts Direct3D when an application switches from foreground mode to background mode. See Remarks. </p> <ul> <li>For full-screen mode, the window specified must be a top-level window.</li> <li>For windowed mode, this parameter may be <strong><c>null</c></strong> only if the hDeviceWindow member of <em>pPresentationParameters</em> is set to a valid, non-<strong><c>null</c></strong> value.</li> </ul> </dd></param>
  7227. <param name="behaviorFlags"><dd> <p>Combination of one or more options that control device creation. For more information, see <see cref="T:SharpDX.Direct3D9.CreateFlags" />.</p> </dd></param>
  7228. <param name="presentationParametersRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structure, describing the presentation parameters for the device to be created. If BehaviorFlags specifies <see cref="F:SharpDX.Direct3D9.CreateFlags.AdapterGroupDevice" />, pPresentationParameters is an array. Regardless of the number of heads that exist, only one depth/stencil surface is automatically created.</p> <p>For Windows 2000 and Windows XP, the full-screen device display refresh rate is set in the following order: </p> <ol> <li>User-specified nonzero ForcedRefreshRate registry key, if supported by the device.</li> <li>Application-specified nonzero refresh rate value in the presentation parameter.</li> <li>Refresh rate of the latest desktop, if supported by the device.</li> <li>75 hertz if supported by the device.</li> <li>60 hertz if supported by the device.</li> <li>Device default.</li> </ol> <p>An unsupported refresh rate will default to the closest supported refresh rate below it. For example, if the application specifies 63 hertz, 60 hertz will be used. There are no supported refresh rates below 57 hertz.</p> <p>pPresentationParameters is both an input and an output parameter. Calling this method may change several members including:</p> <ul> <li>If BackBufferCount, BackBufferWidth, and BackBufferHeight are 0 before the method is called, they will be changed when the method returns.</li> <li>If BackBufferFormat equals <see cref="F:SharpDX.Direct3D9.Format.Unknown" /> before the method is called, it will be changed when the method returns.</li> </ul> </dd></param>
  7229. <param name="returnedDeviceInterfaceOut"><dd> <p>Address of a reference to the returned <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, which represents the created device. </p> </dd></param>
  7230. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />.</p></returns>
  7231. <remarks>
  7232. <p>This method returns a fully working device interface, set to the required display mode (or windowed), and allocated with the appropriate back buffers. To begin rendering, the application needs only to create and set a depth buffer (assuming EnableAutoDepthStencil is <strong><see cref="F:SharpDX.Result.False" /></strong> in <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong>).</p><p>When you create a Direct3D device, you supply two different window parameters: a focus window (hFocusWindow) and a device window (the hDeviceWindow in <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong>). The purpose of each window is:</p><ul> <li>The focus window alerts Direct3D when an application switches from foreground mode to background mode (via Alt-Tab, a mouse click, or some other method). A single focus window is shared by each device created by an application.</li> <li>The device window determines the location and size of the back buffer on screen. This is used by Direct3D when the back buffer contents are copied to the front buffer during <strong>Present</strong>.</li> </ul><p>This method should not be run during the handling of WM_CREATE. An application should never pass a window handle to Direct3D while handling WM_CREATE. Any call to create, release, or reset the device must be done using the same thread as the window procedure of the focus window.</p><p>Note that <see cref="F:SharpDX.Direct3D9.CreateFlags.HardwareVertexProcessing" />, <see cref="F:SharpDX.Direct3D9.CreateFlags.MixedVertexProcessing" />, and <see cref="F:SharpDX.Direct3D9.CreateFlags.SoftwareVertexProcessing" /> are mutually exclusive flags, and at least one of these vertex processing flags must be specified when calling this method.</p><p>Back buffers created as part of the device are only lockable if <see cref="F:SharpDX.Direct3D9.PresentFlags.LockableBackBuffer" /> is specified in the presentation parameters. (Multisampled back buffers and depth surfaces are never lockable.)</p><p>The methods <strong>Reset</strong>, <strong><see cref="T:SharpDX.ComObject" /></strong>, and <strong>TestCooperativeLevel</strong> must be called from the same thread that used this method to create a device.</p><p><see cref="F:SharpDX.Direct3D9.Format.Unknown" /> can be specified for the windowed mode back buffer format when calling <strong>CreateDevice</strong>, <strong>Reset</strong>, and <strong>CreateAdditionalSwapChain</strong>. This means the application does not have to query the current desktop format before calling <strong>CreateDevice</strong> for windowed mode. For full-screen mode, the back buffer format must be specified.</p><p>If you attempt to create a device on a 0x0 sized window, <strong>CreateDevice</strong> will fail.</p>
  7233. </remarks>
  7234. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9::CreateDevice']/*" />
  7235. <msdn-id>bb174313</msdn-id>
  7236. <unmanaged>HRESULT IDirect3D9::CreateDevice([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] HWND hFocusWindow,[In] D3DCREATE BehaviorFlags,[In, Buffer] D3DPRESENT_PARAMETERS* pPresentationParameters,[Out, Fast] IDirect3DDevice9** ppReturnedDeviceInterface)</unmanaged>
  7237. <unmanaged-short>IDirect3D9::CreateDevice</unmanaged-short>
  7238. </member>
  7239. <member name="T:SharpDX.Direct3D9.Direct3DEx">
  7240. <summary>
  7241. <p>Applications use the methods of the <strong><see cref="T:SharpDX.Direct3D9.Direct3DEx" /></strong> interface (which inherits from <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong>) to create Microsoft Direct3D 9Ex objects and set up the environment. This interface includes methods for enumerating and retrieving capabilities of the device and is available when the underlying device implementation is compliant with Windows Vista.</p>
  7242. </summary>
  7243. <remarks>
  7244. <p>The <strong><see cref="T:SharpDX.Direct3D9.Direct3DEx" /></strong> interface is obtained by calling the <strong>Direct3DCreate9Ex</strong> function.</p><p>The <strong>LPDIRECT3D9EX</strong> and <strong>PDIRECT3D9EX</strong> types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.Direct3DEx" /></strong> interface:</p><p> </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.Direct3DEx" /> *LPDIRECT3D9EX, *PDIRECT3D9EX;
  7245. </pre>
  7246. </remarks>
  7247. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9Ex']/*" />
  7248. <msdn-id>bb174301</msdn-id>
  7249. <unmanaged>IDirect3D9Ex</unmanaged>
  7250. <unmanaged-short>IDirect3D9Ex</unmanaged-short>
  7251. </member>
  7252. <member name="M:SharpDX.Direct3D9.Direct3DEx.#ctor">
  7253. <summary>
  7254. Creates an <see cref="T:SharpDX.Direct3D9.Direct3DEx"/> object and returns an interface to it.
  7255. </summary>
  7256. <remarks>
  7257. The <see cref="T:SharpDX.Direct3D9.Direct3DEx"/> object is the first object that the application creates and the last object that the application releases. Functions for enumerating and retrieving capabilities of a device are accessible through the IDirect3D9Ex object. This enables applications to select devices without creating them. The <see cref="T:SharpDX.Direct3D9.Direct3DEx"/> interface supports enumeration of active display adapters and allows the creation of IDirect3D9Ex objects. If the user dynamically adds adapters (either by adding devices to the desktop, or by hot-docking a laptop), these devices are not included in the enumeration. Creating a new IDirect3D9Ex interface will expose the new devices. Pass the D3D_SDK_VERSION flag to this function to ensure that header files used in the compiled application match the version of the installed runtime DLLs. D3D_SDK_VERSION is changed in the runtime only when a header or another code change would require rebuilding the application. If this function fails, it indicates that the versions of the header file and the runtime DLL do not match. Note??Direct3DCreate9Ex is supported only in Windows Vista, Windows Server 2008, and Windows 7. Earlier versions of the D3D9.dll library do not include Direct3D9Ex and Direct3DCreate9Ex.
  7258. </remarks>
  7259. <returns>D3DERR_NOTAVAILABLE if Direct3DEx features are not supported (no WDDM driver is installed) or if the SDKVersion does not match the version of the DLL. D3DERR_OUTOFMEMORY if out-of-memory conditions are detected when creating the enumerator object. S_OK if the creation of the enumerator object is successful. </returns>
  7260. <unmanaged>HRESULT Direct3DCreate9Ex([None] int SDKVersion,[None] IDirect3D9Ex** arg1)</unmanaged>
  7261. </member>
  7262. <member name="M:SharpDX.Direct3D9.Direct3DEx.GetAdapterDisplayModeEx(System.Int32)">
  7263. <summary>
  7264. Retrieves the current display mode and rotation settings of the adapter.
  7265. </summary>
  7266. <param name="adapter">The adapter.</param>
  7267. <returns><see cref="T:SharpDX.Direct3D9.DisplayModeEx"/> structure containing data about the display mode of the adapter</returns>
  7268. <unmanaged>HRESULT IDirect3D9Ex::GetAdapterDisplayModeEx([In] unsigned int Adapter,[Out] D3DDISPLAYMODEEX* pMode,[Out] D3DDISPLAYROTATION* pRotation)</unmanaged>
  7269. </member>
  7270. <member name="P:SharpDX.Direct3D9.Direct3DEx.AdaptersEx">
  7271. <summary>
  7272. Gets a collection of installed extended adapters.
  7273. </summary>
  7274. </member>
  7275. <member name="M:SharpDX.Direct3D9.Direct3DEx.#ctor(System.IntPtr)">
  7276. <summary>
  7277. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Direct3DEx"/> class.
  7278. </summary>
  7279. <param name="nativePtr">The native pointer.</param>
  7280. </member>
  7281. <member name="M:SharpDX.Direct3D9.Direct3DEx.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Direct3DEx">
  7282. <summary>
  7283. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Direct3DEx"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  7284. </summary>
  7285. <param name="nativePointer">The native pointer.</param>
  7286. <returns>
  7287. The result of the conversion.
  7288. </returns>
  7289. </member>
  7290. <member name="M:SharpDX.Direct3D9.Direct3DEx.GetAdapterModeCountEx(System.Int32,SharpDX.Direct3D9.DisplayModeFilter)">
  7291. <summary>
  7292. <p>Returns the number of display modes available.</p>
  7293. </summary>
  7294. <param name="adapter"><dd> <p>Ordinal number denoting the display adapter from which to retrieve the display mode count.</p> </dd></param>
  7295. <param name="filterRef"><dd> <p>Specifies the characteristics of the desired display mode. See <strong><see cref="T:SharpDX.Direct3D9.DisplayModeFilter" /></strong>.</p> </dd></param>
  7296. <returns><p>The number of display modes available. A return of value zero from this method is an indication that no such display mode is supported or simply this monitor is no longer available.</p></returns>
  7297. <remarks>
  7298. <p>Events such as display mode changes on other heads of the same hardware, monitor change or its connection status change, and desktop extension/unextension could all affect the number of display mode available.</p><p>To fullscreen applications, <see cref="F:SharpDX.Direct3D9.ResultCode.PresentModeChanged" /> returned from <strong>PresentEx</strong> or <strong>CheckDeviceState</strong> is the indication of display mode setting failure due to those events.</p><p>To increase the chance of setting a currently available display mode successfully, fullscreen applications should try to requery the available display mode list upon receiving <see cref="F:SharpDX.Direct3D9.ResultCode.PresentModeChanged" />.</p>
  7299. </remarks>
  7300. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9Ex::GetAdapterModeCountEx']/*" />
  7301. <msdn-id>bb174306</msdn-id>
  7302. <unmanaged>unsigned int IDirect3D9Ex::GetAdapterModeCountEx([In] unsigned int Adapter,[In] const D3DDISPLAYMODEFILTER* pFilter)</unmanaged>
  7303. <unmanaged-short>IDirect3D9Ex::GetAdapterModeCountEx</unmanaged-short>
  7304. </member>
  7305. <member name="M:SharpDX.Direct3D9.Direct3DEx.EnumerateAdapterModesEx(System.Int32,SharpDX.Direct3D9.DisplayModeFilter,System.Int32)">
  7306. <summary>
  7307. <p>This method returns the actual display mode info based on the given mode index.</p>
  7308. </summary>
  7309. <param name="adapter"><dd> <p>Ordinal number denoting the display adapter to enumerate. D3DADAPTER_DEFAULT is always the primary display adapter. This method returns <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> when this value equals or exceeds the number of display adapters in the system.</p> </dd></param>
  7310. <param name="filterRef"><dd> <p>See <strong><see cref="T:SharpDX.Direct3D9.DisplayModeFilter" /></strong>.</p> </dd></param>
  7311. <param name="mode"><dd> <p>Represents the display-mode index which is an unsigned integer between zero and the value returned by GetAdapterModeCount minus one.</p> </dd></param>
  7312. <returns><dd> <p>A reference to the available display mode of type <strong><see cref="T:SharpDX.Direct3D9.DisplayModeEx" /></strong>.</p> </dd></returns>
  7313. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9Ex::EnumAdapterModesEx']/*" />
  7314. <msdn-id>bb174303</msdn-id>
  7315. <unmanaged>HRESULT IDirect3D9Ex::EnumAdapterModesEx([In] unsigned int Adapter,[In] const D3DDISPLAYMODEFILTER* pFilter,[In] unsigned int Mode,[Out] D3DDISPLAYMODEEX* pMode)</unmanaged>
  7316. <unmanaged-short>IDirect3D9Ex::EnumAdapterModesEx</unmanaged-short>
  7317. </member>
  7318. <member name="M:SharpDX.Direct3D9.Direct3DEx.GetAdapterDisplayModeEx(System.Int32,SharpDX.Direct3D9.DisplayRotation@)">
  7319. <summary>
  7320. <p>Retrieves the current display mode and rotation settings of the adapter.</p>
  7321. </summary>
  7322. <param name="adapter"><dd> <p>Ordinal number that denotes the display adapter to query. D3DADAPTER_DEFAULT is always the primary display adapter. </p> </dd></param>
  7323. <param name="rotationRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.DisplayRotation" /></strong> structure indicating the type of screen rotation the application will do. The value returned through this reference is important when the <see cref="F:SharpDX.Direct3D9.PresentFlags.NoAutoRotate" /> flag is used; otherwise, it can be set to <strong><c>null</c></strong>.</p> </dd></param>
  7324. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.DisplayModeEx" /></strong> structure containing data about the display mode of the adapter. As opposed to the display mode of the device, which may not be active if the device does not own full-screen mode. Can be set to <strong><c>null</c></strong>.</p> </dd></returns>
  7325. <remarks>
  7326. <p><strong>GetAdapterDisplayModeEx</strong> does not return the correct format when the display is in an extended format, such as 2:10:10:10. Instead, it returns the format X8R8G8B8.</p><p>To windowed applications, a value of <see cref="F:SharpDX.Direct3D9.ResultCode.PresentModeChanged" /> returned from <strong>PresentEx</strong> or <strong>CheckDeviceState</strong> indicates that the display mode changed and that the current display mode might have a different format. To avoid a color-converting Present blt, windowed applications can optionally get new display mode information by using this method and adjusting its swap chain format accordingly. This method returns <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" /> if this head is no longer part of the desktop or if the monitor is disconnected.</p>
  7327. </remarks>
  7328. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9Ex::GetAdapterDisplayModeEx']/*" />
  7329. <msdn-id>bb174304</msdn-id>
  7330. <unmanaged>HRESULT IDirect3D9Ex::GetAdapterDisplayModeEx([In] unsigned int Adapter,[Out] D3DDISPLAYMODEEX* pMode,[Out] D3DDISPLAYROTATION* pRotation)</unmanaged>
  7331. <unmanaged-short>IDirect3D9Ex::GetAdapterDisplayModeEx</unmanaged-short>
  7332. </member>
  7333. <member name="M:SharpDX.Direct3D9.Direct3DEx.CreateDeviceEx(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,System.Int32,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.DisplayModeEx[],SharpDX.Direct3D9.DeviceEx)">
  7334. <summary>
  7335. <p>Creates a device to represent the display adapter.</p>
  7336. </summary>
  7337. <param name="adapter"><dd> <p>Ordinal number that denotes the display adapter. D3DADAPTER_DEFAULT is always the primary display adapter.</p> </dd></param>
  7338. <param name="deviceType"><dd> <p>Specifies the type of device. See <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong>. If the desired device type is not available, the method will fail.</p> </dd></param>
  7339. <param name="hFocusWindow"><dd> <p>The focus window alerts Direct3D when an application switches from foreground mode to background mode. For full-screen mode, the window specified must be a top-level window. For windowed mode, this parameter may be <strong><c>null</c></strong> only if the hDeviceWindow member of pPresentationParameters is set to a valid, non-<strong><c>null</c></strong> value.</p> </dd></param>
  7340. <param name="behaviorFlags"><dd> <p>Combination of one or more options (see <see cref="T:SharpDX.Direct3D9.CreateFlags" />) that control device creation.</p> </dd></param>
  7341. <param name="presentationParametersRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structure, describing the presentation parameters for the device to be created. If <em>BehaviorFlags</em> specifies <see cref="F:SharpDX.Direct3D9.CreateFlags.AdapterGroupDevice" />, this parameter is an array. Regardless of the number of heads that exist, only one depth/stencil surface is automatically created.</p> <p>This parameter is both an input and an output parameter. Calling this method may change several members including:</p> <ul> <li>If BackBufferCount, BackBufferWidth, and BackBufferHeight are 0 before the method is called, they will be changed when the method returns.</li> <li>If BackBufferFormat equals <see cref="F:SharpDX.Direct3D9.Format.Unknown" /> before the method is called, it will be changed when the method returns.</li> </ul> </dd></param>
  7342. <param name="fullscreenDisplayModeRef"><dd> <p>The display mode for when the device is set to fullscreen. See <strong><see cref="T:SharpDX.Direct3D9.DisplayModeEx" /></strong>. If <em>BehaviorFlags</em> specifies <see cref="F:SharpDX.Direct3D9.CreateFlags.AdapterGroupDevice" />, this parameter is an array. This parameter must be <strong><c>null</c></strong> for windowed mode.</p> </dd></param>
  7343. <param name="returnedDeviceInterfaceOut"><dd> <p>Address of a reference to the returned <strong><see cref="T:SharpDX.Direct3D9.DeviceEx" /></strong>, which represents the created device.</p> </dd></param>
  7344. <returns><p>This method returns <see cref="F:SharpDX.Result.Ok" /> when rendering device along with swapchain buffers are created successfully. <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" /> is returned when any error other than invalid caller input is encountered.</p></returns>
  7345. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9Ex::CreateDeviceEx']/*" />
  7346. <msdn-id>bb174302</msdn-id>
  7347. <unmanaged>HRESULT IDirect3D9Ex::CreateDeviceEx([In] unsigned int Adapter,[In] D3DDEVTYPE DeviceType,[In] HWND hFocusWindow,[In] unsigned int BehaviorFlags,[In, Buffer] D3DPRESENT_PARAMETERS* pPresentationParameters,[In, Buffer, Optional] D3DDISPLAYMODEEX* pFullscreenDisplayMode,[Out, Fast] IDirect3DDevice9Ex** ppReturnedDeviceInterface)</unmanaged>
  7348. <unmanaged-short>IDirect3D9Ex::CreateDeviceEx</unmanaged-short>
  7349. </member>
  7350. <member name="M:SharpDX.Direct3D9.Direct3DEx.GetAdapterLuid(System.Int32)">
  7351. <summary>
  7352. <p>This method returns a unique identifier for the adapter that is specific to the adapter hardware. Applications can use this identifier to define robust mappings across various APIs (Direct3D 9, DXGI).</p>
  7353. </summary>
  7354. <param name="adapter"><dd> <p>Ordinal number denoting the display adapter from which to retrieve the <see cref="T:System.Int64" />.</p> </dd></param>
  7355. <returns><dd> <p>A unique identifier for the given adapter.</p> </dd></returns>
  7356. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3D9Ex::GetAdapterLUID']/*" />
  7357. <msdn-id>bb174305</msdn-id>
  7358. <unmanaged>HRESULT IDirect3D9Ex::GetAdapterLUID([In] unsigned int Adapter,[Out] LUID* pLUID)</unmanaged>
  7359. <unmanaged-short>IDirect3D9Ex::GetAdapterLUID</unmanaged-short>
  7360. </member>
  7361. <member name="T:SharpDX.Direct3D9.DisplayMode">
  7362. <summary>
  7363. <p>Describes the display mode.</p>
  7364. </summary>
  7365. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODE']/*" />
  7366. <msdn-id>bb172548</msdn-id>
  7367. <unmanaged>D3DDISPLAYMODE</unmanaged>
  7368. <unmanaged-short>D3DDISPLAYMODE</unmanaged-short>
  7369. </member>
  7370. <member name="P:SharpDX.Direct3D9.DisplayMode.AspectRatio">
  7371. <summary>
  7372. Gets the aspect ratio.
  7373. </summary>
  7374. </member>
  7375. <member name="F:SharpDX.Direct3D9.DisplayMode.Width">
  7376. <summary>
  7377. <dd> <p>Screen width, in pixels. </p> </dd>
  7378. </summary>
  7379. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODE::Width']/*" />
  7380. <msdn-id>bb172548</msdn-id>
  7381. <unmanaged>unsigned int Width</unmanaged>
  7382. <unmanaged-short>unsigned int Width</unmanaged-short>
  7383. </member>
  7384. <member name="F:SharpDX.Direct3D9.DisplayMode.Height">
  7385. <summary>
  7386. <dd> <p>Screen height, in pixels. </p> </dd>
  7387. </summary>
  7388. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODE::Height']/*" />
  7389. <msdn-id>bb172548</msdn-id>
  7390. <unmanaged>unsigned int Height</unmanaged>
  7391. <unmanaged-short>unsigned int Height</unmanaged-short>
  7392. </member>
  7393. <member name="F:SharpDX.Direct3D9.DisplayMode.RefreshRate">
  7394. <summary>
  7395. <dd> <p>Refresh rate. The value of 0 indicates an adapter default. </p> </dd>
  7396. </summary>
  7397. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODE::RefreshRate']/*" />
  7398. <msdn-id>bb172548</msdn-id>
  7399. <unmanaged>unsigned int RefreshRate</unmanaged>
  7400. <unmanaged-short>unsigned int RefreshRate</unmanaged-short>
  7401. </member>
  7402. <member name="F:SharpDX.Direct3D9.DisplayMode.Format">
  7403. <summary>
  7404. <dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the surface format of the display mode. </p> </dd>
  7405. </summary>
  7406. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODE::Format']/*" />
  7407. <msdn-id>bb172548</msdn-id>
  7408. <unmanaged>D3DFORMAT Format</unmanaged>
  7409. <unmanaged-short>D3DFORMAT Format</unmanaged-short>
  7410. </member>
  7411. <member name="T:SharpDX.Direct3D9.DisplayModeCollection">
  7412. <summary>
  7413. A collection of <see cref="T:SharpDX.Direct3D9.DisplayMode"/>
  7414. </summary>
  7415. </member>
  7416. <member name="T:SharpDX.Direct3D9.DisplayModeEx">
  7417. <summary>
  7418. <p>Information about the properties of a display mode.</p>
  7419. </summary>
  7420. <remarks>
  7421. <p>This structure is used in various methods to create and manage Direct3D 9Ex devices (<strong><see cref="T:SharpDX.Direct3D9.DeviceEx" /></strong>) and swapchains (<strong><see cref="T:SharpDX.Direct3D9.SwapChain9Ex" /></strong>).</p>
  7422. </remarks>
  7423. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEEX']/*" />
  7424. <msdn-id>bb172549</msdn-id>
  7425. <unmanaged>D3DDISPLAYMODEEX</unmanaged>
  7426. <unmanaged-short>D3DDISPLAYMODEEX</unmanaged-short>
  7427. </member>
  7428. <member name="M:SharpDX.Direct3D9.DisplayModeEx.#ctor">
  7429. <summary>
  7430. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.DisplayModeEx" /> class.
  7431. </summary>
  7432. </member>
  7433. <member name="P:SharpDX.Direct3D9.DisplayModeEx.AspectRatio">
  7434. <summary>
  7435. Gets the aspect ratio.
  7436. </summary>
  7437. </member>
  7438. <member name="F:SharpDX.Direct3D9.DisplayModeEx.Size">
  7439. <summary>
  7440. <dd> <p>The size of this structure. This should always be set to sizeof(<see cref="T:SharpDX.Direct3D9.DisplayModeEx" />).</p> </dd>
  7441. </summary>
  7442. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEEX::Size']/*" />
  7443. <msdn-id>bb172549</msdn-id>
  7444. <unmanaged>unsigned int Size</unmanaged>
  7445. <unmanaged-short>unsigned int Size</unmanaged-short>
  7446. </member>
  7447. <member name="F:SharpDX.Direct3D9.DisplayModeEx.Width">
  7448. <summary>
  7449. <dd> <p>Width of the display mode.</p> </dd>
  7450. </summary>
  7451. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEEX::Width']/*" />
  7452. <msdn-id>bb172549</msdn-id>
  7453. <unmanaged>unsigned int Width</unmanaged>
  7454. <unmanaged-short>unsigned int Width</unmanaged-short>
  7455. </member>
  7456. <member name="F:SharpDX.Direct3D9.DisplayModeEx.Height">
  7457. <summary>
  7458. <dd> <p>Height of the display mode.</p> </dd>
  7459. </summary>
  7460. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEEX::Height']/*" />
  7461. <msdn-id>bb172549</msdn-id>
  7462. <unmanaged>unsigned int Height</unmanaged>
  7463. <unmanaged-short>unsigned int Height</unmanaged-short>
  7464. </member>
  7465. <member name="F:SharpDX.Direct3D9.DisplayModeEx.RefreshRate">
  7466. <summary>
  7467. <dd> <p>Refresh rate of the display mode.</p> </dd>
  7468. </summary>
  7469. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEEX::RefreshRate']/*" />
  7470. <msdn-id>bb172549</msdn-id>
  7471. <unmanaged>unsigned int RefreshRate</unmanaged>
  7472. <unmanaged-short>unsigned int RefreshRate</unmanaged-short>
  7473. </member>
  7474. <member name="F:SharpDX.Direct3D9.DisplayModeEx.Format">
  7475. <summary>
  7476. <dd> <p>Format of the display mode. See <see cref="T:SharpDX.Direct3D9.Format" />.</p> </dd>
  7477. </summary>
  7478. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEEX::Format']/*" />
  7479. <msdn-id>bb172549</msdn-id>
  7480. <unmanaged>D3DFORMAT Format</unmanaged>
  7481. <unmanaged-short>D3DFORMAT Format</unmanaged-short>
  7482. </member>
  7483. <member name="F:SharpDX.Direct3D9.DisplayModeEx.ScanLineOrdering">
  7484. <summary>
  7485. <dd> <p>Indicates whether the scanline order is progressive or interlaced. See <strong><see cref="T:SharpDX.Direct3D9.ScanlineOrdering" /></strong>.</p> </dd>
  7486. </summary>
  7487. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEEX::ScanLineOrdering']/*" />
  7488. <msdn-id>bb172549</msdn-id>
  7489. <unmanaged>D3DSCANLINEORDERING ScanLineOrdering</unmanaged>
  7490. <unmanaged-short>D3DSCANLINEORDERING ScanLineOrdering</unmanaged-short>
  7491. </member>
  7492. <member name="T:SharpDX.Direct3D9.DisplayModeExCollection">
  7493. <summary>
  7494. A collection of <see cref="T:SharpDX.Direct3D9.DisplayModeEx"/>
  7495. </summary>
  7496. </member>
  7497. <member name="T:SharpDX.Direct3D9.DriverLevel">
  7498. <summary>
  7499. Driver levels support.
  7500. </summary>
  7501. <unmanaged>None</unmanaged>
  7502. </member>
  7503. <member name="F:SharpDX.Direct3D9.DriverLevel.Direct3D7">
  7504. <summary>
  7505. Supports for Direct3D7.
  7506. </summary>
  7507. </member>
  7508. <member name="F:SharpDX.Direct3D9.DriverLevel.Direct3D8">
  7509. <summary>
  7510. Supports for Direct3D8.
  7511. </summary>
  7512. </member>
  7513. <member name="F:SharpDX.Direct3D9.DriverLevel.Direct3D9">
  7514. <summary>
  7515. Supports for Direct3D9.
  7516. </summary>
  7517. </member>
  7518. <member name="T:SharpDX.Direct3D9.Effect">
  7519. <summary>
  7520. <p>Used to set and query effects, and to choose techniques. An effect object can contain multiple techniques to render the same effect.</p>
  7521. </summary>
  7522. <remarks>
  7523. <p>The <see cref="T:SharpDX.Direct3D9.Effect" /> interface is obtained by calling <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffect(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong>, or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong>.</p><p>The LPD3DXEFFECT type is defined as a reference to this interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.Effect" /> <see cref="T:SharpDX.Direct3D9.Effect" />;
  7524. typedef interface <see cref="T:SharpDX.Direct3D9.Effect" /> *LPD3DXEFFECT;
  7525. </pre>
  7526. </remarks>
  7527. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect']/*" />
  7528. <msdn-id>bb205788</msdn-id>
  7529. <unmanaged>ID3DXEffect</unmanaged>
  7530. <unmanaged-short>ID3DXEffect</unmanaged-short>
  7531. </member>
  7532. <member name="M:SharpDX.Direct3D9.Effect.Begin">
  7533. <summary>
  7534. Starts an active technique.
  7535. </summary>
  7536. <returns>The number of passes needed to render the current technique. </returns>
  7537. <unmanaged>HRESULT ID3DXEffect::Begin([Out] unsigned int* pPasses,[In] D3DXFX Flags)</unmanaged>
  7538. </member>
  7539. <member name="P:SharpDX.Direct3D9.Effect.Technique">
  7540. <summary>
  7541. Gets or sets the current technique.
  7542. </summary>
  7543. <value>
  7544. The technique.
  7545. </value>
  7546. <unmanaged>D3DXHANDLE ID3DXEffect::GetCurrentTechnique()</unmanaged>
  7547. <unmanaged>HRESULT ID3DXEffect::SetTechnique([In] D3DXHANDLE hTechnique)</unmanaged>
  7548. </member>
  7549. <member name="M:SharpDX.Direct3D9.Effect.FromFile(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.ShaderFlags)">
  7550. <summary>
  7551. Compiles an effect from a file.
  7552. </summary>
  7553. <param name="device">The device.</param>
  7554. <param name="fileName">Name of the file.</param>
  7555. <param name="flags">The flags.</param>
  7556. <returns>
  7557. An <see cref="T:SharpDX.Direct3D9.Effect"/>
  7558. </returns>
  7559. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7560. </member>
  7561. <member name="M:SharpDX.Direct3D9.Effect.FromFile(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String,SharpDX.Direct3D9.ShaderFlags)">
  7562. <summary>
  7563. Compiles an effect from a file.
  7564. </summary>
  7565. <param name="device">The device.</param>
  7566. <param name="fileName">Name of the file.</param>
  7567. <param name="preprocessorDefines">The preprocessor defines.</param>
  7568. <param name="includeFile">The include file.</param>
  7569. <param name="skipConstants">The skip constants.</param>
  7570. <param name="flags">The flags.</param>
  7571. <returns>
  7572. An <see cref="T:SharpDX.Direct3D9.Effect"/>
  7573. </returns>
  7574. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7575. </member>
  7576. <member name="M:SharpDX.Direct3D9.Effect.FromFile(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.EffectPool)">
  7577. <summary>
  7578. Compiles an effect from a file.
  7579. </summary>
  7580. <param name="device">The device.</param>
  7581. <param name="fileName">Name of the file.</param>
  7582. <param name="preprocessorDefines">The preprocessor defines.</param>
  7583. <param name="includeFile">The include file.</param>
  7584. <param name="skipConstants">The skip constants.</param>
  7585. <param name="flags">The flags.</param>
  7586. <param name="pool">The pool.</param>
  7587. <returns>
  7588. An <see cref="T:SharpDX.Direct3D9.Effect"/>
  7589. </returns>
  7590. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7591. </member>
  7592. <member name="M:SharpDX.Direct3D9.Effect.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],SharpDX.Direct3D9.ShaderFlags)">
  7593. <summary>
  7594. Compiles an effect from a memory buffer.
  7595. </summary>
  7596. <param name="device">The device.</param>
  7597. <param name="memory">The buffer.</param>
  7598. <param name="flags">The flags.</param>
  7599. <returns>
  7600. An <see cref="T:SharpDX.Direct3D9.Effect"/>
  7601. </returns>
  7602. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7603. </member>
  7604. <member name="M:SharpDX.Direct3D9.Effect.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String,SharpDX.Direct3D9.ShaderFlags)">
  7605. <summary>
  7606. Compiles an effect from a memory buffer.
  7607. </summary>
  7608. <param name="device">The device.</param>
  7609. <param name="memory">The buffer.</param>
  7610. <param name="preprocessorDefines">The preprocessor defines.</param>
  7611. <param name="includeFile">The include file.</param>
  7612. <param name="skipConstants">The skip constants.</param>
  7613. <param name="flags">The flags.</param>
  7614. <returns>
  7615. An <see cref="T:SharpDX.Direct3D9.Effect"/>
  7616. </returns>
  7617. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7618. </member>
  7619. <member name="M:SharpDX.Direct3D9.Effect.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.EffectPool)">
  7620. <summary>
  7621. Compiles an effect from a memory buffer.
  7622. </summary>
  7623. <param name="device">The device.</param>
  7624. <param name="memory">The buffer.</param>
  7625. <param name="preprocessorDefines">The preprocessor defines.</param>
  7626. <param name="includeFile">The include file.</param>
  7627. <param name="skipConstants">The skip constants.</param>
  7628. <param name="flags">The flags.</param>
  7629. <param name="pool">The pool.</param>
  7630. <returns>An <see cref="T:SharpDX.Direct3D9.Effect"/></returns>
  7631. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7632. </member>
  7633. <member name="M:SharpDX.Direct3D9.Effect.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,SharpDX.Direct3D9.ShaderFlags)">
  7634. <summary>
  7635. Compiles an effect from a stream.
  7636. </summary>
  7637. <param name="device">The device.</param>
  7638. <param name="stream">The stream.</param>
  7639. <param name="flags">The flags.</param>
  7640. <returns>
  7641. An <see cref="T:SharpDX.Direct3D9.Effect"/>
  7642. </returns>
  7643. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7644. </member>
  7645. <member name="M:SharpDX.Direct3D9.Effect.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String,SharpDX.Direct3D9.ShaderFlags)">
  7646. <summary>
  7647. Compiles an effect from a stream.
  7648. </summary>
  7649. <param name="device">The device.</param>
  7650. <param name="stream">The stream.</param>
  7651. <param name="preprocessorDefines">The preprocessor defines.</param>
  7652. <param name="includeFile">The include file.</param>
  7653. <param name="skipConstants">The skip constants.</param>
  7654. <param name="flags">The flags.</param>
  7655. <returns>
  7656. An <see cref="T:SharpDX.Direct3D9.Effect"/>
  7657. </returns>
  7658. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7659. </member>
  7660. <member name="M:SharpDX.Direct3D9.Effect.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.EffectPool)">
  7661. <summary>
  7662. Compiles an effect from a stream.
  7663. </summary>
  7664. <param name="device">The device.</param>
  7665. <param name="stream">The stream.</param>
  7666. <param name="preprocessorDefines">The preprocessor defines.</param>
  7667. <param name="includeFile">The include file.</param>
  7668. <param name="skipConstants">The skip constants.</param>
  7669. <param name="flags">The flags.</param>
  7670. <param name="pool">The pool.</param>
  7671. <returns>An <see cref="T:SharpDX.Direct3D9.Effect"/></returns>
  7672. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7673. </member>
  7674. <member name="M:SharpDX.Direct3D9.Effect.FromString(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.ShaderFlags)">
  7675. <summary>
  7676. Compiles an effect from a string.
  7677. </summary>
  7678. <param name="device">The device.</param>
  7679. <param name="sourceData">The source data.</param>
  7680. <param name="flags">The flags.</param>
  7681. <returns>
  7682. An <see cref="T:SharpDX.Direct3D9.Effect"/>
  7683. </returns>
  7684. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7685. </member>
  7686. <member name="M:SharpDX.Direct3D9.Effect.FromString(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String,SharpDX.Direct3D9.ShaderFlags)">
  7687. <summary>
  7688. Compiles an effect from a string.
  7689. </summary>
  7690. <param name="device">The device.</param>
  7691. <param name="sourceData">The source data.</param>
  7692. <param name="preprocessorDefines">The preprocessor defines.</param>
  7693. <param name="includeFile">The include file.</param>
  7694. <param name="skipConstants">The skip constants.</param>
  7695. <param name="flags">The flags.</param>
  7696. <returns>
  7697. An <see cref="T:SharpDX.Direct3D9.Effect"/>
  7698. </returns>
  7699. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7700. </member>
  7701. <member name="M:SharpDX.Direct3D9.Effect.FromString(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.EffectPool)">
  7702. <summary>
  7703. Compiles an effect from a string.
  7704. </summary>
  7705. <param name="device">The device.</param>
  7706. <param name="sourceData">The source data.</param>
  7707. <param name="preprocessorDefines">The preprocessor defines.</param>
  7708. <param name="includeFile">The include file.</param>
  7709. <param name="skipConstants">The skip constants.</param>
  7710. <param name="flags">The flags.</param>
  7711. <param name="pool">The pool.</param>
  7712. <returns>
  7713. An <see cref="T:SharpDX.Direct3D9.Effect"/>
  7714. </returns>
  7715. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  7716. </member>
  7717. <member name="M:SharpDX.Direct3D9.Effect.SetRawValue(SharpDX.Direct3D9.EffectHandle,System.Single[])">
  7718. <summary>
  7719. Set a contiguous range of shader constants with a memory copy.
  7720. </summary>
  7721. <param name="handle">The handle.</param>
  7722. <param name="data">The data.</param>
  7723. <returns>
  7724. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  7725. </returns>
  7726. <unmanaged>HRESULT ID3DXEffect::SetRawValue([In] D3DXHANDLE hParameter,[In] const void* pData,[In] unsigned int ByteOffset,[In] unsigned int Bytes)</unmanaged>
  7727. </member>
  7728. <member name="M:SharpDX.Direct3D9.Effect.SetRawValue(SharpDX.Direct3D9.EffectHandle,SharpDX.DataStream)">
  7729. <summary>
  7730. Set a contiguous range of shader constants with a memory copy.
  7731. </summary>
  7732. <param name="handle">The handle.</param>
  7733. <param name="data">The data.</param>
  7734. <returns>
  7735. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  7736. </returns>
  7737. <unmanaged>HRESULT ID3DXEffect::SetRawValue([In] D3DXHANDLE hParameter,[In] const void* pData,[In] unsigned int ByteOffset,[In] unsigned int Bytes)</unmanaged>
  7738. </member>
  7739. <member name="M:SharpDX.Direct3D9.Effect.SetRawValue(SharpDX.Direct3D9.EffectHandle,SharpDX.DataStream,System.Int32,System.Int32)">
  7740. <summary>
  7741. Set a contiguous range of shader constants with a memory copy.
  7742. </summary>
  7743. <param name="handle">The handle.</param>
  7744. <param name="data">The data.</param>
  7745. <param name="offset">The offset.</param>
  7746. <param name="countInBytes">The count in bytes.</param>
  7747. <returns>
  7748. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  7749. </returns>
  7750. <unmanaged>HRESULT ID3DXEffect::SetRawValue([In] D3DXHANDLE hParameter,[In] const void* pData,[In] unsigned int ByteOffset,[In] unsigned int Bytes)</unmanaged>
  7751. </member>
  7752. <member name="M:SharpDX.Direct3D9.Effect.SetRawValue(SharpDX.Direct3D9.EffectHandle,System.Single[],System.Int32,System.Int32)">
  7753. <summary>
  7754. Set a contiguous range of shader constants with a memory copy.
  7755. </summary>
  7756. <param name="handle">The handle.</param>
  7757. <param name="data">The data.</param>
  7758. <param name="startIndex">The start index.</param>
  7759. <param name="count">The count.</param>
  7760. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  7761. <unmanaged>HRESULT ID3DXEffect::SetRawValue([In] D3DXHANDLE hParameter,[In] const void* pData,[In] unsigned int ByteOffset,[In] unsigned int Bytes)</unmanaged>
  7762. </member>
  7763. <member name="M:SharpDX.Direct3D9.Effect.#ctor(System.IntPtr)">
  7764. <summary>
  7765. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Effect"/> class.
  7766. </summary>
  7767. <param name="nativePtr">The native pointer.</param>
  7768. </member>
  7769. <member name="M:SharpDX.Direct3D9.Effect.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Effect">
  7770. <summary>
  7771. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Effect"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  7772. </summary>
  7773. <param name="nativePointer">The native pointer.</param>
  7774. <returns>
  7775. The result of the conversion.
  7776. </returns>
  7777. </member>
  7778. <member name="P:SharpDX.Direct3D9.Effect.Pool">
  7779. <summary>
  7780. <p>Gets a reference to the pool of shared parameters.</p>
  7781. </summary>
  7782. <remarks>
  7783. <p>Pools contain shared parameters between effects. See Cloning and Sharing (Direct3D 9).</p>
  7784. </remarks>
  7785. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::GetPool']/*" />
  7786. <msdn-id>bb205827</msdn-id>
  7787. <unmanaged>GetPool</unmanaged>
  7788. <unmanaged-short>GetPool</unmanaged-short>
  7789. <unmanaged>HRESULT ID3DXEffect::GetPool([Out] ID3DXEffectPool** ppPool)</unmanaged>
  7790. </member>
  7791. <member name="P:SharpDX.Direct3D9.Effect.Device">
  7792. <summary>
  7793. <p>Retrieves the device associated with the effect.</p>
  7794. </summary>
  7795. <remarks>
  7796. <p>Calling this method will increase the internal reference count for the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Be sure to call IUnknown::Release when you are done using the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface or you will have a memory leak.</p>
  7797. </remarks>
  7798. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::GetDevice']/*" />
  7799. <msdn-id>bb205826</msdn-id>
  7800. <unmanaged>GetDevice</unmanaged>
  7801. <unmanaged-short>GetDevice</unmanaged-short>
  7802. <unmanaged>HRESULT ID3DXEffect::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  7803. </member>
  7804. <member name="P:SharpDX.Direct3D9.Effect.StateManager">
  7805. <summary>
  7806. <p>Get or sets the effect state manager.</p>
  7807. </summary>
  7808. <remarks>
  7809. <p>The <strong><see cref="T:SharpDX.Direct3D9.EffectStateManager" /></strong> is a user-implemented interface that furnishes callbacks into an application for setting device state from an effect.</p>
  7810. </remarks>
  7811. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::GetStateManager']/*" />
  7812. <msdn-id>bb205828</msdn-id>
  7813. <unmanaged>GetStateManager / SetStateManager</unmanaged>
  7814. <unmanaged-short>GetStateManager</unmanaged-short>
  7815. <unmanaged>HRESULT ID3DXEffect::GetStateManager([Out] ID3DXEffectStateManager** ppManager)</unmanaged>
  7816. </member>
  7817. <member name="M:SharpDX.Direct3D9.Effect.GetPool(SharpDX.Direct3D9.EffectPool@)">
  7818. <summary>
  7819. <p>Gets a reference to the pool of shared parameters.</p>
  7820. </summary>
  7821. <param name="poolOut"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.EffectPool" /></strong> object. </p> </dd></param>
  7822. <returns><p>This method always returns the value <see cref="F:SharpDX.Result.Ok" />.</p></returns>
  7823. <remarks>
  7824. <p>Pools contain shared parameters between effects. See Cloning and Sharing (Direct3D 9).</p>
  7825. </remarks>
  7826. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::GetPool']/*" />
  7827. <msdn-id>bb205827</msdn-id>
  7828. <unmanaged>HRESULT ID3DXEffect::GetPool([Out] ID3DXEffectPool** ppPool)</unmanaged>
  7829. <unmanaged-short>ID3DXEffect::GetPool</unmanaged-short>
  7830. </member>
  7831. <member name="M:SharpDX.Direct3D9.Effect.SetTechnique(SharpDX.Direct3D9.EffectHandle)">
  7832. <summary>
  7833. <p>Sets the active technique.</p>
  7834. </summary>
  7835. <param name="hTechnique"><dd> <p>Unique handle to the technique. See Handles (Direct3D 9).</p> </dd></param>
  7836. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  7837. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::SetTechnique']/*" />
  7838. <msdn-id>bb205834</msdn-id>
  7839. <unmanaged>HRESULT ID3DXEffect::SetTechnique([In] D3DXHANDLE hTechnique)</unmanaged>
  7840. <unmanaged-short>ID3DXEffect::SetTechnique</unmanaged-short>
  7841. </member>
  7842. <member name="M:SharpDX.Direct3D9.Effect.GetCurrentTechnique">
  7843. <summary>
  7844. <p>Gets the current technique.</p>
  7845. </summary>
  7846. <returns><p>A unique identifier to the current technique. See Handles (Direct3D 9).</p></returns>
  7847. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::GetCurrentTechnique']/*" />
  7848. <msdn-id>bb205825</msdn-id>
  7849. <unmanaged>D3DXHANDLE ID3DXEffect::GetCurrentTechnique()</unmanaged>
  7850. <unmanaged-short>ID3DXEffect::GetCurrentTechnique</unmanaged-short>
  7851. </member>
  7852. <member name="M:SharpDX.Direct3D9.Effect.ValidateTechnique(SharpDX.Direct3D9.EffectHandle)">
  7853. <summary>
  7854. <p>Validate a technique.</p>
  7855. </summary>
  7856. <param name="hTechnique"><dd> <p>Unique identifier. See Handles (Direct3D 9).</p> </dd></param>
  7857. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.ConflictingRenderState" />, <see cref="F:SharpDX.Direct3D9.ResultCode.ConflictingTextureFilter" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DriverInternalError" />, <see cref="F:SharpDX.Direct3D9.ResultCode.TooManyOperations" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedAlphaArgument" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedAlphaOperation" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedColorArgument" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedColorOperation" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedFactorValue" />, <see cref="F:SharpDX.Direct3D9.ResultCode.UnsupportedTextureFilter" />, and <see cref="F:SharpDX.Direct3D9.ResultCode.WrongTextureFormat" />.</p></returns>
  7858. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::ValidateTechnique']/*" />
  7859. <msdn-id>bb205835</msdn-id>
  7860. <unmanaged>HRESULT ID3DXEffect::ValidateTechnique([In] D3DXHANDLE hTechnique)</unmanaged>
  7861. <unmanaged-short>ID3DXEffect::ValidateTechnique</unmanaged-short>
  7862. </member>
  7863. <member name="M:SharpDX.Direct3D9.Effect.FindNextValidTechnique(SharpDX.Direct3D9.EffectHandle)">
  7864. <summary>
  7865. <p>Searches for the next valid technique, starting at the technique after the specified technique.</p>
  7866. </summary>
  7867. <param name="hTechnique"><dd> <p>Unique identifier to a technique. See Handles (Direct3D 9). Specify <strong><c>null</c></strong> for this parameter to find the first valid technique.</p> </dd></param>
  7868. <returns><dd> <p>Pointer to an identifier for the next technique. <strong><c>null</c></strong> is returned if this is the last technique. See Handles (Direct3D 9).</p> </dd></returns>
  7869. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::FindNextValidTechnique']/*" />
  7870. <msdn-id>bb205824</msdn-id>
  7871. <unmanaged>HRESULT ID3DXEffect::FindNextValidTechnique([In] D3DXHANDLE hTechnique,[Out] D3DXHANDLE* pTechnique)</unmanaged>
  7872. <unmanaged-short>ID3DXEffect::FindNextValidTechnique</unmanaged-short>
  7873. </member>
  7874. <member name="M:SharpDX.Direct3D9.Effect.IsParameterUsed(SharpDX.Direct3D9.EffectHandle,SharpDX.Direct3D9.EffectHandle)">
  7875. <summary>
  7876. <p>Determines if a parameter is used by the technique.</p>
  7877. </summary>
  7878. <param name="hParameter"><dd> <p>Unique identifier for the parameter. See Handles (Direct3D 9).</p> </dd></param>
  7879. <param name="hTechnique"><dd> <p>Unique identifier for the technique. See Handles (Direct3D 9).</p> </dd></param>
  7880. <returns><p>Returns <strong>TRUE</strong> if the parameter is being used and returns <strong><see cref="F:SharpDX.Result.False" /></strong> if the parameter is not being used.</p></returns>
  7881. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::IsParameterUsed']/*" />
  7882. <msdn-id>bb205829</msdn-id>
  7883. <unmanaged>BOOL ID3DXEffect::IsParameterUsed([In] D3DXHANDLE hParameter,[In] D3DXHANDLE hTechnique)</unmanaged>
  7884. <unmanaged-short>ID3DXEffect::IsParameterUsed</unmanaged-short>
  7885. </member>
  7886. <member name="M:SharpDX.Direct3D9.Effect.Begin(SharpDX.Direct3D9.FX)">
  7887. <summary>
  7888. <p>Starts an active technique.</p>
  7889. </summary>
  7890. <param name="flags"><dd> <p>DWORD that determines if state modified by an effect is saved and restored. The default value 0 specifies that <strong><see cref="M:SharpDX.Direct3D9.Effect.Begin" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.End" /></strong> will save and restore all state modified by the effect (including pixel and vertex shader constants). Valid flags can be seen at Effect State Save and Restore Flags.</p> </dd></param>
  7891. <returns><dd> <p>Pointer to a value returned that indicates the number of passes needed to render the current technique. </p> </dd></returns>
  7892. <remarks>
  7893. <p>An application sets one active technique in the effect system by calling <strong><see cref="M:SharpDX.Direct3D9.Effect.Begin" /></strong>. The effect system responds by capturing all the pipeline state that can be changed by the technique in a state block. An application signals the end of a technique by calling <strong><see cref="M:SharpDX.Direct3D9.Effect.End" /></strong>, which uses the state block to restore the original state. The effect system, therefore, takes care of saving state when a technique becomes active and restoring state when a technique ends. If you choose to disable this save and restore functionality, see <see cref="F:SharpDX.Direct3D9.FX.DoNotSaveSamplerState" />.</p><p>Within the <strong><see cref="M:SharpDX.Direct3D9.Effect.Begin" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.End" /></strong> pair, an application uses <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong> to set the active pass, <strong><see cref="M:SharpDX.Direct3D9.Effect.CommitChanges" /></strong> if any state changes occurred after the pass was activated, and <strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong> to end the active pass.</p>
  7894. </remarks>
  7895. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::Begin']/*" />
  7896. <msdn-id>bb205815</msdn-id>
  7897. <unmanaged>HRESULT ID3DXEffect::Begin([Out] unsigned int* pPasses,[In] D3DXFX Flags)</unmanaged>
  7898. <unmanaged-short>ID3DXEffect::Begin</unmanaged-short>
  7899. </member>
  7900. <member name="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)">
  7901. <summary>
  7902. <p>Begins a pass, within the active technique.</p>
  7903. </summary>
  7904. <param name="pass"><dd> <p>A zero-based integer index into the technique.</p> </dd></param>
  7905. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  7906. <remarks>
  7907. <p>An application sets one active pass (within one active technique) in the effect system by calling <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>. An application signals the end of the active pass by calling <strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong>. <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong> must occur in a matching pair, within a matching pair of <strong><see cref="M:SharpDX.Direct3D9.Effect.Begin" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.End" /></strong> calls.</p><p>If the application changes any effect state using any of the <strong>Effect::Setx</strong> methods inside of a <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>/<strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong> matching pair, the application must call <strong><see cref="M:SharpDX.Direct3D9.Effect.CommitChanges" /></strong> to set the update the device with the state changes. If no state changes occur within a <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong> matching pair, it is not necessary to call <strong><see cref="M:SharpDX.Direct3D9.Effect.CommitChanges" /></strong>.</p>
  7908. </remarks>
  7909. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::BeginPass']/*" />
  7910. <msdn-id>bb205817</msdn-id>
  7911. <unmanaged>HRESULT ID3DXEffect::BeginPass([In] unsigned int Pass)</unmanaged>
  7912. <unmanaged-short>ID3DXEffect::BeginPass</unmanaged-short>
  7913. </member>
  7914. <member name="M:SharpDX.Direct3D9.Effect.CommitChanges">
  7915. <summary>
  7916. <p>Propagate state changes that occur inside of an active pass to the device before rendering.</p>
  7917. </summary>
  7918. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  7919. <remarks>
  7920. <p>If the application changes any effect state using any of the <strong>ID3DXEffect::Setx</strong> methods inside of an <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>/<strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong> matching pair, the application must call <strong><see cref="M:SharpDX.Direct3D9.Effect.CommitChanges" /></strong> before any DrawxPrimitive call to propagate state changes to the device before rendering. If no state changes occur within a <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong> matching pair, it is not necessary to call <strong><see cref="M:SharpDX.Direct3D9.Effect.CommitChanges" /></strong>.</p><p>This is slightly different for any shared parameters in a cloned effect. When a technique is active on a cloned effect (that is, when <strong><see cref="M:SharpDX.Direct3D9.Effect.Begin" /></strong> has been called but and <strong><see cref="M:SharpDX.Direct3D9.Effect.End" /></strong> has not been called), <strong><see cref="M:SharpDX.Direct3D9.Effect.CommitChanges" /></strong> updates parameters that are not shared as expected. To update a shared parameter (only for a cloned effect whose technique is active), call <strong><see cref="M:SharpDX.Direct3D9.Effect.End" /></strong> to deactivate the technique and <strong><see cref="M:SharpDX.Direct3D9.Effect.Begin" /></strong> to reactivate the technique before calling <strong><see cref="M:SharpDX.Direct3D9.Effect.CommitChanges" /></strong>.</p>
  7921. </remarks>
  7922. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::CommitChanges']/*" />
  7923. <msdn-id>bb205819</msdn-id>
  7924. <unmanaged>HRESULT ID3DXEffect::CommitChanges()</unmanaged>
  7925. <unmanaged-short>ID3DXEffect::CommitChanges</unmanaged-short>
  7926. </member>
  7927. <member name="M:SharpDX.Direct3D9.Effect.EndPass">
  7928. <summary>
  7929. <p>End an active pass.</p>
  7930. </summary>
  7931. <returns><p>This method always returns the value <see cref="F:SharpDX.Result.Ok" />.</p></returns>
  7932. <remarks>
  7933. <p>An application signals the end of rendering an active pass by calling <strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong>. Each <strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong> must be part of a matching pair of <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong> calls.</p><p>Each matching pair of <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong> calls must be located within a matching pair of <strong><see cref="M:SharpDX.Direct3D9.Effect.Begin" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.End" /></strong> calls.</p><p>If the application changes any effect state using any of the <strong>Effect::Setx</strong> methods inside of a <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>/<strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong> matching pair, the application must call <strong><see cref="M:SharpDX.Direct3D9.Effect.CommitChanges" /></strong> before any DrawxPrimitive call to propagate state changes to the device before rendering.</p>
  7934. </remarks>
  7935. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::EndPass']/*" />
  7936. <msdn-id>bb205823</msdn-id>
  7937. <unmanaged>HRESULT ID3DXEffect::EndPass()</unmanaged>
  7938. <unmanaged-short>ID3DXEffect::EndPass</unmanaged-short>
  7939. </member>
  7940. <member name="M:SharpDX.Direct3D9.Effect.End">
  7941. <summary>
  7942. <p>Ends an active technique.</p>
  7943. </summary>
  7944. <returns><p>This method always returns the value <see cref="F:SharpDX.Result.Ok" />.</p></returns>
  7945. <remarks>
  7946. <p>All rendering in an effect is done within a matching pair of <strong><see cref="M:SharpDX.Direct3D9.Effect.Begin" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.End" /></strong> calls. After all passes are rendered, <strong><see cref="M:SharpDX.Direct3D9.Effect.End" /></strong> must be called to end the active technique. The effect system responds by using the state block created when <strong><see cref="M:SharpDX.Direct3D9.Effect.Begin" /></strong> was called, to automatically restore the pipeline state before <strong><see cref="M:SharpDX.Direct3D9.Effect.Begin" /></strong>.</p><p>By default, the effect system takes care of saving state prior to a technique, and restoring state after a technique. If you choose to disable this save and restore functionality, see <see cref="F:SharpDX.Direct3D9.FX.DoNotSaveSamplerState" />.</p>
  7947. </remarks>
  7948. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::End']/*" />
  7949. <msdn-id>bb205821</msdn-id>
  7950. <unmanaged>HRESULT ID3DXEffect::End()</unmanaged>
  7951. <unmanaged-short>ID3DXEffect::End</unmanaged-short>
  7952. </member>
  7953. <member name="M:SharpDX.Direct3D9.Effect.GetDevice(SharpDX.Direct3D9.Device@)">
  7954. <summary>
  7955. <p>Retrieves the device associated with the effect.</p>
  7956. </summary>
  7957. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the effect. </p> </dd></param>
  7958. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  7959. <remarks>
  7960. <p>Calling this method will increase the internal reference count for the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Be sure to call IUnknown::Release when you are done using the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface or you will have a memory leak.</p>
  7961. </remarks>
  7962. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::GetDevice']/*" />
  7963. <msdn-id>bb205826</msdn-id>
  7964. <unmanaged>HRESULT ID3DXEffect::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  7965. <unmanaged-short>ID3DXEffect::GetDevice</unmanaged-short>
  7966. </member>
  7967. <member name="M:SharpDX.Direct3D9.Effect.OnLostDevice">
  7968. <summary>
  7969. <p>Use this method to release all references to video memory resources and delete all stateblocks. This method should be called whenever a device is lost, or before resetting a device.</p>
  7970. </summary>
  7971. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  7972. <remarks>
  7973. <p>This method should be called whenever the device is lost or before the user calls <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>. Even if the device was not actually lost, <strong><see cref="M:SharpDX.Direct3D9.Effect.OnLostDevice" /></strong> is responsible for freeing stateblocks and other resources that may need to be released before resetting the device. As a result, the font object cannot be used again before calling <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> and then <strong><see cref="M:SharpDX.Direct3D9.Effect.OnResetDevice" /></strong>.</p>
  7974. </remarks>
  7975. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::OnLostDevice']/*" />
  7976. <msdn-id>bb205830</msdn-id>
  7977. <unmanaged>HRESULT ID3DXEffect::OnLostDevice()</unmanaged>
  7978. <unmanaged-short>ID3DXEffect::OnLostDevice</unmanaged-short>
  7979. </member>
  7980. <member name="M:SharpDX.Direct3D9.Effect.OnResetDevice">
  7981. <summary>
  7982. <p>Use this method to re-acquire resources and save initial state.</p>
  7983. </summary>
  7984. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  7985. <remarks>
  7986. <p><strong><see cref="M:SharpDX.Direct3D9.Effect.OnResetDevice" /></strong> should be called each time the device is reset (using <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>), before any other methods are called. This is a good place to re-acquire video-memory resources and capture state blocks.</p>
  7987. </remarks>
  7988. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::OnResetDevice']/*" />
  7989. <msdn-id>bb205831</msdn-id>
  7990. <unmanaged>HRESULT ID3DXEffect::OnResetDevice()</unmanaged>
  7991. <unmanaged-short>ID3DXEffect::OnResetDevice</unmanaged-short>
  7992. </member>
  7993. <member name="M:SharpDX.Direct3D9.Effect.SetStateManager(SharpDX.Direct3D9.EffectStateManager)">
  7994. <summary>
  7995. <p>Set the effect state manager.</p>
  7996. </summary>
  7997. <param name="managerRef"><dd> <p>A reference to the state manager. See <strong><see cref="T:SharpDX.Direct3D9.EffectStateManager" /></strong>.</p> </dd></param>
  7998. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  7999. <remarks>
  8000. <p>The <strong><see cref="T:SharpDX.Direct3D9.EffectStateManager" /></strong> is a user-implemented interface that furnishes callbacks into an application for setting device state from an effect.</p>
  8001. </remarks>
  8002. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::SetStateManager']/*" />
  8003. <msdn-id>bb205833</msdn-id>
  8004. <unmanaged>HRESULT ID3DXEffect::SetStateManager([In] ID3DXEffectStateManager* pManager)</unmanaged>
  8005. <unmanaged-short>ID3DXEffect::SetStateManager</unmanaged-short>
  8006. </member>
  8007. <member name="M:SharpDX.Direct3D9.Effect.GetStateManager(SharpDX.Direct3D9.EffectStateManager@)">
  8008. <summary>
  8009. <p>Get the effect state manager.</p>
  8010. </summary>
  8011. <param name="managerOut"><dd> <p>Returns a reference to the state manager. See <strong><see cref="T:SharpDX.Direct3D9.EffectStateManager" /></strong>.</p> </dd></param>
  8012. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  8013. <remarks>
  8014. <p>The <strong><see cref="T:SharpDX.Direct3D9.EffectStateManager" /></strong> is a user-implemented interface that furnishes callbacks into an application for setting device state from an effect.</p>
  8015. </remarks>
  8016. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::GetStateManager']/*" />
  8017. <msdn-id>bb205828</msdn-id>
  8018. <unmanaged>HRESULT ID3DXEffect::GetStateManager([Out] ID3DXEffectStateManager** ppManager)</unmanaged>
  8019. <unmanaged-short>ID3DXEffect::GetStateManager</unmanaged-short>
  8020. </member>
  8021. <member name="M:SharpDX.Direct3D9.Effect.BeginParameterBlock">
  8022. <summary>
  8023. <p>Start capturing state changes in a parameter block.</p>
  8024. </summary>
  8025. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  8026. <remarks>
  8027. <p>Capture effect parameter state changes until EndParameterBlock is called. Effect parameters include any state changes outside of a pass. Delete parameter blocks if they are no longer needed by calling DeleteParameterBlock.</p>
  8028. </remarks>
  8029. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::BeginParameterBlock']/*" />
  8030. <msdn-id>bb205816</msdn-id>
  8031. <unmanaged>HRESULT ID3DXEffect::BeginParameterBlock()</unmanaged>
  8032. <unmanaged-short>ID3DXEffect::BeginParameterBlock</unmanaged-short>
  8033. </member>
  8034. <member name="M:SharpDX.Direct3D9.Effect.EndParameterBlock">
  8035. <summary>
  8036. <p>Stop capturing effect parameter state changes.</p>
  8037. </summary>
  8038. <returns><p>Returns a handle to the parameter state block.</p></returns>
  8039. <remarks>
  8040. <p>All effect parameters that change state (after calling BeginParameterBlock and before calling EndParameterBlock) will be saved in an effect parameter state block. Use ApplyParameterBlock to apply this block of state changes to the effect system. Once you are finished with a state block use DeleteParameterBlock to free the memory.</p>
  8041. </remarks>
  8042. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::EndParameterBlock']/*" />
  8043. <msdn-id>bb205822</msdn-id>
  8044. <unmanaged>D3DXHANDLE ID3DXEffect::EndParameterBlock()</unmanaged>
  8045. <unmanaged-short>ID3DXEffect::EndParameterBlock</unmanaged-short>
  8046. </member>
  8047. <member name="M:SharpDX.Direct3D9.Effect.ApplyParameterBlock(SharpDX.Direct3D9.EffectHandle)">
  8048. <summary>
  8049. <p>Apply the values in a state block to the current effect system state.</p>
  8050. </summary>
  8051. <param name="hParameterBlock"><dd> <p>A handle to the parameter block. This is the handle returned by <strong><see cref="M:SharpDX.Direct3D9.Effect.EndParameterBlock" /></strong>.</p> </dd></param>
  8052. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  8053. <remarks>
  8054. <p>Capture effect parameter state changes in a parameter block by calling BeginParameterBlock; stop capturing state changes by calling EndParameterBlock. These state changes include any effect parameter changes that occur inside of a technique (including those outside of a pass). Once you are done with the parameter block, call DeleteParameterBlock to recover memory.</p>
  8055. </remarks>
  8056. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::ApplyParameterBlock']/*" />
  8057. <msdn-id>bb205814</msdn-id>
  8058. <unmanaged>HRESULT ID3DXEffect::ApplyParameterBlock([In] D3DXHANDLE hParameterBlock)</unmanaged>
  8059. <unmanaged-short>ID3DXEffect::ApplyParameterBlock</unmanaged-short>
  8060. </member>
  8061. <member name="M:SharpDX.Direct3D9.Effect.DeleteParameterBlock(SharpDX.Direct3D9.EffectHandle)">
  8062. <summary>
  8063. <p>Delete a parameter block.</p>
  8064. </summary>
  8065. <param name="hParameterBlock"><dd> <p>A handle to the parameter block. This is the handle returned by <strong><see cref="M:SharpDX.Direct3D9.Effect.EndParameterBlock" /></strong>.</p> </dd></param>
  8066. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  8067. <remarks>
  8068. <p>Parameter blocks are blocks of effect states. Use a parameter block to record state changes so that they can be applied later on with a single API call. When no longer needed, delete the parameter block to reduce memory usage.</p>
  8069. </remarks>
  8070. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::DeleteParameterBlock']/*" />
  8071. <msdn-id>bb205820</msdn-id>
  8072. <unmanaged>HRESULT ID3DXEffect::DeleteParameterBlock([In] D3DXHANDLE hParameterBlock)</unmanaged>
  8073. <unmanaged-short>ID3DXEffect::DeleteParameterBlock</unmanaged-short>
  8074. </member>
  8075. <member name="M:SharpDX.Direct3D9.Effect.Clone(SharpDX.Direct3D9.Device)">
  8076. <summary>
  8077. <p>Creates a copy of an effect.</p>
  8078. </summary>
  8079. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the effect. </p> </dd></param>
  8080. <returns><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Effect" /></strong> interface, containing the cloned effect. </p> </dd></returns>
  8081. <remarks>
  8082. <p><strong>Note</strong>??This function will not clone an effect if the user specifies <see cref="F:SharpDX.Direct3D9.FX.NotCloneable" /> during effect creation.</p><p>To update shared and non-shared parameters in an active technique of a cloned effect, see <strong><see cref="M:SharpDX.Direct3D9.Effect.CommitChanges" /></strong>.</p>
  8083. </remarks>
  8084. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::CloneEffect']/*" />
  8085. <msdn-id>bb205818</msdn-id>
  8086. <unmanaged>HRESULT ID3DXEffect::CloneEffect([In] IDirect3DDevice9* pDevice,[Out] ID3DXEffect** ppEffect)</unmanaged>
  8087. <unmanaged-short>ID3DXEffect::CloneEffect</unmanaged-short>
  8088. </member>
  8089. <member name="M:SharpDX.Direct3D9.Effect.SetRawValue(SharpDX.Direct3D9.EffectHandle,System.IntPtr,System.Int32,System.Int32)">
  8090. <summary>
  8091. <p>Set a contiguous range of shader constants with a memory copy.</p>
  8092. </summary>
  8093. <param name="hParameter"><dd> <p>Handle to the value to set, or the name of the value passed in as a string. Passing in a handle is more efficient. See Handles (Direct3D 9). </p> </dd></param>
  8094. <param name="dataRef"><dd> <p>Pointer to a buffer containing the data to be set. SetRawValue checks for valid memory, but does not do any checking for valid data.</p> </dd></param>
  8095. <param name="byteOffset"><dd> <p>Number of bytes between the beginning of the effect data and the beginning of the effect constants you are going to set.</p> </dd></param>
  8096. <param name="bytes"><dd> <p>The size of the buffer to be set, in bytes.</p> </dd></param>
  8097. <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:E_INVALIDCALL.</p></returns>
  8098. <remarks>
  8099. <p>SetRawValue is a very fast way to set effect constants since it performs a memory copy without performing validation or any data conversion (like converting a row-major matrix to a column-major matrix). Use SetRawValue to set a series of contiguous effect constants. For instance, you could set an array of twenty matrices with 20 calls to <strong><see cref="M:SharpDX.Direct3D9.BaseEffect.SetMatrix(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@)" /></strong> or by using a single SetRawValue.</p><p>All values are expected to be either matrix4x4s or float4s and all matrices are expected to be in column-major order. Int or float values are cast into a float4; therefore, it is highly recommended that you use SetRawValue with only float4 or matrix4x4 data.</p>
  8100. </remarks>
  8101. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffect::SetRawValue']/*" />
  8102. <msdn-id>bb205832</msdn-id>
  8103. <unmanaged>HRESULT ID3DXEffect::SetRawValue([In] D3DXHANDLE hParameter,[In] const void* pData,[In] unsigned int ByteOffset,[In] unsigned int Bytes)</unmanaged>
  8104. <unmanaged-short>ID3DXEffect::SetRawValue</unmanaged-short>
  8105. </member>
  8106. <member name="T:SharpDX.Direct3D9.EffectCompiler">
  8107. <summary>
  8108. <p>The <strong><see cref="T:SharpDX.Direct3D9.EffectCompiler" /></strong> interface compiles an effect from a function or from a vertex shader.</p>
  8109. </summary>
  8110. <remarks>
  8111. <p>The <see cref="T:SharpDX.Direct3D9.EffectCompiler" /> interface is obtained by calling <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectCompiler(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectCompiler,SharpDX.Direct3D.Blob@)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectCompilerFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectCompiler@,SharpDX.Direct3D.Blob@)" /></strong>, or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectCompilerFromResourceW(System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectCompiler@,SharpDX.Direct3D.Blob@)" /></strong>.</p><p>The LPD3DXEFFECTCOMPILER type is defined as a reference to this interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.EffectCompiler" /> <see cref="T:SharpDX.Direct3D9.EffectCompiler" />;
  8112. typedef interface <see cref="T:SharpDX.Direct3D9.EffectCompiler" /> *LPD3DXEFFECTCOMPILER;
  8113. </pre>
  8114. </remarks>
  8115. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectCompiler']/*" />
  8116. <msdn-id>bb205789</msdn-id>
  8117. <unmanaged>ID3DXEffectCompiler</unmanaged>
  8118. <unmanaged-short>ID3DXEffectCompiler</unmanaged-short>
  8119. </member>
  8120. <member name="M:SharpDX.Direct3D9.EffectCompiler.#ctor(System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,SharpDX.Direct3D9.ShaderFlags)">
  8121. <summary>
  8122. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.EffectCompiler"/> class.
  8123. </summary>
  8124. <param name="data">The data.</param>
  8125. <param name="defines">The defines.</param>
  8126. <param name="includeFile">The include file.</param>
  8127. <param name="flags">The flags.</param>
  8128. <unmanaged>HRESULT D3DXCreateEffectCompiler([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXEffectCompiler** ppCompiler,[In] ID3DXBuffer** ppParseErrors)</unmanaged>
  8129. </member>
  8130. <member name="M:SharpDX.Direct3D9.EffectCompiler.CompileEffect(SharpDX.Direct3D9.ShaderFlags)">
  8131. <summary>
  8132. Compile an effect.
  8133. </summary>
  8134. <param name="flags">The flags.</param>
  8135. <exception cref="T:SharpDX.CompilationException">If a compilation errors occurs</exception>
  8136. <returns>Buffer containing the compiled effect.</returns>
  8137. <unmanaged>HRESULT ID3DXEffectCompiler::CompileEffect([In] unsigned int Flags,[In] ID3DXBuffer** ppEffect,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  8138. </member>
  8139. <member name="M:SharpDX.Direct3D9.EffectCompiler.CompileShader(SharpDX.Direct3D9.EffectHandle,System.String,SharpDX.Direct3D9.ShaderFlags)">
  8140. <summary>
  8141. Compiles a shader from an effect that contains one or more functions.
  8142. </summary>
  8143. <param name="functionHandle">The function handle.</param>
  8144. <param name="target">The target.</param>
  8145. <param name="flags">The flags.</param>
  8146. <exception cref="T:SharpDX.CompilationException">If a compilation errors occurs</exception>
  8147. <returns>The bytecode of the effect.</returns>
  8148. <unmanaged>HRESULT ID3DXEffectCompiler::CompileShader([In] D3DXHANDLE hFunction,[In] const char* pTarget,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  8149. </member>
  8150. <member name="M:SharpDX.Direct3D9.EffectCompiler.CompileShader(SharpDX.Direct3D9.EffectHandle,System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.ConstantTable@)">
  8151. <summary>
  8152. Compiles a shader from an effect that contains one or more functions.
  8153. </summary>
  8154. <param name="functionHandle">The function handle.</param>
  8155. <param name="target">The target.</param>
  8156. <param name="flags">The flags.</param>
  8157. <param name="constantTable">The constant table.</param>
  8158. <exception cref="T:SharpDX.CompilationException">If a compilation errors occurs</exception>
  8159. <returns>The bytecode of the effect.</returns>
  8160. <unmanaged>HRESULT ID3DXEffectCompiler::CompileShader([In] D3DXHANDLE hFunction,[In] const char* pTarget,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  8161. </member>
  8162. <member name="M:SharpDX.Direct3D9.EffectCompiler.FromFile(System.String,SharpDX.Direct3D9.ShaderFlags)">
  8163. <summary>
  8164. Creates an effect compiler from a file on disk containing an ASCII effect description .
  8165. </summary>
  8166. <param name="fileName">Name of the file.</param>
  8167. <param name="flags">The flags.</param>
  8168. <returns>
  8169. An instance of <see cref="T:SharpDX.Direct3D9.EffectCompiler"/>
  8170. </returns>
  8171. <unmanaged>HRESULT D3DXCreateEffectCompiler([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[Out, Fast] ID3DXEffectCompiler** ppCompiler,[In] ID3DXBuffer** ppParseErrors)</unmanaged>
  8172. </member>
  8173. <member name="M:SharpDX.Direct3D9.EffectCompiler.FromFile(System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,SharpDX.Direct3D9.ShaderFlags)">
  8174. <summary>
  8175. Creates an effect compiler from a file on disk containing an ASCII effect description .
  8176. </summary>
  8177. <param name="fileName">Name of the file.</param>
  8178. <param name="defines">The defines.</param>
  8179. <param name="includeFile">The include file.</param>
  8180. <param name="flags">The flags.</param>
  8181. <returns>
  8182. An instance of <see cref="T:SharpDX.Direct3D9.EffectCompiler"/>
  8183. </returns>
  8184. <unmanaged>HRESULT D3DXCreateEffectCompiler([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[Out, Fast] ID3DXEffectCompiler** ppCompiler,[In] ID3DXBuffer** ppParseErrors)</unmanaged>
  8185. </member>
  8186. <member name="M:SharpDX.Direct3D9.EffectCompiler.FromMemory(System.Byte[],SharpDX.Direct3D9.ShaderFlags)">
  8187. <summary>
  8188. Creates an effect compiler from a memory buffer containing an ASCII effect description .
  8189. </summary>
  8190. <param name="data">The data.</param>
  8191. <param name="flags">The flags.</param>
  8192. <returns>
  8193. An instance of <see cref="T:SharpDX.Direct3D9.EffectCompiler"/>
  8194. </returns>
  8195. <unmanaged>HRESULT D3DXCreateEffectCompiler([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[Out, Fast] ID3DXEffectCompiler** ppCompiler,[In] ID3DXBuffer** ppParseErrors)</unmanaged>
  8196. </member>
  8197. <member name="M:SharpDX.Direct3D9.EffectCompiler.FromMemory(System.Byte[],SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,SharpDX.Direct3D9.ShaderFlags)">
  8198. <summary>
  8199. Creates an effect compiler from a memory buffer containing an ASCII effect description .
  8200. </summary>
  8201. <param name="data">The data.</param>
  8202. <param name="defines">The defines.</param>
  8203. <param name="includeFile">The include file.</param>
  8204. <param name="flags">The flags.</param>
  8205. <returns>
  8206. An instance of <see cref="T:SharpDX.Direct3D9.EffectCompiler"/>
  8207. </returns>
  8208. <unmanaged>HRESULT D3DXCreateEffectCompiler([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[Out, Fast] ID3DXEffectCompiler** ppCompiler,[In] ID3DXBuffer** ppParseErrors)</unmanaged>
  8209. </member>
  8210. <member name="M:SharpDX.Direct3D9.EffectCompiler.FromStream(System.IO.Stream,SharpDX.Direct3D9.ShaderFlags)">
  8211. <summary>
  8212. Creates an effect compiler from a stream containing an ASCII effect description .
  8213. </summary>
  8214. <param name="stream">The stream.</param>
  8215. <param name="flags">The flags.</param>
  8216. <returns>
  8217. An instance of <see cref="T:SharpDX.Direct3D9.EffectCompiler"/>
  8218. </returns>
  8219. <unmanaged>HRESULT D3DXCreateEffectCompiler([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[Out, Fast] ID3DXEffectCompiler** ppCompiler,[In] ID3DXBuffer** ppParseErrors)</unmanaged>
  8220. </member>
  8221. <member name="M:SharpDX.Direct3D9.EffectCompiler.FromStream(System.IO.Stream,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,SharpDX.Direct3D9.ShaderFlags)">
  8222. <summary>
  8223. Creates an effect compiler from a stream containing an ASCII effect description .
  8224. </summary>
  8225. <param name="stream">The stream.</param>
  8226. <param name="defines">The defines.</param>
  8227. <param name="includeFile">The include file.</param>
  8228. <param name="flags">The flags.</param>
  8229. <returns>An instance of <see cref="T:SharpDX.Direct3D9.EffectCompiler"/></returns>
  8230. <unmanaged>HRESULT D3DXCreateEffectCompiler([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[Out, Fast] ID3DXEffectCompiler** ppCompiler,[In] ID3DXBuffer** ppParseErrors)</unmanaged>
  8231. </member>
  8232. <member name="M:SharpDX.Direct3D9.EffectCompiler.#ctor(System.IntPtr)">
  8233. <summary>
  8234. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.EffectCompiler"/> class.
  8235. </summary>
  8236. <param name="nativePtr">The native pointer.</param>
  8237. </member>
  8238. <member name="M:SharpDX.Direct3D9.EffectCompiler.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.EffectCompiler">
  8239. <summary>
  8240. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.EffectCompiler"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  8241. </summary>
  8242. <param name="nativePointer">The native pointer.</param>
  8243. <returns>
  8244. The result of the conversion.
  8245. </returns>
  8246. </member>
  8247. <member name="M:SharpDX.Direct3D9.EffectCompiler.SetLiteral(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool)">
  8248. <summary>
  8249. <p>Toggles the literal status of a parameter. A literal parameter has a value that doesn't change during the lifetime of an effect.</p>
  8250. </summary>
  8251. <param name="hParameter"><dd> <p>Unique identifier to a parameter. See Handles (Direct3D 9).</p> </dd></param>
  8252. <param name="literal"><dd> <p>Set to <strong>TRUE</strong> to make the parameter a literal, and <strong><see cref="F:SharpDX.Result.False" /></strong> if the parameter can change value during the shader lifetime.</p> </dd></param>
  8253. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  8254. <remarks>
  8255. <p>This methods only changes whether the parameter is a literal or not. To change the value of a parameter, use a method like <strong><see cref="M:SharpDX.Direct3D9.BaseEffect.SetBool(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,System.Boolean)" /></strong>.</p><p>This function must be called before the effect is compiled. Here is an example of how one might use this function:</p><pre> LPD3DXEFFECTCOMPILER pEffectCompiler; char errors[1000]; <see cref="T:SharpDX.Result" /> hr; hr = <see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectCompilerFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectCompiler@,SharpDX.Direct3D.Blob@)" />("shader.fx", <c>null</c>, <c>null</c>, 0, &amp;pEffectCompiler, &amp;errors); //In the fx file, literalInt is declared as an int. //By calling this function, the compiler will treat //it as a literal (i.e. #define) hr = pEffectCompiler-&gt;SetLiteral("literalInt", TRUE); //create ten different variations of the same effect LPD3DXBUFFER pEffects[10]; LPD3DXBUFFER pErrors; for(int i = 0; i &lt; 10; ++i) { hr = pEffectCompiler-&gt;SetInt("literalInt", i); hr = pEffectCompiler-&gt;CompileEffect(0, &amp;pEffects[i], &amp;pErrors); }
  8256. </pre>
  8257. </remarks>
  8258. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectCompiler::SetLiteral']/*" />
  8259. <msdn-id>bb205793</msdn-id>
  8260. <unmanaged>HRESULT ID3DXEffectCompiler::SetLiteral([In] D3DXHANDLE hParameter,[In] BOOL Literal)</unmanaged>
  8261. <unmanaged-short>ID3DXEffectCompiler::SetLiteral</unmanaged-short>
  8262. </member>
  8263. <member name="M:SharpDX.Direct3D9.EffectCompiler.GetLiteral(SharpDX.Direct3D9.EffectHandle)">
  8264. <summary>
  8265. <p>Gets a literal status of a parameter. A literal parameter has a value that doesn't change during the lifetime of an effect.</p>
  8266. </summary>
  8267. <param name="hParameter"><dd> <p>Unique identifier to a parameter. See Handles (Direct3D 9).</p> </dd></param>
  8268. <returns><dd> <p>Returns True if the parameter is a literal, and False otherwise.</p> </dd></returns>
  8269. <remarks>
  8270. <p>This methods only changes whether the parameter is a literal or not. To change the value of a parameter, use a method like <strong><see cref="M:SharpDX.Direct3D9.BaseEffect.SetBool(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.BaseEffect.SetValue(SharpDX.Direct3D9.EffectHandle,System.Boolean)" /></strong>.</p>
  8271. </remarks>
  8272. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectCompiler::GetLiteral']/*" />
  8273. <msdn-id>bb205792</msdn-id>
  8274. <unmanaged>HRESULT ID3DXEffectCompiler::GetLiteral([In] D3DXHANDLE hParameter,[Out] BOOL* pLiteral)</unmanaged>
  8275. <unmanaged-short>ID3DXEffectCompiler::GetLiteral</unmanaged-short>
  8276. </member>
  8277. <member name="M:SharpDX.Direct3D9.EffectCompiler.CompileEffect(System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)">
  8278. <summary>
  8279. <p>Compile an effect.</p>
  8280. </summary>
  8281. <param name="flags"><dd> <p>Compile options identified by various flags. The Direct3D 10 HLSL compiler is now the default. See <see cref="T:SharpDX.Direct3D9.ShaderFlags" /> Flags for details.</p> </dd></param>
  8282. <param name="effectOut"><dd> <p>Buffer containing the compiled effect. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  8283. <param name="errorMsgsOut"><dd> <p>Buffer containing at least the first compile error message that occurred. This includes effect compiler errors and high-level language compile errors. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  8284. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />.</p><p>If the arguments are invalid, the method will return <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p><p>If the method fails, the return value will be E_FAIL.</p></returns>
  8285. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectCompiler::CompileEffect']/*" />
  8286. <msdn-id>bb205790</msdn-id>
  8287. <unmanaged>HRESULT ID3DXEffectCompiler::CompileEffect([In] unsigned int Flags,[In] ID3DXBuffer** ppEffect,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  8288. <unmanaged-short>ID3DXEffectCompiler::CompileEffect</unmanaged-short>
  8289. </member>
  8290. <member name="M:SharpDX.Direct3D9.EffectCompiler.CompileShader(SharpDX.Direct3D9.EffectHandle,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)">
  8291. <summary>
  8292. <p>Compiles a shader from an effect that contains one or more functions.</p>
  8293. </summary>
  8294. <param name="hFunction"><dd> <p>Unique identifier to the function to be compiled. This value must not be <strong><c>null</c></strong>. See Handles (Direct3D 9).</p> </dd></param>
  8295. <param name="targetRef"><dd> <p>Pointer to a shader profile which determines the shader instruction set. See <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetVertexShaderProfile(SharpDX.Direct3D9.Device)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetPixelShaderProfile(SharpDX.Direct3D9.Device)" /></strong> for a list of the profiles available.</p> </dd></param>
  8296. <param name="flags"><dd> <p>Compile options identified by various flags. The Direct3D 10 HLSL compiler is now the default. See <see cref="T:SharpDX.Direct3D9.ShaderFlags" /> Flags for details.</p> </dd></param>
  8297. <param name="shaderOut"><dd> <p>Buffer containing the compiled shader. The compiler shader is an array of DWORDs. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  8298. <param name="errorMsgsOut"><dd> <p>Buffer containing at least the first compile error message that occurred. This includes effect compiler errors and high-level language compile errors. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  8299. <param name="constantTableOut"><dd> <p>Returns an <strong><see cref="T:SharpDX.Direct3D9.ConstantTable" /></strong> interface, which can be used to access shader constants. This value can be <strong><c>null</c></strong>. If you compile your application as large address aware (that is, you use the /LARGEADDRESSAWARE linker option to handle addresses larger than 2 GB), you cannot use this parameter and must set it to <strong><c>null</c></strong>. Instead, you must use the <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetShaderConstantTableEx(System.IntPtr,System.Int32,SharpDX.Direct3D9.ConstantTable@)" /></strong> function to retrieve the shader-constant table that is embedded inside the shader. In this <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetShaderConstantTableEx(System.IntPtr,System.Int32,SharpDX.Direct3D9.ConstantTable@)" /></strong> call, you must pass the <strong>D3DXCONSTTABLE_LARGEADDRESSAWARE</strong> flag to the <em>Flags</em> parameter to specify to access up to 4 GB of virtual address space.</p> </dd></param>
  8300. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />.</p><p>If the arguments are invalid, the method will return <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p><p>If the method fails, the return value will be E_FAIL.</p></returns>
  8301. <remarks>
  8302. <p>Targets can be specified for vertex shaders, pixel shaders, and texture fill functions.</p><table> <tr><td>Vertex shader targets</td><td>vs_1_1, vs_2_0, vs_2_sw, vs_3_0</td></tr> <tr><td>Pixel shader targets</td><td>ps_1_1, ps_1_2, ps_1_3, ps_1_4, ps_2_0, ps_2_sw, ps_3_0</td></tr> <tr><td>Texture fill targets</td><td>tx_0, tx_1</td></tr> </table><p>?</p><p>This method compiles a shader from a function that is written in a C-like language. For more information, see HLSL.</p>
  8303. </remarks>
  8304. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectCompiler::CompileShader']/*" />
  8305. <msdn-id>bb205791</msdn-id>
  8306. <unmanaged>HRESULT ID3DXEffectCompiler::CompileShader([In] D3DXHANDLE hFunction,[In] const char* pTarget,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  8307. <unmanaged-short>ID3DXEffectCompiler::CompileShader</unmanaged-short>
  8308. </member>
  8309. <member name="T:SharpDX.Direct3D9.EffectDefault">
  8310. <summary>
  8311. No documentation.
  8312. </summary>
  8313. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECTDEFAULT']/*" />
  8314. <msdn-id>bb280319</msdn-id>
  8315. <unmanaged>D3DXEFFECTDEFAULT</unmanaged>
  8316. <unmanaged-short>D3DXEFFECTDEFAULT</unmanaged-short>
  8317. </member>
  8318. <member name="P:SharpDX.Direct3D9.EffectDefault.Value">
  8319. <summary>
  8320. Gets the value.
  8321. </summary>
  8322. </member>
  8323. <member name="F:SharpDX.Direct3D9.EffectDefault.ParameterName">
  8324. <summary>
  8325. No documentation.
  8326. </summary>
  8327. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECTDEFAULT::pParamName']/*" />
  8328. <msdn-id>bb280319</msdn-id>
  8329. <unmanaged>char* pParamName</unmanaged>
  8330. <unmanaged-short>char pParamName</unmanaged-short>
  8331. </member>
  8332. <member name="F:SharpDX.Direct3D9.EffectDefault.Type">
  8333. <summary>
  8334. No documentation.
  8335. </summary>
  8336. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECTDEFAULT::Type']/*" />
  8337. <msdn-id>bb280319</msdn-id>
  8338. <unmanaged>D3DXEFFECTDEFAULTTYPE Type</unmanaged>
  8339. <unmanaged-short>D3DXEFFECTDEFAULTTYPE Type</unmanaged-short>
  8340. </member>
  8341. <member name="F:SharpDX.Direct3D9.EffectDefault.BufferSize">
  8342. <summary>
  8343. No documentation.
  8344. </summary>
  8345. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECTDEFAULT::NumBytes']/*" />
  8346. <msdn-id>bb280319</msdn-id>
  8347. <unmanaged>unsigned int NumBytes</unmanaged>
  8348. <unmanaged-short>unsigned int NumBytes</unmanaged-short>
  8349. </member>
  8350. <member name="F:SharpDX.Direct3D9.EffectDefault.BufferPointer">
  8351. <summary>
  8352. No documentation.
  8353. </summary>
  8354. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECTDEFAULT::pValue']/*" />
  8355. <msdn-id>bb280319</msdn-id>
  8356. <unmanaged>void* pValue</unmanaged>
  8357. <unmanaged-short>void pValue</unmanaged-short>
  8358. </member>
  8359. <member name="T:SharpDX.Direct3D9.EffectHandle">
  8360. <summary>
  8361. EffectHandle used to identify a shader parameter.
  8362. </summary>
  8363. </member>
  8364. <member name="F:SharpDX.Direct3D9.EffectHandle.UseCacheStrings">
  8365. <summary>
  8366. Defines the behavior for caching strings. True by default.
  8367. </summary>
  8368. </member>
  8369. <member name="F:SharpDX.Direct3D9.EffectHandle.AllocatedStrings">
  8370. <summary>
  8371. Cache of allocated strings.
  8372. </summary>
  8373. </member>
  8374. <member name="F:SharpDX.Direct3D9.EffectHandle.pointer">
  8375. <summary>
  8376. Pointer to the handle or the allocated string.
  8377. </summary>
  8378. </member>
  8379. <member name="F:SharpDX.Direct3D9.EffectHandle.isStringToRelease">
  8380. <summary>
  8381. If the <see cref="F:SharpDX.Direct3D9.EffectHandle.pointer"/> is a custom string not cached that needs to be released by this instance.
  8382. </summary>
  8383. </member>
  8384. <member name="M:SharpDX.Direct3D9.EffectHandle.#ctor">
  8385. <summary>
  8386. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.EffectHandle"/> class.
  8387. </summary>
  8388. </member>
  8389. <member name="M:SharpDX.Direct3D9.EffectHandle.#ctor(System.IntPtr)">
  8390. <summary>
  8391. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.EffectHandle"/> class.
  8392. </summary>
  8393. <param name="pointer">
  8394. The pointer.
  8395. </param>
  8396. </member>
  8397. <member name="M:SharpDX.Direct3D9.EffectHandle.#ctor(System.Void*)">
  8398. <summary>
  8399. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.EffectHandle"/> class.
  8400. </summary>
  8401. <param name="pointer">
  8402. The pointer.
  8403. </param>
  8404. </member>
  8405. <member name="M:SharpDX.Direct3D9.EffectHandle.#ctor(System.String)">
  8406. <summary>
  8407. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.EffectHandle"/> class.
  8408. </summary>
  8409. <param name="name">
  8410. The name.
  8411. </param>
  8412. </member>
  8413. <member name="M:SharpDX.Direct3D9.EffectHandle.ClearCache">
  8414. <summary>
  8415. Clears the cache.
  8416. </summary>
  8417. <remarks>
  8418. By default, this class is caching all strings that are implicitly used as an effect handle.
  8419. Use this method in order to deallocate all strings that were previously cached.
  8420. </remarks>
  8421. </member>
  8422. <member name="M:SharpDX.Direct3D9.EffectHandle.__MarshalFree(SharpDX.Direct3D9.EffectHandle@,SharpDX.Direct3D9.EffectHandle.__Native@)">
  8423. <summary>
  8424. marshal free.
  8425. </summary>
  8426. <param name="__from">The __from.</param>
  8427. <param name="ref">The @ref.</param>
  8428. </member>
  8429. <member name="M:SharpDX.Direct3D9.EffectHandle.__MarshalFrom(SharpDX.Direct3D9.EffectHandle@,SharpDX.Direct3D9.EffectHandle.__Native@)">
  8430. <summary>
  8431. Method to marshal from native to managed struct
  8432. </summary>
  8433. <param name="__from">The __from.</param>
  8434. <param name="ref">The @ref.</param>
  8435. </member>
  8436. <member name="M:SharpDX.Direct3D9.EffectHandle.__MarshalTo(SharpDX.Direct3D9.EffectHandle@,SharpDX.Direct3D9.EffectHandle.__Native@)">
  8437. <summary>
  8438. Method to marshal from managed struct tot native
  8439. </summary>
  8440. <param name="__from">The __from.</param>
  8441. <param name="ref">The @ref.</param>
  8442. </member>
  8443. <member name="M:SharpDX.Direct3D9.EffectHandle.Dispose(System.Boolean)">
  8444. <inheritdoc/>
  8445. </member>
  8446. <member name="M:SharpDX.Direct3D9.EffectHandle.AllocateString(System.String)">
  8447. <summary>
  8448. Allocates a string.
  8449. </summary>
  8450. <param name="name">
  8451. The name.
  8452. </param>
  8453. <returns>
  8454. Pointer to the allocated string
  8455. </returns>
  8456. </member>
  8457. <member name="M:SharpDX.Direct3D9.EffectHandle.op_Implicit(SharpDX.Direct3D9.EffectHandle)~System.IntPtr">
  8458. <summary>
  8459. Performs an implicit conversion from <see cref="T:SharpDX.Direct3D9.EffectHandle"/> to <see cref="T:System.IntPtr"/>.
  8460. </summary>
  8461. <param name="value">The value.</param>
  8462. <returns>
  8463. The result of the conversion.
  8464. </returns>
  8465. </member>
  8466. <member name="M:SharpDX.Direct3D9.EffectHandle.op_Implicit(System.IntPtr)~SharpDX.Direct3D9.EffectHandle">
  8467. <summary>
  8468. Performs an implicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.EffectHandle"/>.
  8469. </summary>
  8470. <param name="value">The value.</param>
  8471. <returns>
  8472. The result of the conversion.
  8473. </returns>
  8474. </member>
  8475. <member name="M:SharpDX.Direct3D9.EffectHandle.op_Implicit(SharpDX.Direct3D9.EffectHandle)~System.Void*">
  8476. <summary>
  8477. Performs an implicit conversion from <see cref="T:SharpDX.Direct3D9.EffectHandle"/> to raw pointer"/>.
  8478. </summary>
  8479. <param name="value">The value.</param>
  8480. <returns>
  8481. The result of the conversion.
  8482. </returns>
  8483. </member>
  8484. <member name="M:SharpDX.Direct3D9.EffectHandle.op_Implicit(System.Void*)~SharpDX.Direct3D9.EffectHandle">
  8485. <summary>
  8486. Performs an implicit conversion from raw pointer to <see cref="T:SharpDX.Direct3D9.EffectHandle"/>.
  8487. </summary>
  8488. <param name="value">The value.</param>
  8489. <returns>
  8490. The result of the conversion.
  8491. </returns>
  8492. </member>
  8493. <member name="M:SharpDX.Direct3D9.EffectHandle.op_Implicit(System.String)~SharpDX.Direct3D9.EffectHandle">
  8494. <summary>
  8495. Performs an implicit conversion from <see cref="T:System.String"/> to <see cref="T:SharpDX.Direct3D9.EffectHandle"/>.
  8496. </summary>
  8497. <param name="name">The name.</param>
  8498. <returns>
  8499. The result of the conversion.
  8500. </returns>
  8501. </member>
  8502. <member name="T:SharpDX.Direct3D9.EffectInstance">
  8503. <summary>
  8504. <p>Data type for managing a set of default effect parameters.</p>
  8505. </summary>
  8506. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECTINSTANCE']/*" />
  8507. <msdn-id>bb172823</msdn-id>
  8508. <unmanaged>D3DXEFFECTINSTANCE</unmanaged>
  8509. <unmanaged-short>D3DXEFFECTINSTANCE</unmanaged-short>
  8510. </member>
  8511. <member name="F:SharpDX.Direct3D9.EffectInstance.EffectFilename">
  8512. <summary>
  8513. <dd> <p>Name of the effect file.</p> </dd>
  8514. </summary>
  8515. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECTINSTANCE::pEffectFilename']/*" />
  8516. <msdn-id>bb172823</msdn-id>
  8517. <unmanaged>char* pEffectFilename</unmanaged>
  8518. <unmanaged-short>char pEffectFilename</unmanaged-short>
  8519. </member>
  8520. <member name="F:SharpDX.Direct3D9.EffectInstance.DefaultCount">
  8521. <summary>
  8522. <dd> <p>Number of default parameters.</p> </dd>
  8523. </summary>
  8524. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECTINSTANCE::NumDefaults']/*" />
  8525. <msdn-id>bb172823</msdn-id>
  8526. <unmanaged>unsigned int NumDefaults</unmanaged>
  8527. <unmanaged-short>unsigned int NumDefaults</unmanaged-short>
  8528. </member>
  8529. <member name="F:SharpDX.Direct3D9.EffectInstance.DefaultPointer">
  8530. <summary>
  8531. <dd> <p>Pointer to an array of <strong><see cref="T:SharpDX.Direct3D9.EffectDefault" /></strong> elements, each of which contains an effect parameter.</p> </dd>
  8532. </summary>
  8533. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECTINSTANCE::pDefaults']/*" />
  8534. <msdn-id>bb172823</msdn-id>
  8535. <unmanaged>D3DXEFFECTDEFAULT* pDefaults</unmanaged>
  8536. <unmanaged-short>D3DXEFFECTDEFAULT pDefaults</unmanaged-short>
  8537. </member>
  8538. <member name="T:SharpDX.Direct3D9.EffectPool">
  8539. <summary>
  8540. <p>Applications use the <strong><see cref="T:SharpDX.Direct3D9.EffectPool" /></strong> interface to identify parameters that are going to be shared across effects. See parameter sharing in Cloning and Sharing (Direct3D 9). This interface has no methods.</p>
  8541. </summary>
  8542. <remarks>
  8543. <p>The <see cref="T:SharpDX.Direct3D9.EffectPool" /> interface is obtained by calling <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectPool(SharpDX.Direct3D9.EffectPool)" /></strong>.</p><p>The LPD3DXEFFECTPOOL type is defined as a reference to this interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.EffectPool" /> <see cref="T:SharpDX.Direct3D9.EffectPool" />;
  8544. typedef interface <see cref="T:SharpDX.Direct3D9.EffectPool" /> *LPD3DXEFFECTPOOL;
  8545. </pre>
  8546. </remarks>
  8547. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectPool']/*" />
  8548. <msdn-id>bb205794</msdn-id>
  8549. <unmanaged>ID3DXEffectPool</unmanaged>
  8550. <unmanaged-short>ID3DXEffectPool</unmanaged-short>
  8551. </member>
  8552. <member name="M:SharpDX.Direct3D9.EffectPool.#ctor">
  8553. <summary>
  8554. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.EffectPool"/> class.
  8555. </summary>
  8556. </member>
  8557. <member name="M:SharpDX.Direct3D9.EffectPool.#ctor(System.IntPtr)">
  8558. <summary>
  8559. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.EffectPool"/> class.
  8560. </summary>
  8561. <param name="nativePtr">The native pointer.</param>
  8562. </member>
  8563. <member name="M:SharpDX.Direct3D9.EffectPool.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.EffectPool">
  8564. <summary>
  8565. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.EffectPool"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  8566. </summary>
  8567. <param name="nativePointer">The native pointer.</param>
  8568. <returns>
  8569. The result of the conversion.
  8570. </returns>
  8571. </member>
  8572. <member name="T:SharpDX.Direct3D9.Fill2DCallback">
  8573. <summary>
  8574. A callback function used to fill 2D texture.
  8575. </summary>
  8576. <param name="coordinate">Texture coordinate being sampled.</param>
  8577. <param name="texelSize">Dimensions of the texel.</param>
  8578. <returns>The desired color of the specified texel.</returns>
  8579. <unmanaged>typedef VOID (WINAPI *LPD3DXFILL2D)(D3DXVECTOR4 *pOut, CONST D3DXVECTOR2 *pTexCoord, CONST D3DXVECTOR2 *pTexelSize, LPVOID pData);</unmanaged>
  8580. </member>
  8581. <member name="T:SharpDX.Direct3D9.Fill3DCallback">
  8582. <summary>
  8583. A callback function used to fill 3D texture.
  8584. </summary>
  8585. <param name="coordinate">Texture coordinate being sampled.</param>
  8586. <param name="texelSize">Dimensions of the texel.</param>
  8587. <returns>The desired color of the specified texel.</returns>
  8588. <unmanaged>typedef VOID (WINAPI *LPD3DXFILL2D)(D3DXVECTOR4 *pOut, CONST D3DXVECTOR2 *pTexCoord, CONST D3DXVECTOR2 *pTexelSize, LPVOID pData);</unmanaged>
  8589. </member>
  8590. <member name="T:SharpDX.Direct3D9.FillCallbackHelper">
  8591. <summary>
  8592. Fill callback helper class.
  8593. </summary>
  8594. </member>
  8595. <member name="F:SharpDX.Direct3D9.FillCallbackHelper.Native2DCallbackPtr">
  8596. <summary>
  8597. Pointer to the native callback for 2D function
  8598. </summary>
  8599. </member>
  8600. <member name="F:SharpDX.Direct3D9.FillCallbackHelper.Native3DCallbackPtr">
  8601. <summary>
  8602. Pointer to the native callback for 3D function
  8603. </summary>
  8604. </member>
  8605. <member name="T:SharpDX.Direct3D9.Font">
  8606. <summary>
  8607. <p>The <see cref="T:SharpDX.Direct3D9.Font" /> interface encapsulates the textures and resources needed to render a specific font on a specific device.</p>
  8608. </summary>
  8609. <remarks>
  8610. <p>The <strong><see cref="T:SharpDX.Direct3D9.Font" /></strong> interface is obtained by calling <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateFont(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32,System.Int32,System.Int32,System.Int32,System.String,SharpDX.Direct3D9.Font)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateFontIndirect(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.FontDescription@,SharpDX.Direct3D9.Font)" /></strong>.</p><p>The LPD3DXFONT type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.Font" /></strong> interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.Font" /> <see cref="T:SharpDX.Direct3D9.Font" />;
  8611. typedef interface <see cref="T:SharpDX.Direct3D9.Font" /> *LPD3DXFONT;
  8612. </pre>
  8613. </remarks>
  8614. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont']/*" />
  8615. <msdn-id>bb173961</msdn-id>
  8616. <unmanaged>ID3DXFont</unmanaged>
  8617. <unmanaged-short>ID3DXFont</unmanaged-short>
  8618. </member>
  8619. <member name="M:SharpDX.Direct3D9.Font.#ctor(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.FontDescription)">
  8620. <summary>
  8621. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Font"/> class.
  8622. </summary>
  8623. <param name="device">The device.</param>
  8624. <param name="fontDescription">The font description.</param>
  8625. </member>
  8626. <member name="M:SharpDX.Direct3D9.Font.#ctor(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.FontWeight,System.Int32,System.Boolean,SharpDX.Direct3D9.FontCharacterSet,SharpDX.Direct3D9.FontPrecision,SharpDX.Direct3D9.FontQuality,SharpDX.Direct3D9.FontPitchAndFamily,System.String)">
  8627. <summary>
  8628. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Font"/> class.
  8629. </summary>
  8630. <param name="device">The device.</param>
  8631. <param name="height">The height.</param>
  8632. <param name="width">The width.</param>
  8633. <param name="weight">The weight.</param>
  8634. <param name="mipLevels">The mip levels.</param>
  8635. <param name="isItalic">if set to <c>true</c> [is italic].</param>
  8636. <param name="characterSet">The character set.</param>
  8637. <param name="precision">The precision.</param>
  8638. <param name="quality">The quality.</param>
  8639. <param name="pitchAndFamily">The pitch and family.</param>
  8640. <param name="faceName">Name of the face.</param>
  8641. </member>
  8642. <member name="M:SharpDX.Direct3D9.Font.PreloadText(System.String)">
  8643. <summary>
  8644. Load formatted text into video memory to improve the efficiency of rendering to the device. This method supports ANSI and Unicode strings.
  8645. </summary>
  8646. <remarks>
  8647. 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}}.
  8648. </remarks>
  8649. <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>
  8650. <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>
  8651. <unmanaged>HRESULT ID3DX10Font::PreloadTextW([None] const wchar_t* pString,[None] int Count)</unmanaged>
  8652. </member>
  8653. <member name="M:SharpDX.Direct3D9.Font.DrawText(SharpDX.Direct3D9.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.FontDrawFlags,SharpDX.Mathematics.Interop.RawColorBGRA)">
  8654. <summary>
  8655. Draws formatted text.
  8656. </summary>
  8657. <param name="sprite"><para>Pointer to an <see cref="T:SharpDX.Direct3D9.Sprite"/> object that contains the string. Can be <c>null</c>, in which case Direct3D will render the string with its own sprite object. To improve efficiency, a sprite object should be specified if DrawText is to be called more than once in a row.</para></param>
  8658. <param name="text"><para>Pointer to a string to draw. If the Count parameter is -1, the string must be null-terminated.</para></param>
  8659. <param name="rect"><para>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. 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.</para></param>
  8660. <param name="drawFlags"><para>Specifies the method of formatting the text. It can be any combination of the following values:</para> ValueMeaning <list> <item><term>DT_BOTTOM</term> </item></list> <para>Justifies the text to the bottom of the rectangle. This value must be combined with DT_SINGLELINE.</para> <list> <item><term>DT_CALCRECT</term></item> </list> <para>Determines the width and height of the rectangle. If there are multiple lines of text, 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, DrawText modifies the right side of the rectangle so that it bounds the last character in the line. In either case, DrawText returns the height of the formatted text but does not draw the text.</para> <list> <item><term>DT_CENTER</term></item> </list> <para>Centers text horizontally in the rectangle.</para> <list> <item><term>DT_EXPANDTABS</term></item> </list> <para>Expands tab characters. The default number of characters per tab is eight.</para> <list> <item><term>DT_LEFT</term></item> </list> <para>Aligns text to the left.</para> <list> <item><term>DT_NOCLIP</term></item> </list> <para>Draws without clipping. DrawText is somewhat faster when DT_NOCLIP is used.</para> <list> <item><term>DT_RIGHT</term></item> </list> <para>Aligns text to the right.</para> <list> <item><term>DT_RTLREADING</term></item> </list> <para>Displays 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.</para> <list> <item><term>DT_SINGLELINE</term></item> </list> <para>Displays text on a single line only. Carriage returns and line feeds do not break the line.</para> <list> <item><term>DT_TOP</term></item> </list> <para>Top-justifies text.</para> <list> <item><term>DT_VCENTER</term></item> </list> <para>Centers text vertically (single line only).</para> <list> <item><term>DT_WORDBREAK</term></item> </list> <para>Breaks 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.</para> <para>?</para></param>
  8661. <param name="color"><para>Color of the text. For more information, see <see cref="T:SharpDX.Mathematics.Interop.RawColor4"/>.</para></param>
  8662. <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>
  8663. <remarks>
  8664. The parameters of this method are very similar to those of the GDI DrawText function.This method supports both ANSI and Unicode strings.This method must be called inside a BeginScene ... EndScene block. The only exception is when an application calls DrawText with DT_CALCRECT to calculate the size of a given block of text.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.
  8665. </remarks>
  8666. <unmanaged>int ID3DXFont::DrawTextW([In] ID3DXSprite* pSprite,[In] const wchar_t* pString,[In] int Count,[In] void* pRect,[In] unsigned int Format,[In] D3DCOLOR Color)</unmanaged>
  8667. </member>
  8668. <member name="M:SharpDX.Direct3D9.Font.DrawText(SharpDX.Direct3D9.Sprite,System.String,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA)">
  8669. <summary>
  8670. Draws formatted text.
  8671. </summary>
  8672. <param name="sprite">Pointer to an <see cref="T:SharpDX.Direct3D9.Sprite"/> object that contains the string. Can be <c>null</c>, in which case Direct3D will render the string with its own sprite object. To improve efficiency, a sprite object should be specified if DrawText is to be called more than once in a row.</param>
  8673. <param name="text">Pointer to a string to draw. If the Count parameter is -1, the string must be null-terminated.</param>
  8674. <param name="x">The x position to draw the text.</param>
  8675. <param name="y">The y position to draw the text.</param>
  8676. <param name="color">Color of the text. For more information, see <see cref="T:SharpDX.Mathematics.Interop.RawColor4"/>.</param>
  8677. <returns>
  8678. 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.
  8679. </returns>
  8680. <unmanaged>int ID3DXFont::DrawTextW([In] ID3DXSprite* pSprite,[In] const wchar_t* pString,[In] int Count,[In] void* pRect,[In] unsigned int Format,[In] D3DCOLOR Color)</unmanaged>
  8681. <remarks>
  8682. The parameters of this method are very similar to those of the GDI DrawText function.This method supports both ANSI and Unicode strings.This method must be called inside a BeginScene ... EndScene block. The only exception is when an application calls DrawText with DT_CALCRECT to calculate the size of a given block of text.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.
  8683. </remarks>
  8684. </member>
  8685. <member name="M:SharpDX.Direct3D9.Font.MeasureText(SharpDX.Direct3D9.Sprite,System.String,SharpDX.Direct3D9.FontDrawFlags)">
  8686. <summary>
  8687. Measures the specified sprite.
  8688. </summary>
  8689. <param name="sprite">Pointer to an <see cref="T:SharpDX.Direct3D9.Sprite"/> object that contains the string. Can be <c>null</c>, in which case Direct3D will render the string with its own sprite object. To improve efficiency, a sprite object should be specified if DrawText is to be called more than once in a row.</param>
  8690. <param name="text"><para>Pointer to a string to draw. If the Count parameter is -1, the string must be null-terminated.</para></param>
  8691. <param name="drawFlags"><para>Specifies the method of formatting the text. It can be any combination of the following values:</para> ValueMeaning <list> <item><term>DT_BOTTOM</term></item> </list> <para>Justifies the text to the bottom of the rectangle. This value must be combined with DT_SINGLELINE.</para> <list> <item><term>DT_CALCRECT</term></item> </list> <para>Determines the width and height of the rectangle. If there are multiple lines of text, 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, DrawText modifies the right side of the rectangle so that it bounds the last character in the line. In either case, DrawText returns the height of the formatted text but does not draw the text.</para> <list> <item><term>DT_CENTER</term></item> </list> <para>Centers text horizontally in the rectangle.</para> <list> <item><term>DT_EXPANDTABS</term></item> </list> <para>Expands tab characters. The default number of characters per tab is eight.</para> <list> <item><term>DT_LEFT</term></item> </list> <para>Aligns text to the left.</para> <list> <item><term>DT_NOCLIP</term></item> </list> <para>Draws without clipping. DrawText is somewhat faster when DT_NOCLIP is used.</para> <list> <item><term>DT_RIGHT</term></item> </list> <para>Aligns text to the right.</para> <list> <item><term>DT_RTLREADING</term></item> </list> <para>Displays 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.</para> <list> <item><term>DT_SINGLELINE</term></item> </list> <para>Displays text on a single line only. Carriage returns and line feeds do not break the line.</para> <list> <item><term>DT_TOP</term></item> </list> <para>Top-justifies text.</para> <list> <item><term>DT_VCENTER</term></item> </list> <para>Centers text vertically (single line only).</para> <list> <item><term>DT_WORDBREAK</term></item> </list> <para>Breaks 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.</para> <para>?</para></param>
  8692. <returns>Determines the width and height of the rectangle. If there are multiple lines of text, this function uses the width of the rectangle pointed to by the rect parameter and extends the base of the rectangle to bound the last line of text. If there is only one line of text, this method modifies the right side of the rectangle so that it bounds the last character in the line. </returns>
  8693. </member>
  8694. <member name="M:SharpDX.Direct3D9.Font.MeasureText(SharpDX.Direct3D9.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.FontDrawFlags)">
  8695. <summary>
  8696. Measures the specified sprite.
  8697. </summary>
  8698. <param name="sprite">Pointer to an <see cref="T:SharpDX.Direct3D9.Sprite"/> object that contains the string. Can be <c>null</c>, in which case Direct3D will render the string with its own sprite object. To improve efficiency, a sprite object should be specified if DrawText is to be called more than once in a row.</param>
  8699. <param name="text"><para>Pointer to a string to draw. If the Count parameter is -1, the string must be null-terminated.</para></param>
  8700. <param name="rect"><para>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. 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.</para></param>
  8701. <param name="drawFlags"><para>Specifies the method of formatting the text. It can be any combination of the following values:</para> ValueMeaning <list> <item><term>DT_BOTTOM</term></item> </list> <para>Justifies the text to the bottom of the rectangle. This value must be combined with DT_SINGLELINE.</para> <list> <item><term>DT_CALCRECT</term></item> </list> <para>Determines the width and height of the rectangle. If there are multiple lines of text, 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, DrawText modifies the right side of the rectangle so that it bounds the last character in the line. In either case, DrawText returns the height of the formatted text but does not draw the text.</para> <list> <item><term>DT_CENTER</term></item> </list> <para>Centers text horizontally in the rectangle.</para> <list> <item><term>DT_EXPANDTABS</term></item> </list> <para>Expands tab characters. The default number of characters per tab is eight.</para> <list> <item><term>DT_LEFT</term></item> </list> <para>Aligns text to the left.</para> <list> <item><term>DT_NOCLIP</term></item> </list> <para>Draws without clipping. DrawText is somewhat faster when DT_NOCLIP is used.</para> <list> <item><term>DT_RIGHT</term></item> </list> <para>Aligns text to the right.</para> <list> <item><term>DT_RTLREADING</term></item> </list> <para>Displays 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.</para> <list> <item><term>DT_SINGLELINE</term></item> </list> <para>Displays text on a single line only. Carriage returns and line feeds do not break the line.</para> <list> <item><term>DT_TOP</term></item> </list> <para>Top-justifies text.</para> <list> <item><term>DT_VCENTER</term></item> </list> <para>Centers text vertically (single line only).</para> <list> <item><term>DT_WORDBREAK</term></item> </list> <para>Breaks 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.</para> <para>?</para></param>
  8702. <returns>Determines the width and height of the rectangle. If there are multiple lines of text, this function uses the width of the rectangle pointed to by the rect parameter and extends the base of the rectangle to bound the last line of text. If there is only one line of text, this method modifies the right side of the rectangle so that it bounds the last character in the line. </returns>
  8703. </member>
  8704. <member name="M:SharpDX.Direct3D9.Font.MeasureText(SharpDX.Direct3D9.Sprite,System.String,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.FontDrawFlags,System.Int32@)">
  8705. <summary>
  8706. Measures the specified sprite.
  8707. </summary>
  8708. <param name="sprite">Pointer to an <see cref="T:SharpDX.Direct3D9.Sprite"/> object that contains the string. Can be <c>null</c>, in which case Direct3D will render the string with its own sprite object. To improve efficiency, a sprite object should be specified if DrawText is to be called more than once in a row.</param>
  8709. <param name="text"><para>Pointer to a string to draw. If the Count parameter is -1, the string must be null-terminated.</para></param>
  8710. <param name="rect"><para>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. 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.</para></param>
  8711. <param name="drawFlags"><para>Specifies the method of formatting the text. It can be any combination of the following values:</para> ValueMeaning <list> <item><term>DT_BOTTOM</term></item> </list> <para>Justifies the text to the bottom of the rectangle. This value must be combined with DT_SINGLELINE.</para> <list> <item><term>DT_CALCRECT</term></item> </list> <para>Determines the width and height of the rectangle. If there are multiple lines of text, 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, DrawText modifies the right side of the rectangle so that it bounds the last character in the line. In either case, DrawText returns the height of the formatted text but does not draw the text.</para> <list> <item><term>DT_CENTER</term></item> </list> <para>Centers text horizontally in the rectangle.</para> <list> <item><term>DT_EXPANDTABS</term></item> </list> <para>Expands tab characters. The default number of characters per tab is eight.</para> <list> <item><term>DT_LEFT</term></item> </list> <para>Aligns text to the left.</para> <list> <item><term>DT_NOCLIP</term></item> </list> <para>Draws without clipping. DrawText is somewhat faster when DT_NOCLIP is used.</para> <list> <item><term>DT_RIGHT</term></item> </list> <para>Aligns text to the right.</para> <list> <item><term>DT_RTLREADING</term></item> </list> <para>Displays 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.</para> <list> <item><term>DT_SINGLELINE</term></item> </list> <para>Displays text on a single line only. Carriage returns and line feeds do not break the line.</para> <list> <item><term>DT_TOP</term></item> </list> <para>Top-justifies text.</para> <list> <item><term>DT_VCENTER</term></item> </list> <para>Centers text vertically (single line only).</para> <list> <item><term>DT_WORDBREAK</term></item> </list> <para>Breaks 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.</para> <para>?</para></param>
  8712. <param name="textHeight">The height of the formatted text but does not draw the text.</param>
  8713. <returns>Determines the width and height of the rectangle. If there are multiple lines of text, this function uses the width of the rectangle pointed to by the rect parameter and extends the base of the rectangle to bound the last line of text. If there is only one line of text, this method modifies the right side of the rectangle so that it bounds the last character in the line. </returns>
  8714. </member>
  8715. <member name="M:SharpDX.Direct3D9.Font.#ctor(System.IntPtr)">
  8716. <summary>
  8717. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Font"/> class.
  8718. </summary>
  8719. <param name="nativePtr">The native pointer.</param>
  8720. </member>
  8721. <member name="M:SharpDX.Direct3D9.Font.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Font">
  8722. <summary>
  8723. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Font"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  8724. </summary>
  8725. <param name="nativePointer">The native pointer.</param>
  8726. <returns>
  8727. The result of the conversion.
  8728. </returns>
  8729. </member>
  8730. <member name="P:SharpDX.Direct3D9.Font.Device">
  8731. <summary>
  8732. <p>Retrieves the Direct3D device associated with the font object.</p>
  8733. </summary>
  8734. <remarks>
  8735. <p><strong>Note</strong>??Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Be sure to call <strong><see cref="T:SharpDX.ComObject" /></strong> when you are done using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface or you will have a memory leak.</p>
  8736. </remarks>
  8737. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::GetDevice']/*" />
  8738. <msdn-id>bb173965</msdn-id>
  8739. <unmanaged>GetDevice</unmanaged>
  8740. <unmanaged-short>GetDevice</unmanaged-short>
  8741. <unmanaged>HRESULT ID3DXFont::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  8742. </member>
  8743. <member name="P:SharpDX.Direct3D9.Font.Description">
  8744. <summary>
  8745. <p>Gets a description of the current font object. GetDescW and GetDescA are identical to this method, except that a reference is returned to a <strong><see cref="T:SharpDX.Direct3D9.FontDescription" /></strong> or <strong>D3DXFONT_DESCA</strong> structure, respectively.</p>
  8746. </summary>
  8747. <remarks>
  8748. <p>This method describes Unicode font objects if UNICODE is defined. Otherwise GetDescA is called, which returns a reference to the <strong>D3DXFONT_DESCA</strong> structure.</p>
  8749. </remarks>
  8750. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::GetDescW']/*" />
  8751. <msdn-id>bb173964</msdn-id>
  8752. <unmanaged>GetDescW</unmanaged>
  8753. <unmanaged-short>GetDescW</unmanaged-short>
  8754. <unmanaged>HRESULT ID3DXFont::GetDescW([Out] D3DXFONT_DESCW* pDesc)</unmanaged>
  8755. </member>
  8756. <member name="P:SharpDX.Direct3D9.Font.DeviceContext">
  8757. <summary>
  8758. <p>Returns a handle to a display device context (DC) that has the font set.</p>
  8759. </summary>
  8760. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::GetDC']/*" />
  8761. <msdn-id>bb173963</msdn-id>
  8762. <unmanaged>GetDC</unmanaged>
  8763. <unmanaged-short>GetDC</unmanaged-short>
  8764. <unmanaged>HDC ID3DXFont::GetDC()</unmanaged>
  8765. </member>
  8766. <member name="M:SharpDX.Direct3D9.Font.GetDevice(SharpDX.Direct3D9.Device@)">
  8767. <summary>
  8768. <p>Retrieves the Direct3D device associated with the font object.</p>
  8769. </summary>
  8770. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the Direct3D device object associated with the font object.</p> </dd></param>
  8771. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  8772. <remarks>
  8773. <p><strong>Note</strong>??Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Be sure to call <strong><see cref="T:SharpDX.ComObject" /></strong> when you are done using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface or you will have a memory leak.</p>
  8774. </remarks>
  8775. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::GetDevice']/*" />
  8776. <msdn-id>bb173965</msdn-id>
  8777. <unmanaged>HRESULT ID3DXFont::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  8778. <unmanaged-short>ID3DXFont::GetDevice</unmanaged-short>
  8779. </member>
  8780. <member name="M:SharpDX.Direct3D9.Font.GetDescription(SharpDX.Direct3D9.FontDescription@)">
  8781. <summary>
  8782. <p>Gets a description of the current font object. GetDescW and GetDescA are identical to this method, except that a reference is returned to a <strong><see cref="T:SharpDX.Direct3D9.FontDescription" /></strong> or <strong>D3DXFONT_DESCA</strong> structure, respectively.</p>
  8783. </summary>
  8784. <param name="descRef">No documentation.</param>
  8785. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  8786. <remarks>
  8787. <p>This method describes Unicode font objects if UNICODE is defined. Otherwise GetDescA is called, which returns a reference to the <strong>D3DXFONT_DESCA</strong> structure.</p>
  8788. </remarks>
  8789. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::GetDescW']/*" />
  8790. <msdn-id>bb173964</msdn-id>
  8791. <unmanaged>HRESULT ID3DXFont::GetDescW([Out] D3DXFONT_DESCW* pDesc)</unmanaged>
  8792. <unmanaged-short>ID3DXFont::GetDescW</unmanaged-short>
  8793. </member>
  8794. <member name="M:SharpDX.Direct3D9.Font.GetTextMetrics(SharpDX.Win32Native.TextMetric@)">
  8795. <summary>
  8796. <p>Retrieves font characteristics that are identified in a <strong><see cref="T:SharpDX.Win32Native.TextMetric" /></strong> structure. This method supports ANSI and Unicode compiler settings.</p>
  8797. </summary>
  8798. <param name="textMetricsRef">No documentation.</param>
  8799. <returns><p>Nonzero if the function is successful; otherwise 0.</p></returns>
  8800. <remarks>
  8801. <p>The compiler setting also determines the structure type. If Unicode is defined, the function returns a <see cref="T:SharpDX.Win32Native.TextMetric" /> structure. Otherwise, the function call returns a <see cref="!:SharpDX.Win32Native.TextMetricA" /> structure.</p>
  8802. </remarks>
  8803. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::GetTextMetricsW']/*" />
  8804. <msdn-id>bb173967</msdn-id>
  8805. <unmanaged>BOOL ID3DXFont::GetTextMetricsW([Out] TEXTMETRICW* pTextMetrics)</unmanaged>
  8806. <unmanaged-short>ID3DXFont::GetTextMetricsW</unmanaged-short>
  8807. </member>
  8808. <member name="M:SharpDX.Direct3D9.Font.GetDeviceContext">
  8809. <summary>
  8810. <p>Returns a handle to a display device context (DC) that has the font set.</p>
  8811. </summary>
  8812. <returns><p>Handle to a display DC.</p></returns>
  8813. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::GetDC']/*" />
  8814. <msdn-id>bb173963</msdn-id>
  8815. <unmanaged>HDC ID3DXFont::GetDC()</unmanaged>
  8816. <unmanaged-short>ID3DXFont::GetDC</unmanaged-short>
  8817. </member>
  8818. <member name="M:SharpDX.Direct3D9.Font.GetGlyphData(System.Int32,SharpDX.Direct3D9.Texture@,SharpDX.Mathematics.Interop.RawRectangle@,SharpDX.Mathematics.Interop.RawPoint@)">
  8819. <summary>
  8820. <p>Returns information about the placement and orientation of a glyph in a character cell.</p>
  8821. </summary>
  8822. <param name="glyph"><dd> <p>Glyph identifier.</p> </dd></param>
  8823. <param name="textureOut"><dd> <p>Address of a reference to a <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> object that contains the glyph.</p> </dd></param>
  8824. <param name="blackBoxRef"><dd> <p>Pointer to the smallest rectangle object that completely encloses the glyph.</p> </dd></param>
  8825. <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 <strong><see cref="T:SharpDX.Mathematics.Interop.RawPoint" /></strong>.</p> </dd></param>
  8826. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  8827. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::GetGlyphData']/*" />
  8828. <msdn-id>bb173966</msdn-id>
  8829. <unmanaged>HRESULT ID3DXFont::GetGlyphData([In] unsigned int Glyph,[Out] IDirect3DTexture9** ppTexture,[Out] RECT* pBlackBox,[Out] POINT* pCellInc)</unmanaged>
  8830. <unmanaged-short>ID3DXFont::GetGlyphData</unmanaged-short>
  8831. </member>
  8832. <member name="M:SharpDX.Direct3D9.Font.PreloadCharacters(System.Int32,System.Int32)">
  8833. <summary>
  8834. <p>Loads a series of characters into video memory to improve the efficiency of rendering to the device.</p>
  8835. </summary>
  8836. <param name="first"><dd> <p>ID of the first character to be loaded into video memory.</p> </dd></param>
  8837. <param name="last"><dd> <p>ID of the last character to be loaded into video memory.</p> </dd></param>
  8838. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  8839. <remarks>
  8840. <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; <strong>DrawText</strong> must still be called to render the characters. However, by pre-loading characters into video memory, <strong>DrawText</strong> will use substantially fewer CPU resources.</p><p>This method internally converts characters to glyphs using the GDI function <strong>GetCharacterPlacement</strong>.</p>
  8841. </remarks>
  8842. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::PreloadCharacters']/*" />
  8843. <msdn-id>bb173970</msdn-id>
  8844. <unmanaged>HRESULT ID3DXFont::PreloadCharacters([In] unsigned int First,[In] unsigned int Last)</unmanaged>
  8845. <unmanaged-short>ID3DXFont::PreloadCharacters</unmanaged-short>
  8846. </member>
  8847. <member name="M:SharpDX.Direct3D9.Font.PreloadGlyphs(System.Int32,System.Int32)">
  8848. <summary>
  8849. <p>Loads a series of glyphs into video memory to improve the efficiency of rendering to the device.</p>
  8850. </summary>
  8851. <param name="first"><dd> <p>ID of the first glyph to be loaded into video memory.</p> </dd></param>
  8852. <param name="last"><dd> <p>ID of the last glyph to be loaded into video memory.</p> </dd></param>
  8853. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  8854. <remarks>
  8855. <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; <strong>DrawText</strong> must still be called to render the glyphs. However, by pre-loading glyphs into video memory, <strong>DrawText</strong> will use substantially fewer CPU resources.</p>
  8856. </remarks>
  8857. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::PreloadGlyphs']/*" />
  8858. <msdn-id>bb173971</msdn-id>
  8859. <unmanaged>HRESULT ID3DXFont::PreloadGlyphs([In] unsigned int First,[In] unsigned int Last)</unmanaged>
  8860. <unmanaged-short>ID3DXFont::PreloadGlyphs</unmanaged-short>
  8861. </member>
  8862. <member name="M:SharpDX.Direct3D9.Font.PreloadText(System.String,System.Int32)">
  8863. <summary>
  8864. <p>Loads formatted text into video memory to improve the efficiency of rendering to the device. This method supports ANSI and Unicode strings.</p>
  8865. </summary>
  8866. <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>
  8867. <param name="count"><dd> <p>Number of characters in the text string.</p> </dd></param>
  8868. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  8869. <remarks>
  8870. <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; <strong>DrawText</strong> must still be called to render the text. However, by preloading text into video memory, <strong>DrawText</strong> will use substantially fewer CPU resources.</p><p>This method internally converts characters to glyphs using the GDI function <strong>GetCharacterPlacement</strong>.</p>
  8871. </remarks>
  8872. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::PreloadTextW']/*" />
  8873. <msdn-id>bb173972</msdn-id>
  8874. <unmanaged>HRESULT ID3DXFont::PreloadTextW([In] const wchar_t* pString,[In] int Count)</unmanaged>
  8875. <unmanaged-short>ID3DXFont::PreloadTextW</unmanaged-short>
  8876. </member>
  8877. <member name="M:SharpDX.Direct3D9.Font.DrawText(SharpDX.Direct3D9.Sprite,System.String,System.Int32,System.IntPtr,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA)">
  8878. <summary>
  8879. <p>Draws formatted text. This method supports ANSI and Unicode strings.</p>
  8880. </summary>
  8881. <param name="spriteRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Sprite" /></strong> object that contains the string. 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 <strong>DrawText</strong> is to be called more than once in a row.</p> </dd></param>
  8882. <param name="stringRef"><dd> <p>Pointer to a string to draw. If the Count parameter is -1, the string must be null-terminated.</p> </dd></param>
  8883. <param name="count"><dd> <p>Specifies the number of characters in the string. If Count is -1, then the pString parameter is assumed to be a reference to a null-terminated string and <strong>DrawText</strong> computes the character count automatically.</p> </dd></param>
  8884. <param name="rectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure that contains the rectangle, in logical coordinates, in which the text is to be formatted. 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>
  8885. <param name="format"><dd> <p> </p><p>Specifies the method of formatting the text. It can be any combination of the following values:</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong>DT_BOTTOM</strong></dt> </dl> </td><td> <p>Justifies the text to the bottom of the rectangle. This value must be combined with DT_SINGLELINE.</p> </td></tr> <tr><td><dl> <dt><strong>DT_CALCRECT</strong></dt> </dl> </td><td> <p>Determines the width and height of the rectangle. If there are multiple lines of text, <strong>DrawText</strong> 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, <strong>DrawText</strong> modifies the right side of the rectangle so that it bounds the last character in the line. In either case, <strong>DrawText</strong> returns the height of the formatted text but does not draw the text.</p> </td></tr> <tr><td><dl> <dt><strong>DT_CENTER</strong></dt> </dl> </td><td> <p>Centers text horizontally in the rectangle.</p> </td></tr> <tr><td><dl> <dt><strong>DT_EXPANDTABS</strong></dt> </dl> </td><td> <p>Expands tab characters. The default number of characters per tab is eight.</p> </td></tr> <tr><td><dl> <dt><strong>DT_LEFT</strong></dt> </dl> </td><td> <p>Aligns text to the left.</p> </td></tr> <tr><td><dl> <dt><strong>DT_NOCLIP</strong></dt> </dl> </td><td> <p>Draws without clipping. <strong>DrawText</strong> is somewhat faster when DT_NOCLIP is used.</p> </td></tr> <tr><td><dl> <dt><strong>DT_RIGHT</strong></dt> </dl> </td><td> <p>Aligns text to the right.</p> </td></tr> <tr><td><dl> <dt><strong>DT_RTLREADING</strong></dt> </dl> </td><td> <p>Displays 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><dl> <dt><strong>DT_SINGLELINE</strong></dt> </dl> </td><td> <p>Displays text on a single line only. Carriage returns and line feeds do not break the line.</p> </td></tr> <tr><td><dl> <dt><strong>DT_TOP</strong></dt> </dl> </td><td> <p>Top-justifies text.</p> </td></tr> <tr><td><dl> <dt><strong>DT_VCENTER</strong></dt> </dl> </td><td> <p>Centers text vertically (single line only).</p> </td></tr> <tr><td><dl> <dt><strong>DT_WORDBREAK</strong></dt> </dl> </td><td> <p>Breaks 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>
  8886. <param name="color"><dd> <p>Color of the text. For more information, see <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong>.</p> </dd></param>
  8887. <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>
  8888. <remarks>
  8889. <p>The parameters of this method are very similar to those of the GDI <strong>DrawText</strong> function.</p><p>This method supports both ANSI and Unicode strings.</p><p>This method must be called inside a <strong>BeginScene</strong> ... <strong>EndScene</strong> block. The only exception is when an application calls <strong>DrawText</strong> with DT_CALCRECT to calculate the size of a given block of text.</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>
  8890. </remarks>
  8891. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::DrawTextW']/*" />
  8892. <msdn-id>bb173962</msdn-id>
  8893. <unmanaged>int ID3DXFont::DrawTextW([In] ID3DXSprite* pSprite,[In] const wchar_t* pString,[In] int Count,[In] void* pRect,[In] unsigned int Format,[In] D3DCOLOR Color)</unmanaged>
  8894. <unmanaged-short>ID3DXFont::DrawTextW</unmanaged-short>
  8895. </member>
  8896. <member name="M:SharpDX.Direct3D9.Font.OnLostDevice">
  8897. <summary>
  8898. <p>Use this method to release all references to video memory resources and delete all stateblocks. This method should be called whenever a device is lost, or before resetting a device.</p>
  8899. </summary>
  8900. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  8901. <remarks>
  8902. <p>This method should be called whenever the device is lost or before the user calls <strong>Reset</strong>. Even if the device was not actually lost, <strong>OnLostDevice</strong> is responsible for freeing stateblocks and other resources that may need to be released before resetting the device. As a result, the font object cannot be used again before calling <strong>Reset</strong> and then <strong>OnResetDevice</strong>.</p>
  8903. </remarks>
  8904. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::OnLostDevice']/*" />
  8905. <msdn-id>bb173968</msdn-id>
  8906. <unmanaged>HRESULT ID3DXFont::OnLostDevice()</unmanaged>
  8907. <unmanaged-short>ID3DXFont::OnLostDevice</unmanaged-short>
  8908. </member>
  8909. <member name="M:SharpDX.Direct3D9.Font.OnResetDevice">
  8910. <summary>
  8911. <p>Use this method to re-acquire resources and save initial state.</p>
  8912. </summary>
  8913. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  8914. <remarks>
  8915. <p><strong>OnResetDevice</strong> should be called each time the device is reset (using <strong>Reset</strong>), before any other methods are called. This is a good place to re-acquire video-memory resources and capture state blocks.</p>
  8916. </remarks>
  8917. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFont::OnResetDevice']/*" />
  8918. <msdn-id>bb173969</msdn-id>
  8919. <unmanaged>HRESULT ID3DXFont::OnResetDevice()</unmanaged>
  8920. <unmanaged-short>ID3DXFont::OnResetDevice</unmanaged-short>
  8921. </member>
  8922. <member name="T:SharpDX.Direct3D9.FontCharacterSet">
  8923. <summary>
  8924. Defines possible character sets for fonts.
  8925. </summary>
  8926. <unmanaged>CHARSET</unmanaged>
  8927. </member>
  8928. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Ansi">
  8929. <summary>
  8930. The ANSI character set.
  8931. </summary>
  8932. </member>
  8933. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Arabic">
  8934. <summary>
  8935. The Arabic character set.
  8936. </summary>
  8937. </member>
  8938. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Baltic">
  8939. <summary>
  8940. The Baltic character set.
  8941. </summary>
  8942. </member>
  8943. <member name="F:SharpDX.Direct3D9.FontCharacterSet.ChineseBig5">
  8944. <summary>
  8945. The Chinese character set.
  8946. </summary>
  8947. </member>
  8948. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Default">
  8949. <summary>
  8950. The default system character set.
  8951. </summary>
  8952. </member>
  8953. <member name="F:SharpDX.Direct3D9.FontCharacterSet.EastEurope">
  8954. <summary>
  8955. The East Europe character set.
  8956. </summary>
  8957. </member>
  8958. <member name="F:SharpDX.Direct3D9.FontCharacterSet.GB2312">
  8959. <summary>
  8960. The GB2312 character set.
  8961. </summary>
  8962. </member>
  8963. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Greek">
  8964. <summary>
  8965. The Greek character set.
  8966. </summary>
  8967. </member>
  8968. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Hangul">
  8969. <summary>
  8970. The Hangul character set.
  8971. </summary>
  8972. </member>
  8973. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Hebrew">
  8974. <summary>
  8975. The Hebrew character set.
  8976. </summary>
  8977. </member>
  8978. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Johab">
  8979. <summary>
  8980. The Johab character set.
  8981. </summary>
  8982. </member>
  8983. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Mac">
  8984. <summary>
  8985. The Mac character set.
  8986. </summary>
  8987. </member>
  8988. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Oem">
  8989. <summary>
  8990. The OEM character set.
  8991. </summary>
  8992. </member>
  8993. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Russian">
  8994. <summary>
  8995. The Russian character set.
  8996. </summary>
  8997. </member>
  8998. <member name="F:SharpDX.Direct3D9.FontCharacterSet.ShiftJIS">
  8999. <summary>
  9000. The ShiftJIS character set.
  9001. </summary>
  9002. </member>
  9003. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Symbol">
  9004. <summary>
  9005. The symbol character set.
  9006. </summary>
  9007. </member>
  9008. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Thai">
  9009. <summary>
  9010. The Thai character set.
  9011. </summary>
  9012. </member>
  9013. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Turkish">
  9014. <summary>
  9015. The Turkish character set.
  9016. </summary>
  9017. </member>
  9018. <member name="F:SharpDX.Direct3D9.FontCharacterSet.Vietnamese">
  9019. <summary>
  9020. The Vietnamese character set.
  9021. </summary>
  9022. </member>
  9023. <member name="T:SharpDX.Direct3D9.FontDrawFlags">
  9024. <summary>
  9025. Specifies formatting options for text rendering.
  9026. </summary>
  9027. <unmanaged>DT</unmanaged>
  9028. </member>
  9029. <member name="F:SharpDX.Direct3D9.FontDrawFlags.Bottom">
  9030. <summary>
  9031. Align the text to the bottom.
  9032. </summary>
  9033. </member>
  9034. <member name="F:SharpDX.Direct3D9.FontDrawFlags.Center">
  9035. <summary>
  9036. Align the text to the center.
  9037. </summary>
  9038. </member>
  9039. <member name="F:SharpDX.Direct3D9.FontDrawFlags.ExpandTabs">
  9040. <summary>
  9041. Expand tab characters.
  9042. </summary>
  9043. </member>
  9044. <member name="F:SharpDX.Direct3D9.FontDrawFlags.Left">
  9045. <summary>
  9046. Align the text to the left.
  9047. </summary>
  9048. </member>
  9049. <member name="F:SharpDX.Direct3D9.FontDrawFlags.NoClip">
  9050. <summary>
  9051. Don't clip the text.
  9052. </summary>
  9053. </member>
  9054. <member name="F:SharpDX.Direct3D9.FontDrawFlags.Right">
  9055. <summary>
  9056. Align the text to the right.
  9057. </summary>
  9058. </member>
  9059. <member name="F:SharpDX.Direct3D9.FontDrawFlags.RtlReading">
  9060. <summary>
  9061. Rendering the text in right-to-left reading order.
  9062. </summary>
  9063. </member>
  9064. <member name="F:SharpDX.Direct3D9.FontDrawFlags.SingleLine">
  9065. <summary>
  9066. Force all text to a single line.
  9067. </summary>
  9068. </member>
  9069. <member name="F:SharpDX.Direct3D9.FontDrawFlags.Top">
  9070. <summary>
  9071. Align the text to the top.
  9072. </summary>
  9073. </member>
  9074. <member name="F:SharpDX.Direct3D9.FontDrawFlags.VerticalCenter">
  9075. <summary>
  9076. Vertically align the text to the center.
  9077. </summary>
  9078. </member>
  9079. <member name="F:SharpDX.Direct3D9.FontDrawFlags.WordBreak">
  9080. <summary>
  9081. Allow word breaks.
  9082. </summary>
  9083. </member>
  9084. <member name="T:SharpDX.Direct3D9.FontPitchAndFamily">
  9085. <summary>
  9086. Defines pitch and family settings for fonts.
  9087. </summary>
  9088. </member>
  9089. <member name="F:SharpDX.Direct3D9.FontPitchAndFamily.Decorative">
  9090. <summary>
  9091. Use the Decorative family.
  9092. </summary>
  9093. </member>
  9094. <member name="F:SharpDX.Direct3D9.FontPitchAndFamily.Default">
  9095. <summary>
  9096. Default pitch.
  9097. </summary>
  9098. </member>
  9099. <member name="F:SharpDX.Direct3D9.FontPitchAndFamily.DontCare">
  9100. <summary>
  9101. The font family doesn't matter.
  9102. </summary>
  9103. </member>
  9104. <member name="F:SharpDX.Direct3D9.FontPitchAndFamily.Fixed">
  9105. <summary>
  9106. Fixed pitch.
  9107. </summary>
  9108. </member>
  9109. <member name="F:SharpDX.Direct3D9.FontPitchAndFamily.Modern">
  9110. <summary>
  9111. Use the Modern family.
  9112. </summary>
  9113. </member>
  9114. <member name="F:SharpDX.Direct3D9.FontPitchAndFamily.Mono">
  9115. <summary>
  9116. Mono pitch.
  9117. </summary>
  9118. </member>
  9119. <member name="F:SharpDX.Direct3D9.FontPitchAndFamily.Roman">
  9120. <summary>
  9121. Use the Roman family.
  9122. </summary>
  9123. </member>
  9124. <member name="F:SharpDX.Direct3D9.FontPitchAndFamily.Script">
  9125. <summary>
  9126. Use the Script family.
  9127. </summary>
  9128. </member>
  9129. <member name="F:SharpDX.Direct3D9.FontPitchAndFamily.Swiss">
  9130. <summary>
  9131. Use the Swiss family.
  9132. </summary>
  9133. </member>
  9134. <member name="F:SharpDX.Direct3D9.FontPitchAndFamily.Variable">
  9135. <summary>
  9136. Variable pitch.
  9137. </summary>
  9138. </member>
  9139. <member name="T:SharpDX.Direct3D9.FontPrecision">
  9140. <summary>
  9141. Defines precision levels for font rendering.
  9142. </summary>
  9143. <unmanaged>OutPrecision</unmanaged>
  9144. </member>
  9145. <member name="F:SharpDX.Direct3D9.FontPrecision.Default">
  9146. <summary>
  9147. Default
  9148. </summary>
  9149. </member>
  9150. <member name="F:SharpDX.Direct3D9.FontPrecision.String">
  9151. <summary>
  9152. String
  9153. </summary>
  9154. </member>
  9155. <member name="F:SharpDX.Direct3D9.FontPrecision.Character">
  9156. <summary>
  9157. Character
  9158. </summary>
  9159. </member>
  9160. <member name="F:SharpDX.Direct3D9.FontPrecision.Stroke">
  9161. <summary>
  9162. Stroke
  9163. </summary>
  9164. </member>
  9165. <member name="F:SharpDX.Direct3D9.FontPrecision.TrueType">
  9166. <summary>
  9167. TrueType
  9168. </summary>
  9169. </member>
  9170. <member name="F:SharpDX.Direct3D9.FontPrecision.Device">
  9171. <summary>
  9172. Device
  9173. </summary>
  9174. </member>
  9175. <member name="F:SharpDX.Direct3D9.FontPrecision.Raster">
  9176. <summary>
  9177. Raster
  9178. </summary>
  9179. </member>
  9180. <member name="F:SharpDX.Direct3D9.FontPrecision.TrueTypeOnly">
  9181. <summary>
  9182. TrueTypeOnly
  9183. </summary>
  9184. </member>
  9185. <member name="F:SharpDX.Direct3D9.FontPrecision.Outline">
  9186. <summary>
  9187. Outline
  9188. </summary>
  9189. </member>
  9190. <member name="F:SharpDX.Direct3D9.FontPrecision.ScreenOutline">
  9191. <summary>
  9192. ScreenOutline
  9193. </summary>
  9194. </member>
  9195. <member name="F:SharpDX.Direct3D9.FontPrecision.PostScriptOnly">
  9196. <summary>
  9197. PostScriptOnly
  9198. </summary>
  9199. </member>
  9200. <member name="T:SharpDX.Direct3D9.FontQuality">
  9201. <summary>
  9202. Specifies quality options for font rendering.
  9203. </summary>
  9204. <unmanaged>QUALITY</unmanaged>
  9205. </member>
  9206. <member name="F:SharpDX.Direct3D9.FontQuality.Default">
  9207. <summary>
  9208. Default
  9209. </summary>
  9210. </member>
  9211. <member name="F:SharpDX.Direct3D9.FontQuality.Draft">
  9212. <summary>
  9213. Draft
  9214. </summary>
  9215. </member>
  9216. <member name="F:SharpDX.Direct3D9.FontQuality.Proof">
  9217. <summary>
  9218. Proof
  9219. </summary>
  9220. </member>
  9221. <member name="F:SharpDX.Direct3D9.FontQuality.NonAntialiased">
  9222. <summary>
  9223. Non antialiased
  9224. </summary>
  9225. </member>
  9226. <member name="F:SharpDX.Direct3D9.FontQuality.Antialiased">
  9227. <summary>
  9228. Antialiased
  9229. </summary>
  9230. </member>
  9231. <member name="F:SharpDX.Direct3D9.FontQuality.ClearType">
  9232. <summary>
  9233. ClearType
  9234. </summary>
  9235. </member>
  9236. <member name="F:SharpDX.Direct3D9.FontQuality.ClearTypeNatural">
  9237. <summary>
  9238. ClearTypeNatural
  9239. </summary>
  9240. </member>
  9241. <member name="T:SharpDX.Direct3D9.FontWeight">
  9242. <summary>
  9243. Specifies weights for font rendering.
  9244. </summary>
  9245. <unmanaged>FW</unmanaged>
  9246. </member>
  9247. <member name="F:SharpDX.Direct3D9.FontWeight.Black">
  9248. <summary>
  9249. Use a black weight.
  9250. </summary>
  9251. </member>
  9252. <member name="F:SharpDX.Direct3D9.FontWeight.Bold">
  9253. <summary>
  9254. Use a bold weight.
  9255. </summary>
  9256. </member>
  9257. <member name="F:SharpDX.Direct3D9.FontWeight.DemiBold">
  9258. <summary>
  9259. Use a demi-bold weight.
  9260. </summary>
  9261. </member>
  9262. <member name="F:SharpDX.Direct3D9.FontWeight.DoNotCare">
  9263. <summary>
  9264. The font weight doesn't matter.
  9265. </summary>
  9266. </member>
  9267. <member name="F:SharpDX.Direct3D9.FontWeight.ExtraBold">
  9268. <summary>
  9269. Use an extra bold weight.
  9270. </summary>
  9271. </member>
  9272. <member name="F:SharpDX.Direct3D9.FontWeight.ExtraLight">
  9273. <summary>
  9274. Make the font extra light.
  9275. </summary>
  9276. </member>
  9277. <member name="F:SharpDX.Direct3D9.FontWeight.Heavy">
  9278. <summary>
  9279. Use a heavy weight.
  9280. </summary>
  9281. </member>
  9282. <member name="F:SharpDX.Direct3D9.FontWeight.Light">
  9283. <summary>
  9284. Make the font light.
  9285. </summary>
  9286. </member>
  9287. <member name="F:SharpDX.Direct3D9.FontWeight.Medium">
  9288. <summary>
  9289. Use a medium weight.
  9290. </summary>
  9291. </member>
  9292. <member name="F:SharpDX.Direct3D9.FontWeight.Normal">
  9293. <summary>
  9294. Use a normal weight.
  9295. </summary>
  9296. </member>
  9297. <member name="F:SharpDX.Direct3D9.FontWeight.Regular">
  9298. <summary>
  9299. Use a regular weight.
  9300. </summary>
  9301. </member>
  9302. <member name="F:SharpDX.Direct3D9.FontWeight.SemiBold">
  9303. <summary>
  9304. Use a semi-bold weight.
  9305. </summary>
  9306. </member>
  9307. <member name="F:SharpDX.Direct3D9.FontWeight.Thin">
  9308. <summary>
  9309. Make the font thin.
  9310. </summary>
  9311. </member>
  9312. <member name="F:SharpDX.Direct3D9.FontWeight.UltraBold">
  9313. <summary>
  9314. Use an ultra bold weight.
  9315. </summary>
  9316. </member>
  9317. <member name="F:SharpDX.Direct3D9.FontWeight.UltraLight">
  9318. <summary>
  9319. Make the font ultra light.
  9320. </summary>
  9321. </member>
  9322. <member name="T:SharpDX.Direct3D9.BackBufferType">
  9323. <summary>
  9324. <p>Defines constants that describe the type of back buffer.</p>
  9325. </summary>
  9326. <remarks>
  9327. <p>Direct3D 9 does not support stereo view, so Direct3D does not use the <see cref="F:SharpDX.Direct3D9.BackBufferType.Left" /> and <see cref="F:SharpDX.Direct3D9.BackBufferType.Right" /> values of this enumerated type.</p>
  9328. </remarks>
  9329. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBACKBUFFER_TYPE']/*" />
  9330. <msdn-id>bb172506</msdn-id>
  9331. <unmanaged>D3DBACKBUFFER_TYPE</unmanaged>
  9332. <unmanaged-short>D3DBACKBUFFER_TYPE</unmanaged-short>
  9333. </member>
  9334. <member name="F:SharpDX.Direct3D9.BackBufferType.Mono">
  9335. <summary>
  9336. <dd> <p>Specifies a nonstereo swap chain. </p> </dd>
  9337. </summary>
  9338. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBACKBUFFER_TYPE_MONO']/*" />
  9339. <msdn-id>bb172506</msdn-id>
  9340. <unmanaged>D3DBACKBUFFER_TYPE_MONO</unmanaged>
  9341. <unmanaged-short>D3DBACKBUFFER_TYPE_MONO</unmanaged-short>
  9342. </member>
  9343. <member name="F:SharpDX.Direct3D9.BackBufferType.Left">
  9344. <summary>
  9345. <dd> <p>Specifies the left side of a stereo pair in a swap chain. </p> </dd>
  9346. </summary>
  9347. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBACKBUFFER_TYPE_LEFT']/*" />
  9348. <msdn-id>bb172506</msdn-id>
  9349. <unmanaged>D3DBACKBUFFER_TYPE_LEFT</unmanaged>
  9350. <unmanaged-short>D3DBACKBUFFER_TYPE_LEFT</unmanaged-short>
  9351. </member>
  9352. <member name="F:SharpDX.Direct3D9.BackBufferType.Right">
  9353. <summary>
  9354. <dd> <p>Specifies the right side of a stereo pair in a swap chain. </p> </dd>
  9355. </summary>
  9356. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBACKBUFFER_TYPE_RIGHT']/*" />
  9357. <msdn-id>bb172506</msdn-id>
  9358. <unmanaged>D3DBACKBUFFER_TYPE_RIGHT</unmanaged>
  9359. <unmanaged-short>D3DBACKBUFFER_TYPE_RIGHT</unmanaged-short>
  9360. </member>
  9361. <member name="T:SharpDX.Direct3D9.Basis">
  9362. <summary>
  9363. <p>Defines the basis type of a high-order patch surface.</p>
  9364. </summary>
  9365. <remarks>
  9366. <p>The members of <strong><see cref="T:SharpDX.Direct3D9.Basis" /></strong> specify the formulation to be used in evaluating the high-order patch surface primitive during tessellation.</p>
  9367. </remarks>
  9368. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBASISTYPE']/*" />
  9369. <msdn-id>bb172507</msdn-id>
  9370. <unmanaged>D3DBASISTYPE</unmanaged>
  9371. <unmanaged-short>D3DBASISTYPE</unmanaged-short>
  9372. </member>
  9373. <member name="F:SharpDX.Direct3D9.Basis.Bezier">
  9374. <summary>
  9375. <dd> <p>Input vertices are treated as a series of B?zier patches. The number of vertices specified must be divisible by 4. Portions of the mesh beyond this criterion will not be rendered. Full continuity is assumed between sub-patches in the interior of the surface rendered by each call. Only the vertices at the corners of each sub-patch are guaranteed to lie on the resulting surface. </p> </dd>
  9376. </summary>
  9377. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBASIS_BEZIER']/*" />
  9378. <msdn-id>bb172507</msdn-id>
  9379. <unmanaged>D3DBASIS_BEZIER</unmanaged>
  9380. <unmanaged-short>D3DBASIS_BEZIER</unmanaged-short>
  9381. </member>
  9382. <member name="F:SharpDX.Direct3D9.Basis.BSpline">
  9383. <summary>
  9384. <dd> <p>Input vertices are treated as control points of a B-spline surface. The number of apertures rendered is two fewer than the number of apertures in that direction. In general, the generated surface does not contain the control vertices specified. </p> </dd>
  9385. </summary>
  9386. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBASIS_BSPLINE']/*" />
  9387. <msdn-id>bb172507</msdn-id>
  9388. <unmanaged>D3DBASIS_BSPLINE</unmanaged>
  9389. <unmanaged-short>D3DBASIS_BSPLINE</unmanaged-short>
  9390. </member>
  9391. <member name="F:SharpDX.Direct3D9.Basis.CatmullRom">
  9392. <summary>
  9393. <dd> <p>An interpolating basis defines the surface so that the surface goes through all the input vertices specified. In DirectX 8, this was D3DBASIS_INTERPOLATE.</p> </dd>
  9394. </summary>
  9395. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBASIS_CATMULL_ROM']/*" />
  9396. <msdn-id>bb172507</msdn-id>
  9397. <unmanaged>D3DBASIS_CATMULL_ROM</unmanaged>
  9398. <unmanaged-short>D3DBASIS_CATMULL_ROM</unmanaged-short>
  9399. </member>
  9400. <member name="T:SharpDX.Direct3D9.Blend">
  9401. <summary>
  9402. <p>Defines the supported blend mode.</p>
  9403. </summary>
  9404. <remarks>
  9405. <p>In the preceding member descriptions, the RGBA values of the source and destination are indicated by the s and d subscripts.</p><p>The values in this enumerated type are used by the following render states:</p><ul> <li><see cref="F:SharpDX.Direct3D9.RenderState.DestinationBlend" /></li> <li><see cref="F:SharpDX.Direct3D9.RenderState.SourceBlend" /></li> <li><see cref="F:SharpDX.Direct3D9.RenderState.DestinationBlendAlpha" /></li> <li><see cref="F:SharpDX.Direct3D9.RenderState.SourceBlendAlpha" /></li> </ul><p>See <strong><see cref="T:SharpDX.Direct3D9.RenderState" /></strong> </p>
  9406. </remarks>
  9407. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND']/*" />
  9408. <msdn-id>bb172508</msdn-id>
  9409. <unmanaged>D3DBLEND</unmanaged>
  9410. <unmanaged-short>D3DBLEND</unmanaged-short>
  9411. </member>
  9412. <member name="F:SharpDX.Direct3D9.Blend.Zero">
  9413. <summary>
  9414. <dd> <p>Blend factor is (0, 0, 0, 0). </p> </dd>
  9415. </summary>
  9416. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_ZERO']/*" />
  9417. <msdn-id>bb172508</msdn-id>
  9418. <unmanaged>D3DBLEND_ZERO</unmanaged>
  9419. <unmanaged-short>D3DBLEND_ZERO</unmanaged-short>
  9420. </member>
  9421. <member name="F:SharpDX.Direct3D9.Blend.One">
  9422. <summary>
  9423. <dd> <p>Blend factor is (1, 1, 1, 1). </p> </dd>
  9424. </summary>
  9425. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_ONE']/*" />
  9426. <msdn-id>bb172508</msdn-id>
  9427. <unmanaged>D3DBLEND_ONE</unmanaged>
  9428. <unmanaged-short>D3DBLEND_ONE</unmanaged-short>
  9429. </member>
  9430. <member name="F:SharpDX.Direct3D9.Blend.SourceColor">
  9431. <summary>
  9432. <dd> <p>Blend factor is (Rs, Gs, Bs, As). </p> </dd>
  9433. </summary>
  9434. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_SRCCOLOR']/*" />
  9435. <msdn-id>bb172508</msdn-id>
  9436. <unmanaged>D3DBLEND_SRCCOLOR</unmanaged>
  9437. <unmanaged-short>D3DBLEND_SRCCOLOR</unmanaged-short>
  9438. </member>
  9439. <member name="F:SharpDX.Direct3D9.Blend.InverseSourceColor">
  9440. <summary>
  9441. <dd> <p>Blend factor is (1 - Rs, 1 - Gs, 1 - Bs, 1 - As). </p> </dd>
  9442. </summary>
  9443. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_INVSRCCOLOR']/*" />
  9444. <msdn-id>bb172508</msdn-id>
  9445. <unmanaged>D3DBLEND_INVSRCCOLOR</unmanaged>
  9446. <unmanaged-short>D3DBLEND_INVSRCCOLOR</unmanaged-short>
  9447. </member>
  9448. <member name="F:SharpDX.Direct3D9.Blend.SourceAlpha">
  9449. <summary>
  9450. <dd> <p>Blend factor is (As, As, As, As). </p> </dd>
  9451. </summary>
  9452. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_SRCALPHA']/*" />
  9453. <msdn-id>bb172508</msdn-id>
  9454. <unmanaged>D3DBLEND_SRCALPHA</unmanaged>
  9455. <unmanaged-short>D3DBLEND_SRCALPHA</unmanaged-short>
  9456. </member>
  9457. <member name="F:SharpDX.Direct3D9.Blend.InverseSourceAlpha">
  9458. <summary>
  9459. <dd> <p>Blend factor is ( 1 - As, 1 - As, 1 - As, 1 - As). </p> </dd>
  9460. </summary>
  9461. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_INVSRCALPHA']/*" />
  9462. <msdn-id>bb172508</msdn-id>
  9463. <unmanaged>D3DBLEND_INVSRCALPHA</unmanaged>
  9464. <unmanaged-short>D3DBLEND_INVSRCALPHA</unmanaged-short>
  9465. </member>
  9466. <member name="F:SharpDX.Direct3D9.Blend.DestinationAlpha">
  9467. <summary>
  9468. <dd> <p>Blend factor is (Ad Ad Ad Ad). </p> </dd>
  9469. </summary>
  9470. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_DESTALPHA']/*" />
  9471. <msdn-id>bb172508</msdn-id>
  9472. <unmanaged>D3DBLEND_DESTALPHA</unmanaged>
  9473. <unmanaged-short>D3DBLEND_DESTALPHA</unmanaged-short>
  9474. </member>
  9475. <member name="F:SharpDX.Direct3D9.Blend.InverseDestinationAlpha">
  9476. <summary>
  9477. <dd> <p>Blend factor is (1 - Ad 1 - Ad 1 - Ad 1 - Ad). </p> </dd>
  9478. </summary>
  9479. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_INVDESTALPHA']/*" />
  9480. <msdn-id>bb172508</msdn-id>
  9481. <unmanaged>D3DBLEND_INVDESTALPHA</unmanaged>
  9482. <unmanaged-short>D3DBLEND_INVDESTALPHA</unmanaged-short>
  9483. </member>
  9484. <member name="F:SharpDX.Direct3D9.Blend.DestinationColor">
  9485. <summary>
  9486. <dd> <p>Blend factor is (Rd, Gd, Bd, Ad). </p> </dd>
  9487. </summary>
  9488. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_DESTCOLOR']/*" />
  9489. <msdn-id>bb172508</msdn-id>
  9490. <unmanaged>D3DBLEND_DESTCOLOR</unmanaged>
  9491. <unmanaged-short>D3DBLEND_DESTCOLOR</unmanaged-short>
  9492. </member>
  9493. <member name="F:SharpDX.Direct3D9.Blend.InverseDestinationColor">
  9494. <summary>
  9495. <dd> <p>Blend factor is (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad). </p> </dd>
  9496. </summary>
  9497. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_INVDESTCOLOR']/*" />
  9498. <msdn-id>bb172508</msdn-id>
  9499. <unmanaged>D3DBLEND_INVDESTCOLOR</unmanaged>
  9500. <unmanaged-short>D3DBLEND_INVDESTCOLOR</unmanaged-short>
  9501. </member>
  9502. <member name="F:SharpDX.Direct3D9.Blend.SourceAlphaSaturated">
  9503. <summary>
  9504. <dd> <p>Blend factor is (f, f, f, 1); where f = min(As, 1 - Ad). </p> </dd>
  9505. </summary>
  9506. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_SRCALPHASAT']/*" />
  9507. <msdn-id>bb172508</msdn-id>
  9508. <unmanaged>D3DBLEND_SRCALPHASAT</unmanaged>
  9509. <unmanaged-short>D3DBLEND_SRCALPHASAT</unmanaged-short>
  9510. </member>
  9511. <member name="F:SharpDX.Direct3D9.Blend.Bothsrcalpha">
  9512. <summary>
  9513. <dd> <p><strong>Obsolete</strong>. Starting with DirectX 6, you can achieve the same effect by setting the source and destination blend factors to <see cref="F:SharpDX.Direct3D9.Blend.SourceAlpha" /> and <see cref="F:SharpDX.Direct3D9.Blend.InverseSourceAlpha" /> in separate calls. </p> </dd>
  9514. </summary>
  9515. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_BOTHSRCALPHA']/*" />
  9516. <msdn-id>bb172508</msdn-id>
  9517. <unmanaged>D3DBLEND_BOTHSRCALPHA</unmanaged>
  9518. <unmanaged-short>D3DBLEND_BOTHSRCALPHA</unmanaged-short>
  9519. </member>
  9520. <member name="F:SharpDX.Direct3D9.Blend.BothInverseSourceAlpha">
  9521. <summary>
  9522. <dd> <p><strong>Obsolete</strong>. Source blend factor is (1 - As, 1 - As, 1 - As, 1 - As), and destination blend factor is (As, As, As, As); the destination blend selection is overridden. This blend mode is supported only for the <see cref="F:SharpDX.Direct3D9.RenderState.SourceBlend" /> render state. </p> </dd>
  9523. </summary>
  9524. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_BOTHINVSRCALPHA']/*" />
  9525. <msdn-id>bb172508</msdn-id>
  9526. <unmanaged>D3DBLEND_BOTHINVSRCALPHA</unmanaged>
  9527. <unmanaged-short>D3DBLEND_BOTHINVSRCALPHA</unmanaged-short>
  9528. </member>
  9529. <member name="F:SharpDX.Direct3D9.Blend.BlendFactor">
  9530. <summary>
  9531. <dd> <p>Constant color blending factor used by the frame-buffer blender. This blend mode is supported only if <see cref="F:SharpDX.Direct3D9.BlendCaps.BlendFactor" /> is set in the <strong>SrcBlendCaps</strong> or <strong>DestBlendCaps</strong> members of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd>
  9532. </summary>
  9533. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_BLENDFACTOR']/*" />
  9534. <msdn-id>bb172508</msdn-id>
  9535. <unmanaged>D3DBLEND_BLENDFACTOR</unmanaged>
  9536. <unmanaged-short>D3DBLEND_BLENDFACTOR</unmanaged-short>
  9537. </member>
  9538. <member name="F:SharpDX.Direct3D9.Blend.InverseBlendFactor">
  9539. <summary>
  9540. <dd> <p>Inverted constant color-blending factor used by the frame-buffer blender. This blend mode is supported only if the <see cref="F:SharpDX.Direct3D9.BlendCaps.BlendFactor" /> bit is set in the <strong>SrcBlendCaps</strong> or <strong>DestBlendCaps</strong> members of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd>
  9541. </summary>
  9542. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_INVBLENDFACTOR']/*" />
  9543. <msdn-id>bb172508</msdn-id>
  9544. <unmanaged>D3DBLEND_INVBLENDFACTOR</unmanaged>
  9545. <unmanaged-short>D3DBLEND_INVBLENDFACTOR</unmanaged-short>
  9546. </member>
  9547. <member name="F:SharpDX.Direct3D9.Blend.SourceColor2">
  9548. <summary>
  9549. <dd> <p>Blend factor is (PSOutColor[1]r, PSOutColor[1]g, PSOutColor[1]b, not used). See Render. </p> <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 9Ex:</p> <p>This flag is available in Direct3D 9Ex only.</p> </td></tr> </table> <p>?</p> </dd>
  9550. </summary>
  9551. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_SRCCOLOR2']/*" />
  9552. <msdn-id>bb172508</msdn-id>
  9553. <unmanaged>D3DBLEND_SRCCOLOR2</unmanaged>
  9554. <unmanaged-short>D3DBLEND_SRCCOLOR2</unmanaged-short>
  9555. </member>
  9556. <member name="F:SharpDX.Direct3D9.Blend.InverseSourceColor2">
  9557. <summary>
  9558. <dd> <p>Blend factor is (1 - PSOutColor[1]r, 1 - PSOutColor[1]g, 1 - PSOutColor[1]b, not used)). See Render. </p> <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 9Ex:</p> <p>This flag is available in Direct3D 9Ex only.</p> </td></tr> </table> <p>?</p> </dd>
  9559. </summary>
  9560. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLEND_INVSRCCOLOR2']/*" />
  9561. <msdn-id>bb172508</msdn-id>
  9562. <unmanaged>D3DBLEND_INVSRCCOLOR2</unmanaged>
  9563. <unmanaged-short>D3DBLEND_INVSRCCOLOR2</unmanaged-short>
  9564. </member>
  9565. <member name="T:SharpDX.Direct3D9.BlendCaps">
  9566. <summary>
  9567. <p>Represents the capabilities of the hardware exposed through the Direct3D object.</p>
  9568. </summary>
  9569. <remarks>
  9570. <p>The MaxTextureBlendStages and MaxSimultaneousTextures members might seem similar, but they contain different information. The MaxTextureBlendStages member contains the total number of texture-blending stages supported by the current device, and the MaxSimultaneousTextures member describes how many of those stages can have textures bound to them by using the <strong>SetTexture</strong> method.</p><p>When the driver fills this structure, it can set values for execute-buffer capabilities, even when the interface being used to retrieve the capabilities (such as <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>) does not support execute buffers.</p><p>In general, performance problems may occur if you use a texture and then modify it during a scene. Ensure that no texture used in the current <strong>BeginScene</strong> and <strong>EndScene</strong> block is evicted unless absolutely necessary. In the case of extremely high texture usage within a scene, the results are undefined. This occurs when you modify a texture that you have used in the scene and there is no spare texture memory available. For such systems, the contents of the z-buffer become invalid at EndScene. Applications should not call <strong>UpdateSurface</strong> to or from the back buffer on this type of hardware inside a BeginScene/EndScene pair. In addition, applications should not try to access the z-buffer if the <see cref="F:SharpDX.Direct3D9.RasterCaps.ZBufferLessHsr" /> capability flag is set. Finally, applications should not lock the back buffer or the z-buffer inside a BeginScene/EndScene pair.</p><p>The following flags concerning mipmapped textures are not supported in Direct3D 9. </p><ul> <li>D3DPTFILTERCAPS_LINEAR</li> <li>D3DPTFILTERCAPS_LINEARMIPLINEAR</li> <li>D3DPTFILTERCAPS_LINEARMIPNEAREST</li> <li>D3DPTFILTERCAPS_MIPNEAREST</li> <li>D3DPTFILTERCAPS_NEAREST</li> </ul>
  9571. </remarks>
  9572. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS']/*" />
  9573. <msdn-id>bb172513</msdn-id>
  9574. <unmanaged>D3DPBLENDCAPS</unmanaged>
  9575. <unmanaged-short>D3DPBLENDCAPS</unmanaged-short>
  9576. </member>
  9577. <member name="F:SharpDX.Direct3D9.BlendCaps.Zero">
  9578. <summary>
  9579. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type, which identifies what type of resources are used for processing vertices.</p> </dd>
  9580. </summary>
  9581. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_ZERO']/*" />
  9582. <msdn-id>bb172513</msdn-id>
  9583. <unmanaged>D3DPBLENDCAPS_ZERO</unmanaged>
  9584. <unmanaged-short>D3DPBLENDCAPS_ZERO</unmanaged-short>
  9585. </member>
  9586. <member name="F:SharpDX.Direct3D9.BlendCaps.One">
  9587. <summary>
  9588. <dd> <p>Adapter on which this Direct3D device was created. This ordinal is valid only to pass to methods of the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface that created this Direct3D device. The <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface can always be retrieved by calling <strong>GetDirect3D</strong>. </p> </dd>
  9589. </summary>
  9590. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_ONE']/*" />
  9591. <msdn-id>bb172513</msdn-id>
  9592. <unmanaged>D3DPBLENDCAPS_ONE</unmanaged>
  9593. <unmanaged-short>D3DPBLENDCAPS_ONE</unmanaged-short>
  9594. </member>
  9595. <member name="F:SharpDX.Direct3D9.BlendCaps.SourceColor">
  9596. <summary>
  9597. <dd> <p> </p><p>The following driver-specific capability.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Caps.ReadScanline" /></strong></dt> </dl> </td><td> <p>Display hardware is capable of returning the current scan line.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Caps.Overlay" /></strong></dt> </dl> </td><td> <p>The display driver supports an overlay DDI that allows for verification of overlay capabilities. For more information about the overlay DDI, see Overlay DDI.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> </table> <p>?</p> </dd>
  9598. </summary>
  9599. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_SRCCOLOR']/*" />
  9600. <msdn-id>bb172513</msdn-id>
  9601. <unmanaged>D3DPBLENDCAPS_SRCCOLOR</unmanaged>
  9602. <unmanaged-short>D3DPBLENDCAPS_SRCCOLOR</unmanaged-short>
  9603. </member>
  9604. <member name="F:SharpDX.Direct3D9.BlendCaps.InverseSourceColor">
  9605. <summary>
  9606. <dd> <p>Driver-specific capabilities identified in <see cref="T:SharpDX.Direct3D9.Caps2" />.</p> </dd>
  9607. </summary>
  9608. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_INVSRCCOLOR']/*" />
  9609. <msdn-id>bb172513</msdn-id>
  9610. <unmanaged>D3DPBLENDCAPS_INVSRCCOLOR</unmanaged>
  9611. <unmanaged-short>D3DPBLENDCAPS_INVSRCCOLOR</unmanaged-short>
  9612. </member>
  9613. <member name="F:SharpDX.Direct3D9.BlendCaps.SourceAlpha">
  9614. <summary>
  9615. <dd> <p>Driver-specific capabilities identified in <see cref="T:SharpDX.Direct3D9.Caps3" />.</p> </dd>
  9616. </summary>
  9617. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_SRCALPHA']/*" />
  9618. <msdn-id>bb172513</msdn-id>
  9619. <unmanaged>D3DPBLENDCAPS_SRCALPHA</unmanaged>
  9620. <unmanaged-short>D3DPBLENDCAPS_SRCALPHA</unmanaged-short>
  9621. </member>
  9622. <member name="F:SharpDX.Direct3D9.BlendCaps.InverseSourceAlpha">
  9623. <summary>
  9624. <dd> <p> </p><p>Bit mask of values representing what presentation swap intervals are available.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" /></strong></dt> </dl> </td><td> <p>The driver supports an immediate presentation swap interval.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.One" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Two" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every second screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Three" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every third screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Four" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every fourth screen refresh.</p> </td></tr> </table> <p>?</p> </dd>
  9625. </summary>
  9626. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_INVSRCALPHA']/*" />
  9627. <msdn-id>bb172513</msdn-id>
  9628. <unmanaged>D3DPBLENDCAPS_INVSRCALPHA</unmanaged>
  9629. <unmanaged-short>D3DPBLENDCAPS_INVSRCALPHA</unmanaged-short>
  9630. </member>
  9631. <member name="F:SharpDX.Direct3D9.BlendCaps.DestinationAlpha">
  9632. <summary>
  9633. <dd> <p> </p><p>Bit mask indicating what hardware support is available for cursors. Direct3D 9 does not define alpha-blending cursor capabilities.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CursorCaps.Color" /></strong></dt> </dl> </td><td> <p>A full-color cursor is supported in hardware. Specifically, this flag indicates that the driver supports at least a hardware color cursor in high-resolution modes (with scan lines greater than or equal to 400).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CursorCaps.LowResolution" /></strong></dt> </dl> </td><td> <p>A full-color cursor is supported in hardware. Specifically, this flag indicates that the driver supports a hardware color cursor in both high-resolution and low-resolution modes (with scan lines less than 400).</p> </td></tr> </table> <p>?</p> </dd>
  9634. </summary>
  9635. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_DESTALPHA']/*" />
  9636. <msdn-id>bb172513</msdn-id>
  9637. <unmanaged>D3DPBLENDCAPS_DESTALPHA</unmanaged>
  9638. <unmanaged-short>D3DPBLENDCAPS_DESTALPHA</unmanaged-short>
  9639. </member>
  9640. <member name="F:SharpDX.Direct3D9.BlendCaps.InverseDestinationAlpha">
  9641. <summary>
  9642. <dd> <p> </p><p>Flags identifying the capabilities of the device.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.CanBlitSysToNonLocal" /></strong></dt> </dl> </td><td> <p>Device supports blits from system-memory textures to nonlocal video-memory textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.CanRenderAfterFlip" /></strong></dt> </dl> </td><td> <p>Device can queue rendering commands after a page flip. Applications do not change their behavior if this flag is set; this capability means that the device is relatively fast.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimitives2" /></strong></dt> </dl> </td><td> <p>Device can support at least a DirectX 5-compliant driver.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimitives2Extended" /></strong></dt> </dl> </td><td> <p>Device can support at least a DirectX 7-compliant driver.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimTLVertex" /></strong></dt> </dl> </td><td> <p>Device exports an <strong><see cref="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)" /></strong>-aware hal.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.ExecuteSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can use execute buffers from system memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.ExecuteVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can use execute buffers from video memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.HWRasterization" /></strong></dt> </dl> </td><td> <p>Device has hardware acceleration for scene rasterization.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.HWTransformAndLight" /></strong></dt> </dl> </td><td> <p>Device can support transformation and lighting in hardware.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.NPatches" /></strong></dt> </dl> </td><td> <p>Device supports N patches.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.PureDevice" /></strong></dt> </dl> </td><td> <p>Device can support rasterization, transform, lighting, and shading in hardware.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.QuinticRTPatches" /></strong></dt> </dl> </td><td> <p>Device supports quintic B?zier curves and B-splines.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatches" /></strong></dt> </dl> </td><td> <p>Device supports rectangular and triangular patches.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatchHandleZero" /></strong></dt> </dl> </td><td> <p>When this device capability is set, the hardware architecture does not require caching of any information, and uncached patches (handle zero) will be drawn as efficiently as cached ones. Note that setting <see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatchHandleZero" /> does not mean that a patch with handle zero can be drawn. A handle-zero patch can always be drawn whether this cap is set or not.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.SeparateTextureMemory" /></strong></dt> </dl> </td><td> <p>Device is texturing from separate memory pools.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureNonLocalVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from non-local video memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from system memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from device memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TLVertexSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can use buffers from system memory for transformed and lit vertices.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TLVertexVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can use buffers from video memory for transformed and lit vertices.</p> </td></tr> </table> <p>?</p> </dd>
  9643. </summary>
  9644. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_INVDESTALPHA']/*" />
  9645. <msdn-id>bb172513</msdn-id>
  9646. <unmanaged>D3DPBLENDCAPS_INVDESTALPHA</unmanaged>
  9647. <unmanaged-short>D3DPBLENDCAPS_INVDESTALPHA</unmanaged-short>
  9648. </member>
  9649. <member name="F:SharpDX.Direct3D9.BlendCaps.DestinationColor">
  9650. <summary>
  9651. <dd> <p>Miscellaneous driver primitive capabilities. See <see cref="T:SharpDX.Direct3D9.PrimitiveMiscCaps" />.</p> </dd>
  9652. </summary>
  9653. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_DESTCOLOR']/*" />
  9654. <msdn-id>bb172513</msdn-id>
  9655. <unmanaged>D3DPBLENDCAPS_DESTCOLOR</unmanaged>
  9656. <unmanaged-short>D3DPBLENDCAPS_DESTCOLOR</unmanaged-short>
  9657. </member>
  9658. <member name="F:SharpDX.Direct3D9.BlendCaps.InverseDestinationColor">
  9659. <summary>
  9660. <dd> <p> </p><p>Information on raster-drawing capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.Anisotropy" /></strong></dt> </dl> </td><td> <p>Device supports anisotropic filtering.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ColorPerspective" /></strong></dt> </dl> </td><td> <p>Device iterates colors perspective correctly.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.Dither" /></strong></dt> </dl> </td><td> <p>Device can dither to improve color resolution.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.DepthBias" /></strong></dt> </dl> </td><td> <p>Device supports legacy depth bias. For true depth bias, see <see cref="F:SharpDX.Direct3D9.RasterCaps.SlopeScaleDepthBias" />.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogRange" /></strong></dt> </dl> </td><td> <p>Device supports range-based fog. In range-based fog, the distance of an object from the viewer is used to compute fog effects, not the depth of the object (that is, the z-coordinate) in the scene.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogTable" /></strong></dt> </dl> </td><td> <p>Device calculates the fog value by referring to a lookup table containing fog values that are indexed to the depth of a given pixel.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogVertex" /></strong></dt> </dl> </td><td> <p>Device calculates the fog value during the lighting operation and interpolates the fog value during rasterization.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.MipMapLodBias" /></strong></dt> </dl> </td><td> <p>Device supports level-of-detail bias adjustments. These bias adjustments enable an application to make a mipmap appear crisper or less sharp than it normally would. For more information about level-of-detail bias in mipmaps, see <see cref="F:SharpDX.Direct3D9.SamplerState.MipMapLodBias" />.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.MultisampleToggle" /></strong></dt> </dl> </td><td> <p>Device supports toggling multisampling on and off between <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> (using <see cref="F:SharpDX.Direct3D9.RenderState.MultisampleAntialias" />).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ScissorTest" /></strong></dt> </dl> </td><td> <p>Device supports scissor test. See Scissor Test (Direct3D 9).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.SlopeScaleDepthBias" /></strong></dt> </dl> </td><td> <p>Device performs true slope-scale based depth bias. This is in contrast to the legacy style depth bias.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.WBuffer" /></strong></dt> </dl> </td><td> <p>Device supports depth buffering using w.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.WFog" /></strong></dt> </dl> </td><td> <p>Device supports w-based fog. W-based fog is used when a perspective projection matrix is specified, but affine projections still use z-based fog. The system considers a projection matrix that contains a nonzero value in the [3][4] element to be a perspective projection matrix.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ZBufferLessHsr" /></strong></dt> </dl> </td><td> <p>Device can perform hidden-surface removal (HSR) without requiring the application to sort polygons and without requiring the allocation of a depth-buffer. This leaves more video memory for textures. The method used to perform HSR is hardware-dependent and is transparent to the application.</p> <p>Z-bufferless HSR is performed if no depth-buffer surface is associated with the rendering-target surface and the depth-buffer comparison test is enabled (that is, when the state value associated with the <strong><see cref="F:SharpDX.Direct3D9.RenderState.ZEnable" /></strong> enumeration constant is set to <strong>TRUE</strong>).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ZFog" /></strong></dt> </dl> </td><td> <p>Device supports z-based fog.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.DepthTest" /></strong></dt> </dl> </td><td> <p>Device can perform z-test operations. This effectively renders a primitive and indicates whether any z pixels have been rendered.</p> </td></tr> </table> <p>?</p> </dd>
  9661. </summary>
  9662. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_INVDESTCOLOR']/*" />
  9663. <msdn-id>bb172513</msdn-id>
  9664. <unmanaged>D3DPBLENDCAPS_INVDESTCOLOR</unmanaged>
  9665. <unmanaged-short>D3DPBLENDCAPS_INVDESTCOLOR</unmanaged-short>
  9666. </member>
  9667. <member name="F:SharpDX.Direct3D9.BlendCaps.SourceAlphaSaturated">
  9668. <summary>
  9669. <dd> <p> </p><p>Z-buffer comparison capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Always" /></strong></dt> </dl> </td><td> <p>Always pass the z-test.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Equal" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z equals the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Greater" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is greater than the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.GreaterEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is greater than or equal to the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Less" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is less than the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.LessEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is less than or equal to the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Never" /></strong></dt> </dl> </td><td> <p>Always fail the z-test.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.NotEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z does not equal the current z.</p> </td></tr> </table> <p>?</p> </dd>
  9670. </summary>
  9671. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_SRCALPHASAT']/*" />
  9672. <msdn-id>bb172513</msdn-id>
  9673. <unmanaged>D3DPBLENDCAPS_SRCALPHASAT</unmanaged>
  9674. <unmanaged-short>D3DPBLENDCAPS_SRCALPHASAT</unmanaged-short>
  9675. </member>
  9676. <member name="F:SharpDX.Direct3D9.BlendCaps.Bothsrcalpha">
  9677. <summary>
  9678. <dd> <p> </p><p>Source-blending capabilities. This member can be one or more of the following flags. (The RGBA values of the source and destination are indicated by the subscripts s and d.)</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.BlendFactor" /></strong></dt> </dl> </td><td> <p>The driver supports both <see cref="F:SharpDX.Direct3D9.Blend.BlendFactor" /> and <see cref="F:SharpDX.Direct3D9.Blend.InverseBlendFactor" />. See <strong><see cref="T:SharpDX.Direct3D9.Blend" /></strong>.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.BothInverseSourceAlpha" /></strong></dt> </dl> </td><td> <p>Source blend factor is (1 - As, 1 - As, 1 - As, 1 - As) and destination blend factor is (As, As, As, As); the destination blend selection is overridden.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.Bothsrcalpha" /></strong></dt> </dl> </td><td> <p>The driver supports the <see cref="F:SharpDX.Direct3D9.Blend.Bothsrcalpha" /> blend mode. (This blend mode is obsolete. For more information, see <see cref="T:SharpDX.Direct3D9.Blend" />.)</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.DestinationAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (Ad, Ad, Ad, Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.DestinationColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (Rd, Gd, Bd, Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseDestinationAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Ad, 1 - Ad, 1 - Ad, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseDestinationColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - As, 1 - As, 1 - As, 1 - As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Rs, 1 - Gs, 1 - Bs, 1 - As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceColor2" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - PSOutColor[1]r, 1 - PSOutColor[1]g, 1 - PSOutColor[1]b, not used)). See <strong>Render Target Blending</strong>.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.One" /></strong></dt> </dl> </td><td> <p>Blend factor is (1, 1, 1, 1).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (As, As, As, As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceAlphaSaturated" /></strong></dt> </dl> </td><td> <p>Blend factor is (f, f, f, 1); f = min(As, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (Rs, Gs, Bs, As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceColor2" /></strong></dt> </dl> </td><td> <p>Blend factor is (PSOutColor[1]r, PSOutColor[1]g, PSOutColor[1]b, not used). See <strong>Render Target Blending</strong>.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.Zero" /></strong></dt> </dl> </td><td> <p>Blend factor is (0, 0, 0, 0).</p> </td></tr> </table> <p>?</p> </dd>
  9679. </summary>
  9680. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_BOTHSRCALPHA']/*" />
  9681. <msdn-id>bb172513</msdn-id>
  9682. <unmanaged>D3DPBLENDCAPS_BOTHSRCALPHA</unmanaged>
  9683. <unmanaged-short>D3DPBLENDCAPS_BOTHSRCALPHA</unmanaged-short>
  9684. </member>
  9685. <member name="F:SharpDX.Direct3D9.BlendCaps.BothInverseSourceAlpha">
  9686. <summary>
  9687. <dd> <p>Destination-blending capabilities. This member can be the same capabilities that are defined for the SrcBlendCaps member. </p> </dd>
  9688. </summary>
  9689. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_BOTHINVSRCALPHA']/*" />
  9690. <msdn-id>bb172513</msdn-id>
  9691. <unmanaged>D3DPBLENDCAPS_BOTHINVSRCALPHA</unmanaged>
  9692. <unmanaged-short>D3DPBLENDCAPS_BOTHINVSRCALPHA</unmanaged-short>
  9693. </member>
  9694. <member name="F:SharpDX.Direct3D9.BlendCaps.BlendFactor">
  9695. <summary>
  9696. <dd> <p>Alpha-test comparison capabilities. This member can include the same capability flags defined for the ZCmpCaps member. If this member contains only the <see cref="F:SharpDX.Direct3D9.CompareCaps.Always" /> capability or only the <see cref="F:SharpDX.Direct3D9.CompareCaps.Never" /> capability, the driver does not support alpha tests. Otherwise, the flags identify the individual comparisons that are supported for alpha testing. </p> </dd>
  9697. </summary>
  9698. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_BLENDFACTOR']/*" />
  9699. <msdn-id>bb172513</msdn-id>
  9700. <unmanaged>D3DPBLENDCAPS_BLENDFACTOR</unmanaged>
  9701. <unmanaged-short>D3DPBLENDCAPS_BLENDFACTOR</unmanaged-short>
  9702. </member>
  9703. <member name="F:SharpDX.Direct3D9.BlendCaps.SourceColor2">
  9704. <summary>
  9705. <dd> <p>Shading operations capabilities. It is assumed, in general, that if a device supports a given command at all, it supports the <see cref="F:SharpDX.Direct3D9.ShadeMode.Flat" /> mode (as specified in the <strong><see cref="T:SharpDX.Direct3D9.ShadeMode" /></strong> enumerated type). This flag specifies whether the driver can also support Gouraud shading and whether alpha color components are supported. When alpha components are not supported, the alpha value of colors generated is implicitly 255. This is the maximum possible alpha (that is, the alpha component is at full intensity). </p> <p>The color, specular highlights, fog, and alpha interpolants of a triangle each have capability flags that an application can use to find out how they are implemented by the device driver.</p> <p> </p><p>This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.AlphaGouraudBlend" /></strong></dt> </dl> </td><td> <p>Device can support an alpha component for Gouraud-blended transparency (the <see cref="F:SharpDX.Direct3D9.ShadeMode.Gouraud" /> state for the <see cref="T:SharpDX.Direct3D9.ShadeMode" /> enumerated type). In this mode, the alpha color component of a primitive is provided at vertices and interpolated across a face along with the other color components.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.ColorGouraudRgb" /></strong></dt> </dl> </td><td> <p>Device can support colored Gouraud shading. In this mode, the per-vertex color components (red, green, and blue) are interpolated across a triangle face.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.FogGouraud" /></strong></dt> </dl> </td><td> <p>Device can support fog in the Gouraud shading mode.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.SpecularGouraudRgb" /></strong></dt> </dl> </td><td> <p>Device supports Gouraud shading of specular highlights.</p> </td></tr> </table> <p>?</p> </dd>
  9706. </summary>
  9707. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_SRCCOLOR2']/*" />
  9708. <msdn-id>bb172513</msdn-id>
  9709. <unmanaged>D3DPBLENDCAPS_SRCCOLOR2</unmanaged>
  9710. <unmanaged-short>D3DPBLENDCAPS_SRCCOLOR2</unmanaged-short>
  9711. </member>
  9712. <member name="F:SharpDX.Direct3D9.BlendCaps.InverseSourceColor2">
  9713. <summary>
  9714. <dd> <p> </p><p>Miscellaneous texture-mapping capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Alpha" /></strong></dt> </dl> </td><td> <p>Alpha in texture pixels is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.AlphaPalette" /></strong></dt> </dl> </td><td> <p>Device can draw alpha from texture palettes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.CubeMap" /></strong></dt> </dl> </td><td> <p>Supports cube textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.CubeMapPow2" /></strong></dt> </dl> </td><td> <p>Device requires that cube texture maps have dimensions specified as powers of two.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipCubeMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped cube textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipVolumeMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped volume textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /></strong></dt> </dl> </td><td> <p><see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /> is also set, conditionally supports the use of 2D textures with dimensions that are not powers of two. A device that exposes this capability can use such a texture if all of the following requirements are met.</p> <p> </p><ul> <li>The texture addressing mode for the texture stage is set to <see cref="F:SharpDX.Direct3D9.TextureAddress.Clamp" />.</li> <li>Texture wrapping for the texture stage is disabled (<strong>D3DRS_WRAP</strong> n set to 0).</li> <li>Mipmapping is not in use (use magnification filter only).</li> <li>Texture formats must not be <see cref="F:SharpDX.Direct3D9.Format.Dxt1" /> through <see cref="F:SharpDX.Direct3D9.Format.Dxt5" />.</li> </ul> <p>If this flag is not set, and <see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /> is also not set, then unconditional support is provided for 2D textures with dimensions that are not powers of two.</p> <p>A texture that is not a power of two cannot be set at a stage that will be read based on a shader computation (such as the bem - ps and texm3x3 - ps instructions in pixel shaders versions 1_0 to 1_3). For example, these textures can be used to store bumps that will be fed into texture reads, but not the environment maps that are used in texbem - ps, texbeml - ps, and texm3x3spec - ps. This means that a texture with dimensions that are not powers of two cannot be addressed or sampled using texture coordinates computed within the shader. This type of operation is known as a dependent read and cannot be performed on these types of textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.NoProjectedBumpEnvironment" /></strong></dt> </dl> </td><td> <p>Device does not support a projected bump-environment loopkup operation in programmable and fixed function shaders.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Perspective" /></strong></dt> </dl> </td><td> <p>Perspective correction texturing is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /></strong></dt> </dl> </td><td> <p>If <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is not set, all textures must have widths and heights specified as powers of two. This requirement does not apply to either cube textures or volume textures.</p> <p>If <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is also set, conditionally supports the use of 2D textures with dimensions that are not powers of two. See <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> description.</p> <p>If this flag is not set, and <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is also not set, then unconditional support is provided for 2D textures with dimensions that are not powers of two.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Projected" /></strong></dt> </dl> </td><td> <p>Supports the <see cref="F:SharpDX.Direct3D9.TextureTransform.Projected" /> texture transformation flag. When applied, the device divides transformed texture coordinates by the last texture coordinate. If this capability is present, then the projective divide occurs per pixel. If this capability is not present, but the projective divide needs to occur anyway, then it is performed on a per-vertex basis by the Direct3D runtime.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.SquareOnly" /></strong></dt> </dl> </td><td> <p>All textures must be square.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize" /></strong></dt> </dl> </td><td> <p>Texture indices are not scaled by the texture size prior to interpolation.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMap" /></strong></dt> </dl> </td><td> <p>Device supports volume textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMapPow2" /></strong></dt> </dl> </td><td> <p>Device requires that volume texture maps have dimensions specified as powers of two.</p> </td></tr> </table> <p>?</p> </dd>
  9715. </summary>
  9716. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPBLENDCAPS_INVSRCCOLOR2']/*" />
  9717. <msdn-id>bb172513</msdn-id>
  9718. <unmanaged>D3DPBLENDCAPS_INVSRCCOLOR2</unmanaged>
  9719. <unmanaged-short>D3DPBLENDCAPS_INVSRCCOLOR2</unmanaged-short>
  9720. </member>
  9721. <member name="T:SharpDX.Direct3D9.BlendOperation">
  9722. <summary>
  9723. <p>Defines the supported blend operations. See Remarks for definitions of terms.</p>
  9724. </summary>
  9725. <remarks>
  9726. <p>Source, Destination, and Result are defined as: </p><table> <tr><th>Term</th><th>Type</th><th>Description</th></tr> <tr><td>Source</td><td>Input</td><td>Color of the source pixel before the operation.</td></tr> <tr><td>Destination</td><td>Input</td><td>Color of the pixel in the destination buffer before the operation.</td></tr> <tr><td>Result</td><td>Output</td><td>Returned value that is the blended color resulting from the operation.</td></tr> </table><p>?</p><p>This enumerated type defines values used by the following render states:</p><ul> <li><see cref="F:SharpDX.Direct3D9.RenderState.BlendOperation" /></li> <li><see cref="F:SharpDX.Direct3D9.RenderState.BlendOperationAlpha" /></li> </ul>
  9727. </remarks>
  9728. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLENDOP']/*" />
  9729. <msdn-id>bb172509</msdn-id>
  9730. <unmanaged>D3DBLENDOP</unmanaged>
  9731. <unmanaged-short>D3DBLENDOP</unmanaged-short>
  9732. </member>
  9733. <member name="F:SharpDX.Direct3D9.BlendOperation.Add">
  9734. <summary>
  9735. <dd> <p>The result is the destination added to the source. Result = Source + Destination</p> </dd>
  9736. </summary>
  9737. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLENDOP_ADD']/*" />
  9738. <msdn-id>bb172509</msdn-id>
  9739. <unmanaged>D3DBLENDOP_ADD</unmanaged>
  9740. <unmanaged-short>D3DBLENDOP_ADD</unmanaged-short>
  9741. </member>
  9742. <member name="F:SharpDX.Direct3D9.BlendOperation.Subtract">
  9743. <summary>
  9744. <dd> <p>The result is the destination subtracted from to the source. Result = Source - Destination</p> </dd>
  9745. </summary>
  9746. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLENDOP_SUBTRACT']/*" />
  9747. <msdn-id>bb172509</msdn-id>
  9748. <unmanaged>D3DBLENDOP_SUBTRACT</unmanaged>
  9749. <unmanaged-short>D3DBLENDOP_SUBTRACT</unmanaged-short>
  9750. </member>
  9751. <member name="F:SharpDX.Direct3D9.BlendOperation.ReverseSubtract">
  9752. <summary>
  9753. <dd> <p>The result is the source subtracted from the destination. Result = Destination - Source</p> </dd>
  9754. </summary>
  9755. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLENDOP_REVSUBTRACT']/*" />
  9756. <msdn-id>bb172509</msdn-id>
  9757. <unmanaged>D3DBLENDOP_REVSUBTRACT</unmanaged>
  9758. <unmanaged-short>D3DBLENDOP_REVSUBTRACT</unmanaged-short>
  9759. </member>
  9760. <member name="F:SharpDX.Direct3D9.BlendOperation.Minimum">
  9761. <summary>
  9762. <dd> <p>The result is the minimum of the source and destination. Result = MIN(Source, Destination)</p> </dd>
  9763. </summary>
  9764. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLENDOP_MIN']/*" />
  9765. <msdn-id>bb172509</msdn-id>
  9766. <unmanaged>D3DBLENDOP_MIN</unmanaged>
  9767. <unmanaged-short>D3DBLENDOP_MIN</unmanaged-short>
  9768. </member>
  9769. <member name="F:SharpDX.Direct3D9.BlendOperation.Maximum">
  9770. <summary>
  9771. <dd> <p>The result is the maximum of the source and destination. Result = MAX(Source, Destination)</p> </dd>
  9772. </summary>
  9773. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBLENDOP_MAX']/*" />
  9774. <msdn-id>bb172509</msdn-id>
  9775. <unmanaged>D3DBLENDOP_MAX</unmanaged>
  9776. <unmanaged-short>D3DBLENDOP_MAX</unmanaged-short>
  9777. </member>
  9778. <member name="T:SharpDX.Direct3D9.CallbackSearchFlags">
  9779. <summary>
  9780. <p>Flags used to obtain callback information.</p>
  9781. </summary>
  9782. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCALLBACK_SEARCH_FLAGS']/*" />
  9783. <msdn-id>bb172714</msdn-id>
  9784. <unmanaged>D3DXCALLBACK_SEARCH_FLAGS</unmanaged>
  9785. <unmanaged-short>D3DXCALLBACK_SEARCH_FLAGS</unmanaged-short>
  9786. </member>
  9787. <member name="F:SharpDX.Direct3D9.CallbackSearchFlags.SearchExcludingInitialPosition">
  9788. <summary>
  9789. <dd> <p>Exclude callbacks located at the initial position from the search.</p> </dd>
  9790. </summary>
  9791. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCALLBACK_SEARCH_EXCLUDING_INITIAL_POSITION']/*" />
  9792. <msdn-id>bb172714</msdn-id>
  9793. <unmanaged>D3DXCALLBACK_SEARCH_EXCLUDING_INITIAL_POSITION</unmanaged>
  9794. <unmanaged-short>D3DXCALLBACK_SEARCH_EXCLUDING_INITIAL_POSITION</unmanaged-short>
  9795. </member>
  9796. <member name="F:SharpDX.Direct3D9.CallbackSearchFlags.SearchBehindInitialPosition">
  9797. <summary>
  9798. <dd> <p>Reverse the callback search direction.</p> </dd>
  9799. </summary>
  9800. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCALLBACK_SEARCH_BEHIND_INITIAL_POSITION']/*" />
  9801. <msdn-id>bb172714</msdn-id>
  9802. <unmanaged>D3DXCALLBACK_SEARCH_BEHIND_INITIAL_POSITION</unmanaged>
  9803. <unmanaged-short>D3DXCALLBACK_SEARCH_BEHIND_INITIAL_POSITION</unmanaged-short>
  9804. </member>
  9805. <member name="T:SharpDX.Direct3D9.Caps">
  9806. <summary>
  9807. <p> Obsolete in DirectX 8.0 and later versions; see Remarks. </p><p>The D3DLIGHTINGCAPS structure describes the lighting capabilities of a device.</p>
  9808. </summary>
  9809. <remarks>
  9810. <p>This structure has been replaced by D3DCAPS8 (see the DirectX 8.0 SDK documentation) for DirectX 8.0 and later runtimes, but is required for DirectX 7.0 and earlier runtime compatibility. See Reporting DirectX 8.0 Style Direct3D Capabilities for details.</p><p>This structure is a member of the <strong>D3DDEVICEDESC_V1</strong> structure.</p>
  9811. </remarks>
  9812. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS']/*" />
  9813. <msdn-id>ff548471</msdn-id>
  9814. <unmanaged>D3DCAPS</unmanaged>
  9815. <unmanaged-short>D3DCAPS</unmanaged-short>
  9816. </member>
  9817. <member name="F:SharpDX.Direct3D9.Caps.Overlay">
  9818. <summary>
  9819. <dd> <p>Specifies the size, in bytes, of the D3DLIGHTINGCAPS structure. </p> </dd>
  9820. </summary>
  9821. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS_OVERLAY']/*" />
  9822. <msdn-id>ff548471</msdn-id>
  9823. <unmanaged>D3DCAPS_OVERLAY</unmanaged>
  9824. <unmanaged-short>D3DCAPS_OVERLAY</unmanaged-short>
  9825. </member>
  9826. <member name="F:SharpDX.Direct3D9.Caps.ReadScanline">
  9827. <summary>
  9828. <dd> <p> Specifies flags describing the capabilities of the lighting module. The following flags are defined: </p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td>D3DLIGHTCAPS_DIRECTIONAL</td><td>Directional lights are supported.
  9829. </td></tr> <tr><td>D3DLIGHTCAPS_GLSPOT</td><td>OpenGL-style spotlights are supported.</td></tr> <tr><td>D3DLIGHTCAPS_PARALLELPOINT</td><td>Parallel-point lights are supported.</td></tr> <tr><td>D3DLIGHTCAPS_POINT</td><td>Point lights are supported.</td></tr> <tr><td>D3DLIGHTCAPS_SPOT</td><td>Spotlights are supported.
  9830. </td></tr> </table> <p>?</p> </dd>
  9831. </summary>
  9832. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS_READ_SCANLINE']/*" />
  9833. <msdn-id>ff548471</msdn-id>
  9834. <unmanaged>D3DCAPS_READ_SCANLINE</unmanaged>
  9835. <unmanaged-short>D3DCAPS_READ_SCANLINE</unmanaged-short>
  9836. </member>
  9837. <member name="F:SharpDX.Direct3D9.Caps.None">
  9838. <summary>
  9839. None.
  9840. </summary>
  9841. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  9842. <unmanaged>None</unmanaged>
  9843. <unmanaged-short>None</unmanaged-short>
  9844. </member>
  9845. <member name="T:SharpDX.Direct3D9.Caps2">
  9846. <summary>
  9847. <p>Driver capability flags.</p>
  9848. </summary>
  9849. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS2']/*" />
  9850. <msdn-id>bb172511</msdn-id>
  9851. <unmanaged>D3DCAPS2</unmanaged>
  9852. <unmanaged-short>D3DCAPS2</unmanaged-short>
  9853. </member>
  9854. <member name="F:SharpDX.Direct3D9.Caps2.FullScreenGamma">
  9855. <summary>
  9856. No documentation.
  9857. </summary>
  9858. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS2_FULLSCREENGAMMA']/*" />
  9859. <msdn-id>bb172511</msdn-id>
  9860. <unmanaged>D3DCAPS2_FULLSCREENGAMMA</unmanaged>
  9861. <unmanaged-short>D3DCAPS2_FULLSCREENGAMMA</unmanaged-short>
  9862. </member>
  9863. <member name="F:SharpDX.Direct3D9.Caps2.CanCalibrateGamma">
  9864. <summary>
  9865. No documentation.
  9866. </summary>
  9867. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS2_CANCALIBRATEGAMMA']/*" />
  9868. <msdn-id>bb172511</msdn-id>
  9869. <unmanaged>D3DCAPS2_CANCALIBRATEGAMMA</unmanaged>
  9870. <unmanaged-short>D3DCAPS2_CANCALIBRATEGAMMA</unmanaged-short>
  9871. </member>
  9872. <member name="F:SharpDX.Direct3D9.Caps2.CanManageResource">
  9873. <summary>
  9874. No documentation.
  9875. </summary>
  9876. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS2_CANMANAGERESOURCE']/*" />
  9877. <msdn-id>bb172511</msdn-id>
  9878. <unmanaged>D3DCAPS2_CANMANAGERESOURCE</unmanaged>
  9879. <unmanaged-short>D3DCAPS2_CANMANAGERESOURCE</unmanaged-short>
  9880. </member>
  9881. <member name="F:SharpDX.Direct3D9.Caps2.DynamicTextures">
  9882. <summary>
  9883. No documentation.
  9884. </summary>
  9885. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS2_DYNAMICTEXTURES']/*" />
  9886. <msdn-id>bb172511</msdn-id>
  9887. <unmanaged>D3DCAPS2_DYNAMICTEXTURES</unmanaged>
  9888. <unmanaged-short>D3DCAPS2_DYNAMICTEXTURES</unmanaged-short>
  9889. </member>
  9890. <member name="F:SharpDX.Direct3D9.Caps2.CanAutoGenerateMipMap">
  9891. <summary>
  9892. No documentation.
  9893. </summary>
  9894. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS2_CANAUTOGENMIPMAP']/*" />
  9895. <msdn-id>bb172511</msdn-id>
  9896. <unmanaged>D3DCAPS2_CANAUTOGENMIPMAP</unmanaged>
  9897. <unmanaged-short>D3DCAPS2_CANAUTOGENMIPMAP</unmanaged-short>
  9898. </member>
  9899. <member name="F:SharpDX.Direct3D9.Caps2.CanShareResource">
  9900. <summary>
  9901. No documentation.
  9902. </summary>
  9903. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS2_CANSHARERESOURCE']/*" />
  9904. <msdn-id>bb172511</msdn-id>
  9905. <unmanaged>D3DCAPS2_CANSHARERESOURCE</unmanaged>
  9906. <unmanaged-short>D3DCAPS2_CANSHARERESOURCE</unmanaged-short>
  9907. </member>
  9908. <member name="F:SharpDX.Direct3D9.Caps2.None">
  9909. <summary>
  9910. None.
  9911. </summary>
  9912. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  9913. <unmanaged>None</unmanaged>
  9914. <unmanaged-short>None</unmanaged-short>
  9915. </member>
  9916. <member name="T:SharpDX.Direct3D9.Caps3">
  9917. <summary>
  9918. <p>Driver capability flags.</p>
  9919. </summary>
  9920. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS3']/*" />
  9921. <msdn-id>bb172512</msdn-id>
  9922. <unmanaged>D3DCAPS3</unmanaged>
  9923. <unmanaged-short>D3DCAPS3</unmanaged-short>
  9924. </member>
  9925. <member name="F:SharpDX.Direct3D9.Caps3.AlphaFullScreenFlipOrDiscard">
  9926. <summary>
  9927. No documentation.
  9928. </summary>
  9929. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS3_ALPHA_FULLSCREEN_FLIP_OR_DISCARD']/*" />
  9930. <msdn-id>bb172512</msdn-id>
  9931. <unmanaged>D3DCAPS3_ALPHA_FULLSCREEN_FLIP_OR_DISCARD</unmanaged>
  9932. <unmanaged-short>D3DCAPS3_ALPHA_FULLSCREEN_FLIP_OR_DISCARD</unmanaged-short>
  9933. </member>
  9934. <member name="F:SharpDX.Direct3D9.Caps3.LinearToSrgbPresentation">
  9935. <summary>
  9936. No documentation.
  9937. </summary>
  9938. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS3_LINEAR_TO_SRGB_PRESENTATION']/*" />
  9939. <msdn-id>bb172512</msdn-id>
  9940. <unmanaged>D3DCAPS3_LINEAR_TO_SRGB_PRESENTATION</unmanaged>
  9941. <unmanaged-short>D3DCAPS3_LINEAR_TO_SRGB_PRESENTATION</unmanaged-short>
  9942. </member>
  9943. <member name="F:SharpDX.Direct3D9.Caps3.CopyToVideoMemory">
  9944. <summary>
  9945. No documentation.
  9946. </summary>
  9947. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS3_COPY_TO_VIDMEM']/*" />
  9948. <msdn-id>bb172512</msdn-id>
  9949. <unmanaged>D3DCAPS3_COPY_TO_VIDMEM</unmanaged>
  9950. <unmanaged-short>D3DCAPS3_COPY_TO_VIDMEM</unmanaged-short>
  9951. </member>
  9952. <member name="F:SharpDX.Direct3D9.Caps3.CopyToSystemMemory">
  9953. <summary>
  9954. No documentation.
  9955. </summary>
  9956. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS3_COPY_TO_SYSTEMMEM']/*" />
  9957. <msdn-id>bb172512</msdn-id>
  9958. <unmanaged>D3DCAPS3_COPY_TO_SYSTEMMEM</unmanaged>
  9959. <unmanaged-short>D3DCAPS3_COPY_TO_SYSTEMMEM</unmanaged-short>
  9960. </member>
  9961. <member name="F:SharpDX.Direct3D9.Caps3.DXVAHd">
  9962. <summary>
  9963. No documentation.
  9964. </summary>
  9965. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCAPS3_DXVAHD']/*" />
  9966. <msdn-id>bb172512</msdn-id>
  9967. <unmanaged>D3DCAPS3_DXVAHD</unmanaged>
  9968. <unmanaged-short>D3DCAPS3_DXVAHD</unmanaged-short>
  9969. </member>
  9970. <member name="F:SharpDX.Direct3D9.Caps3.None">
  9971. <summary>
  9972. None.
  9973. </summary>
  9974. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  9975. <unmanaged>None</unmanaged>
  9976. <unmanaged-short>None</unmanaged-short>
  9977. </member>
  9978. <member name="T:SharpDX.Direct3D9.Channel">
  9979. <summary>
  9980. <p>The following flags are used to specify which channels in a texture to operate on.</p>
  9981. </summary>
  9982. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_CHANNEL']/*" />
  9983. <msdn-id>bb205563</msdn-id>
  9984. <unmanaged>D3DX_CHANNEL</unmanaged>
  9985. <unmanaged-short>D3DX_CHANNEL</unmanaged-short>
  9986. </member>
  9987. <member name="F:SharpDX.Direct3D9.Channel.Red">
  9988. <summary>
  9989. No documentation.
  9990. </summary>
  9991. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_CHANNEL_RED']/*" />
  9992. <msdn-id>bb205563</msdn-id>
  9993. <unmanaged>D3DX_CHANNEL_RED</unmanaged>
  9994. <unmanaged-short>D3DX_CHANNEL_RED</unmanaged-short>
  9995. </member>
  9996. <member name="F:SharpDX.Direct3D9.Channel.Blue">
  9997. <summary>
  9998. No documentation.
  9999. </summary>
  10000. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_CHANNEL_BLUE']/*" />
  10001. <msdn-id>bb205563</msdn-id>
  10002. <unmanaged>D3DX_CHANNEL_BLUE</unmanaged>
  10003. <unmanaged-short>D3DX_CHANNEL_BLUE</unmanaged-short>
  10004. </member>
  10005. <member name="F:SharpDX.Direct3D9.Channel.Green">
  10006. <summary>
  10007. No documentation.
  10008. </summary>
  10009. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_CHANNEL_GREEN']/*" />
  10010. <msdn-id>bb205563</msdn-id>
  10011. <unmanaged>D3DX_CHANNEL_GREEN</unmanaged>
  10012. <unmanaged-short>D3DX_CHANNEL_GREEN</unmanaged-short>
  10013. </member>
  10014. <member name="F:SharpDX.Direct3D9.Channel.Alpha">
  10015. <summary>
  10016. No documentation.
  10017. </summary>
  10018. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_CHANNEL_ALPHA']/*" />
  10019. <msdn-id>bb205563</msdn-id>
  10020. <unmanaged>D3DX_CHANNEL_ALPHA</unmanaged>
  10021. <unmanaged-short>D3DX_CHANNEL_ALPHA</unmanaged-short>
  10022. </member>
  10023. <member name="F:SharpDX.Direct3D9.Channel.Luminance">
  10024. <summary>
  10025. No documentation.
  10026. </summary>
  10027. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_CHANNEL_LUMINANCE']/*" />
  10028. <msdn-id>bb205563</msdn-id>
  10029. <unmanaged>D3DX_CHANNEL_LUMINANCE</unmanaged>
  10030. <unmanaged-short>D3DX_CHANNEL_LUMINANCE</unmanaged-short>
  10031. </member>
  10032. <member name="T:SharpDX.Direct3D9.CleanType">
  10033. <summary>
  10034. <p>Defines operations to perform on vertices in preparation for mesh cleaning.</p>
  10035. </summary>
  10036. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCLEANTYPE']/*" />
  10037. <msdn-id>bb172720</msdn-id>
  10038. <unmanaged>D3DXCLEANTYPE</unmanaged>
  10039. <unmanaged-short>D3DXCLEANTYPE</unmanaged-short>
  10040. </member>
  10041. <member name="F:SharpDX.Direct3D9.CleanType.BackFacing">
  10042. <summary>
  10043. <dd> <p>Merge triangles that share the same vertex indices but have face normals pointing in opposite directions (back-facing triangles). Unless the triangles are not split by adding a replicated vertex, mesh adjacency data from the two triangles may conflict.</p> </dd>
  10044. </summary>
  10045. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCLEAN_BACKFACING']/*" />
  10046. <msdn-id>bb172720</msdn-id>
  10047. <unmanaged>D3DXCLEAN_BACKFACING</unmanaged>
  10048. <unmanaged-short>D3DXCLEAN_BACKFACING</unmanaged-short>
  10049. </member>
  10050. <member name="F:SharpDX.Direct3D9.CleanType.Bowties">
  10051. <summary>
  10052. <dd> <p>If a vertex is the apex of two triangle fans (a bowtie) and mesh operations will affect one of the fans, then split the shared vertex into two new vertices. Bowties can cause problems for operations such as mesh simplification that remove vertices, because removing one vertex affects two distinct sets of triangles.</p> </dd>
  10053. </summary>
  10054. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCLEAN_BOWTIES']/*" />
  10055. <msdn-id>bb172720</msdn-id>
  10056. <unmanaged>D3DXCLEAN_BOWTIES</unmanaged>
  10057. <unmanaged-short>D3DXCLEAN_BOWTIES</unmanaged-short>
  10058. </member>
  10059. <member name="F:SharpDX.Direct3D9.CleanType.Skinning">
  10060. <summary>
  10061. <dd> <p>Use this flag to prevent infinite loops during skinning setup mesh operations.</p> </dd>
  10062. </summary>
  10063. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCLEAN_SKINNING']/*" />
  10064. <msdn-id>bb172720</msdn-id>
  10065. <unmanaged>D3DXCLEAN_SKINNING</unmanaged>
  10066. <unmanaged-short>D3DXCLEAN_SKINNING</unmanaged-short>
  10067. </member>
  10068. <member name="F:SharpDX.Direct3D9.CleanType.Optimization">
  10069. <summary>
  10070. <dd> <p>Use this flag to prevent infinite loops during mesh optimization operations.</p> </dd>
  10071. </summary>
  10072. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCLEAN_OPTIMIZATION']/*" />
  10073. <msdn-id>bb172720</msdn-id>
  10074. <unmanaged>D3DXCLEAN_OPTIMIZATION</unmanaged>
  10075. <unmanaged-short>D3DXCLEAN_OPTIMIZATION</unmanaged-short>
  10076. </member>
  10077. <member name="F:SharpDX.Direct3D9.CleanType.Simplification">
  10078. <summary>
  10079. <dd> <p>Use this flag to prevent infinite loops during mesh simplification operations.</p> </dd>
  10080. </summary>
  10081. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCLEAN_SIMPLIFICATION']/*" />
  10082. <msdn-id>bb172720</msdn-id>
  10083. <unmanaged>D3DXCLEAN_SIMPLIFICATION</unmanaged>
  10084. <unmanaged-short>D3DXCLEAN_SIMPLIFICATION</unmanaged-short>
  10085. </member>
  10086. <member name="T:SharpDX.Direct3D9.ClearFlags">
  10087. <summary>
  10088. <p>These flags identify a surface to reset when calling <strong>Clear</strong>.</p>
  10089. </summary>
  10090. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCLEAR']/*" />
  10091. <msdn-id>bb172514</msdn-id>
  10092. <unmanaged>D3DCLEAR</unmanaged>
  10093. <unmanaged-short>D3DCLEAR</unmanaged-short>
  10094. </member>
  10095. <member name="F:SharpDX.Direct3D9.ClearFlags.Target">
  10096. <summary>
  10097. No documentation.
  10098. </summary>
  10099. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCLEAR_TARGET']/*" />
  10100. <msdn-id>bb172514</msdn-id>
  10101. <unmanaged>D3DCLEAR_TARGET</unmanaged>
  10102. <unmanaged-short>D3DCLEAR_TARGET</unmanaged-short>
  10103. </member>
  10104. <member name="F:SharpDX.Direct3D9.ClearFlags.ZBuffer">
  10105. <summary>
  10106. No documentation.
  10107. </summary>
  10108. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCLEAR_ZBUFFER']/*" />
  10109. <msdn-id>bb172514</msdn-id>
  10110. <unmanaged>D3DCLEAR_ZBUFFER</unmanaged>
  10111. <unmanaged-short>D3DCLEAR_ZBUFFER</unmanaged-short>
  10112. </member>
  10113. <member name="F:SharpDX.Direct3D9.ClearFlags.Stencil">
  10114. <summary>
  10115. No documentation.
  10116. </summary>
  10117. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCLEAR_STENCIL']/*" />
  10118. <msdn-id>bb172514</msdn-id>
  10119. <unmanaged>D3DCLEAR_STENCIL</unmanaged>
  10120. <unmanaged-short>D3DCLEAR_STENCIL</unmanaged-short>
  10121. </member>
  10122. <member name="F:SharpDX.Direct3D9.ClearFlags.All">
  10123. <summary>
  10124. No documentation.
  10125. </summary>
  10126. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCLEAR_ALL']/*" />
  10127. <msdn-id>bb172514</msdn-id>
  10128. <unmanaged>D3DCLEAR_ALL</unmanaged>
  10129. <unmanaged-short>D3DCLEAR_ALL</unmanaged-short>
  10130. </member>
  10131. <member name="F:SharpDX.Direct3D9.ClearFlags.None">
  10132. <summary>
  10133. None.
  10134. </summary>
  10135. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  10136. <unmanaged>None</unmanaged>
  10137. <unmanaged-short>None</unmanaged-short>
  10138. </member>
  10139. <member name="T:SharpDX.Direct3D9.ClipFlags">
  10140. <summary>
  10141. <p>Describes the current clip status.</p>
  10142. </summary>
  10143. <remarks>
  10144. <p>When clipping is enabled during vertex processing (by <strong>ProcessVertices</strong>, <strong>DrawPrimitive</strong>, or other drawing functions), Direct3D computes a clip code for every vertex. The clip code is a combination of D3DCS_* bits. When a vertex is outside a particular clipping plane, the corresponding bit is set in the clipping code. Direct3D maintains the clip status using <strong><see cref="T:SharpDX.Direct3D9.ClipStatus" /></strong>, which has ClipUnion and ClipIntersection members. ClipUnion is a bitwise OR of all vertex clip codes and ClipIntersection is a bitwise AND of all vertex clip codes. Initial values are zero for ClipUnion and 0xFFFFFFFF for ClipIntersection. When <see cref="F:SharpDX.Direct3D9.RenderState.Clipping" /> is set to <strong><see cref="F:SharpDX.Result.False" /></strong>, ClipUnion and ClipIntersection are set to zero. Direct3D updates the clip status during drawing calls. To compute clip status for a particular object, set ClipUnion and ClipIntersection to their initial value and continue drawing.</p><p> Clip status is not updated by <strong>DrawRectPatch</strong> and <strong>DrawTriPatch</strong> because there is no software emulation for them.</p>
  10145. </remarks>
  10146. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS']/*" />
  10147. <msdn-id>bb172516</msdn-id>
  10148. <unmanaged>D3DCS</unmanaged>
  10149. <unmanaged-short>D3DCS</unmanaged-short>
  10150. </member>
  10151. <member name="F:SharpDX.Direct3D9.ClipFlags.Left">
  10152. <summary>
  10153. <dd> <p>Clip union flags that describe the current clip status. This member can be one or more of the following flags:</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.All" /></strong></dt> </dl> </td><td> <p>Combination of all clip flags.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Left" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the left plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Right" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the right plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Top" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the top plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Bottom" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the bottom plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Front" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the front plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Back" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the back plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane0" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane1" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane2" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane3" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane4" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane5" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> </table> <p>?</p> </dd>
  10154. </summary>
  10155. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_LEFT']/*" />
  10156. <msdn-id>bb172516</msdn-id>
  10157. <unmanaged>D3DCS_LEFT</unmanaged>
  10158. <unmanaged-short>D3DCS_LEFT</unmanaged-short>
  10159. </member>
  10160. <member name="F:SharpDX.Direct3D9.ClipFlags.Right">
  10161. <summary>
  10162. <dd> <p>Clip intersection flags that describe the current clip status. This member can take the same flags as ClipUnion. </p> </dd>
  10163. </summary>
  10164. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_RIGHT']/*" />
  10165. <msdn-id>bb172516</msdn-id>
  10166. <unmanaged>D3DCS_RIGHT</unmanaged>
  10167. <unmanaged-short>D3DCS_RIGHT</unmanaged-short>
  10168. </member>
  10169. <member name="F:SharpDX.Direct3D9.ClipFlags.Top">
  10170. <summary>
  10171. No documentation.
  10172. </summary>
  10173. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_TOP']/*" />
  10174. <msdn-id>bb172516</msdn-id>
  10175. <unmanaged>D3DCS_TOP</unmanaged>
  10176. <unmanaged-short>D3DCS_TOP</unmanaged-short>
  10177. </member>
  10178. <member name="F:SharpDX.Direct3D9.ClipFlags.Bottom">
  10179. <summary>
  10180. No documentation.
  10181. </summary>
  10182. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_BOTTOM']/*" />
  10183. <msdn-id>bb172516</msdn-id>
  10184. <unmanaged>D3DCS_BOTTOM</unmanaged>
  10185. <unmanaged-short>D3DCS_BOTTOM</unmanaged-short>
  10186. </member>
  10187. <member name="F:SharpDX.Direct3D9.ClipFlags.Front">
  10188. <summary>
  10189. No documentation.
  10190. </summary>
  10191. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_FRONT']/*" />
  10192. <msdn-id>bb172516</msdn-id>
  10193. <unmanaged>D3DCS_FRONT</unmanaged>
  10194. <unmanaged-short>D3DCS_FRONT</unmanaged-short>
  10195. </member>
  10196. <member name="F:SharpDX.Direct3D9.ClipFlags.Back">
  10197. <summary>
  10198. No documentation.
  10199. </summary>
  10200. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_BACK']/*" />
  10201. <msdn-id>bb172516</msdn-id>
  10202. <unmanaged>D3DCS_BACK</unmanaged>
  10203. <unmanaged-short>D3DCS_BACK</unmanaged-short>
  10204. </member>
  10205. <member name="F:SharpDX.Direct3D9.ClipFlags.Plane0">
  10206. <summary>
  10207. No documentation.
  10208. </summary>
  10209. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_PLANE0']/*" />
  10210. <msdn-id>bb172516</msdn-id>
  10211. <unmanaged>D3DCS_PLANE0</unmanaged>
  10212. <unmanaged-short>D3DCS_PLANE0</unmanaged-short>
  10213. </member>
  10214. <member name="F:SharpDX.Direct3D9.ClipFlags.Plane1">
  10215. <summary>
  10216. No documentation.
  10217. </summary>
  10218. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_PLANE1']/*" />
  10219. <msdn-id>bb172516</msdn-id>
  10220. <unmanaged>D3DCS_PLANE1</unmanaged>
  10221. <unmanaged-short>D3DCS_PLANE1</unmanaged-short>
  10222. </member>
  10223. <member name="F:SharpDX.Direct3D9.ClipFlags.Plane2">
  10224. <summary>
  10225. No documentation.
  10226. </summary>
  10227. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_PLANE2']/*" />
  10228. <msdn-id>bb172516</msdn-id>
  10229. <unmanaged>D3DCS_PLANE2</unmanaged>
  10230. <unmanaged-short>D3DCS_PLANE2</unmanaged-short>
  10231. </member>
  10232. <member name="F:SharpDX.Direct3D9.ClipFlags.Plane3">
  10233. <summary>
  10234. No documentation.
  10235. </summary>
  10236. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_PLANE3']/*" />
  10237. <msdn-id>bb172516</msdn-id>
  10238. <unmanaged>D3DCS_PLANE3</unmanaged>
  10239. <unmanaged-short>D3DCS_PLANE3</unmanaged-short>
  10240. </member>
  10241. <member name="F:SharpDX.Direct3D9.ClipFlags.Plane4">
  10242. <summary>
  10243. No documentation.
  10244. </summary>
  10245. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_PLANE4']/*" />
  10246. <msdn-id>bb172516</msdn-id>
  10247. <unmanaged>D3DCS_PLANE4</unmanaged>
  10248. <unmanaged-short>D3DCS_PLANE4</unmanaged-short>
  10249. </member>
  10250. <member name="F:SharpDX.Direct3D9.ClipFlags.Plane5">
  10251. <summary>
  10252. No documentation.
  10253. </summary>
  10254. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_PLANE5']/*" />
  10255. <msdn-id>bb172516</msdn-id>
  10256. <unmanaged>D3DCS_PLANE5</unmanaged>
  10257. <unmanaged-short>D3DCS_PLANE5</unmanaged-short>
  10258. </member>
  10259. <member name="F:SharpDX.Direct3D9.ClipFlags.All">
  10260. <summary>
  10261. No documentation.
  10262. </summary>
  10263. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCS_ALL']/*" />
  10264. <msdn-id>bb172516</msdn-id>
  10265. <unmanaged>D3DCS_ALL</unmanaged>
  10266. <unmanaged-short>D3DCS_ALL</unmanaged-short>
  10267. </member>
  10268. <member name="T:SharpDX.Direct3D9.ColorSource">
  10269. <summary>
  10270. No documentation.
  10271. </summary>
  10272. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMATERIALCOLORSOURCE']/*" />
  10273. <unmanaged>D3DMATERIALCOLORSOURCE</unmanaged>
  10274. <unmanaged-short>D3DMATERIALCOLORSOURCE</unmanaged-short>
  10275. </member>
  10276. <member name="F:SharpDX.Direct3D9.ColorSource.Material">
  10277. <summary>
  10278. No documentation.
  10279. </summary>
  10280. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMCS_MATERIAL']/*" />
  10281. <unmanaged>D3DMCS_MATERIAL</unmanaged>
  10282. <unmanaged-short>D3DMCS_MATERIAL</unmanaged-short>
  10283. </member>
  10284. <member name="F:SharpDX.Direct3D9.ColorSource.Color1">
  10285. <summary>
  10286. No documentation.
  10287. </summary>
  10288. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMCS_COLOR1']/*" />
  10289. <unmanaged>D3DMCS_COLOR1</unmanaged>
  10290. <unmanaged-short>D3DMCS_COLOR1</unmanaged-short>
  10291. </member>
  10292. <member name="F:SharpDX.Direct3D9.ColorSource.Color2">
  10293. <summary>
  10294. No documentation.
  10295. </summary>
  10296. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMCS_COLOR2']/*" />
  10297. <unmanaged>D3DMCS_COLOR2</unmanaged>
  10298. <unmanaged-short>D3DMCS_COLOR2</unmanaged-short>
  10299. </member>
  10300. <member name="T:SharpDX.Direct3D9.ColorWriteEnable">
  10301. <summary>
  10302. <p>Render states define set-up states for all kinds of vertex and pixel processing. Some render states set up vertex processing, and some set up pixel processing (see Render States (Direct3D 9)). Render states can be saved and restored using stateblocks (see State Blocks Save and Restore State (Direct3D 9)).</p>
  10303. </summary>
  10304. <remarks>
  10305. <table> <tr><th>Render States</th></tr> <tr><td>ps_1_1 to ps_1_3</td><td>4 texture samplers</td></tr> </table><p>?</p><p>Direct3D defines the D3DRENDERSTATE_WRAPBIAS constant as a convenience for applications to enable or disable texture wrapping, based on the zero-based integer of a texture coordinate set (rather than explicitly using one of the D3DRS_WRAP n state values). Add the D3DRENDERSTATE_WRAPBIAS value to the zero-based index of a texture coordinate set to calculate the D3DRS_WRAP n value that corresponds to that index, as shown in the following example.</p><pre> // Enable U/V wrapping for textures that use the texture
  10306. // coordinate set at the index within the dwIndex variable <see cref="T:SharpDX.Result" /> hr = pd3dDevice-&gt;SetRenderState(
  10307. dwIndex + D3DRENDERSTATE_WRAPBIAS,
  10308. <see cref="F:SharpDX.Direct3D9.TextureWrapping.WrapCoordinate0" /> | <see cref="F:SharpDX.Direct3D9.TextureWrapping.WrapCoordinate1" />); // If dwIndex is 3, the value that results from
  10309. // the addition equals <see cref="F:SharpDX.Direct3D9.RenderState.Wrap3" /> (131)
  10310. </pre>
  10311. </remarks>
  10312. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCOLORWRITEENABLE']/*" />
  10313. <msdn-id>bb172599</msdn-id>
  10314. <unmanaged>D3DCOLORWRITEENABLE</unmanaged>
  10315. <unmanaged-short>D3DCOLORWRITEENABLE</unmanaged-short>
  10316. </member>
  10317. <member name="F:SharpDX.Direct3D9.ColorWriteEnable.Red">
  10318. <summary>
  10319. No documentation.
  10320. </summary>
  10321. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCOLORWRITEENABLE_RED']/*" />
  10322. <msdn-id>bb172599</msdn-id>
  10323. <unmanaged>D3DCOLORWRITEENABLE_RED</unmanaged>
  10324. <unmanaged-short>D3DCOLORWRITEENABLE_RED</unmanaged-short>
  10325. </member>
  10326. <member name="F:SharpDX.Direct3D9.ColorWriteEnable.Green">
  10327. <summary>
  10328. No documentation.
  10329. </summary>
  10330. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCOLORWRITEENABLE_GREEN']/*" />
  10331. <msdn-id>bb172599</msdn-id>
  10332. <unmanaged>D3DCOLORWRITEENABLE_GREEN</unmanaged>
  10333. <unmanaged-short>D3DCOLORWRITEENABLE_GREEN</unmanaged-short>
  10334. </member>
  10335. <member name="F:SharpDX.Direct3D9.ColorWriteEnable.Blue">
  10336. <summary>
  10337. No documentation.
  10338. </summary>
  10339. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCOLORWRITEENABLE_BLUE']/*" />
  10340. <msdn-id>bb172599</msdn-id>
  10341. <unmanaged>D3DCOLORWRITEENABLE_BLUE</unmanaged>
  10342. <unmanaged-short>D3DCOLORWRITEENABLE_BLUE</unmanaged-short>
  10343. </member>
  10344. <member name="F:SharpDX.Direct3D9.ColorWriteEnable.Alpha">
  10345. <summary>
  10346. No documentation.
  10347. </summary>
  10348. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCOLORWRITEENABLE_ALPHA']/*" />
  10349. <msdn-id>bb172599</msdn-id>
  10350. <unmanaged>D3DCOLORWRITEENABLE_ALPHA</unmanaged>
  10351. <unmanaged-short>D3DCOLORWRITEENABLE_ALPHA</unmanaged-short>
  10352. </member>
  10353. <member name="T:SharpDX.Direct3D9.Compare">
  10354. <summary>
  10355. <p>Defines the supported compare functions.</p>
  10356. </summary>
  10357. <remarks>
  10358. <p>The values in this enumerated type define the supported compare functions for the <see cref="F:SharpDX.Direct3D9.RenderState.ZFunc" />, <see cref="F:SharpDX.Direct3D9.RenderState.AlphaFunc" />, and <see cref="F:SharpDX.Direct3D9.RenderState.StencilFunc" /> render states.</p>
  10359. </remarks>
  10360. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCMPFUNC']/*" />
  10361. <msdn-id>bb172517</msdn-id>
  10362. <unmanaged>D3DCMPFUNC</unmanaged>
  10363. <unmanaged-short>D3DCMPFUNC</unmanaged-short>
  10364. </member>
  10365. <member name="F:SharpDX.Direct3D9.Compare.Never">
  10366. <summary>
  10367. <dd> <p>Always fail the test. </p> </dd>
  10368. </summary>
  10369. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCMP_NEVER']/*" />
  10370. <msdn-id>bb172517</msdn-id>
  10371. <unmanaged>D3DCMP_NEVER</unmanaged>
  10372. <unmanaged-short>D3DCMP_NEVER</unmanaged-short>
  10373. </member>
  10374. <member name="F:SharpDX.Direct3D9.Compare.Less">
  10375. <summary>
  10376. <dd> <p>Accept the new pixel if its value is less than the value of the current pixel. </p> </dd>
  10377. </summary>
  10378. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCMP_LESS']/*" />
  10379. <msdn-id>bb172517</msdn-id>
  10380. <unmanaged>D3DCMP_LESS</unmanaged>
  10381. <unmanaged-short>D3DCMP_LESS</unmanaged-short>
  10382. </member>
  10383. <member name="F:SharpDX.Direct3D9.Compare.Equal">
  10384. <summary>
  10385. <dd> <p>Accept the new pixel if its value equals the value of the current pixel. </p> </dd>
  10386. </summary>
  10387. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCMP_EQUAL']/*" />
  10388. <msdn-id>bb172517</msdn-id>
  10389. <unmanaged>D3DCMP_EQUAL</unmanaged>
  10390. <unmanaged-short>D3DCMP_EQUAL</unmanaged-short>
  10391. </member>
  10392. <member name="F:SharpDX.Direct3D9.Compare.LessEqual">
  10393. <summary>
  10394. <dd> <p>Accept the new pixel if its value is less than or equal to the value of the current pixel. </p> </dd>
  10395. </summary>
  10396. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCMP_LESSEQUAL']/*" />
  10397. <msdn-id>bb172517</msdn-id>
  10398. <unmanaged>D3DCMP_LESSEQUAL</unmanaged>
  10399. <unmanaged-short>D3DCMP_LESSEQUAL</unmanaged-short>
  10400. </member>
  10401. <member name="F:SharpDX.Direct3D9.Compare.Greater">
  10402. <summary>
  10403. <dd> <p>Accept the new pixel if its value is greater than the value of the current pixel. </p> </dd>
  10404. </summary>
  10405. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCMP_GREATER']/*" />
  10406. <msdn-id>bb172517</msdn-id>
  10407. <unmanaged>D3DCMP_GREATER</unmanaged>
  10408. <unmanaged-short>D3DCMP_GREATER</unmanaged-short>
  10409. </member>
  10410. <member name="F:SharpDX.Direct3D9.Compare.NotEqual">
  10411. <summary>
  10412. <dd> <p>Accept the new pixel if its value does not equal the value of the current pixel. </p> </dd>
  10413. </summary>
  10414. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCMP_NOTEQUAL']/*" />
  10415. <msdn-id>bb172517</msdn-id>
  10416. <unmanaged>D3DCMP_NOTEQUAL</unmanaged>
  10417. <unmanaged-short>D3DCMP_NOTEQUAL</unmanaged-short>
  10418. </member>
  10419. <member name="F:SharpDX.Direct3D9.Compare.GreaterEqual">
  10420. <summary>
  10421. <dd> <p>Accept the new pixel if its value is greater than or equal to the value of the current pixel. </p> </dd>
  10422. </summary>
  10423. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCMP_GREATEREQUAL']/*" />
  10424. <msdn-id>bb172517</msdn-id>
  10425. <unmanaged>D3DCMP_GREATEREQUAL</unmanaged>
  10426. <unmanaged-short>D3DCMP_GREATEREQUAL</unmanaged-short>
  10427. </member>
  10428. <member name="F:SharpDX.Direct3D9.Compare.Always">
  10429. <summary>
  10430. <dd> <p>Always pass the test. </p> </dd>
  10431. </summary>
  10432. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCMP_ALWAYS']/*" />
  10433. <msdn-id>bb172517</msdn-id>
  10434. <unmanaged>D3DCMP_ALWAYS</unmanaged>
  10435. <unmanaged-short>D3DCMP_ALWAYS</unmanaged-short>
  10436. </member>
  10437. <member name="T:SharpDX.Direct3D9.CompareCaps">
  10438. <summary>
  10439. <p>C++ applications can use alpha testing to control when pixels are written to the render-target surface. By using the <strong><see cref="F:SharpDX.Direct3D9.RenderState.AlphaTestEnable" /></strong> render state, your application sets the current Direct3D device so that it tests each pixel according to an alpha test function. If the test succeeds, the pixel is written to the surface. If it does not, Direct3D ignores the pixel. Select the alpha test function with the <strong><see cref="F:SharpDX.Direct3D9.RenderState.AlphaFunc" /></strong> render state. Your application can set a reference alpha value for all pixels to compare against by using the <strong><see cref="F:SharpDX.Direct3D9.RenderState.AlphaRef" /></strong> render state.</p><p>The most common use for alpha testing is to improve performance when rasterizing objects that are nearly transparent. If the color data being rasterized is more opaque than the color at a given pixel (<see cref="F:SharpDX.Direct3D9.CompareCaps.GreaterEqual" />), then the pixel is written. Otherwise, the rasterizer ignores the pixel altogether, saving the processing required to blend the two colors. The following code example checks if a given comparison function is supported and, if so, it sets the comparison function parameters required to improve performance during rendering.</p><pre> // This code example assumes that pCaps is a
  10440. // <see cref="T:SharpDX.Direct3D9.Capabilities" /> structure that was filled with a
  10441. // previous call to <see cref="M:SharpDX.Direct3D9.Direct3D.GetDeviceCaps(System.Int32,SharpDX.Direct3D9.DeviceType)" />. if (pCaps.AlphaCmpCaps &amp; <see cref="F:SharpDX.Direct3D9.CompareCaps.GreaterEqual" />)
  10442. { dev-&gt;SetRenderState(<see cref="F:SharpDX.Direct3D9.RenderState.AlphaRef" />, (DWORD)0x00000001); dev-&gt;SetRenderState(<see cref="F:SharpDX.Direct3D9.RenderState.AlphaTestEnable" />, TRUE); dev-&gt;SetRenderState(<see cref="F:SharpDX.Direct3D9.RenderState.AlphaFunc" />, <see cref="F:SharpDX.Direct3D9.Compare.GreaterEqual" />);
  10443. } // If the comparison is not supported, render anyway.
  10444. // The only drawback is no performance gain.
  10445. </pre><p>Not all hardware supports all alpha-testing features. You can check the device capabilities by calling the <strong><see cref="M:SharpDX.Direct3D9.Direct3D.GetDeviceCaps(System.Int32,SharpDX.Direct3D9.DeviceType)" /></strong> method. After retrieving the device capabilities, check the associated <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure's AlphaCmpCaps member for the desired comparison function. If the AlphaCmpCaps member contains only the <see cref="F:SharpDX.Direct3D9.CompareCaps.Always" /> capability or only the <see cref="F:SharpDX.Direct3D9.CompareCaps.Never" /> capability, the driver does not support alpha tests.</p><p>?</p><p>?</p>
  10446. </summary>
  10447. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPCMPCAPS']/*" />
  10448. <msdn-id>bb172254</msdn-id>
  10449. <unmanaged>D3DPCMPCAPS</unmanaged>
  10450. <unmanaged-short>D3DPCMPCAPS</unmanaged-short>
  10451. </member>
  10452. <member name="F:SharpDX.Direct3D9.CompareCaps.Never">
  10453. <summary>
  10454. No documentation.
  10455. </summary>
  10456. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPCMPCAPS_NEVER']/*" />
  10457. <msdn-id>bb172254</msdn-id>
  10458. <unmanaged>D3DPCMPCAPS_NEVER</unmanaged>
  10459. <unmanaged-short>D3DPCMPCAPS_NEVER</unmanaged-short>
  10460. </member>
  10461. <member name="F:SharpDX.Direct3D9.CompareCaps.Less">
  10462. <summary>
  10463. No documentation.
  10464. </summary>
  10465. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPCMPCAPS_LESS']/*" />
  10466. <msdn-id>bb172254</msdn-id>
  10467. <unmanaged>D3DPCMPCAPS_LESS</unmanaged>
  10468. <unmanaged-short>D3DPCMPCAPS_LESS</unmanaged-short>
  10469. </member>
  10470. <member name="F:SharpDX.Direct3D9.CompareCaps.Equal">
  10471. <summary>
  10472. No documentation.
  10473. </summary>
  10474. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPCMPCAPS_EQUAL']/*" />
  10475. <msdn-id>bb172254</msdn-id>
  10476. <unmanaged>D3DPCMPCAPS_EQUAL</unmanaged>
  10477. <unmanaged-short>D3DPCMPCAPS_EQUAL</unmanaged-short>
  10478. </member>
  10479. <member name="F:SharpDX.Direct3D9.CompareCaps.LessEqual">
  10480. <summary>
  10481. No documentation.
  10482. </summary>
  10483. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPCMPCAPS_LESSEQUAL']/*" />
  10484. <msdn-id>bb172254</msdn-id>
  10485. <unmanaged>D3DPCMPCAPS_LESSEQUAL</unmanaged>
  10486. <unmanaged-short>D3DPCMPCAPS_LESSEQUAL</unmanaged-short>
  10487. </member>
  10488. <member name="F:SharpDX.Direct3D9.CompareCaps.Greater">
  10489. <summary>
  10490. No documentation.
  10491. </summary>
  10492. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPCMPCAPS_GREATER']/*" />
  10493. <msdn-id>bb172254</msdn-id>
  10494. <unmanaged>D3DPCMPCAPS_GREATER</unmanaged>
  10495. <unmanaged-short>D3DPCMPCAPS_GREATER</unmanaged-short>
  10496. </member>
  10497. <member name="F:SharpDX.Direct3D9.CompareCaps.NotEqual">
  10498. <summary>
  10499. No documentation.
  10500. </summary>
  10501. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPCMPCAPS_NOTEQUAL']/*" />
  10502. <msdn-id>bb172254</msdn-id>
  10503. <unmanaged>D3DPCMPCAPS_NOTEQUAL</unmanaged>
  10504. <unmanaged-short>D3DPCMPCAPS_NOTEQUAL</unmanaged-short>
  10505. </member>
  10506. <member name="F:SharpDX.Direct3D9.CompareCaps.GreaterEqual">
  10507. <summary>
  10508. No documentation.
  10509. </summary>
  10510. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPCMPCAPS_GREATEREQUAL']/*" />
  10511. <msdn-id>bb172254</msdn-id>
  10512. <unmanaged>D3DPCMPCAPS_GREATEREQUAL</unmanaged>
  10513. <unmanaged-short>D3DPCMPCAPS_GREATEREQUAL</unmanaged-short>
  10514. </member>
  10515. <member name="F:SharpDX.Direct3D9.CompareCaps.Always">
  10516. <summary>
  10517. No documentation.
  10518. </summary>
  10519. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPCMPCAPS_ALWAYS']/*" />
  10520. <msdn-id>bb172254</msdn-id>
  10521. <unmanaged>D3DPCMPCAPS_ALWAYS</unmanaged>
  10522. <unmanaged-short>D3DPCMPCAPS_ALWAYS</unmanaged-short>
  10523. </member>
  10524. <member name="T:SharpDX.Direct3D9.ComposeRectOperation">
  10525. <summary>
  10526. <p>Specifies how to combine the glyph data from the source and destination surfaces in a call to <strong>ComposeRects</strong>.</p>
  10527. </summary>
  10528. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCOMPOSERECTSOP']/*" />
  10529. <msdn-id>bb509546</msdn-id>
  10530. <unmanaged>D3DCOMPOSERECTSOP</unmanaged>
  10531. <unmanaged-short>D3DCOMPOSERECTSOP</unmanaged-short>
  10532. </member>
  10533. <member name="F:SharpDX.Direct3D9.ComposeRectOperation.Copy">
  10534. <summary>
  10535. No documentation.
  10536. </summary>
  10537. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCOMPOSERECTS_COPY']/*" />
  10538. <msdn-id>bb509546</msdn-id>
  10539. <unmanaged>D3DCOMPOSERECTS_COPY</unmanaged>
  10540. <unmanaged-short>D3DCOMPOSERECTS_COPY</unmanaged-short>
  10541. </member>
  10542. <member name="F:SharpDX.Direct3D9.ComposeRectOperation.Or">
  10543. <summary>
  10544. No documentation.
  10545. </summary>
  10546. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCOMPOSERECTS_OR']/*" />
  10547. <msdn-id>bb509546</msdn-id>
  10548. <unmanaged>D3DCOMPOSERECTS_OR</unmanaged>
  10549. <unmanaged-short>D3DCOMPOSERECTS_OR</unmanaged-short>
  10550. </member>
  10551. <member name="F:SharpDX.Direct3D9.ComposeRectOperation.And">
  10552. <summary>
  10553. No documentation.
  10554. </summary>
  10555. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCOMPOSERECTS_AND']/*" />
  10556. <msdn-id>bb509546</msdn-id>
  10557. <unmanaged>D3DCOMPOSERECTS_AND</unmanaged>
  10558. <unmanaged-short>D3DCOMPOSERECTS_AND</unmanaged-short>
  10559. </member>
  10560. <member name="F:SharpDX.Direct3D9.ComposeRectOperation.Negate">
  10561. <summary>
  10562. No documentation.
  10563. </summary>
  10564. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCOMPOSERECTS_NEG']/*" />
  10565. <msdn-id>bb509546</msdn-id>
  10566. <unmanaged>D3DCOMPOSERECTS_NEG</unmanaged>
  10567. <unmanaged-short>D3DCOMPOSERECTS_NEG</unmanaged-short>
  10568. </member>
  10569. <member name="T:SharpDX.Direct3D9.CompressionFlags">
  10570. <summary>
  10571. <p>Defines the compression mode used for storing compressed animation set data.</p>
  10572. </summary>
  10573. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCOMPRESSION_FLAGS']/*" />
  10574. <msdn-id>bb172734</msdn-id>
  10575. <unmanaged>D3DXCOMPRESSION_FLAGS</unmanaged>
  10576. <unmanaged-short>D3DXCOMPRESSION_FLAGS</unmanaged-short>
  10577. </member>
  10578. <member name="F:SharpDX.Direct3D9.CompressionFlags.Default">
  10579. <summary>
  10580. <dd> <p>Implements fast compression.</p> </dd>
  10581. </summary>
  10582. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCOMPRESS_DEFAULT']/*" />
  10583. <msdn-id>bb172734</msdn-id>
  10584. <unmanaged>D3DXCOMPRESS_DEFAULT</unmanaged>
  10585. <unmanaged-short>D3DXCOMPRESS_DEFAULT</unmanaged-short>
  10586. </member>
  10587. <member name="T:SharpDX.Direct3D9.CreateFlags">
  10588. <summary>
  10589. <p>A combination of one or more flags that control the device create behavior.</p>
  10590. </summary>
  10591. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE']/*" />
  10592. <msdn-id>bb172527</msdn-id>
  10593. <unmanaged>D3DCREATE</unmanaged>
  10594. <unmanaged-short>D3DCREATE</unmanaged-short>
  10595. </member>
  10596. <member name="F:SharpDX.Direct3D9.CreateFlags.FpuPreserve">
  10597. <summary>
  10598. No documentation.
  10599. </summary>
  10600. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_FPU_PRESERVE']/*" />
  10601. <msdn-id>bb172527</msdn-id>
  10602. <unmanaged>D3DCREATE_FPU_PRESERVE</unmanaged>
  10603. <unmanaged-short>D3DCREATE_FPU_PRESERVE</unmanaged-short>
  10604. </member>
  10605. <member name="F:SharpDX.Direct3D9.CreateFlags.Multithreaded">
  10606. <summary>
  10607. No documentation.
  10608. </summary>
  10609. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_MULTITHREADED']/*" />
  10610. <msdn-id>bb172527</msdn-id>
  10611. <unmanaged>D3DCREATE_MULTITHREADED</unmanaged>
  10612. <unmanaged-short>D3DCREATE_MULTITHREADED</unmanaged-short>
  10613. </member>
  10614. <member name="F:SharpDX.Direct3D9.CreateFlags.PureDevice">
  10615. <summary>
  10616. No documentation.
  10617. </summary>
  10618. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_PUREDEVICE']/*" />
  10619. <msdn-id>bb172527</msdn-id>
  10620. <unmanaged>D3DCREATE_PUREDEVICE</unmanaged>
  10621. <unmanaged-short>D3DCREATE_PUREDEVICE</unmanaged-short>
  10622. </member>
  10623. <member name="F:SharpDX.Direct3D9.CreateFlags.SoftwareVertexProcessing">
  10624. <summary>
  10625. No documentation.
  10626. </summary>
  10627. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_SOFTWARE_VERTEXPROCESSING']/*" />
  10628. <msdn-id>bb172527</msdn-id>
  10629. <unmanaged>D3DCREATE_SOFTWARE_VERTEXPROCESSING</unmanaged>
  10630. <unmanaged-short>D3DCREATE_SOFTWARE_VERTEXPROCESSING</unmanaged-short>
  10631. </member>
  10632. <member name="F:SharpDX.Direct3D9.CreateFlags.HardwareVertexProcessing">
  10633. <summary>
  10634. No documentation.
  10635. </summary>
  10636. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_HARDWARE_VERTEXPROCESSING']/*" />
  10637. <msdn-id>bb172527</msdn-id>
  10638. <unmanaged>D3DCREATE_HARDWARE_VERTEXPROCESSING</unmanaged>
  10639. <unmanaged-short>D3DCREATE_HARDWARE_VERTEXPROCESSING</unmanaged-short>
  10640. </member>
  10641. <member name="F:SharpDX.Direct3D9.CreateFlags.MixedVertexProcessing">
  10642. <summary>
  10643. No documentation.
  10644. </summary>
  10645. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_MIXED_VERTEXPROCESSING']/*" />
  10646. <msdn-id>bb172527</msdn-id>
  10647. <unmanaged>D3DCREATE_MIXED_VERTEXPROCESSING</unmanaged>
  10648. <unmanaged-short>D3DCREATE_MIXED_VERTEXPROCESSING</unmanaged-short>
  10649. </member>
  10650. <member name="F:SharpDX.Direct3D9.CreateFlags.DisableDriverManagement">
  10651. <summary>
  10652. No documentation.
  10653. </summary>
  10654. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_DISABLE_DRIVER_MANAGEMENT']/*" />
  10655. <msdn-id>bb172527</msdn-id>
  10656. <unmanaged>D3DCREATE_DISABLE_DRIVER_MANAGEMENT</unmanaged>
  10657. <unmanaged-short>D3DCREATE_DISABLE_DRIVER_MANAGEMENT</unmanaged-short>
  10658. </member>
  10659. <member name="F:SharpDX.Direct3D9.CreateFlags.AdapterGroupDevice">
  10660. <summary>
  10661. No documentation.
  10662. </summary>
  10663. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_ADAPTERGROUP_DEVICE']/*" />
  10664. <msdn-id>bb172527</msdn-id>
  10665. <unmanaged>D3DCREATE_ADAPTERGROUP_DEVICE</unmanaged>
  10666. <unmanaged-short>D3DCREATE_ADAPTERGROUP_DEVICE</unmanaged-short>
  10667. </member>
  10668. <member name="F:SharpDX.Direct3D9.CreateFlags.DisableExtendedDriverManagement">
  10669. <summary>
  10670. No documentation.
  10671. </summary>
  10672. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_DISABLE_DRIVER_MANAGEMENT_EX']/*" />
  10673. <msdn-id>bb172527</msdn-id>
  10674. <unmanaged>D3DCREATE_DISABLE_DRIVER_MANAGEMENT_EX</unmanaged>
  10675. <unmanaged-short>D3DCREATE_DISABLE_DRIVER_MANAGEMENT_EX</unmanaged-short>
  10676. </member>
  10677. <member name="F:SharpDX.Direct3D9.CreateFlags.NoWindowChanges">
  10678. <summary>
  10679. No documentation.
  10680. </summary>
  10681. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_NOWINDOWCHANGES']/*" />
  10682. <msdn-id>bb172527</msdn-id>
  10683. <unmanaged>D3DCREATE_NOWINDOWCHANGES</unmanaged>
  10684. <unmanaged-short>D3DCREATE_NOWINDOWCHANGES</unmanaged-short>
  10685. </member>
  10686. <member name="F:SharpDX.Direct3D9.CreateFlags.DisablePsgpThreading">
  10687. <summary>
  10688. No documentation.
  10689. </summary>
  10690. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_DISABLE_PSGP_THREADING']/*" />
  10691. <msdn-id>bb172527</msdn-id>
  10692. <unmanaged>D3DCREATE_DISABLE_PSGP_THREADING</unmanaged>
  10693. <unmanaged-short>D3DCREATE_DISABLE_PSGP_THREADING</unmanaged-short>
  10694. </member>
  10695. <member name="F:SharpDX.Direct3D9.CreateFlags.EnablePresentStatistics">
  10696. <summary>
  10697. No documentation.
  10698. </summary>
  10699. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_ENABLE_PRESENTSTATS']/*" />
  10700. <msdn-id>bb172527</msdn-id>
  10701. <unmanaged>D3DCREATE_ENABLE_PRESENTSTATS</unmanaged>
  10702. <unmanaged-short>D3DCREATE_ENABLE_PRESENTSTATS</unmanaged-short>
  10703. </member>
  10704. <member name="F:SharpDX.Direct3D9.CreateFlags.DisablePrintScreen">
  10705. <summary>
  10706. No documentation.
  10707. </summary>
  10708. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_DISABLE_PRINTSCREEN']/*" />
  10709. <msdn-id>bb172527</msdn-id>
  10710. <unmanaged>D3DCREATE_DISABLE_PRINTSCREEN</unmanaged>
  10711. <unmanaged-short>D3DCREATE_DISABLE_PRINTSCREEN</unmanaged-short>
  10712. </member>
  10713. <member name="F:SharpDX.Direct3D9.CreateFlags.AllowScreensavers">
  10714. <summary>
  10715. No documentation.
  10716. </summary>
  10717. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCREATE_SCREENSAVER']/*" />
  10718. <msdn-id>bb172527</msdn-id>
  10719. <unmanaged>D3DCREATE_SCREENSAVER</unmanaged>
  10720. <unmanaged-short>D3DCREATE_SCREENSAVER</unmanaged-short>
  10721. </member>
  10722. <member name="F:SharpDX.Direct3D9.CreateFlags.None">
  10723. <summary>
  10724. None.
  10725. </summary>
  10726. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  10727. <unmanaged>None</unmanaged>
  10728. <unmanaged-short>None</unmanaged-short>
  10729. </member>
  10730. <member name="T:SharpDX.Direct3D9.CubeMapFace">
  10731. <summary>
  10732. <p>Defines the faces of a cubemap.</p>
  10733. </summary>
  10734. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCUBEMAP_FACES']/*" />
  10735. <msdn-id>bb172528</msdn-id>
  10736. <unmanaged>D3DCUBEMAP_FACES</unmanaged>
  10737. <unmanaged-short>D3DCUBEMAP_FACES</unmanaged-short>
  10738. </member>
  10739. <member name="F:SharpDX.Direct3D9.CubeMapFace.PositiveX">
  10740. <summary>
  10741. <dd> <p>Positive x-face of the cubemap. </p> </dd>
  10742. </summary>
  10743. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCUBEMAP_FACE_POSITIVE_X']/*" />
  10744. <msdn-id>bb172528</msdn-id>
  10745. <unmanaged>D3DCUBEMAP_FACE_POSITIVE_X</unmanaged>
  10746. <unmanaged-short>D3DCUBEMAP_FACE_POSITIVE_X</unmanaged-short>
  10747. </member>
  10748. <member name="F:SharpDX.Direct3D9.CubeMapFace.NegativeX">
  10749. <summary>
  10750. <dd> <p>Negative x-face of the cubemap. </p> </dd>
  10751. </summary>
  10752. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCUBEMAP_FACE_NEGATIVE_X']/*" />
  10753. <msdn-id>bb172528</msdn-id>
  10754. <unmanaged>D3DCUBEMAP_FACE_NEGATIVE_X</unmanaged>
  10755. <unmanaged-short>D3DCUBEMAP_FACE_NEGATIVE_X</unmanaged-short>
  10756. </member>
  10757. <member name="F:SharpDX.Direct3D9.CubeMapFace.PositiveY">
  10758. <summary>
  10759. <dd> <p>Positive y-face of the cubemap. </p> </dd>
  10760. </summary>
  10761. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCUBEMAP_FACE_POSITIVE_Y']/*" />
  10762. <msdn-id>bb172528</msdn-id>
  10763. <unmanaged>D3DCUBEMAP_FACE_POSITIVE_Y</unmanaged>
  10764. <unmanaged-short>D3DCUBEMAP_FACE_POSITIVE_Y</unmanaged-short>
  10765. </member>
  10766. <member name="F:SharpDX.Direct3D9.CubeMapFace.NegativeY">
  10767. <summary>
  10768. <dd> <p>Negative y-face of the cubemap. </p> </dd>
  10769. </summary>
  10770. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCUBEMAP_FACE_NEGATIVE_Y']/*" />
  10771. <msdn-id>bb172528</msdn-id>
  10772. <unmanaged>D3DCUBEMAP_FACE_NEGATIVE_Y</unmanaged>
  10773. <unmanaged-short>D3DCUBEMAP_FACE_NEGATIVE_Y</unmanaged-short>
  10774. </member>
  10775. <member name="F:SharpDX.Direct3D9.CubeMapFace.PositiveZ">
  10776. <summary>
  10777. <dd> <p>Positive z-face of the cubemap. </p> </dd>
  10778. </summary>
  10779. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCUBEMAP_FACE_POSITIVE_Z']/*" />
  10780. <msdn-id>bb172528</msdn-id>
  10781. <unmanaged>D3DCUBEMAP_FACE_POSITIVE_Z</unmanaged>
  10782. <unmanaged-short>D3DCUBEMAP_FACE_POSITIVE_Z</unmanaged-short>
  10783. </member>
  10784. <member name="F:SharpDX.Direct3D9.CubeMapFace.NegativeZ">
  10785. <summary>
  10786. <dd> <p>Negative z-face of the cubemap. </p> </dd>
  10787. </summary>
  10788. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCUBEMAP_FACE_NEGATIVE_Z']/*" />
  10789. <msdn-id>bb172528</msdn-id>
  10790. <unmanaged>D3DCUBEMAP_FACE_NEGATIVE_Z</unmanaged>
  10791. <unmanaged-short>D3DCUBEMAP_FACE_NEGATIVE_Z</unmanaged-short>
  10792. </member>
  10793. <member name="T:SharpDX.Direct3D9.Cull">
  10794. <summary>
  10795. <p>Defines the supported culling modes.</p>
  10796. </summary>
  10797. <remarks>
  10798. <p>The values in this enumerated type are used by the <see cref="F:SharpDX.Direct3D9.RenderState.CullMode" /> render state. The culling modes define how back faces are culled when rendering a geometry.</p>
  10799. </remarks>
  10800. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCULL']/*" />
  10801. <msdn-id>bb172529</msdn-id>
  10802. <unmanaged>D3DCULL</unmanaged>
  10803. <unmanaged-short>D3DCULL</unmanaged-short>
  10804. </member>
  10805. <member name="F:SharpDX.Direct3D9.Cull.None">
  10806. <summary>
  10807. <dd> <p>Do not cull back faces. </p> </dd>
  10808. </summary>
  10809. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCULL_NONE']/*" />
  10810. <msdn-id>bb172529</msdn-id>
  10811. <unmanaged>D3DCULL_NONE</unmanaged>
  10812. <unmanaged-short>D3DCULL_NONE</unmanaged-short>
  10813. </member>
  10814. <member name="F:SharpDX.Direct3D9.Cull.Clockwise">
  10815. <summary>
  10816. <dd> <p>Cull back faces with clockwise vertices. </p> </dd>
  10817. </summary>
  10818. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCULL_CW']/*" />
  10819. <msdn-id>bb172529</msdn-id>
  10820. <unmanaged>D3DCULL_CW</unmanaged>
  10821. <unmanaged-short>D3DCULL_CW</unmanaged-short>
  10822. </member>
  10823. <member name="F:SharpDX.Direct3D9.Cull.Counterclockwise">
  10824. <summary>
  10825. <dd> <p>Cull back faces with counterclockwise vertices. </p> </dd>
  10826. </summary>
  10827. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCULL_CCW']/*" />
  10828. <msdn-id>bb172529</msdn-id>
  10829. <unmanaged>D3DCULL_CCW</unmanaged>
  10830. <unmanaged-short>D3DCULL_CCW</unmanaged-short>
  10831. </member>
  10832. <member name="T:SharpDX.Direct3D9.CursorCaps">
  10833. <summary>
  10834. <p>Driver cursor capability flags.</p>
  10835. </summary>
  10836. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCURSORCAPS']/*" />
  10837. <msdn-id>bb172530</msdn-id>
  10838. <unmanaged>D3DCURSORCAPS</unmanaged>
  10839. <unmanaged-short>D3DCURSORCAPS</unmanaged-short>
  10840. </member>
  10841. <member name="F:SharpDX.Direct3D9.CursorCaps.Color">
  10842. <summary>
  10843. No documentation.
  10844. </summary>
  10845. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCURSORCAPS_COLOR']/*" />
  10846. <msdn-id>bb172530</msdn-id>
  10847. <unmanaged>D3DCURSORCAPS_COLOR</unmanaged>
  10848. <unmanaged-short>D3DCURSORCAPS_COLOR</unmanaged-short>
  10849. </member>
  10850. <member name="F:SharpDX.Direct3D9.CursorCaps.LowResolution">
  10851. <summary>
  10852. No documentation.
  10853. </summary>
  10854. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCURSORCAPS_LOWRES']/*" />
  10855. <msdn-id>bb172530</msdn-id>
  10856. <unmanaged>D3DCURSORCAPS_LOWRES</unmanaged>
  10857. <unmanaged-short>D3DCURSORCAPS_LOWRES</unmanaged-short>
  10858. </member>
  10859. <member name="T:SharpDX.Direct3D9.DebugMonitorTokens">
  10860. <summary>
  10861. No documentation.
  10862. </summary>
  10863. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEBUGMONITORTOKENS']/*" />
  10864. <unmanaged>D3DDEBUGMONITORTOKENS</unmanaged>
  10865. <unmanaged-short>D3DDEBUGMONITORTOKENS</unmanaged-short>
  10866. </member>
  10867. <member name="F:SharpDX.Direct3D9.DebugMonitorTokens.Enable">
  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='D3DDMT_ENABLE']/*" />
  10872. <unmanaged>D3DDMT_ENABLE</unmanaged>
  10873. <unmanaged-short>D3DDMT_ENABLE</unmanaged-short>
  10874. </member>
  10875. <member name="F:SharpDX.Direct3D9.DebugMonitorTokens.Disable">
  10876. <summary>
  10877. No documentation.
  10878. </summary>
  10879. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDMT_DISABLE']/*" />
  10880. <unmanaged>D3DDMT_DISABLE</unmanaged>
  10881. <unmanaged-short>D3DDMT_DISABLE</unmanaged-short>
  10882. </member>
  10883. <member name="T:SharpDX.Direct3D9.DeclarationMethod">
  10884. <summary>
  10885. <p>Defines the vertex declaration method which is a predefined operation performed by the tessellator (or any procedural geometry routine on the vertex data during tessellation).</p>
  10886. </summary>
  10887. <remarks>
  10888. <p>The tessellator looks at the method to determine what data to calculate from the vertex data during tessellation. Mesh data should use the default value. Patches can use any of the other implemented types. </p><p>Vertex data is declared with an array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> structures. Each element in the array contains a vertex declaration method.</p><p>In addition to using <see cref="F:SharpDX.Direct3D9.DeclarationMethod.Default" />, a normal mesh can use <see cref="F:SharpDX.Direct3D9.DeclarationMethod.Lookup" /> and <see cref="F:SharpDX.Direct3D9.DeclarationMethod.LookupPresampled" /> methods when N-patches are enabled. </p>
  10889. </remarks>
  10890. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLMETHOD']/*" />
  10891. <msdn-id>bb172532</msdn-id>
  10892. <unmanaged>D3DDECLMETHOD</unmanaged>
  10893. <unmanaged-short>D3DDECLMETHOD</unmanaged-short>
  10894. </member>
  10895. <member name="F:SharpDX.Direct3D9.DeclarationMethod.Default">
  10896. <summary>
  10897. <dd> <p>Default value. The tessellator copies the vertex data (spline data for patches) as is, with no additional calculations. When the tessellator is used, this element is interpolated. Otherwise vertex data is copied into the input register. The input and output type can be any value, but are always the same type.</p> </dd>
  10898. </summary>
  10899. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLMETHOD_DEFAULT']/*" />
  10900. <msdn-id>bb172532</msdn-id>
  10901. <unmanaged>D3DDECLMETHOD_DEFAULT</unmanaged>
  10902. <unmanaged-short>D3DDECLMETHOD_DEFAULT</unmanaged-short>
  10903. </member>
  10904. <member name="F:SharpDX.Direct3D9.DeclarationMethod.PartialU">
  10905. <summary>
  10906. <dd> <p>Computes the tangent at a point on the rectangle or triangle patch in the U direction. The input type can be one of the following:
  10907. </p> <ul> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Color" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Float3" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Float4" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Short4" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Ubyte4" /></li> </ul> <p> The output type is always <see cref="F:SharpDX.Direct3D9.DeclarationType.Float3" />.</p> </dd>
  10908. </summary>
  10909. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLMETHOD_PARTIALU']/*" />
  10910. <msdn-id>bb172532</msdn-id>
  10911. <unmanaged>D3DDECLMETHOD_PARTIALU</unmanaged>
  10912. <unmanaged-short>D3DDECLMETHOD_PARTIALU</unmanaged-short>
  10913. </member>
  10914. <member name="F:SharpDX.Direct3D9.DeclarationMethod.PartialV">
  10915. <summary>
  10916. <dd> <p>Computes the tangent at a point on the rectangle or triangle patch in the V direction. The input type can be one of the following:
  10917. </p> <ul> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Color" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Float3" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Float4" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Short4" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Ubyte4" /></li> </ul> <p> The output type is always <see cref="F:SharpDX.Direct3D9.DeclarationType.Float3" />. </p> </dd>
  10918. </summary>
  10919. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLMETHOD_PARTIALV']/*" />
  10920. <msdn-id>bb172532</msdn-id>
  10921. <unmanaged>D3DDECLMETHOD_PARTIALV</unmanaged>
  10922. <unmanaged-short>D3DDECLMETHOD_PARTIALV</unmanaged-short>
  10923. </member>
  10924. <member name="F:SharpDX.Direct3D9.DeclarationMethod.CrossUV">
  10925. <summary>
  10926. <dd> <p>Computes the normal at a point on the rectangle or triangle patch by taking the cross product of two tangents. The input type can be one of the following:
  10927. </p> <ul> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Color" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Float3" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Float4" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Short4" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Ubyte4" /></li> </ul> <p> The output type is always <see cref="F:SharpDX.Direct3D9.DeclarationType.Float3" />.</p> </dd>
  10928. </summary>
  10929. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLMETHOD_CROSSUV']/*" />
  10930. <msdn-id>bb172532</msdn-id>
  10931. <unmanaged>D3DDECLMETHOD_CROSSUV</unmanaged>
  10932. <unmanaged-short>D3DDECLMETHOD_CROSSUV</unmanaged-short>
  10933. </member>
  10934. <member name="F:SharpDX.Direct3D9.DeclarationMethod.UV">
  10935. <summary>
  10936. <dd> <p>Copy out the U, V values at a point on the rectangle or triangle patch. This results in a 2D float. The input type must be set to <see cref="F:SharpDX.Direct3D9.DeclarationType.Unused" />. The output data type is always <see cref="F:SharpDX.Direct3D9.DeclarationType.Float2" />. The input stream and offset are also unused (but must be set to 0).</p> </dd>
  10937. </summary>
  10938. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLMETHOD_UV']/*" />
  10939. <msdn-id>bb172532</msdn-id>
  10940. <unmanaged>D3DDECLMETHOD_UV</unmanaged>
  10941. <unmanaged-short>D3DDECLMETHOD_UV</unmanaged-short>
  10942. </member>
  10943. <member name="F:SharpDX.Direct3D9.DeclarationMethod.Lookup">
  10944. <summary>
  10945. <dd> <p>Look up a displacement map. The input type can be one of the following:
  10946. </p> <ul> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Float2" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Float3" /></li> <li><see cref="F:SharpDX.Direct3D9.DeclarationType.Float4" /></li> </ul> <p> Only the .x and .y components are used for the texture map lookup. The output type is always <see cref="F:SharpDX.Direct3D9.DeclarationType.Float1" />. The device must support displacement mapping. For more information about displacement mapping, see Displacement Mapping (Direct3D 9). This constant is supported only by the programmable pipeline on N-patch data, if N-patches are enabled. </p> </dd>
  10947. </summary>
  10948. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLMETHOD_LOOKUP']/*" />
  10949. <msdn-id>bb172532</msdn-id>
  10950. <unmanaged>D3DDECLMETHOD_LOOKUP</unmanaged>
  10951. <unmanaged-short>D3DDECLMETHOD_LOOKUP</unmanaged-short>
  10952. </member>
  10953. <member name="F:SharpDX.Direct3D9.DeclarationMethod.LookupPresampled">
  10954. <summary>
  10955. <dd> <p>Look up a presampled displacement map. The input type must be set to <see cref="F:SharpDX.Direct3D9.DeclarationType.Unused" />; the stream index and the stream offset must be set to 0. The output type for this operation is always <see cref="F:SharpDX.Direct3D9.DeclarationType.Float1" />. The device must support displacement mapping. For more information about displacement mapping, see Displacement Mapping (Direct3D 9). This constant is supported only by the programmable pipeline on N-patch data, if N-patches are enabled. This method can be used only with <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Sample" />.</p> </dd>
  10956. </summary>
  10957. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLMETHOD_LOOKUPPRESAMPLED']/*" />
  10958. <msdn-id>bb172532</msdn-id>
  10959. <unmanaged>D3DDECLMETHOD_LOOKUPPRESAMPLED</unmanaged>
  10960. <unmanaged-short>D3DDECLMETHOD_LOOKUPPRESAMPLED</unmanaged-short>
  10961. </member>
  10962. <member name="T:SharpDX.Direct3D9.DeclarationType">
  10963. <summary>
  10964. <p>Defines a vertex declaration data type.</p>
  10965. </summary>
  10966. <remarks>
  10967. <p>Vertex data is declared with an array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> structures. Each element in the array contains a vertex declaration data type.</p><p>Use the DirectX Caps Viewer Tool tool to see which types are supported on your device.</p>
  10968. </remarks>
  10969. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE']/*" />
  10970. <msdn-id>bb172533</msdn-id>
  10971. <unmanaged>D3DDECLTYPE</unmanaged>
  10972. <unmanaged-short>D3DDECLTYPE</unmanaged-short>
  10973. </member>
  10974. <member name="F:SharpDX.Direct3D9.DeclarationType.Float1">
  10975. <summary>
  10976. <dd> <p>One-component float expanded to (float, 0, 0, 1).</p> </dd>
  10977. </summary>
  10978. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_FLOAT1']/*" />
  10979. <msdn-id>bb172533</msdn-id>
  10980. <unmanaged>D3DDECLTYPE_FLOAT1</unmanaged>
  10981. <unmanaged-short>D3DDECLTYPE_FLOAT1</unmanaged-short>
  10982. </member>
  10983. <member name="F:SharpDX.Direct3D9.DeclarationType.Float2">
  10984. <summary>
  10985. <dd> <p>Two-component float expanded to (float, float, 0, 1).</p> </dd>
  10986. </summary>
  10987. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_FLOAT2']/*" />
  10988. <msdn-id>bb172533</msdn-id>
  10989. <unmanaged>D3DDECLTYPE_FLOAT2</unmanaged>
  10990. <unmanaged-short>D3DDECLTYPE_FLOAT2</unmanaged-short>
  10991. </member>
  10992. <member name="F:SharpDX.Direct3D9.DeclarationType.Float3">
  10993. <summary>
  10994. <dd> <p>Three-component float expanded to (float, float, float, 1).</p> </dd>
  10995. </summary>
  10996. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_FLOAT3']/*" />
  10997. <msdn-id>bb172533</msdn-id>
  10998. <unmanaged>D3DDECLTYPE_FLOAT3</unmanaged>
  10999. <unmanaged-short>D3DDECLTYPE_FLOAT3</unmanaged-short>
  11000. </member>
  11001. <member name="F:SharpDX.Direct3D9.DeclarationType.Float4">
  11002. <summary>
  11003. <dd> <p>Four-component float expanded to (float, float, float, float).</p> </dd>
  11004. </summary>
  11005. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_FLOAT4']/*" />
  11006. <msdn-id>bb172533</msdn-id>
  11007. <unmanaged>D3DDECLTYPE_FLOAT4</unmanaged>
  11008. <unmanaged-short>D3DDECLTYPE_FLOAT4</unmanaged-short>
  11009. </member>
  11010. <member name="F:SharpDX.Direct3D9.DeclarationType.Color">
  11011. <summary>
  11012. <dd> <p>Four-component, packed, unsigned bytes mapped to 0 to 1 range. Input is a <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> and is expanded to RGBA order.</p> </dd>
  11013. </summary>
  11014. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_D3DCOLOR']/*" />
  11015. <msdn-id>bb172533</msdn-id>
  11016. <unmanaged>D3DDECLTYPE_D3DCOLOR</unmanaged>
  11017. <unmanaged-short>D3DDECLTYPE_D3DCOLOR</unmanaged-short>
  11018. </member>
  11019. <member name="F:SharpDX.Direct3D9.DeclarationType.Ubyte4">
  11020. <summary>
  11021. <dd> <p>Four-component, unsigned byte.</p> </dd>
  11022. </summary>
  11023. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_UBYTE4']/*" />
  11024. <msdn-id>bb172533</msdn-id>
  11025. <unmanaged>D3DDECLTYPE_UBYTE4</unmanaged>
  11026. <unmanaged-short>D3DDECLTYPE_UBYTE4</unmanaged-short>
  11027. </member>
  11028. <member name="F:SharpDX.Direct3D9.DeclarationType.Short2">
  11029. <summary>
  11030. <dd> <p>Two-component, signed short expanded to (value, value, 0, 1).</p> </dd>
  11031. </summary>
  11032. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_SHORT2']/*" />
  11033. <msdn-id>bb172533</msdn-id>
  11034. <unmanaged>D3DDECLTYPE_SHORT2</unmanaged>
  11035. <unmanaged-short>D3DDECLTYPE_SHORT2</unmanaged-short>
  11036. </member>
  11037. <member name="F:SharpDX.Direct3D9.DeclarationType.Short4">
  11038. <summary>
  11039. <dd> <p>Four-component, signed short expanded to (value, value, value, value).</p> </dd>
  11040. </summary>
  11041. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_SHORT4']/*" />
  11042. <msdn-id>bb172533</msdn-id>
  11043. <unmanaged>D3DDECLTYPE_SHORT4</unmanaged>
  11044. <unmanaged-short>D3DDECLTYPE_SHORT4</unmanaged-short>
  11045. </member>
  11046. <member name="F:SharpDX.Direct3D9.DeclarationType.UByte4N">
  11047. <summary>
  11048. <dd> <p>Four-component byte with each byte normalized by dividing with 255.0f.</p> </dd>
  11049. </summary>
  11050. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_UBYTE4N']/*" />
  11051. <msdn-id>bb172533</msdn-id>
  11052. <unmanaged>D3DDECLTYPE_UBYTE4N</unmanaged>
  11053. <unmanaged-short>D3DDECLTYPE_UBYTE4N</unmanaged-short>
  11054. </member>
  11055. <member name="F:SharpDX.Direct3D9.DeclarationType.Short2N">
  11056. <summary>
  11057. <dd> <p>Normalized, two-component, signed short, expanded to (first short/32767.0, second short/32767.0, 0, 1). </p> </dd>
  11058. </summary>
  11059. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_SHORT2N']/*" />
  11060. <msdn-id>bb172533</msdn-id>
  11061. <unmanaged>D3DDECLTYPE_SHORT2N</unmanaged>
  11062. <unmanaged-short>D3DDECLTYPE_SHORT2N</unmanaged-short>
  11063. </member>
  11064. <member name="F:SharpDX.Direct3D9.DeclarationType.Short4N">
  11065. <summary>
  11066. <dd> <p>Normalized, four-component, signed short, expanded to (first short/32767.0, second short/32767.0, third short/32767.0, fourth short/32767.0). </p> </dd>
  11067. </summary>
  11068. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_SHORT4N']/*" />
  11069. <msdn-id>bb172533</msdn-id>
  11070. <unmanaged>D3DDECLTYPE_SHORT4N</unmanaged>
  11071. <unmanaged-short>D3DDECLTYPE_SHORT4N</unmanaged-short>
  11072. </member>
  11073. <member name="F:SharpDX.Direct3D9.DeclarationType.UShort2N">
  11074. <summary>
  11075. <dd> <p>Normalized, two-component, unsigned short, expanded to (first short/65535.0, short short/65535.0, 0, 1). </p> </dd>
  11076. </summary>
  11077. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_USHORT2N']/*" />
  11078. <msdn-id>bb172533</msdn-id>
  11079. <unmanaged>D3DDECLTYPE_USHORT2N</unmanaged>
  11080. <unmanaged-short>D3DDECLTYPE_USHORT2N</unmanaged-short>
  11081. </member>
  11082. <member name="F:SharpDX.Direct3D9.DeclarationType.UShort4N">
  11083. <summary>
  11084. <dd> <p>Normalized, four-component, unsigned short, expanded to (first short/65535.0, second short/65535.0, third short/65535.0, fourth short/65535.0). </p> </dd>
  11085. </summary>
  11086. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_USHORT4N']/*" />
  11087. <msdn-id>bb172533</msdn-id>
  11088. <unmanaged>D3DDECLTYPE_USHORT4N</unmanaged>
  11089. <unmanaged-short>D3DDECLTYPE_USHORT4N</unmanaged-short>
  11090. </member>
  11091. <member name="F:SharpDX.Direct3D9.DeclarationType.UDec3">
  11092. <summary>
  11093. <dd> <p>Three-component, unsigned, 10 10 10 format expanded to (value, value, value, 1).</p> </dd>
  11094. </summary>
  11095. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_UDEC3']/*" />
  11096. <msdn-id>bb172533</msdn-id>
  11097. <unmanaged>D3DDECLTYPE_UDEC3</unmanaged>
  11098. <unmanaged-short>D3DDECLTYPE_UDEC3</unmanaged-short>
  11099. </member>
  11100. <member name="F:SharpDX.Direct3D9.DeclarationType.Dec3N">
  11101. <summary>
  11102. <dd> <p>Three-component, signed, 10 10 10 format normalized and expanded to (v[0]/511.0, v[1]/511.0, v[2]/511.0, 1). </p> </dd>
  11103. </summary>
  11104. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_DEC3N']/*" />
  11105. <msdn-id>bb172533</msdn-id>
  11106. <unmanaged>D3DDECLTYPE_DEC3N</unmanaged>
  11107. <unmanaged-short>D3DDECLTYPE_DEC3N</unmanaged-short>
  11108. </member>
  11109. <member name="F:SharpDX.Direct3D9.DeclarationType.HalfTwo">
  11110. <summary>
  11111. <dd> <p>Two-component, 16-bit, floating point expanded to (value, value, 0, 1).</p> </dd>
  11112. </summary>
  11113. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_FLOAT16_2']/*" />
  11114. <msdn-id>bb172533</msdn-id>
  11115. <unmanaged>D3DDECLTYPE_FLOAT16_2</unmanaged>
  11116. <unmanaged-short>D3DDECLTYPE_FLOAT16_2</unmanaged-short>
  11117. </member>
  11118. <member name="F:SharpDX.Direct3D9.DeclarationType.HalfFour">
  11119. <summary>
  11120. <dd> <p>Four-component, 16-bit, floating point expanded to (value, value, value, value). </p> </dd>
  11121. </summary>
  11122. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_FLOAT16_4']/*" />
  11123. <msdn-id>bb172533</msdn-id>
  11124. <unmanaged>D3DDECLTYPE_FLOAT16_4</unmanaged>
  11125. <unmanaged-short>D3DDECLTYPE_FLOAT16_4</unmanaged-short>
  11126. </member>
  11127. <member name="F:SharpDX.Direct3D9.DeclarationType.Unused">
  11128. <summary>
  11129. <dd> <p>Type field in the declaration is unused. This is designed for use with <see cref="F:SharpDX.Direct3D9.DeclarationMethod.UV" /> and <see cref="F:SharpDX.Direct3D9.DeclarationMethod.LookupPresampled" />.</p> </dd>
  11130. </summary>
  11131. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLTYPE_UNUSED']/*" />
  11132. <msdn-id>bb172533</msdn-id>
  11133. <unmanaged>D3DDECLTYPE_UNUSED</unmanaged>
  11134. <unmanaged-short>D3DDECLTYPE_UNUSED</unmanaged-short>
  11135. </member>
  11136. <member name="T:SharpDX.Direct3D9.DeclarationTypeCaps">
  11137. <summary>
  11138. <p>Constants describing the vertex data types supported by a device.</p>
  11139. </summary>
  11140. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS']/*" />
  11141. <msdn-id>bb172552</msdn-id>
  11142. <unmanaged>D3DDTCAPS</unmanaged>
  11143. <unmanaged-short>D3DDTCAPS</unmanaged-short>
  11144. </member>
  11145. <member name="F:SharpDX.Direct3D9.DeclarationTypeCaps.UByte4">
  11146. <summary>
  11147. No documentation.
  11148. </summary>
  11149. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS_UBYTE4']/*" />
  11150. <msdn-id>bb172552</msdn-id>
  11151. <unmanaged>D3DDTCAPS_UBYTE4</unmanaged>
  11152. <unmanaged-short>D3DDTCAPS_UBYTE4</unmanaged-short>
  11153. </member>
  11154. <member name="F:SharpDX.Direct3D9.DeclarationTypeCaps.UByte4N">
  11155. <summary>
  11156. No documentation.
  11157. </summary>
  11158. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS_UBYTE4N']/*" />
  11159. <msdn-id>bb172552</msdn-id>
  11160. <unmanaged>D3DDTCAPS_UBYTE4N</unmanaged>
  11161. <unmanaged-short>D3DDTCAPS_UBYTE4N</unmanaged-short>
  11162. </member>
  11163. <member name="F:SharpDX.Direct3D9.DeclarationTypeCaps.Short2N">
  11164. <summary>
  11165. No documentation.
  11166. </summary>
  11167. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS_SHORT2N']/*" />
  11168. <msdn-id>bb172552</msdn-id>
  11169. <unmanaged>D3DDTCAPS_SHORT2N</unmanaged>
  11170. <unmanaged-short>D3DDTCAPS_SHORT2N</unmanaged-short>
  11171. </member>
  11172. <member name="F:SharpDX.Direct3D9.DeclarationTypeCaps.Short4N">
  11173. <summary>
  11174. No documentation.
  11175. </summary>
  11176. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS_SHORT4N']/*" />
  11177. <msdn-id>bb172552</msdn-id>
  11178. <unmanaged>D3DDTCAPS_SHORT4N</unmanaged>
  11179. <unmanaged-short>D3DDTCAPS_SHORT4N</unmanaged-short>
  11180. </member>
  11181. <member name="F:SharpDX.Direct3D9.DeclarationTypeCaps.UShort2N">
  11182. <summary>
  11183. No documentation.
  11184. </summary>
  11185. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS_USHORT2N']/*" />
  11186. <msdn-id>bb172552</msdn-id>
  11187. <unmanaged>D3DDTCAPS_USHORT2N</unmanaged>
  11188. <unmanaged-short>D3DDTCAPS_USHORT2N</unmanaged-short>
  11189. </member>
  11190. <member name="F:SharpDX.Direct3D9.DeclarationTypeCaps.UShort4N">
  11191. <summary>
  11192. No documentation.
  11193. </summary>
  11194. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS_USHORT4N']/*" />
  11195. <msdn-id>bb172552</msdn-id>
  11196. <unmanaged>D3DDTCAPS_USHORT4N</unmanaged>
  11197. <unmanaged-short>D3DDTCAPS_USHORT4N</unmanaged-short>
  11198. </member>
  11199. <member name="F:SharpDX.Direct3D9.DeclarationTypeCaps.UDec3">
  11200. <summary>
  11201. No documentation.
  11202. </summary>
  11203. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS_UDEC3']/*" />
  11204. <msdn-id>bb172552</msdn-id>
  11205. <unmanaged>D3DDTCAPS_UDEC3</unmanaged>
  11206. <unmanaged-short>D3DDTCAPS_UDEC3</unmanaged-short>
  11207. </member>
  11208. <member name="F:SharpDX.Direct3D9.DeclarationTypeCaps.Dec3N">
  11209. <summary>
  11210. No documentation.
  11211. </summary>
  11212. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS_DEC3N']/*" />
  11213. <msdn-id>bb172552</msdn-id>
  11214. <unmanaged>D3DDTCAPS_DEC3N</unmanaged>
  11215. <unmanaged-short>D3DDTCAPS_DEC3N</unmanaged-short>
  11216. </member>
  11217. <member name="F:SharpDX.Direct3D9.DeclarationTypeCaps.HalfTwo">
  11218. <summary>
  11219. No documentation.
  11220. </summary>
  11221. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS_FLOAT16_2']/*" />
  11222. <msdn-id>bb172552</msdn-id>
  11223. <unmanaged>D3DDTCAPS_FLOAT16_2</unmanaged>
  11224. <unmanaged-short>D3DDTCAPS_FLOAT16_2</unmanaged-short>
  11225. </member>
  11226. <member name="F:SharpDX.Direct3D9.DeclarationTypeCaps.HalfFour">
  11227. <summary>
  11228. No documentation.
  11229. </summary>
  11230. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDTCAPS_FLOAT16_4']/*" />
  11231. <msdn-id>bb172552</msdn-id>
  11232. <unmanaged>D3DDTCAPS_FLOAT16_4</unmanaged>
  11233. <unmanaged-short>D3DDTCAPS_FLOAT16_4</unmanaged-short>
  11234. </member>
  11235. <member name="T:SharpDX.Direct3D9.DeclarationUsage">
  11236. <summary>
  11237. <p>Identifies the intended use of vertex data.</p>
  11238. </summary>
  11239. <remarks>
  11240. <p>Vertex data is declared with an array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> structures. Each element in the array contains a usage type.</p><p>For more information about vertex declarations, see Vertex Declaration (Direct3D 9).</p>
  11241. </remarks>
  11242. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE']/*" />
  11243. <msdn-id>bb172534</msdn-id>
  11244. <unmanaged>D3DDECLUSAGE</unmanaged>
  11245. <unmanaged-short>D3DDECLUSAGE</unmanaged-short>
  11246. </member>
  11247. <member name="F:SharpDX.Direct3D9.DeclarationUsage.Position">
  11248. <summary>
  11249. <dd> <p>Position data ranging from (-1,-1) to (1,1). Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Position" /> with a usage index of 0 to specify untransformed position for fixed function vertex processing and the n-patch tessellator. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Position" /> with a usage index of 1 to specify untransformed position in the fixed function vertex shader for vertex tweening. </p> </dd>
  11250. </summary>
  11251. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_POSITION']/*" />
  11252. <msdn-id>bb172534</msdn-id>
  11253. <unmanaged>D3DDECLUSAGE_POSITION</unmanaged>
  11254. <unmanaged-short>D3DDECLUSAGE_POSITION</unmanaged-short>
  11255. </member>
  11256. <member name="F:SharpDX.Direct3D9.DeclarationUsage.BlendWeight">
  11257. <summary>
  11258. <dd> <p>Blending weight data. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.BlendWeight" /> with a usage index of 0 to specify the blend weights used in indexed and nonindexed vertex blending.</p> </dd>
  11259. </summary>
  11260. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_BLENDWEIGHT']/*" />
  11261. <msdn-id>bb172534</msdn-id>
  11262. <unmanaged>D3DDECLUSAGE_BLENDWEIGHT</unmanaged>
  11263. <unmanaged-short>D3DDECLUSAGE_BLENDWEIGHT</unmanaged-short>
  11264. </member>
  11265. <member name="F:SharpDX.Direct3D9.DeclarationUsage.BlendIndices">
  11266. <summary>
  11267. <dd> <p>Blending indices data. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.BlendIndices" /> with a usage index of 0 to specify matrix indices for indexed paletted skinning.</p> </dd>
  11268. </summary>
  11269. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_BLENDINDICES']/*" />
  11270. <msdn-id>bb172534</msdn-id>
  11271. <unmanaged>D3DDECLUSAGE_BLENDINDICES</unmanaged>
  11272. <unmanaged-short>D3DDECLUSAGE_BLENDINDICES</unmanaged-short>
  11273. </member>
  11274. <member name="F:SharpDX.Direct3D9.DeclarationUsage.Normal">
  11275. <summary>
  11276. <dd> <p>Vertex normal data. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Normal" /> with a usage index of 0 to specify vertex normals for fixed function vertex processing and the n-patch tessellator. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Normal" /> with a usage index of 1 to specify vertex normals for fixed function vertex processing for vertex tweening.</p> </dd>
  11277. </summary>
  11278. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_NORMAL']/*" />
  11279. <msdn-id>bb172534</msdn-id>
  11280. <unmanaged>D3DDECLUSAGE_NORMAL</unmanaged>
  11281. <unmanaged-short>D3DDECLUSAGE_NORMAL</unmanaged-short>
  11282. </member>
  11283. <member name="F:SharpDX.Direct3D9.DeclarationUsage.PointSize">
  11284. <summary>
  11285. <dd> <p>Point size data. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.PointSize" /> with a usage index of 0 to specify the point-size attribute used by the setup engine of the rasterizer to expand a point into a quad for the point-sprite functionality.</p> </dd>
  11286. </summary>
  11287. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_PSIZE']/*" />
  11288. <msdn-id>bb172534</msdn-id>
  11289. <unmanaged>D3DDECLUSAGE_PSIZE</unmanaged>
  11290. <unmanaged-short>D3DDECLUSAGE_PSIZE</unmanaged-short>
  11291. </member>
  11292. <member name="F:SharpDX.Direct3D9.DeclarationUsage.TextureCoordinate">
  11293. <summary>
  11294. <dd> <p>Texture coordinate data. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.TextureCoordinate" />, n to specify texture coordinates in fixed function vertex processing and in pixel shaders prior to ps_3_0. These can be used to pass user defined data. </p> </dd>
  11295. </summary>
  11296. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_TEXCOORD']/*" />
  11297. <msdn-id>bb172534</msdn-id>
  11298. <unmanaged>D3DDECLUSAGE_TEXCOORD</unmanaged>
  11299. <unmanaged-short>D3DDECLUSAGE_TEXCOORD</unmanaged-short>
  11300. </member>
  11301. <member name="F:SharpDX.Direct3D9.DeclarationUsage.Tangent">
  11302. <summary>
  11303. <dd> <p>Vertex tangent data.</p> </dd>
  11304. </summary>
  11305. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_TANGENT']/*" />
  11306. <msdn-id>bb172534</msdn-id>
  11307. <unmanaged>D3DDECLUSAGE_TANGENT</unmanaged>
  11308. <unmanaged-short>D3DDECLUSAGE_TANGENT</unmanaged-short>
  11309. </member>
  11310. <member name="F:SharpDX.Direct3D9.DeclarationUsage.Binormal">
  11311. <summary>
  11312. <dd> <p>Vertex binormal data. </p> </dd>
  11313. </summary>
  11314. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_BINORMAL']/*" />
  11315. <msdn-id>bb172534</msdn-id>
  11316. <unmanaged>D3DDECLUSAGE_BINORMAL</unmanaged>
  11317. <unmanaged-short>D3DDECLUSAGE_BINORMAL</unmanaged-short>
  11318. </member>
  11319. <member name="F:SharpDX.Direct3D9.DeclarationUsage.TessellateFactor">
  11320. <summary>
  11321. <dd> <p>Single positive floating point value. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.TessellateFactor" /> with a usage index of 0 to specify a tessellation factor used in the tessellation unit to control the rate of tessellation. For more information about the data type, see <see cref="F:SharpDX.Direct3D9.DeclarationType.Float1" />.</p> </dd>
  11322. </summary>
  11323. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_TESSFACTOR']/*" />
  11324. <msdn-id>bb172534</msdn-id>
  11325. <unmanaged>D3DDECLUSAGE_TESSFACTOR</unmanaged>
  11326. <unmanaged-short>D3DDECLUSAGE_TESSFACTOR</unmanaged-short>
  11327. </member>
  11328. <member name="F:SharpDX.Direct3D9.DeclarationUsage.PositionTransformed">
  11329. <summary>
  11330. <dd> <p>Vertex data contains transformed position data ranging from (0,0) to (viewport width, viewport height). Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.PositionTransformed" /> with a usage index of 0 to specify transformed position. When a declaration containing this is set, the pipeline does not perform vertex processing.</p> </dd>
  11331. </summary>
  11332. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_POSITIONT']/*" />
  11333. <msdn-id>bb172534</msdn-id>
  11334. <unmanaged>D3DDECLUSAGE_POSITIONT</unmanaged>
  11335. <unmanaged-short>D3DDECLUSAGE_POSITIONT</unmanaged-short>
  11336. </member>
  11337. <member name="F:SharpDX.Direct3D9.DeclarationUsage.Color">
  11338. <summary>
  11339. <dd> <p>Vertex data contains diffuse or specular color. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Color" /> with a usage index of 0 to specify the diffuse color in the fixed function vertex shader and pixel shaders prior to ps_3_0. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Color" /> with a usage index of 1 to specify the specular color in the fixed function vertex shader and pixel shaders prior to ps_3_0.</p> </dd>
  11340. </summary>
  11341. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_COLOR']/*" />
  11342. <msdn-id>bb172534</msdn-id>
  11343. <unmanaged>D3DDECLUSAGE_COLOR</unmanaged>
  11344. <unmanaged-short>D3DDECLUSAGE_COLOR</unmanaged-short>
  11345. </member>
  11346. <member name="F:SharpDX.Direct3D9.DeclarationUsage.Fog">
  11347. <summary>
  11348. <dd> <p>Vertex data contains fog data. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Fog" /> with a usage index of 0 to specify a fog blend value used after pixel shading finishes. This applies to pixel shaders prior to version ps_3_0. </p> </dd>
  11349. </summary>
  11350. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_FOG']/*" />
  11351. <msdn-id>bb172534</msdn-id>
  11352. <unmanaged>D3DDECLUSAGE_FOG</unmanaged>
  11353. <unmanaged-short>D3DDECLUSAGE_FOG</unmanaged-short>
  11354. </member>
  11355. <member name="F:SharpDX.Direct3D9.DeclarationUsage.Depth">
  11356. <summary>
  11357. <dd> <p>Vertex data contains depth data.</p> </dd>
  11358. </summary>
  11359. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_DEPTH']/*" />
  11360. <msdn-id>bb172534</msdn-id>
  11361. <unmanaged>D3DDECLUSAGE_DEPTH</unmanaged>
  11362. <unmanaged-short>D3DDECLUSAGE_DEPTH</unmanaged-short>
  11363. </member>
  11364. <member name="F:SharpDX.Direct3D9.DeclarationUsage.Sample">
  11365. <summary>
  11366. <dd> <p>Vertex data contains sampler data. Use <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Sample" /> with a usage index of 0 to specify the displacement value to look up. It can be used only with D3DDECLUSAGE_LOOKUPPRESAMPLED or D3DDECLUSAGE_LOOKUP. </p> </dd>
  11367. </summary>
  11368. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDECLUSAGE_SAMPLE']/*" />
  11369. <msdn-id>bb172534</msdn-id>
  11370. <unmanaged>D3DDECLUSAGE_SAMPLE</unmanaged>
  11371. <unmanaged-short>D3DDECLUSAGE_SAMPLE</unmanaged-short>
  11372. </member>
  11373. <member name="T:SharpDX.Direct3D9.Degree">
  11374. <summary>
  11375. <p>Defines the degree of the variables in the equation that describes a curve.</p>
  11376. </summary>
  11377. <remarks>
  11378. <p>The values in this enumeration are used to describe the curves used by rectangle and triangle patches. For more information, see <see cref="F:SharpDX.Direct3D9.RenderState.CullMode" />.</p>
  11379. </remarks>
  11380. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEGREETYPE']/*" />
  11381. <msdn-id>bb172536</msdn-id>
  11382. <unmanaged>D3DDEGREETYPE</unmanaged>
  11383. <unmanaged-short>D3DDEGREETYPE</unmanaged-short>
  11384. </member>
  11385. <member name="F:SharpDX.Direct3D9.Degree.Linear">
  11386. <summary>
  11387. <dd> <p>Curve is described by variables of first order.</p> </dd>
  11388. </summary>
  11389. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEGREE_LINEAR']/*" />
  11390. <msdn-id>bb172536</msdn-id>
  11391. <unmanaged>D3DDEGREE_LINEAR</unmanaged>
  11392. <unmanaged-short>D3DDEGREE_LINEAR</unmanaged-short>
  11393. </member>
  11394. <member name="F:SharpDX.Direct3D9.Degree.Quadratic">
  11395. <summary>
  11396. <dd> <p>Curve is described by variables of second order.</p> </dd>
  11397. </summary>
  11398. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEGREE_QUADRATIC']/*" />
  11399. <msdn-id>bb172536</msdn-id>
  11400. <unmanaged>D3DDEGREE_QUADRATIC</unmanaged>
  11401. <unmanaged-short>D3DDEGREE_QUADRATIC</unmanaged-short>
  11402. </member>
  11403. <member name="F:SharpDX.Direct3D9.Degree.Cubic">
  11404. <summary>
  11405. <dd> <p>Curve is described by variables of third order.</p> </dd>
  11406. </summary>
  11407. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEGREE_CUBIC']/*" />
  11408. <msdn-id>bb172536</msdn-id>
  11409. <unmanaged>D3DDEGREE_CUBIC</unmanaged>
  11410. <unmanaged-short>D3DDEGREE_CUBIC</unmanaged-short>
  11411. </member>
  11412. <member name="F:SharpDX.Direct3D9.Degree.Quintic">
  11413. <summary>
  11414. <dd> <p>Curve is described by variables of fourth order.</p> </dd>
  11415. </summary>
  11416. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEGREE_QUINTIC']/*" />
  11417. <msdn-id>bb172536</msdn-id>
  11418. <unmanaged>D3DDEGREE_QUINTIC</unmanaged>
  11419. <unmanaged-short>D3DDEGREE_QUINTIC</unmanaged-short>
  11420. </member>
  11421. <member name="T:SharpDX.Direct3D9.DeviceCaps">
  11422. <summary>
  11423. <p>Represents the capabilities of the hardware exposed through the Direct3D object.</p>
  11424. </summary>
  11425. <remarks>
  11426. <p>The MaxTextureBlendStages and MaxSimultaneousTextures members might seem similar, but they contain different information. The MaxTextureBlendStages member contains the total number of texture-blending stages supported by the current device, and the MaxSimultaneousTextures member describes how many of those stages can have textures bound to them by using the <strong>SetTexture</strong> method.</p><p>When the driver fills this structure, it can set values for execute-buffer capabilities, even when the interface being used to retrieve the capabilities (such as <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>) does not support execute buffers.</p><p>In general, performance problems may occur if you use a texture and then modify it during a scene. Ensure that no texture used in the current <strong>BeginScene</strong> and <strong>EndScene</strong> block is evicted unless absolutely necessary. In the case of extremely high texture usage within a scene, the results are undefined. This occurs when you modify a texture that you have used in the scene and there is no spare texture memory available. For such systems, the contents of the z-buffer become invalid at EndScene. Applications should not call <strong>UpdateSurface</strong> to or from the back buffer on this type of hardware inside a BeginScene/EndScene pair. In addition, applications should not try to access the z-buffer if the <see cref="F:SharpDX.Direct3D9.RasterCaps.ZBufferLessHsr" /> capability flag is set. Finally, applications should not lock the back buffer or the z-buffer inside a BeginScene/EndScene pair.</p><p>The following flags concerning mipmapped textures are not supported in Direct3D 9. </p><ul> <li>D3DPTFILTERCAPS_LINEAR</li> <li>D3DPTFILTERCAPS_LINEARMIPLINEAR</li> <li>D3DPTFILTERCAPS_LINEARMIPNEAREST</li> <li>D3DPTFILTERCAPS_MIPNEAREST</li> <li>D3DPTFILTERCAPS_NEAREST</li> </ul>
  11427. </remarks>
  11428. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS']/*" />
  11429. <msdn-id>bb172513</msdn-id>
  11430. <unmanaged>D3DDEVCAPS</unmanaged>
  11431. <unmanaged-short>D3DDEVCAPS</unmanaged-short>
  11432. </member>
  11433. <member name="F:SharpDX.Direct3D9.DeviceCaps.ExecuteSystemMemory">
  11434. <summary>
  11435. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type, which identifies what type of resources are used for processing vertices.</p> </dd>
  11436. </summary>
  11437. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_EXECUTESYSTEMMEMORY']/*" />
  11438. <msdn-id>bb172513</msdn-id>
  11439. <unmanaged>D3DDEVCAPS_EXECUTESYSTEMMEMORY</unmanaged>
  11440. <unmanaged-short>D3DDEVCAPS_EXECUTESYSTEMMEMORY</unmanaged-short>
  11441. </member>
  11442. <member name="F:SharpDX.Direct3D9.DeviceCaps.ExecuteVideoMemory">
  11443. <summary>
  11444. <dd> <p>Adapter on which this Direct3D device was created. This ordinal is valid only to pass to methods of the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface that created this Direct3D device. The <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface can always be retrieved by calling <strong>GetDirect3D</strong>. </p> </dd>
  11445. </summary>
  11446. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_EXECUTEVIDEOMEMORY']/*" />
  11447. <msdn-id>bb172513</msdn-id>
  11448. <unmanaged>D3DDEVCAPS_EXECUTEVIDEOMEMORY</unmanaged>
  11449. <unmanaged-short>D3DDEVCAPS_EXECUTEVIDEOMEMORY</unmanaged-short>
  11450. </member>
  11451. <member name="F:SharpDX.Direct3D9.DeviceCaps.TLVertexSystemMemory">
  11452. <summary>
  11453. <dd> <p> </p><p>The following driver-specific capability.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Caps.ReadScanline" /></strong></dt> </dl> </td><td> <p>Display hardware is capable of returning the current scan line.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Caps.Overlay" /></strong></dt> </dl> </td><td> <p>The display driver supports an overlay DDI that allows for verification of overlay capabilities. For more information about the overlay DDI, see Overlay DDI.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> </table> <p>?</p> </dd>
  11454. </summary>
  11455. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_TLVERTEXSYSTEMMEMORY']/*" />
  11456. <msdn-id>bb172513</msdn-id>
  11457. <unmanaged>D3DDEVCAPS_TLVERTEXSYSTEMMEMORY</unmanaged>
  11458. <unmanaged-short>D3DDEVCAPS_TLVERTEXSYSTEMMEMORY</unmanaged-short>
  11459. </member>
  11460. <member name="F:SharpDX.Direct3D9.DeviceCaps.TLVertexVideoMemory">
  11461. <summary>
  11462. <dd> <p>Driver-specific capabilities identified in <see cref="T:SharpDX.Direct3D9.Caps2" />.</p> </dd>
  11463. </summary>
  11464. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_TLVERTEXVIDEOMEMORY']/*" />
  11465. <msdn-id>bb172513</msdn-id>
  11466. <unmanaged>D3DDEVCAPS_TLVERTEXVIDEOMEMORY</unmanaged>
  11467. <unmanaged-short>D3DDEVCAPS_TLVERTEXVIDEOMEMORY</unmanaged-short>
  11468. </member>
  11469. <member name="F:SharpDX.Direct3D9.DeviceCaps.TextureSystemMemory">
  11470. <summary>
  11471. <dd> <p>Driver-specific capabilities identified in <see cref="T:SharpDX.Direct3D9.Caps3" />.</p> </dd>
  11472. </summary>
  11473. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_TEXTURESYSTEMMEMORY']/*" />
  11474. <msdn-id>bb172513</msdn-id>
  11475. <unmanaged>D3DDEVCAPS_TEXTURESYSTEMMEMORY</unmanaged>
  11476. <unmanaged-short>D3DDEVCAPS_TEXTURESYSTEMMEMORY</unmanaged-short>
  11477. </member>
  11478. <member name="F:SharpDX.Direct3D9.DeviceCaps.TextureVideoMemory">
  11479. <summary>
  11480. <dd> <p> </p><p>Bit mask of values representing what presentation swap intervals are available.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" /></strong></dt> </dl> </td><td> <p>The driver supports an immediate presentation swap interval.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.One" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Two" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every second screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Three" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every third screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Four" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every fourth screen refresh.</p> </td></tr> </table> <p>?</p> </dd>
  11481. </summary>
  11482. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_TEXTUREVIDEOMEMORY']/*" />
  11483. <msdn-id>bb172513</msdn-id>
  11484. <unmanaged>D3DDEVCAPS_TEXTUREVIDEOMEMORY</unmanaged>
  11485. <unmanaged-short>D3DDEVCAPS_TEXTUREVIDEOMEMORY</unmanaged-short>
  11486. </member>
  11487. <member name="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimTLVertex">
  11488. <summary>
  11489. <dd> <p> </p><p>Bit mask indicating what hardware support is available for cursors. Direct3D 9 does not define alpha-blending cursor capabilities.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CursorCaps.Color" /></strong></dt> </dl> </td><td> <p>A full-color cursor is supported in hardware. Specifically, this flag indicates that the driver supports at least a hardware color cursor in high-resolution modes (with scan lines greater than or equal to 400).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CursorCaps.LowResolution" /></strong></dt> </dl> </td><td> <p>A full-color cursor is supported in hardware. Specifically, this flag indicates that the driver supports a hardware color cursor in both high-resolution and low-resolution modes (with scan lines less than 400).</p> </td></tr> </table> <p>?</p> </dd>
  11490. </summary>
  11491. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_DRAWPRIMTLVERTEX']/*" />
  11492. <msdn-id>bb172513</msdn-id>
  11493. <unmanaged>D3DDEVCAPS_DRAWPRIMTLVERTEX</unmanaged>
  11494. <unmanaged-short>D3DDEVCAPS_DRAWPRIMTLVERTEX</unmanaged-short>
  11495. </member>
  11496. <member name="F:SharpDX.Direct3D9.DeviceCaps.CanRenderAfterFlip">
  11497. <summary>
  11498. <dd> <p> </p><p>Flags identifying the capabilities of the device.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.CanBlitSysToNonLocal" /></strong></dt> </dl> </td><td> <p>Device supports blits from system-memory textures to nonlocal video-memory textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.CanRenderAfterFlip" /></strong></dt> </dl> </td><td> <p>Device can queue rendering commands after a page flip. Applications do not change their behavior if this flag is set; this capability means that the device is relatively fast.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimitives2" /></strong></dt> </dl> </td><td> <p>Device can support at least a DirectX 5-compliant driver.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimitives2Extended" /></strong></dt> </dl> </td><td> <p>Device can support at least a DirectX 7-compliant driver.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimTLVertex" /></strong></dt> </dl> </td><td> <p>Device exports an <strong><see cref="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)" /></strong>-aware hal.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.ExecuteSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can use execute buffers from system memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.ExecuteVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can use execute buffers from video memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.HWRasterization" /></strong></dt> </dl> </td><td> <p>Device has hardware acceleration for scene rasterization.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.HWTransformAndLight" /></strong></dt> </dl> </td><td> <p>Device can support transformation and lighting in hardware.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.NPatches" /></strong></dt> </dl> </td><td> <p>Device supports N patches.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.PureDevice" /></strong></dt> </dl> </td><td> <p>Device can support rasterization, transform, lighting, and shading in hardware.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.QuinticRTPatches" /></strong></dt> </dl> </td><td> <p>Device supports quintic B?zier curves and B-splines.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatches" /></strong></dt> </dl> </td><td> <p>Device supports rectangular and triangular patches.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatchHandleZero" /></strong></dt> </dl> </td><td> <p>When this device capability is set, the hardware architecture does not require caching of any information, and uncached patches (handle zero) will be drawn as efficiently as cached ones. Note that setting <see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatchHandleZero" /> does not mean that a patch with handle zero can be drawn. A handle-zero patch can always be drawn whether this cap is set or not.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.SeparateTextureMemory" /></strong></dt> </dl> </td><td> <p>Device is texturing from separate memory pools.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureNonLocalVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from non-local video memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from system memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from device memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TLVertexSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can use buffers from system memory for transformed and lit vertices.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TLVertexVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can use buffers from video memory for transformed and lit vertices.</p> </td></tr> </table> <p>?</p> </dd>
  11499. </summary>
  11500. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_CANRENDERAFTERFLIP']/*" />
  11501. <msdn-id>bb172513</msdn-id>
  11502. <unmanaged>D3DDEVCAPS_CANRENDERAFTERFLIP</unmanaged>
  11503. <unmanaged-short>D3DDEVCAPS_CANRENDERAFTERFLIP</unmanaged-short>
  11504. </member>
  11505. <member name="F:SharpDX.Direct3D9.DeviceCaps.TextureNonLocalVideoMemory">
  11506. <summary>
  11507. <dd> <p>Miscellaneous driver primitive capabilities. See <see cref="T:SharpDX.Direct3D9.PrimitiveMiscCaps" />.</p> </dd>
  11508. </summary>
  11509. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_TEXTURENONLOCALVIDMEM']/*" />
  11510. <msdn-id>bb172513</msdn-id>
  11511. <unmanaged>D3DDEVCAPS_TEXTURENONLOCALVIDMEM</unmanaged>
  11512. <unmanaged-short>D3DDEVCAPS_TEXTURENONLOCALVIDMEM</unmanaged-short>
  11513. </member>
  11514. <member name="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimitives2">
  11515. <summary>
  11516. <dd> <p> </p><p>Information on raster-drawing capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.Anisotropy" /></strong></dt> </dl> </td><td> <p>Device supports anisotropic filtering.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ColorPerspective" /></strong></dt> </dl> </td><td> <p>Device iterates colors perspective correctly.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.Dither" /></strong></dt> </dl> </td><td> <p>Device can dither to improve color resolution.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.DepthBias" /></strong></dt> </dl> </td><td> <p>Device supports legacy depth bias. For true depth bias, see <see cref="F:SharpDX.Direct3D9.RasterCaps.SlopeScaleDepthBias" />.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogRange" /></strong></dt> </dl> </td><td> <p>Device supports range-based fog. In range-based fog, the distance of an object from the viewer is used to compute fog effects, not the depth of the object (that is, the z-coordinate) in the scene.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogTable" /></strong></dt> </dl> </td><td> <p>Device calculates the fog value by referring to a lookup table containing fog values that are indexed to the depth of a given pixel.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogVertex" /></strong></dt> </dl> </td><td> <p>Device calculates the fog value during the lighting operation and interpolates the fog value during rasterization.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.MipMapLodBias" /></strong></dt> </dl> </td><td> <p>Device supports level-of-detail bias adjustments. These bias adjustments enable an application to make a mipmap appear crisper or less sharp than it normally would. For more information about level-of-detail bias in mipmaps, see <see cref="F:SharpDX.Direct3D9.SamplerState.MipMapLodBias" />.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.MultisampleToggle" /></strong></dt> </dl> </td><td> <p>Device supports toggling multisampling on and off between <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> (using <see cref="F:SharpDX.Direct3D9.RenderState.MultisampleAntialias" />).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ScissorTest" /></strong></dt> </dl> </td><td> <p>Device supports scissor test. See Scissor Test (Direct3D 9).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.SlopeScaleDepthBias" /></strong></dt> </dl> </td><td> <p>Device performs true slope-scale based depth bias. This is in contrast to the legacy style depth bias.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.WBuffer" /></strong></dt> </dl> </td><td> <p>Device supports depth buffering using w.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.WFog" /></strong></dt> </dl> </td><td> <p>Device supports w-based fog. W-based fog is used when a perspective projection matrix is specified, but affine projections still use z-based fog. The system considers a projection matrix that contains a nonzero value in the [3][4] element to be a perspective projection matrix.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ZBufferLessHsr" /></strong></dt> </dl> </td><td> <p>Device can perform hidden-surface removal (HSR) without requiring the application to sort polygons and without requiring the allocation of a depth-buffer. This leaves more video memory for textures. The method used to perform HSR is hardware-dependent and is transparent to the application.</p> <p>Z-bufferless HSR is performed if no depth-buffer surface is associated with the rendering-target surface and the depth-buffer comparison test is enabled (that is, when the state value associated with the <strong><see cref="F:SharpDX.Direct3D9.RenderState.ZEnable" /></strong> enumeration constant is set to <strong>TRUE</strong>).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ZFog" /></strong></dt> </dl> </td><td> <p>Device supports z-based fog.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.DepthTest" /></strong></dt> </dl> </td><td> <p>Device can perform z-test operations. This effectively renders a primitive and indicates whether any z pixels have been rendered.</p> </td></tr> </table> <p>?</p> </dd>
  11517. </summary>
  11518. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_DRAWPRIMITIVES2']/*" />
  11519. <msdn-id>bb172513</msdn-id>
  11520. <unmanaged>D3DDEVCAPS_DRAWPRIMITIVES2</unmanaged>
  11521. <unmanaged-short>D3DDEVCAPS_DRAWPRIMITIVES2</unmanaged-short>
  11522. </member>
  11523. <member name="F:SharpDX.Direct3D9.DeviceCaps.SeparateTextureMemory">
  11524. <summary>
  11525. <dd> <p> </p><p>Z-buffer comparison capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Always" /></strong></dt> </dl> </td><td> <p>Always pass the z-test.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Equal" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z equals the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Greater" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is greater than the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.GreaterEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is greater than or equal to the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Less" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is less than the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.LessEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is less than or equal to the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Never" /></strong></dt> </dl> </td><td> <p>Always fail the z-test.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.NotEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z does not equal the current z.</p> </td></tr> </table> <p>?</p> </dd>
  11526. </summary>
  11527. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_SEPARATETEXTUREMEMORIES']/*" />
  11528. <msdn-id>bb172513</msdn-id>
  11529. <unmanaged>D3DDEVCAPS_SEPARATETEXTUREMEMORIES</unmanaged>
  11530. <unmanaged-short>D3DDEVCAPS_SEPARATETEXTUREMEMORIES</unmanaged-short>
  11531. </member>
  11532. <member name="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimitives2Extended">
  11533. <summary>
  11534. <dd> <p> </p><p>Source-blending capabilities. This member can be one or more of the following flags. (The RGBA values of the source and destination are indicated by the subscripts s and d.)</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.BlendFactor" /></strong></dt> </dl> </td><td> <p>The driver supports both <see cref="F:SharpDX.Direct3D9.Blend.BlendFactor" /> and <see cref="F:SharpDX.Direct3D9.Blend.InverseBlendFactor" />. See <strong><see cref="T:SharpDX.Direct3D9.Blend" /></strong>.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.BothInverseSourceAlpha" /></strong></dt> </dl> </td><td> <p>Source blend factor is (1 - As, 1 - As, 1 - As, 1 - As) and destination blend factor is (As, As, As, As); the destination blend selection is overridden.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.Bothsrcalpha" /></strong></dt> </dl> </td><td> <p>The driver supports the <see cref="F:SharpDX.Direct3D9.Blend.Bothsrcalpha" /> blend mode. (This blend mode is obsolete. For more information, see <see cref="T:SharpDX.Direct3D9.Blend" />.)</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.DestinationAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (Ad, Ad, Ad, Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.DestinationColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (Rd, Gd, Bd, Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseDestinationAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Ad, 1 - Ad, 1 - Ad, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseDestinationColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - As, 1 - As, 1 - As, 1 - As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Rs, 1 - Gs, 1 - Bs, 1 - As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceColor2" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - PSOutColor[1]r, 1 - PSOutColor[1]g, 1 - PSOutColor[1]b, not used)). See <strong>Render Target Blending</strong>.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.One" /></strong></dt> </dl> </td><td> <p>Blend factor is (1, 1, 1, 1).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (As, As, As, As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceAlphaSaturated" /></strong></dt> </dl> </td><td> <p>Blend factor is (f, f, f, 1); f = min(As, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (Rs, Gs, Bs, As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceColor2" /></strong></dt> </dl> </td><td> <p>Blend factor is (PSOutColor[1]r, PSOutColor[1]g, PSOutColor[1]b, not used). See <strong>Render Target Blending</strong>.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.Zero" /></strong></dt> </dl> </td><td> <p>Blend factor is (0, 0, 0, 0).</p> </td></tr> </table> <p>?</p> </dd>
  11535. </summary>
  11536. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_DRAWPRIMITIVES2EX']/*" />
  11537. <msdn-id>bb172513</msdn-id>
  11538. <unmanaged>D3DDEVCAPS_DRAWPRIMITIVES2EX</unmanaged>
  11539. <unmanaged-short>D3DDEVCAPS_DRAWPRIMITIVES2EX</unmanaged-short>
  11540. </member>
  11541. <member name="F:SharpDX.Direct3D9.DeviceCaps.HWTransformAndLight">
  11542. <summary>
  11543. <dd> <p>Destination-blending capabilities. This member can be the same capabilities that are defined for the SrcBlendCaps member. </p> </dd>
  11544. </summary>
  11545. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_HWTRANSFORMANDLIGHT']/*" />
  11546. <msdn-id>bb172513</msdn-id>
  11547. <unmanaged>D3DDEVCAPS_HWTRANSFORMANDLIGHT</unmanaged>
  11548. <unmanaged-short>D3DDEVCAPS_HWTRANSFORMANDLIGHT</unmanaged-short>
  11549. </member>
  11550. <member name="F:SharpDX.Direct3D9.DeviceCaps.CanBlitSysToNonLocal">
  11551. <summary>
  11552. <dd> <p>Alpha-test comparison capabilities. This member can include the same capability flags defined for the ZCmpCaps member. If this member contains only the <see cref="F:SharpDX.Direct3D9.CompareCaps.Always" /> capability or only the <see cref="F:SharpDX.Direct3D9.CompareCaps.Never" /> capability, the driver does not support alpha tests. Otherwise, the flags identify the individual comparisons that are supported for alpha testing. </p> </dd>
  11553. </summary>
  11554. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_CANBLTSYSTONONLOCAL']/*" />
  11555. <msdn-id>bb172513</msdn-id>
  11556. <unmanaged>D3DDEVCAPS_CANBLTSYSTONONLOCAL</unmanaged>
  11557. <unmanaged-short>D3DDEVCAPS_CANBLTSYSTONONLOCAL</unmanaged-short>
  11558. </member>
  11559. <member name="F:SharpDX.Direct3D9.DeviceCaps.HWRasterization">
  11560. <summary>
  11561. <dd> <p>Shading operations capabilities. It is assumed, in general, that if a device supports a given command at all, it supports the <see cref="F:SharpDX.Direct3D9.ShadeMode.Flat" /> mode (as specified in the <strong><see cref="T:SharpDX.Direct3D9.ShadeMode" /></strong> enumerated type). This flag specifies whether the driver can also support Gouraud shading and whether alpha color components are supported. When alpha components are not supported, the alpha value of colors generated is implicitly 255. This is the maximum possible alpha (that is, the alpha component is at full intensity). </p> <p>The color, specular highlights, fog, and alpha interpolants of a triangle each have capability flags that an application can use to find out how they are implemented by the device driver.</p> <p> </p><p>This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.AlphaGouraudBlend" /></strong></dt> </dl> </td><td> <p>Device can support an alpha component for Gouraud-blended transparency (the <see cref="F:SharpDX.Direct3D9.ShadeMode.Gouraud" /> state for the <see cref="T:SharpDX.Direct3D9.ShadeMode" /> enumerated type). In this mode, the alpha color component of a primitive is provided at vertices and interpolated across a face along with the other color components.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.ColorGouraudRgb" /></strong></dt> </dl> </td><td> <p>Device can support colored Gouraud shading. In this mode, the per-vertex color components (red, green, and blue) are interpolated across a triangle face.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.FogGouraud" /></strong></dt> </dl> </td><td> <p>Device can support fog in the Gouraud shading mode.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.SpecularGouraudRgb" /></strong></dt> </dl> </td><td> <p>Device supports Gouraud shading of specular highlights.</p> </td></tr> </table> <p>?</p> </dd>
  11562. </summary>
  11563. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_HWRASTERIZATION']/*" />
  11564. <msdn-id>bb172513</msdn-id>
  11565. <unmanaged>D3DDEVCAPS_HWRASTERIZATION</unmanaged>
  11566. <unmanaged-short>D3DDEVCAPS_HWRASTERIZATION</unmanaged-short>
  11567. </member>
  11568. <member name="F:SharpDX.Direct3D9.DeviceCaps.PureDevice">
  11569. <summary>
  11570. <dd> <p> </p><p>Miscellaneous texture-mapping capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Alpha" /></strong></dt> </dl> </td><td> <p>Alpha in texture pixels is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.AlphaPalette" /></strong></dt> </dl> </td><td> <p>Device can draw alpha from texture palettes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.CubeMap" /></strong></dt> </dl> </td><td> <p>Supports cube textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.CubeMapPow2" /></strong></dt> </dl> </td><td> <p>Device requires that cube texture maps have dimensions specified as powers of two.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipCubeMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped cube textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipVolumeMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped volume textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /></strong></dt> </dl> </td><td> <p><see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /> is also set, conditionally supports the use of 2D textures with dimensions that are not powers of two. A device that exposes this capability can use such a texture if all of the following requirements are met.</p> <p> </p><ul> <li>The texture addressing mode for the texture stage is set to <see cref="F:SharpDX.Direct3D9.TextureAddress.Clamp" />.</li> <li>Texture wrapping for the texture stage is disabled (<strong>D3DRS_WRAP</strong> n set to 0).</li> <li>Mipmapping is not in use (use magnification filter only).</li> <li>Texture formats must not be <see cref="F:SharpDX.Direct3D9.Format.Dxt1" /> through <see cref="F:SharpDX.Direct3D9.Format.Dxt5" />.</li> </ul> <p>If this flag is not set, and <see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /> is also not set, then unconditional support is provided for 2D textures with dimensions that are not powers of two.</p> <p>A texture that is not a power of two cannot be set at a stage that will be read based on a shader computation (such as the bem - ps and texm3x3 - ps instructions in pixel shaders versions 1_0 to 1_3). For example, these textures can be used to store bumps that will be fed into texture reads, but not the environment maps that are used in texbem - ps, texbeml - ps, and texm3x3spec - ps. This means that a texture with dimensions that are not powers of two cannot be addressed or sampled using texture coordinates computed within the shader. This type of operation is known as a dependent read and cannot be performed on these types of textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.NoProjectedBumpEnvironment" /></strong></dt> </dl> </td><td> <p>Device does not support a projected bump-environment loopkup operation in programmable and fixed function shaders.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Perspective" /></strong></dt> </dl> </td><td> <p>Perspective correction texturing is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /></strong></dt> </dl> </td><td> <p>If <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is not set, all textures must have widths and heights specified as powers of two. This requirement does not apply to either cube textures or volume textures.</p> <p>If <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is also set, conditionally supports the use of 2D textures with dimensions that are not powers of two. See <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> description.</p> <p>If this flag is not set, and <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is also not set, then unconditional support is provided for 2D textures with dimensions that are not powers of two.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Projected" /></strong></dt> </dl> </td><td> <p>Supports the <see cref="F:SharpDX.Direct3D9.TextureTransform.Projected" /> texture transformation flag. When applied, the device divides transformed texture coordinates by the last texture coordinate. If this capability is present, then the projective divide occurs per pixel. If this capability is not present, but the projective divide needs to occur anyway, then it is performed on a per-vertex basis by the Direct3D runtime.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.SquareOnly" /></strong></dt> </dl> </td><td> <p>All textures must be square.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize" /></strong></dt> </dl> </td><td> <p>Texture indices are not scaled by the texture size prior to interpolation.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMap" /></strong></dt> </dl> </td><td> <p>Device supports volume textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMapPow2" /></strong></dt> </dl> </td><td> <p>Device requires that volume texture maps have dimensions specified as powers of two.</p> </td></tr> </table> <p>?</p> </dd>
  11571. </summary>
  11572. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_PUREDEVICE']/*" />
  11573. <msdn-id>bb172513</msdn-id>
  11574. <unmanaged>D3DDEVCAPS_PUREDEVICE</unmanaged>
  11575. <unmanaged-short>D3DDEVCAPS_PUREDEVICE</unmanaged-short>
  11576. </member>
  11577. <member name="F:SharpDX.Direct3D9.DeviceCaps.QuinticRTPatches">
  11578. <summary>
  11579. <dd> <p>Texture-filtering capabilities for a texture. Per-stage filtering capabilities reflect which filtering modes are supported for texture stages when performing multiple-texture blending. This member can be any combination of the per-stage texture-filtering flags defined in <see cref="T:SharpDX.Direct3D9.FilterCaps" />.</p> </dd>
  11580. </summary>
  11581. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_QUINTICRTPATCHES']/*" />
  11582. <msdn-id>bb172513</msdn-id>
  11583. <unmanaged>D3DDEVCAPS_QUINTICRTPATCHES</unmanaged>
  11584. <unmanaged-short>D3DDEVCAPS_QUINTICRTPATCHES</unmanaged-short>
  11585. </member>
  11586. <member name="F:SharpDX.Direct3D9.DeviceCaps.RTPatches">
  11587. <summary>
  11588. <dd> <p>Texture-filtering capabilities for a cube texture. Per-stage filtering capabilities reflect which filtering modes are supported for texture stages when performing multiple-texture blending. This member can be any combination of the per-stage texture-filtering flags defined in <see cref="T:SharpDX.Direct3D9.FilterCaps" />. </p> </dd>
  11589. </summary>
  11590. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_RTPATCHES']/*" />
  11591. <msdn-id>bb172513</msdn-id>
  11592. <unmanaged>D3DDEVCAPS_RTPATCHES</unmanaged>
  11593. <unmanaged-short>D3DDEVCAPS_RTPATCHES</unmanaged-short>
  11594. </member>
  11595. <member name="F:SharpDX.Direct3D9.DeviceCaps.RTPatchHandleZero">
  11596. <summary>
  11597. <dd> <p>Texture-filtering capabilities for a volume texture. Per-stage filtering capabilities reflect which filtering modes are supported for texture stages when performing multiple-texture blending. This member can be any combination of the per-stage texture-filtering flags defined in <see cref="T:SharpDX.Direct3D9.FilterCaps" />.</p> </dd>
  11598. </summary>
  11599. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_RTPATCHHANDLEZERO']/*" />
  11600. <msdn-id>bb172513</msdn-id>
  11601. <unmanaged>D3DDEVCAPS_RTPATCHHANDLEZERO</unmanaged>
  11602. <unmanaged-short>D3DDEVCAPS_RTPATCHHANDLEZERO</unmanaged-short>
  11603. </member>
  11604. <member name="F:SharpDX.Direct3D9.DeviceCaps.NPatches">
  11605. <summary>
  11606. <dd> <p> </p><p>Texture-addressing capabilities for texture objects. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Border" /></strong></dt> </dl> </td><td> <p>Device supports setting coordinates outside the range [0.0, 1.0] to the border color, as specified by the <see cref="F:SharpDX.Direct3D9.SamplerState.BorderColor" /> texture-stage state.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Clamp" /></strong></dt> </dl> </td><td> <p>Device can clamp textures to addresses.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.IndependentUV" /></strong></dt> </dl> </td><td> <p>Device can separate the texture-addressing modes of the u and v coordinates of the texture. This ability corresponds to the <see cref="F:SharpDX.Direct3D9.SamplerState.AddressU" /> and <see cref="F:SharpDX.Direct3D9.SamplerState.AddressV" /> render-state values.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Mirror" /></strong></dt> </dl> </td><td> <p>Device can mirror textures to addresses.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.MirrorOnce" /></strong></dt> </dl> </td><td> <p>Device can take the absolute value of the texture coordinate (thus, mirroring around 0) and then clamp to the maximum value.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Wrap" /></strong></dt> </dl> </td><td> <p>Device can wrap textures to addresses.</p> </td></tr> </table> <p>?</p> </dd>
  11607. </summary>
  11608. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS_NPATCHES']/*" />
  11609. <msdn-id>bb172513</msdn-id>
  11610. <unmanaged>D3DDEVCAPS_NPATCHES</unmanaged>
  11611. <unmanaged-short>D3DDEVCAPS_NPATCHES</unmanaged-short>
  11612. </member>
  11613. <member name="T:SharpDX.Direct3D9.DeviceCaps2">
  11614. <summary>
  11615. <p><see cref="T:SharpDX.Direct3D9.DeviceCaps2" /> driver capability flags.</p>
  11616. </summary>
  11617. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS2']/*" />
  11618. <msdn-id>bb172537</msdn-id>
  11619. <unmanaged>D3DDEVCAPS2</unmanaged>
  11620. <unmanaged-short>D3DDEVCAPS2</unmanaged-short>
  11621. </member>
  11622. <member name="F:SharpDX.Direct3D9.DeviceCaps2.StreamOffset">
  11623. <summary>
  11624. No documentation.
  11625. </summary>
  11626. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS2_STREAMOFFSET']/*" />
  11627. <msdn-id>bb172537</msdn-id>
  11628. <unmanaged>D3DDEVCAPS2_STREAMOFFSET</unmanaged>
  11629. <unmanaged-short>D3DDEVCAPS2_STREAMOFFSET</unmanaged-short>
  11630. </member>
  11631. <member name="F:SharpDX.Direct3D9.DeviceCaps2.DMapNPatch">
  11632. <summary>
  11633. No documentation.
  11634. </summary>
  11635. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS2_DMAPNPATCH']/*" />
  11636. <msdn-id>bb172537</msdn-id>
  11637. <unmanaged>D3DDEVCAPS2_DMAPNPATCH</unmanaged>
  11638. <unmanaged-short>D3DDEVCAPS2_DMAPNPATCH</unmanaged-short>
  11639. </member>
  11640. <member name="F:SharpDX.Direct3D9.DeviceCaps2.AdaptiveTessRTPatch">
  11641. <summary>
  11642. No documentation.
  11643. </summary>
  11644. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS2_ADAPTIVETESSRTPATCH']/*" />
  11645. <msdn-id>bb172537</msdn-id>
  11646. <unmanaged>D3DDEVCAPS2_ADAPTIVETESSRTPATCH</unmanaged>
  11647. <unmanaged-short>D3DDEVCAPS2_ADAPTIVETESSRTPATCH</unmanaged-short>
  11648. </member>
  11649. <member name="F:SharpDX.Direct3D9.DeviceCaps2.AdaptiveTessNPatch">
  11650. <summary>
  11651. No documentation.
  11652. </summary>
  11653. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS2_ADAPTIVETESSNPATCH']/*" />
  11654. <msdn-id>bb172537</msdn-id>
  11655. <unmanaged>D3DDEVCAPS2_ADAPTIVETESSNPATCH</unmanaged>
  11656. <unmanaged-short>D3DDEVCAPS2_ADAPTIVETESSNPATCH</unmanaged-short>
  11657. </member>
  11658. <member name="F:SharpDX.Direct3D9.DeviceCaps2.CanStretchRectFromTextures">
  11659. <summary>
  11660. No documentation.
  11661. </summary>
  11662. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS2_CAN_STRETCHRECT_FROM_TEXTURES']/*" />
  11663. <msdn-id>bb172537</msdn-id>
  11664. <unmanaged>D3DDEVCAPS2_CAN_STRETCHRECT_FROM_TEXTURES</unmanaged>
  11665. <unmanaged-short>D3DDEVCAPS2_CAN_STRETCHRECT_FROM_TEXTURES</unmanaged-short>
  11666. </member>
  11667. <member name="F:SharpDX.Direct3D9.DeviceCaps2.PresampledMapNPatch">
  11668. <summary>
  11669. No documentation.
  11670. </summary>
  11671. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS2_PRESAMPLEDDMAPNPATCH']/*" />
  11672. <msdn-id>bb172537</msdn-id>
  11673. <unmanaged>D3DDEVCAPS2_PRESAMPLEDDMAPNPATCH</unmanaged>
  11674. <unmanaged-short>D3DDEVCAPS2_PRESAMPLEDDMAPNPATCH</unmanaged-short>
  11675. </member>
  11676. <member name="F:SharpDX.Direct3D9.DeviceCaps2.VertexElementsCanShareStreamOffset">
  11677. <summary>
  11678. No documentation.
  11679. </summary>
  11680. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVCAPS2_VERTEXELEMENTSCANSHARESTREAMOFFSET']/*" />
  11681. <msdn-id>bb172537</msdn-id>
  11682. <unmanaged>D3DDEVCAPS2_VERTEXELEMENTSCANSHARESTREAMOFFSET</unmanaged>
  11683. <unmanaged-short>D3DDEVCAPS2_VERTEXELEMENTSCANSHARESTREAMOFFSET</unmanaged-short>
  11684. </member>
  11685. <member name="T:SharpDX.Direct3D9.DeviceType">
  11686. <summary>
  11687. <p>Defines device types.</p>
  11688. </summary>
  11689. <remarks>
  11690. <p>All methods of the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface that take a <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> device type will fail if <see cref="F:SharpDX.Direct3D9.DeviceType.NullReference" /> is specified. To use these methods, substitute <see cref="F:SharpDX.Direct3D9.DeviceType.Reference" /> in the method call.</p><p>A <see cref="F:SharpDX.Direct3D9.DeviceType.Reference" /> device should be created in <see cref="F:SharpDX.Direct3D9.Pool.Scratch" /> memory, unless vertex and index buffers are required. To support vertex and index buffers, create the device in <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /> memory.</p><p>If D3dref9.dll is installed, Direct3D will use the reference rasterizer to create a <see cref="F:SharpDX.Direct3D9.DeviceType.Reference" /> device type, even if <see cref="F:SharpDX.Direct3D9.DeviceType.NullReference" /> is specified. If D3dref9.dll is not available and <see cref="F:SharpDX.Direct3D9.DeviceType.NullReference" /> is specified, Direct3D will neither render nor present the scene.</p>
  11691. </remarks>
  11692. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVTYPE']/*" />
  11693. <msdn-id>bb172547</msdn-id>
  11694. <unmanaged>D3DDEVTYPE</unmanaged>
  11695. <unmanaged-short>D3DDEVTYPE</unmanaged-short>
  11696. </member>
  11697. <member name="F:SharpDX.Direct3D9.DeviceType.Hardware">
  11698. <summary>
  11699. <dd> <p>Hardware rasterization. Shading is done with software, hardware, or mixed transform and lighting.</p> </dd>
  11700. </summary>
  11701. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVTYPE_HAL']/*" />
  11702. <msdn-id>bb172547</msdn-id>
  11703. <unmanaged>D3DDEVTYPE_HAL</unmanaged>
  11704. <unmanaged-short>D3DDEVTYPE_HAL</unmanaged-short>
  11705. </member>
  11706. <member name="F:SharpDX.Direct3D9.DeviceType.Reference">
  11707. <summary>
  11708. <dd> <p>Direct3D features are implemented in software; however, the reference rasterizer does make use of special CPU instructions whenever it can.</p> <p>The reference device is installed by the Windows SDK 8.0 or later and is intended as an aid in debugging for development only.</p> </dd>
  11709. </summary>
  11710. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVTYPE_REF']/*" />
  11711. <msdn-id>bb172547</msdn-id>
  11712. <unmanaged>D3DDEVTYPE_REF</unmanaged>
  11713. <unmanaged-short>D3DDEVTYPE_REF</unmanaged-short>
  11714. </member>
  11715. <member name="F:SharpDX.Direct3D9.DeviceType.Software">
  11716. <summary>
  11717. <dd> <p>A pluggable software device that has been registered with <strong><see cref="M:SharpDX.Direct3D9.Direct3D.RegisterSoftwareDevice(System.IntPtr)" /></strong>.</p> </dd>
  11718. </summary>
  11719. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVTYPE_SW']/*" />
  11720. <msdn-id>bb172547</msdn-id>
  11721. <unmanaged>D3DDEVTYPE_SW</unmanaged>
  11722. <unmanaged-short>D3DDEVTYPE_SW</unmanaged-short>
  11723. </member>
  11724. <member name="F:SharpDX.Direct3D9.DeviceType.NullReference">
  11725. <summary>
  11726. <dd> <p>Initialize Direct3D on a computer that has neither hardware nor reference rasterization available, and enable resources for 3D content creation. See Remarks.</p> </dd>
  11727. </summary>
  11728. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVTYPE_NULLREF']/*" />
  11729. <msdn-id>bb172547</msdn-id>
  11730. <unmanaged>D3DDEVTYPE_NULLREF</unmanaged>
  11731. <unmanaged-short>D3DDEVTYPE_NULLREF</unmanaged-short>
  11732. </member>
  11733. <member name="T:SharpDX.Direct3D9.DisplayRotation">
  11734. <summary>
  11735. <p>Specifies how the monitor being used to display a full-screen application is rotated.</p>
  11736. </summary>
  11737. <remarks>
  11738. <p>This enumeration is used in <strong><see cref="M:SharpDX.Direct3D9.Direct3DEx.GetAdapterDisplayModeEx(System.Int32)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.GetDisplayModeEx(System.Int32)" /></strong>, and <strong><see cref="M:SharpDX.Direct3D9.SwapChain9Ex.GetDisplayModeEx(SharpDX.Direct3D9.DisplayModeEx@,SharpDX.Direct3D9.DisplayRotation@)" /></strong>.</p><p>Applications may choose to handle monitor rotation themselves by using the <see cref="F:SharpDX.Direct3D9.PresentFlags.NoAutoRotate" />, in which case, the application will need to know how the monitor is rotated so that it may adjust its rendering accordingly.</p>
  11739. </remarks>
  11740. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYROTATION']/*" />
  11741. <msdn-id>bb172551</msdn-id>
  11742. <unmanaged>D3DDISPLAYROTATION</unmanaged>
  11743. <unmanaged-short>D3DDISPLAYROTATION</unmanaged-short>
  11744. </member>
  11745. <member name="F:SharpDX.Direct3D9.DisplayRotation.Identity">
  11746. <summary>
  11747. <dd> <p>Display is not rotated.</p> </dd>
  11748. </summary>
  11749. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYROTATION_IDENTITY']/*" />
  11750. <msdn-id>bb172551</msdn-id>
  11751. <unmanaged>D3DDISPLAYROTATION_IDENTITY</unmanaged>
  11752. <unmanaged-short>D3DDISPLAYROTATION_IDENTITY</unmanaged-short>
  11753. </member>
  11754. <member name="F:SharpDX.Direct3D9.DisplayRotation.Rotation90">
  11755. <summary>
  11756. <dd> <p>Display is rotated 90 degrees.</p> </dd>
  11757. </summary>
  11758. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYROTATION_90']/*" />
  11759. <msdn-id>bb172551</msdn-id>
  11760. <unmanaged>D3DDISPLAYROTATION_90</unmanaged>
  11761. <unmanaged-short>D3DDISPLAYROTATION_90</unmanaged-short>
  11762. </member>
  11763. <member name="F:SharpDX.Direct3D9.DisplayRotation.Rotation180">
  11764. <summary>
  11765. <dd> <p>Display is rotated 180 degrees.</p> </dd>
  11766. </summary>
  11767. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYROTATION_180']/*" />
  11768. <msdn-id>bb172551</msdn-id>
  11769. <unmanaged>D3DDISPLAYROTATION_180</unmanaged>
  11770. <unmanaged-short>D3DDISPLAYROTATION_180</unmanaged-short>
  11771. </member>
  11772. <member name="F:SharpDX.Direct3D9.DisplayRotation.Rotation270">
  11773. <summary>
  11774. <dd> <p>Display is rotated 270 degrees.</p> </dd>
  11775. </summary>
  11776. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYROTATION_270']/*" />
  11777. <msdn-id>bb172551</msdn-id>
  11778. <unmanaged>D3DDISPLAYROTATION_270</unmanaged>
  11779. <unmanaged-short>D3DDISPLAYROTATION_270</unmanaged-short>
  11780. </member>
  11781. <member name="T:SharpDX.Direct3D9.EffectDefaultType">
  11782. <summary>
  11783. <p>Effect data types. The data is contained in the pValue member of <strong><see cref="T:SharpDX.Direct3D9.EffectDefault" /></strong>.</p>
  11784. </summary>
  11785. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECTDEFAULTTYPE']/*" />
  11786. <msdn-id>bb172822</msdn-id>
  11787. <unmanaged>D3DXEFFECTDEFAULTTYPE</unmanaged>
  11788. <unmanaged-short>D3DXEFFECTDEFAULTTYPE</unmanaged-short>
  11789. </member>
  11790. <member name="F:SharpDX.Direct3D9.EffectDefaultType.String">
  11791. <summary>
  11792. No documentation.
  11793. </summary>
  11794. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEDT_STRING']/*" />
  11795. <msdn-id>bb172822</msdn-id>
  11796. <unmanaged>D3DXEDT_STRING</unmanaged>
  11797. <unmanaged-short>D3DXEDT_STRING</unmanaged-short>
  11798. </member>
  11799. <member name="F:SharpDX.Direct3D9.EffectDefaultType.Floats">
  11800. <summary>
  11801. No documentation.
  11802. </summary>
  11803. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEDT_FLOATS']/*" />
  11804. <msdn-id>bb172822</msdn-id>
  11805. <unmanaged>D3DXEDT_FLOATS</unmanaged>
  11806. <unmanaged-short>D3DXEDT_FLOATS</unmanaged-short>
  11807. </member>
  11808. <member name="F:SharpDX.Direct3D9.EffectDefaultType.Dword">
  11809. <summary>
  11810. No documentation.
  11811. </summary>
  11812. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEDT_DWORD']/*" />
  11813. <msdn-id>bb172822</msdn-id>
  11814. <unmanaged>D3DXEDT_DWORD</unmanaged>
  11815. <unmanaged-short>D3DXEDT_DWORD</unmanaged-short>
  11816. </member>
  11817. <member name="F:SharpDX.Direct3D9.EffectDefaultType.DtForcedWord">
  11818. <summary>
  11819. No documentation.
  11820. </summary>
  11821. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEDT_FORCEDWORD']/*" />
  11822. <msdn-id>bb172822</msdn-id>
  11823. <unmanaged>D3DXEDT_FORCEDWORD</unmanaged>
  11824. <unmanaged-short>D3DXEDT_FORCEDWORD</unmanaged-short>
  11825. </member>
  11826. <member name="T:SharpDX.Direct3D9.EventType">
  11827. <summary>
  11828. <p>Describes the type of events that can be keyed by the animation controller.</p>
  11829. </summary>
  11830. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_TYPE']/*" />
  11831. <msdn-id>bb172827</msdn-id>
  11832. <unmanaged>D3DXEVENT_TYPE</unmanaged>
  11833. <unmanaged-short>D3DXEVENT_TYPE</unmanaged-short>
  11834. </member>
  11835. <member name="F:SharpDX.Direct3D9.EventType.TrackSpeed">
  11836. <summary>
  11837. <dd> <p>Track speed.</p> </dd>
  11838. </summary>
  11839. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_TRACKSPEED']/*" />
  11840. <msdn-id>bb172827</msdn-id>
  11841. <unmanaged>D3DXEVENT_TRACKSPEED</unmanaged>
  11842. <unmanaged-short>D3DXEVENT_TRACKSPEED</unmanaged-short>
  11843. </member>
  11844. <member name="F:SharpDX.Direct3D9.EventType.TrackWeight">
  11845. <summary>
  11846. <dd> <p>Track weight.</p> </dd>
  11847. </summary>
  11848. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_TRACKWEIGHT']/*" />
  11849. <msdn-id>bb172827</msdn-id>
  11850. <unmanaged>D3DXEVENT_TRACKWEIGHT</unmanaged>
  11851. <unmanaged-short>D3DXEVENT_TRACKWEIGHT</unmanaged-short>
  11852. </member>
  11853. <member name="F:SharpDX.Direct3D9.EventType.TrackPosition">
  11854. <summary>
  11855. <dd> <p>Track position.</p> </dd>
  11856. </summary>
  11857. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_TRACKPOSITION']/*" />
  11858. <msdn-id>bb172827</msdn-id>
  11859. <unmanaged>D3DXEVENT_TRACKPOSITION</unmanaged>
  11860. <unmanaged-short>D3DXEVENT_TRACKPOSITION</unmanaged-short>
  11861. </member>
  11862. <member name="F:SharpDX.Direct3D9.EventType.TrackEnable">
  11863. <summary>
  11864. <dd> <p>Enable flag.</p> </dd>
  11865. </summary>
  11866. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_TRACKENABLE']/*" />
  11867. <msdn-id>bb172827</msdn-id>
  11868. <unmanaged>D3DXEVENT_TRACKENABLE</unmanaged>
  11869. <unmanaged-short>D3DXEVENT_TRACKENABLE</unmanaged-short>
  11870. </member>
  11871. <member name="F:SharpDX.Direct3D9.EventType.PriorityBlend">
  11872. <summary>
  11873. <dd> <p>Priority blend value.</p> </dd>
  11874. </summary>
  11875. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_PRIORITYBLEND']/*" />
  11876. <msdn-id>bb172827</msdn-id>
  11877. <unmanaged>D3DXEVENT_PRIORITYBLEND</unmanaged>
  11878. <unmanaged-short>D3DXEVENT_PRIORITYBLEND</unmanaged-short>
  11879. </member>
  11880. <member name="T:SharpDX.Direct3D9.FillMode">
  11881. <summary>
  11882. <p>Defines constants describing the fill mode.</p>
  11883. </summary>
  11884. <remarks>
  11885. <p>The values in this enumerated type are used by the <see cref="F:SharpDX.Direct3D9.RenderState.FillMode" /> render state.</p>
  11886. </remarks>
  11887. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFILLMODE']/*" />
  11888. <msdn-id>bb172556</msdn-id>
  11889. <unmanaged>D3DFILLMODE</unmanaged>
  11890. <unmanaged-short>D3DFILLMODE</unmanaged-short>
  11891. </member>
  11892. <member name="F:SharpDX.Direct3D9.FillMode.Point">
  11893. <summary>
  11894. <dd> <p>Fill points.</p> </dd>
  11895. </summary>
  11896. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFILL_POINT']/*" />
  11897. <msdn-id>bb172556</msdn-id>
  11898. <unmanaged>D3DFILL_POINT</unmanaged>
  11899. <unmanaged-short>D3DFILL_POINT</unmanaged-short>
  11900. </member>
  11901. <member name="F:SharpDX.Direct3D9.FillMode.Wireframe">
  11902. <summary>
  11903. <dd> <p>Fill wireframes.</p> </dd>
  11904. </summary>
  11905. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFILL_WIREFRAME']/*" />
  11906. <msdn-id>bb172556</msdn-id>
  11907. <unmanaged>D3DFILL_WIREFRAME</unmanaged>
  11908. <unmanaged-short>D3DFILL_WIREFRAME</unmanaged-short>
  11909. </member>
  11910. <member name="F:SharpDX.Direct3D9.FillMode.Solid">
  11911. <summary>
  11912. <dd> <p>Fill solids. </p> </dd>
  11913. </summary>
  11914. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFILL_SOLID']/*" />
  11915. <msdn-id>bb172556</msdn-id>
  11916. <unmanaged>D3DFILL_SOLID</unmanaged>
  11917. <unmanaged-short>D3DFILL_SOLID</unmanaged-short>
  11918. </member>
  11919. <member name="T:SharpDX.Direct3D9.Filter">
  11920. <summary>
  11921. <p>The following flags are used to specify which channels in a texture to operate on.</p>
  11922. </summary>
  11923. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER']/*" />
  11924. <msdn-id>bb205565</msdn-id>
  11925. <unmanaged>D3DX_FILTER</unmanaged>
  11926. <unmanaged-short>D3DX_FILTER</unmanaged-short>
  11927. </member>
  11928. <member name="F:SharpDX.Direct3D9.Filter.None">
  11929. <summary>
  11930. No documentation.
  11931. </summary>
  11932. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_NONE']/*" />
  11933. <msdn-id>bb205565</msdn-id>
  11934. <unmanaged>D3DX_FILTER_NONE</unmanaged>
  11935. <unmanaged-short>D3DX_FILTER_NONE</unmanaged-short>
  11936. </member>
  11937. <member name="F:SharpDX.Direct3D9.Filter.Point">
  11938. <summary>
  11939. No documentation.
  11940. </summary>
  11941. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_POINT']/*" />
  11942. <msdn-id>bb205565</msdn-id>
  11943. <unmanaged>D3DX_FILTER_POINT</unmanaged>
  11944. <unmanaged-short>D3DX_FILTER_POINT</unmanaged-short>
  11945. </member>
  11946. <member name="F:SharpDX.Direct3D9.Filter.Linear">
  11947. <summary>
  11948. No documentation.
  11949. </summary>
  11950. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_LINEAR']/*" />
  11951. <msdn-id>bb205565</msdn-id>
  11952. <unmanaged>D3DX_FILTER_LINEAR</unmanaged>
  11953. <unmanaged-short>D3DX_FILTER_LINEAR</unmanaged-short>
  11954. </member>
  11955. <member name="F:SharpDX.Direct3D9.Filter.Triangle">
  11956. <summary>
  11957. No documentation.
  11958. </summary>
  11959. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_TRIANGLE']/*" />
  11960. <msdn-id>bb205565</msdn-id>
  11961. <unmanaged>D3DX_FILTER_TRIANGLE</unmanaged>
  11962. <unmanaged-short>D3DX_FILTER_TRIANGLE</unmanaged-short>
  11963. </member>
  11964. <member name="F:SharpDX.Direct3D9.Filter.Box">
  11965. <summary>
  11966. No documentation.
  11967. </summary>
  11968. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_BOX']/*" />
  11969. <msdn-id>bb205565</msdn-id>
  11970. <unmanaged>D3DX_FILTER_BOX</unmanaged>
  11971. <unmanaged-short>D3DX_FILTER_BOX</unmanaged-short>
  11972. </member>
  11973. <member name="F:SharpDX.Direct3D9.Filter.MirrorU">
  11974. <summary>
  11975. No documentation.
  11976. </summary>
  11977. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_MIRROR_U']/*" />
  11978. <msdn-id>bb205565</msdn-id>
  11979. <unmanaged>D3DX_FILTER_MIRROR_U</unmanaged>
  11980. <unmanaged-short>D3DX_FILTER_MIRROR_U</unmanaged-short>
  11981. </member>
  11982. <member name="F:SharpDX.Direct3D9.Filter.MirrorV">
  11983. <summary>
  11984. No documentation.
  11985. </summary>
  11986. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_MIRROR_V']/*" />
  11987. <msdn-id>bb205565</msdn-id>
  11988. <unmanaged>D3DX_FILTER_MIRROR_V</unmanaged>
  11989. <unmanaged-short>D3DX_FILTER_MIRROR_V</unmanaged-short>
  11990. </member>
  11991. <member name="F:SharpDX.Direct3D9.Filter.MirrorW">
  11992. <summary>
  11993. No documentation.
  11994. </summary>
  11995. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_MIRROR_W']/*" />
  11996. <msdn-id>bb205565</msdn-id>
  11997. <unmanaged>D3DX_FILTER_MIRROR_W</unmanaged>
  11998. <unmanaged-short>D3DX_FILTER_MIRROR_W</unmanaged-short>
  11999. </member>
  12000. <member name="F:SharpDX.Direct3D9.Filter.Mirror">
  12001. <summary>
  12002. No documentation.
  12003. </summary>
  12004. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_MIRROR']/*" />
  12005. <msdn-id>bb205565</msdn-id>
  12006. <unmanaged>D3DX_FILTER_MIRROR</unmanaged>
  12007. <unmanaged-short>D3DX_FILTER_MIRROR</unmanaged-short>
  12008. </member>
  12009. <member name="F:SharpDX.Direct3D9.Filter.Dither">
  12010. <summary>
  12011. No documentation.
  12012. </summary>
  12013. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_DITHER']/*" />
  12014. <msdn-id>bb205565</msdn-id>
  12015. <unmanaged>D3DX_FILTER_DITHER</unmanaged>
  12016. <unmanaged-short>D3DX_FILTER_DITHER</unmanaged-short>
  12017. </member>
  12018. <member name="F:SharpDX.Direct3D9.Filter.DitherDiffusion">
  12019. <summary>
  12020. No documentation.
  12021. </summary>
  12022. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_DITHER_DIFFUSION']/*" />
  12023. <msdn-id>bb205565</msdn-id>
  12024. <unmanaged>D3DX_FILTER_DITHER_DIFFUSION</unmanaged>
  12025. <unmanaged-short>D3DX_FILTER_DITHER_DIFFUSION</unmanaged-short>
  12026. </member>
  12027. <member name="F:SharpDX.Direct3D9.Filter.SrgbIn">
  12028. <summary>
  12029. No documentation.
  12030. </summary>
  12031. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_SRGB_IN']/*" />
  12032. <msdn-id>bb205565</msdn-id>
  12033. <unmanaged>D3DX_FILTER_SRGB_IN</unmanaged>
  12034. <unmanaged-short>D3DX_FILTER_SRGB_IN</unmanaged-short>
  12035. </member>
  12036. <member name="F:SharpDX.Direct3D9.Filter.SrgbOut">
  12037. <summary>
  12038. No documentation.
  12039. </summary>
  12040. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_SRGB_OUT']/*" />
  12041. <msdn-id>bb205565</msdn-id>
  12042. <unmanaged>D3DX_FILTER_SRGB_OUT</unmanaged>
  12043. <unmanaged-short>D3DX_FILTER_SRGB_OUT</unmanaged-short>
  12044. </member>
  12045. <member name="F:SharpDX.Direct3D9.Filter.Srgb">
  12046. <summary>
  12047. No documentation.
  12048. </summary>
  12049. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_SRGB']/*" />
  12050. <msdn-id>bb205565</msdn-id>
  12051. <unmanaged>D3DX_FILTER_SRGB</unmanaged>
  12052. <unmanaged-short>D3DX_FILTER_SRGB</unmanaged-short>
  12053. </member>
  12054. <member name="F:SharpDX.Direct3D9.Filter.Default">
  12055. <summary>
  12056. No documentation.
  12057. </summary>
  12058. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_FILTER_DEFAULT']/*" />
  12059. <msdn-id>bb205565</msdn-id>
  12060. <unmanaged>D3DX_FILTER_DEFAULT</unmanaged>
  12061. <unmanaged-short>D3DX_FILTER_DEFAULT</unmanaged-short>
  12062. </member>
  12063. <member name="T:SharpDX.Direct3D9.FilterCaps">
  12064. <summary>
  12065. <p>Texture filtering constants.</p>
  12066. </summary>
  12067. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS']/*" />
  12068. <msdn-id>bb172593</msdn-id>
  12069. <unmanaged>D3DPTFILTERCAPS</unmanaged>
  12070. <unmanaged-short>D3DPTFILTERCAPS</unmanaged-short>
  12071. </member>
  12072. <member name="F:SharpDX.Direct3D9.FilterCaps.MinPoint">
  12073. <summary>
  12074. No documentation.
  12075. </summary>
  12076. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MINFPOINT']/*" />
  12077. <msdn-id>bb172593</msdn-id>
  12078. <unmanaged>D3DPTFILTERCAPS_MINFPOINT</unmanaged>
  12079. <unmanaged-short>D3DPTFILTERCAPS_MINFPOINT</unmanaged-short>
  12080. </member>
  12081. <member name="F:SharpDX.Direct3D9.FilterCaps.MinLinear">
  12082. <summary>
  12083. No documentation.
  12084. </summary>
  12085. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MINFLINEAR']/*" />
  12086. <msdn-id>bb172593</msdn-id>
  12087. <unmanaged>D3DPTFILTERCAPS_MINFLINEAR</unmanaged>
  12088. <unmanaged-short>D3DPTFILTERCAPS_MINFLINEAR</unmanaged-short>
  12089. </member>
  12090. <member name="F:SharpDX.Direct3D9.FilterCaps.MinAnisotropic">
  12091. <summary>
  12092. No documentation.
  12093. </summary>
  12094. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MINFANISOTROPIC']/*" />
  12095. <msdn-id>bb172593</msdn-id>
  12096. <unmanaged>D3DPTFILTERCAPS_MINFANISOTROPIC</unmanaged>
  12097. <unmanaged-short>D3DPTFILTERCAPS_MINFANISOTROPIC</unmanaged-short>
  12098. </member>
  12099. <member name="F:SharpDX.Direct3D9.FilterCaps.MinPyramidalQuad">
  12100. <summary>
  12101. No documentation.
  12102. </summary>
  12103. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MINFPYRAMIDALQUAD']/*" />
  12104. <msdn-id>bb172593</msdn-id>
  12105. <unmanaged>D3DPTFILTERCAPS_MINFPYRAMIDALQUAD</unmanaged>
  12106. <unmanaged-short>D3DPTFILTERCAPS_MINFPYRAMIDALQUAD</unmanaged-short>
  12107. </member>
  12108. <member name="F:SharpDX.Direct3D9.FilterCaps.MinGaussianQuad">
  12109. <summary>
  12110. No documentation.
  12111. </summary>
  12112. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MINFGAUSSIANQUAD']/*" />
  12113. <msdn-id>bb172593</msdn-id>
  12114. <unmanaged>D3DPTFILTERCAPS_MINFGAUSSIANQUAD</unmanaged>
  12115. <unmanaged-short>D3DPTFILTERCAPS_MINFGAUSSIANQUAD</unmanaged-short>
  12116. </member>
  12117. <member name="F:SharpDX.Direct3D9.FilterCaps.MipPoint">
  12118. <summary>
  12119. No documentation.
  12120. </summary>
  12121. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MIPFPOINT']/*" />
  12122. <msdn-id>bb172593</msdn-id>
  12123. <unmanaged>D3DPTFILTERCAPS_MIPFPOINT</unmanaged>
  12124. <unmanaged-short>D3DPTFILTERCAPS_MIPFPOINT</unmanaged-short>
  12125. </member>
  12126. <member name="F:SharpDX.Direct3D9.FilterCaps.MipLinear">
  12127. <summary>
  12128. No documentation.
  12129. </summary>
  12130. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MIPFLINEAR']/*" />
  12131. <msdn-id>bb172593</msdn-id>
  12132. <unmanaged>D3DPTFILTERCAPS_MIPFLINEAR</unmanaged>
  12133. <unmanaged-short>D3DPTFILTERCAPS_MIPFLINEAR</unmanaged-short>
  12134. </member>
  12135. <member name="F:SharpDX.Direct3D9.FilterCaps.ConvolutionMono">
  12136. <summary>
  12137. No documentation.
  12138. </summary>
  12139. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_CONVOLUTIONMONO']/*" />
  12140. <msdn-id>bb172593</msdn-id>
  12141. <unmanaged>D3DPTFILTERCAPS_CONVOLUTIONMONO</unmanaged>
  12142. <unmanaged-short>D3DPTFILTERCAPS_CONVOLUTIONMONO</unmanaged-short>
  12143. </member>
  12144. <member name="F:SharpDX.Direct3D9.FilterCaps.MagPoint">
  12145. <summary>
  12146. No documentation.
  12147. </summary>
  12148. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MAGFPOINT']/*" />
  12149. <msdn-id>bb172593</msdn-id>
  12150. <unmanaged>D3DPTFILTERCAPS_MAGFPOINT</unmanaged>
  12151. <unmanaged-short>D3DPTFILTERCAPS_MAGFPOINT</unmanaged-short>
  12152. </member>
  12153. <member name="F:SharpDX.Direct3D9.FilterCaps.MagLinear">
  12154. <summary>
  12155. No documentation.
  12156. </summary>
  12157. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MAGFLINEAR']/*" />
  12158. <msdn-id>bb172593</msdn-id>
  12159. <unmanaged>D3DPTFILTERCAPS_MAGFLINEAR</unmanaged>
  12160. <unmanaged-short>D3DPTFILTERCAPS_MAGFLINEAR</unmanaged-short>
  12161. </member>
  12162. <member name="F:SharpDX.Direct3D9.FilterCaps.MagAnisotropic">
  12163. <summary>
  12164. No documentation.
  12165. </summary>
  12166. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MAGFANISOTROPIC']/*" />
  12167. <msdn-id>bb172593</msdn-id>
  12168. <unmanaged>D3DPTFILTERCAPS_MAGFANISOTROPIC</unmanaged>
  12169. <unmanaged-short>D3DPTFILTERCAPS_MAGFANISOTROPIC</unmanaged-short>
  12170. </member>
  12171. <member name="F:SharpDX.Direct3D9.FilterCaps.MagPyramidalQuad">
  12172. <summary>
  12173. No documentation.
  12174. </summary>
  12175. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MAGFPYRAMIDALQUAD']/*" />
  12176. <msdn-id>bb172593</msdn-id>
  12177. <unmanaged>D3DPTFILTERCAPS_MAGFPYRAMIDALQUAD</unmanaged>
  12178. <unmanaged-short>D3DPTFILTERCAPS_MAGFPYRAMIDALQUAD</unmanaged-short>
  12179. </member>
  12180. <member name="F:SharpDX.Direct3D9.FilterCaps.MagGaussianQuad">
  12181. <summary>
  12182. No documentation.
  12183. </summary>
  12184. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTFILTERCAPS_MAGFGAUSSIANQUAD']/*" />
  12185. <msdn-id>bb172593</msdn-id>
  12186. <unmanaged>D3DPTFILTERCAPS_MAGFGAUSSIANQUAD</unmanaged>
  12187. <unmanaged-short>D3DPTFILTERCAPS_MAGFGAUSSIANQUAD</unmanaged-short>
  12188. </member>
  12189. <member name="T:SharpDX.Direct3D9.FogMode">
  12190. <summary>
  12191. <p>Defines constants that describe the fog mode.</p>
  12192. </summary>
  12193. <remarks>
  12194. <p>The values in this enumerated type are used by the <see cref="F:SharpDX.Direct3D9.RenderState.FogTableMode" /> and <see cref="F:SharpDX.Direct3D9.RenderState.FogVertexMode" /> render states.</p><p>Fog can be considered a measure of visibility: the lower the fog value produced by a fog equation, the less visible an object is.</p>
  12195. </remarks>
  12196. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFOGMODE']/*" />
  12197. <msdn-id>bb172557</msdn-id>
  12198. <unmanaged>D3DFOGMODE</unmanaged>
  12199. <unmanaged-short>D3DFOGMODE</unmanaged-short>
  12200. </member>
  12201. <member name="F:SharpDX.Direct3D9.FogMode.None">
  12202. <summary>
  12203. <dd> <p>No fog effect. </p> </dd>
  12204. </summary>
  12205. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFOG_NONE']/*" />
  12206. <msdn-id>bb172557</msdn-id>
  12207. <unmanaged>D3DFOG_NONE</unmanaged>
  12208. <unmanaged-short>D3DFOG_NONE</unmanaged-short>
  12209. </member>
  12210. <member name="F:SharpDX.Direct3D9.FogMode.Exponential">
  12211. <summary>
  12212. <dd> <p>Fog effect intensifies exponentially, according to the following formula.
  12213. </p> <p /> </dd>
  12214. </summary>
  12215. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFOG_EXP']/*" />
  12216. <msdn-id>bb172557</msdn-id>
  12217. <unmanaged>D3DFOG_EXP</unmanaged>
  12218. <unmanaged-short>D3DFOG_EXP</unmanaged-short>
  12219. </member>
  12220. <member name="F:SharpDX.Direct3D9.FogMode.ExponentialSquared">
  12221. <summary>
  12222. <dd> <p>Fog effect intensifies exponentially with the square of the distance, according to the following formula.
  12223. </p> <p /> </dd>
  12224. </summary>
  12225. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFOG_EXP2']/*" />
  12226. <msdn-id>bb172557</msdn-id>
  12227. <unmanaged>D3DFOG_EXP2</unmanaged>
  12228. <unmanaged-short>D3DFOG_EXP2</unmanaged-short>
  12229. </member>
  12230. <member name="F:SharpDX.Direct3D9.FogMode.Linear">
  12231. <summary>
  12232. <dd> <p>Fog effect intensifies linearly between the start and end points, according to the following formula. </p> <p /> <p>This is the only fog mode currently supported.</p> </dd>
  12233. </summary>
  12234. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFOG_LINEAR']/*" />
  12235. <msdn-id>bb172557</msdn-id>
  12236. <unmanaged>D3DFOG_LINEAR</unmanaged>
  12237. <unmanaged-short>D3DFOG_LINEAR</unmanaged-short>
  12238. </member>
  12239. <member name="T:SharpDX.Direct3D9.Format">
  12240. <summary>
  12241. <p>Defines the various types of surface formats.</p>typedef enum _D3DFORMAT { <see cref="F:SharpDX.Direct3D9.Format.Unknown" /> = 0, <see cref="F:SharpDX.Direct3D9.Format.R8G8B8" /> = 20, <see cref="F:SharpDX.Direct3D9.Format.A8R8G8B8" /> = 21, <see cref="F:SharpDX.Direct3D9.Format.X8R8G8B8" /> = 22, <see cref="F:SharpDX.Direct3D9.Format.R5G6B5" /> = 23, <see cref="F:SharpDX.Direct3D9.Format.X1R5G5B5" /> = 24, <see cref="F:SharpDX.Direct3D9.Format.A1R5G5B5" /> = 25, <see cref="F:SharpDX.Direct3D9.Format.A4R4G4B4" /> = 26, <see cref="F:SharpDX.Direct3D9.Format.R3G3B2" /> = 27, <see cref="F:SharpDX.Direct3D9.Format.A8" /> = 28, <see cref="F:SharpDX.Direct3D9.Format.A8R3G3B2" /> = 29, <see cref="F:SharpDX.Direct3D9.Format.X4R4G4B4" /> = 30, <see cref="F:SharpDX.Direct3D9.Format.A2B10G10R10" /> = 31, <see cref="F:SharpDX.Direct3D9.Format.A8B8G8R8" /> = 32, <see cref="F:SharpDX.Direct3D9.Format.X8B8G8R8" /> = 33, <see cref="F:SharpDX.Direct3D9.Format.G16R16" /> = 34, <see cref="F:SharpDX.Direct3D9.Format.A2R10G10B10" /> = 35, <see cref="F:SharpDX.Direct3D9.Format.A16B16G16R16" /> = 36, <see cref="F:SharpDX.Direct3D9.Format.A8P8" /> = 40, <see cref="F:SharpDX.Direct3D9.Format.P8" /> = 41, <see cref="F:SharpDX.Direct3D9.Format.L8" /> = 50, <see cref="F:SharpDX.Direct3D9.Format.A8L8" /> = 51, <see cref="F:SharpDX.Direct3D9.Format.A4L4" /> = 52, <see cref="F:SharpDX.Direct3D9.Format.V8U8" /> = 60, <see cref="F:SharpDX.Direct3D9.Format.L6V5U5" /> = 61, <see cref="F:SharpDX.Direct3D9.Format.X8L8V8U8" /> = 62, <see cref="F:SharpDX.Direct3D9.Format.Q8W8V8U8" /> = 63, <see cref="F:SharpDX.Direct3D9.Format.V16U16" /> = 64, <see cref="F:SharpDX.Direct3D9.Format.A2W10V10U10" /> = 67, <see cref="F:SharpDX.Direct3D9.Format.Uyvy" /> = MAKEFOURCC('U', 'Y', 'V', 'Y'), <see cref="F:SharpDX.Direct3D9.Format.R8G8_B8G8" /> = MAKEFOURCC('R', 'G', 'B', 'G'), <see cref="F:SharpDX.Direct3D9.Format.Yuy2" /> = MAKEFOURCC('Y', 'U', 'Y', '2'), <see cref="F:SharpDX.Direct3D9.Format.G8R8_G8B8" /> = MAKEFOURCC('G', 'R', 'G', 'B'), <see cref="F:SharpDX.Direct3D9.Format.Dxt1" /> = MAKEFOURCC('D', 'X', 'T', '1'), <see cref="F:SharpDX.Direct3D9.Format.Dxt2" /> = MAKEFOURCC('D', 'X', 'T', '2'), <see cref="F:SharpDX.Direct3D9.Format.Dxt3" /> = MAKEFOURCC('D', 'X', 'T', '3'), <see cref="F:SharpDX.Direct3D9.Format.Dxt4" /> = MAKEFOURCC('D', 'X', 'T', '4'), <see cref="F:SharpDX.Direct3D9.Format.Dxt5" /> = MAKEFOURCC('D', 'X', 'T', '5'), <see cref="F:SharpDX.Direct3D9.Format.D16Lockable" /> = 70, <see cref="F:SharpDX.Direct3D9.Format.D32" /> = 71, <see cref="F:SharpDX.Direct3D9.Format.D15S1" /> = 73, <see cref="F:SharpDX.Direct3D9.Format.D24S8" /> = 75, <see cref="F:SharpDX.Direct3D9.Format.D24X8" /> = 77, <see cref="F:SharpDX.Direct3D9.Format.D24X4S4" /> = 79, <see cref="F:SharpDX.Direct3D9.Format.D16" /> = 80, <see cref="F:SharpDX.Direct3D9.Format.D32SingleLockable" /> = 82, <see cref="F:SharpDX.Direct3D9.Format.D24SingleS8" /> = 83, #if !defined(D3D_DISABLE_9EX) <see cref="F:SharpDX.Direct3D9.Format.D32Lockable" /> = 84, <see cref="F:SharpDX.Direct3D9.Format.S8Lockable" /> = 85,
  12242. #endif // !D3D_DISABLE_9EX <see cref="F:SharpDX.Direct3D9.Format.L16" /> = 81, <see cref="F:SharpDX.Direct3D9.Format.VertexData" /> =100, <see cref="F:SharpDX.Direct3D9.Format.Index16" /> =101, <see cref="F:SharpDX.Direct3D9.Format.Index32" /> =102, <see cref="F:SharpDX.Direct3D9.Format.Q16W16V16U16" /> =110, <see cref="F:SharpDX.Direct3D9.Format.Multi2Argb8" /> = MAKEFOURCC('M','E','T','1'), <see cref="F:SharpDX.Direct3D9.Format.R16F" /> = 111, <see cref="F:SharpDX.Direct3D9.Format.G16R16F" /> = 112, <see cref="F:SharpDX.Direct3D9.Format.A16B16G16R16F" /> = 113, <see cref="F:SharpDX.Direct3D9.Format.R32F" /> = 114, <see cref="F:SharpDX.Direct3D9.Format.G32R32F" /> = 115, <see cref="F:SharpDX.Direct3D9.Format.A32B32G32R32F" /> = 116, <see cref="F:SharpDX.Direct3D9.Format.MtCxV8U8" /> = 117, #if !defined(D3D_DISABLE_9EX) <see cref="F:SharpDX.Direct3D9.Format.A1" /> = 118, <see cref="F:SharpDX.Direct3D9.Format.MtA2B10G10R10XrBias" /> = 119, <see cref="F:SharpDX.Direct3D9.Format.BinaryBuffer" /> = 199,
  12243. #endif // !D3D_DISABLE_9EX D3DFMT_FORCE_DWORD =0x7fffffff
  12244. } <see cref="T:SharpDX.Direct3D9.Format" />;
  12245. </summary>
  12246. <remarks>
  12247. <p>There are several types of formats:</p><ul> <li>BackBuffer</li> <li>Buffer</li> <li>DXTn</li> <li>Floating-Point</li> <li>FOURCC</li> <li>IEEE</li> <li>Mixed</li> <li>Signed</li> <li>Unsigned</li> <li>Other</li> </ul><p>All formats are listed from left to right, most-significant bit to least-significant bit. For example, <strong>D3DFORMAT_ARGB</strong> is ordered from the most-significant bit channel A (alpha), to the least-significant bit channel B (blue). When traversing surface data, the data is stored in memory from least-significant bit to most-significant bit, which means that the channel order in memory is from least-significant bit (blue) to most-significant bit (alpha).</p><p>The default value for formats that contain undefined channels (G16R16, A8, and so on) is 1. The only exception is the A8 format, which is initialized to 000 for the three color channels.</p><p>The order of the bits is from the most significant byte first, so <see cref="F:SharpDX.Direct3D9.Format.A8L8" /> indicates that the high byte of this 2-byte format is alpha. <strong><see cref="F:SharpDX.Direct3D9.Format.D16" /></strong> indicates a 16-bit integer value and an application-lockable surface.</p><p>Pixel formats have been chosen to enable the expression of hardware-vendor-defined extension formats, as well as to include the well-established FOURCC method. The set of formats understood by the Direct3D runtime is defined by <see cref="T:SharpDX.Direct3D9.Format" />.</p><p>Note that formats are supplied by independent hardware vendors (IHVs) and many FOURCC codes are not listed. The formats in this enumeration are unique in that they are sanctioned by the runtime, meaning that the reference rasterizer will operate on all these types. IHV-supplied formats will be supported by the individual IHVs on a card-by-card basis.</p>
  12248. </remarks>
  12249. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFORMAT']/*" />
  12250. <msdn-id>bb172558</msdn-id>
  12251. <unmanaged>D3DFORMAT</unmanaged>
  12252. <unmanaged-short>D3DFORMAT</unmanaged-short>
  12253. </member>
  12254. <member name="F:SharpDX.Direct3D9.Format.Unknown">
  12255. <summary>
  12256. No documentation.
  12257. </summary>
  12258. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_UNKNOWN']/*" />
  12259. <msdn-id>bb172558</msdn-id>
  12260. <unmanaged>D3DFMT_UNKNOWN</unmanaged>
  12261. <unmanaged-short>D3DFMT_UNKNOWN</unmanaged-short>
  12262. </member>
  12263. <member name="F:SharpDX.Direct3D9.Format.R8G8B8">
  12264. <summary>
  12265. No documentation.
  12266. </summary>
  12267. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_R8G8B8']/*" />
  12268. <msdn-id>bb172558</msdn-id>
  12269. <unmanaged>D3DFMT_R8G8B8</unmanaged>
  12270. <unmanaged-short>D3DFMT_R8G8B8</unmanaged-short>
  12271. </member>
  12272. <member name="F:SharpDX.Direct3D9.Format.A8R8G8B8">
  12273. <summary>
  12274. No documentation.
  12275. </summary>
  12276. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A8R8G8B8']/*" />
  12277. <msdn-id>bb172558</msdn-id>
  12278. <unmanaged>D3DFMT_A8R8G8B8</unmanaged>
  12279. <unmanaged-short>D3DFMT_A8R8G8B8</unmanaged-short>
  12280. </member>
  12281. <member name="F:SharpDX.Direct3D9.Format.X8R8G8B8">
  12282. <summary>
  12283. No documentation.
  12284. </summary>
  12285. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_X8R8G8B8']/*" />
  12286. <msdn-id>bb172558</msdn-id>
  12287. <unmanaged>D3DFMT_X8R8G8B8</unmanaged>
  12288. <unmanaged-short>D3DFMT_X8R8G8B8</unmanaged-short>
  12289. </member>
  12290. <member name="F:SharpDX.Direct3D9.Format.R5G6B5">
  12291. <summary>
  12292. No documentation.
  12293. </summary>
  12294. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_R5G6B5']/*" />
  12295. <msdn-id>bb172558</msdn-id>
  12296. <unmanaged>D3DFMT_R5G6B5</unmanaged>
  12297. <unmanaged-short>D3DFMT_R5G6B5</unmanaged-short>
  12298. </member>
  12299. <member name="F:SharpDX.Direct3D9.Format.X1R5G5B5">
  12300. <summary>
  12301. No documentation.
  12302. </summary>
  12303. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_X1R5G5B5']/*" />
  12304. <msdn-id>bb172558</msdn-id>
  12305. <unmanaged>D3DFMT_X1R5G5B5</unmanaged>
  12306. <unmanaged-short>D3DFMT_X1R5G5B5</unmanaged-short>
  12307. </member>
  12308. <member name="F:SharpDX.Direct3D9.Format.A1R5G5B5">
  12309. <summary>
  12310. No documentation.
  12311. </summary>
  12312. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A1R5G5B5']/*" />
  12313. <msdn-id>bb172558</msdn-id>
  12314. <unmanaged>D3DFMT_A1R5G5B5</unmanaged>
  12315. <unmanaged-short>D3DFMT_A1R5G5B5</unmanaged-short>
  12316. </member>
  12317. <member name="F:SharpDX.Direct3D9.Format.A4R4G4B4">
  12318. <summary>
  12319. No documentation.
  12320. </summary>
  12321. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A4R4G4B4']/*" />
  12322. <msdn-id>bb172558</msdn-id>
  12323. <unmanaged>D3DFMT_A4R4G4B4</unmanaged>
  12324. <unmanaged-short>D3DFMT_A4R4G4B4</unmanaged-short>
  12325. </member>
  12326. <member name="F:SharpDX.Direct3D9.Format.R3G3B2">
  12327. <summary>
  12328. No documentation.
  12329. </summary>
  12330. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_R3G3B2']/*" />
  12331. <msdn-id>bb172558</msdn-id>
  12332. <unmanaged>D3DFMT_R3G3B2</unmanaged>
  12333. <unmanaged-short>D3DFMT_R3G3B2</unmanaged-short>
  12334. </member>
  12335. <member name="F:SharpDX.Direct3D9.Format.A8">
  12336. <summary>
  12337. No documentation.
  12338. </summary>
  12339. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A8']/*" />
  12340. <msdn-id>bb172558</msdn-id>
  12341. <unmanaged>D3DFMT_A8</unmanaged>
  12342. <unmanaged-short>D3DFMT_A8</unmanaged-short>
  12343. </member>
  12344. <member name="F:SharpDX.Direct3D9.Format.A8R3G3B2">
  12345. <summary>
  12346. No documentation.
  12347. </summary>
  12348. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A8R3G3B2']/*" />
  12349. <msdn-id>bb172558</msdn-id>
  12350. <unmanaged>D3DFMT_A8R3G3B2</unmanaged>
  12351. <unmanaged-short>D3DFMT_A8R3G3B2</unmanaged-short>
  12352. </member>
  12353. <member name="F:SharpDX.Direct3D9.Format.X4R4G4B4">
  12354. <summary>
  12355. No documentation.
  12356. </summary>
  12357. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_X4R4G4B4']/*" />
  12358. <msdn-id>bb172558</msdn-id>
  12359. <unmanaged>D3DFMT_X4R4G4B4</unmanaged>
  12360. <unmanaged-short>D3DFMT_X4R4G4B4</unmanaged-short>
  12361. </member>
  12362. <member name="F:SharpDX.Direct3D9.Format.A2B10G10R10">
  12363. <summary>
  12364. No documentation.
  12365. </summary>
  12366. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A2B10G10R10']/*" />
  12367. <msdn-id>bb172558</msdn-id>
  12368. <unmanaged>D3DFMT_A2B10G10R10</unmanaged>
  12369. <unmanaged-short>D3DFMT_A2B10G10R10</unmanaged-short>
  12370. </member>
  12371. <member name="F:SharpDX.Direct3D9.Format.A8B8G8R8">
  12372. <summary>
  12373. No documentation.
  12374. </summary>
  12375. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A8B8G8R8']/*" />
  12376. <msdn-id>bb172558</msdn-id>
  12377. <unmanaged>D3DFMT_A8B8G8R8</unmanaged>
  12378. <unmanaged-short>D3DFMT_A8B8G8R8</unmanaged-short>
  12379. </member>
  12380. <member name="F:SharpDX.Direct3D9.Format.X8B8G8R8">
  12381. <summary>
  12382. No documentation.
  12383. </summary>
  12384. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_X8B8G8R8']/*" />
  12385. <msdn-id>bb172558</msdn-id>
  12386. <unmanaged>D3DFMT_X8B8G8R8</unmanaged>
  12387. <unmanaged-short>D3DFMT_X8B8G8R8</unmanaged-short>
  12388. </member>
  12389. <member name="F:SharpDX.Direct3D9.Format.G16R16">
  12390. <summary>
  12391. No documentation.
  12392. </summary>
  12393. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_G16R16']/*" />
  12394. <msdn-id>bb172558</msdn-id>
  12395. <unmanaged>D3DFMT_G16R16</unmanaged>
  12396. <unmanaged-short>D3DFMT_G16R16</unmanaged-short>
  12397. </member>
  12398. <member name="F:SharpDX.Direct3D9.Format.A2R10G10B10">
  12399. <summary>
  12400. No documentation.
  12401. </summary>
  12402. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A2R10G10B10']/*" />
  12403. <msdn-id>bb172558</msdn-id>
  12404. <unmanaged>D3DFMT_A2R10G10B10</unmanaged>
  12405. <unmanaged-short>D3DFMT_A2R10G10B10</unmanaged-short>
  12406. </member>
  12407. <member name="F:SharpDX.Direct3D9.Format.A16B16G16R16">
  12408. <summary>
  12409. No documentation.
  12410. </summary>
  12411. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A16B16G16R16']/*" />
  12412. <msdn-id>bb172558</msdn-id>
  12413. <unmanaged>D3DFMT_A16B16G16R16</unmanaged>
  12414. <unmanaged-short>D3DFMT_A16B16G16R16</unmanaged-short>
  12415. </member>
  12416. <member name="F:SharpDX.Direct3D9.Format.A8P8">
  12417. <summary>
  12418. No documentation.
  12419. </summary>
  12420. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A8P8']/*" />
  12421. <msdn-id>bb172558</msdn-id>
  12422. <unmanaged>D3DFMT_A8P8</unmanaged>
  12423. <unmanaged-short>D3DFMT_A8P8</unmanaged-short>
  12424. </member>
  12425. <member name="F:SharpDX.Direct3D9.Format.P8">
  12426. <summary>
  12427. No documentation.
  12428. </summary>
  12429. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_P8']/*" />
  12430. <msdn-id>bb172558</msdn-id>
  12431. <unmanaged>D3DFMT_P8</unmanaged>
  12432. <unmanaged-short>D3DFMT_P8</unmanaged-short>
  12433. </member>
  12434. <member name="F:SharpDX.Direct3D9.Format.L8">
  12435. <summary>
  12436. No documentation.
  12437. </summary>
  12438. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_L8']/*" />
  12439. <msdn-id>bb172558</msdn-id>
  12440. <unmanaged>D3DFMT_L8</unmanaged>
  12441. <unmanaged-short>D3DFMT_L8</unmanaged-short>
  12442. </member>
  12443. <member name="F:SharpDX.Direct3D9.Format.A8L8">
  12444. <summary>
  12445. No documentation.
  12446. </summary>
  12447. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A8L8']/*" />
  12448. <msdn-id>bb172558</msdn-id>
  12449. <unmanaged>D3DFMT_A8L8</unmanaged>
  12450. <unmanaged-short>D3DFMT_A8L8</unmanaged-short>
  12451. </member>
  12452. <member name="F:SharpDX.Direct3D9.Format.A4L4">
  12453. <summary>
  12454. No documentation.
  12455. </summary>
  12456. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A4L4']/*" />
  12457. <msdn-id>bb172558</msdn-id>
  12458. <unmanaged>D3DFMT_A4L4</unmanaged>
  12459. <unmanaged-short>D3DFMT_A4L4</unmanaged-short>
  12460. </member>
  12461. <member name="F:SharpDX.Direct3D9.Format.V8U8">
  12462. <summary>
  12463. No documentation.
  12464. </summary>
  12465. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_V8U8']/*" />
  12466. <msdn-id>bb172558</msdn-id>
  12467. <unmanaged>D3DFMT_V8U8</unmanaged>
  12468. <unmanaged-short>D3DFMT_V8U8</unmanaged-short>
  12469. </member>
  12470. <member name="F:SharpDX.Direct3D9.Format.L6V5U5">
  12471. <summary>
  12472. No documentation.
  12473. </summary>
  12474. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_L6V5U5']/*" />
  12475. <msdn-id>bb172558</msdn-id>
  12476. <unmanaged>D3DFMT_L6V5U5</unmanaged>
  12477. <unmanaged-short>D3DFMT_L6V5U5</unmanaged-short>
  12478. </member>
  12479. <member name="F:SharpDX.Direct3D9.Format.X8L8V8U8">
  12480. <summary>
  12481. No documentation.
  12482. </summary>
  12483. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_X8L8V8U8']/*" />
  12484. <msdn-id>bb172558</msdn-id>
  12485. <unmanaged>D3DFMT_X8L8V8U8</unmanaged>
  12486. <unmanaged-short>D3DFMT_X8L8V8U8</unmanaged-short>
  12487. </member>
  12488. <member name="F:SharpDX.Direct3D9.Format.Q8W8V8U8">
  12489. <summary>
  12490. No documentation.
  12491. </summary>
  12492. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_Q8W8V8U8']/*" />
  12493. <msdn-id>bb172558</msdn-id>
  12494. <unmanaged>D3DFMT_Q8W8V8U8</unmanaged>
  12495. <unmanaged-short>D3DFMT_Q8W8V8U8</unmanaged-short>
  12496. </member>
  12497. <member name="F:SharpDX.Direct3D9.Format.V16U16">
  12498. <summary>
  12499. No documentation.
  12500. </summary>
  12501. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_V16U16']/*" />
  12502. <msdn-id>bb172558</msdn-id>
  12503. <unmanaged>D3DFMT_V16U16</unmanaged>
  12504. <unmanaged-short>D3DFMT_V16U16</unmanaged-short>
  12505. </member>
  12506. <member name="F:SharpDX.Direct3D9.Format.A2W10V10U10">
  12507. <summary>
  12508. No documentation.
  12509. </summary>
  12510. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A2W10V10U10']/*" />
  12511. <msdn-id>bb172558</msdn-id>
  12512. <unmanaged>D3DFMT_A2W10V10U10</unmanaged>
  12513. <unmanaged-short>D3DFMT_A2W10V10U10</unmanaged-short>
  12514. </member>
  12515. <member name="F:SharpDX.Direct3D9.Format.Uyvy">
  12516. <summary>
  12517. No documentation.
  12518. </summary>
  12519. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_UYVY']/*" />
  12520. <msdn-id>bb172558</msdn-id>
  12521. <unmanaged>D3DFMT_UYVY</unmanaged>
  12522. <unmanaged-short>D3DFMT_UYVY</unmanaged-short>
  12523. </member>
  12524. <member name="F:SharpDX.Direct3D9.Format.R8G8_B8G8">
  12525. <summary>
  12526. No documentation.
  12527. </summary>
  12528. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_R8G8_B8G8']/*" />
  12529. <msdn-id>bb172558</msdn-id>
  12530. <unmanaged>D3DFMT_R8G8_B8G8</unmanaged>
  12531. <unmanaged-short>D3DFMT_R8G8_B8G8</unmanaged-short>
  12532. </member>
  12533. <member name="F:SharpDX.Direct3D9.Format.Yuy2">
  12534. <summary>
  12535. No documentation.
  12536. </summary>
  12537. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_YUY2']/*" />
  12538. <msdn-id>bb172558</msdn-id>
  12539. <unmanaged>D3DFMT_YUY2</unmanaged>
  12540. <unmanaged-short>D3DFMT_YUY2</unmanaged-short>
  12541. </member>
  12542. <member name="F:SharpDX.Direct3D9.Format.G8R8_G8B8">
  12543. <summary>
  12544. No documentation.
  12545. </summary>
  12546. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_G8R8_G8B8']/*" />
  12547. <msdn-id>bb172558</msdn-id>
  12548. <unmanaged>D3DFMT_G8R8_G8B8</unmanaged>
  12549. <unmanaged-short>D3DFMT_G8R8_G8B8</unmanaged-short>
  12550. </member>
  12551. <member name="F:SharpDX.Direct3D9.Format.Dxt1">
  12552. <summary>
  12553. No documentation.
  12554. </summary>
  12555. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_DXT1']/*" />
  12556. <msdn-id>bb172558</msdn-id>
  12557. <unmanaged>D3DFMT_DXT1</unmanaged>
  12558. <unmanaged-short>D3DFMT_DXT1</unmanaged-short>
  12559. </member>
  12560. <member name="F:SharpDX.Direct3D9.Format.Dxt2">
  12561. <summary>
  12562. No documentation.
  12563. </summary>
  12564. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_DXT2']/*" />
  12565. <msdn-id>bb172558</msdn-id>
  12566. <unmanaged>D3DFMT_DXT2</unmanaged>
  12567. <unmanaged-short>D3DFMT_DXT2</unmanaged-short>
  12568. </member>
  12569. <member name="F:SharpDX.Direct3D9.Format.Dxt3">
  12570. <summary>
  12571. No documentation.
  12572. </summary>
  12573. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_DXT3']/*" />
  12574. <msdn-id>bb172558</msdn-id>
  12575. <unmanaged>D3DFMT_DXT3</unmanaged>
  12576. <unmanaged-short>D3DFMT_DXT3</unmanaged-short>
  12577. </member>
  12578. <member name="F:SharpDX.Direct3D9.Format.Dxt4">
  12579. <summary>
  12580. No documentation.
  12581. </summary>
  12582. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_DXT4']/*" />
  12583. <msdn-id>bb172558</msdn-id>
  12584. <unmanaged>D3DFMT_DXT4</unmanaged>
  12585. <unmanaged-short>D3DFMT_DXT4</unmanaged-short>
  12586. </member>
  12587. <member name="F:SharpDX.Direct3D9.Format.Dxt5">
  12588. <summary>
  12589. No documentation.
  12590. </summary>
  12591. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_DXT5']/*" />
  12592. <msdn-id>bb172558</msdn-id>
  12593. <unmanaged>D3DFMT_DXT5</unmanaged>
  12594. <unmanaged-short>D3DFMT_DXT5</unmanaged-short>
  12595. </member>
  12596. <member name="F:SharpDX.Direct3D9.Format.D16Lockable">
  12597. <summary>
  12598. No documentation.
  12599. </summary>
  12600. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_D16_LOCKABLE']/*" />
  12601. <msdn-id>bb172558</msdn-id>
  12602. <unmanaged>D3DFMT_D16_LOCKABLE</unmanaged>
  12603. <unmanaged-short>D3DFMT_D16_LOCKABLE</unmanaged-short>
  12604. </member>
  12605. <member name="F:SharpDX.Direct3D9.Format.D32">
  12606. <summary>
  12607. No documentation.
  12608. </summary>
  12609. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_D32']/*" />
  12610. <msdn-id>bb172558</msdn-id>
  12611. <unmanaged>D3DFMT_D32</unmanaged>
  12612. <unmanaged-short>D3DFMT_D32</unmanaged-short>
  12613. </member>
  12614. <member name="F:SharpDX.Direct3D9.Format.D15S1">
  12615. <summary>
  12616. No documentation.
  12617. </summary>
  12618. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_D15S1']/*" />
  12619. <msdn-id>bb172558</msdn-id>
  12620. <unmanaged>D3DFMT_D15S1</unmanaged>
  12621. <unmanaged-short>D3DFMT_D15S1</unmanaged-short>
  12622. </member>
  12623. <member name="F:SharpDX.Direct3D9.Format.D24S8">
  12624. <summary>
  12625. No documentation.
  12626. </summary>
  12627. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_D24S8']/*" />
  12628. <msdn-id>bb172558</msdn-id>
  12629. <unmanaged>D3DFMT_D24S8</unmanaged>
  12630. <unmanaged-short>D3DFMT_D24S8</unmanaged-short>
  12631. </member>
  12632. <member name="F:SharpDX.Direct3D9.Format.D24X8">
  12633. <summary>
  12634. No documentation.
  12635. </summary>
  12636. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_D24X8']/*" />
  12637. <msdn-id>bb172558</msdn-id>
  12638. <unmanaged>D3DFMT_D24X8</unmanaged>
  12639. <unmanaged-short>D3DFMT_D24X8</unmanaged-short>
  12640. </member>
  12641. <member name="F:SharpDX.Direct3D9.Format.D24X4S4">
  12642. <summary>
  12643. No documentation.
  12644. </summary>
  12645. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_D24X4S4']/*" />
  12646. <msdn-id>bb172558</msdn-id>
  12647. <unmanaged>D3DFMT_D24X4S4</unmanaged>
  12648. <unmanaged-short>D3DFMT_D24X4S4</unmanaged-short>
  12649. </member>
  12650. <member name="F:SharpDX.Direct3D9.Format.D16">
  12651. <summary>
  12652. No documentation.
  12653. </summary>
  12654. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_D16']/*" />
  12655. <msdn-id>bb172558</msdn-id>
  12656. <unmanaged>D3DFMT_D16</unmanaged>
  12657. <unmanaged-short>D3DFMT_D16</unmanaged-short>
  12658. </member>
  12659. <member name="F:SharpDX.Direct3D9.Format.D32SingleLockable">
  12660. <summary>
  12661. No documentation.
  12662. </summary>
  12663. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_D32F_LOCKABLE']/*" />
  12664. <msdn-id>bb172558</msdn-id>
  12665. <unmanaged>D3DFMT_D32F_LOCKABLE</unmanaged>
  12666. <unmanaged-short>D3DFMT_D32F_LOCKABLE</unmanaged-short>
  12667. </member>
  12668. <member name="F:SharpDX.Direct3D9.Format.D24SingleS8">
  12669. <summary>
  12670. No documentation.
  12671. </summary>
  12672. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_D24FS8']/*" />
  12673. <msdn-id>bb172558</msdn-id>
  12674. <unmanaged>D3DFMT_D24FS8</unmanaged>
  12675. <unmanaged-short>D3DFMT_D24FS8</unmanaged-short>
  12676. </member>
  12677. <member name="F:SharpDX.Direct3D9.Format.D32Lockable">
  12678. <summary>
  12679. No documentation.
  12680. </summary>
  12681. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_D32_LOCKABLE']/*" />
  12682. <msdn-id>bb172558</msdn-id>
  12683. <unmanaged>D3DFMT_D32_LOCKABLE</unmanaged>
  12684. <unmanaged-short>D3DFMT_D32_LOCKABLE</unmanaged-short>
  12685. </member>
  12686. <member name="F:SharpDX.Direct3D9.Format.S8Lockable">
  12687. <summary>
  12688. No documentation.
  12689. </summary>
  12690. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_S8_LOCKABLE']/*" />
  12691. <msdn-id>bb172558</msdn-id>
  12692. <unmanaged>D3DFMT_S8_LOCKABLE</unmanaged>
  12693. <unmanaged-short>D3DFMT_S8_LOCKABLE</unmanaged-short>
  12694. </member>
  12695. <member name="F:SharpDX.Direct3D9.Format.L16">
  12696. <summary>
  12697. No documentation.
  12698. </summary>
  12699. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_L16']/*" />
  12700. <msdn-id>bb172558</msdn-id>
  12701. <unmanaged>D3DFMT_L16</unmanaged>
  12702. <unmanaged-short>D3DFMT_L16</unmanaged-short>
  12703. </member>
  12704. <member name="F:SharpDX.Direct3D9.Format.VertexData">
  12705. <summary>
  12706. No documentation.
  12707. </summary>
  12708. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_VERTEXDATA']/*" />
  12709. <msdn-id>bb172558</msdn-id>
  12710. <unmanaged>D3DFMT_VERTEXDATA</unmanaged>
  12711. <unmanaged-short>D3DFMT_VERTEXDATA</unmanaged-short>
  12712. </member>
  12713. <member name="F:SharpDX.Direct3D9.Format.Index16">
  12714. <summary>
  12715. No documentation.
  12716. </summary>
  12717. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_INDEX16']/*" />
  12718. <msdn-id>bb172558</msdn-id>
  12719. <unmanaged>D3DFMT_INDEX16</unmanaged>
  12720. <unmanaged-short>D3DFMT_INDEX16</unmanaged-short>
  12721. </member>
  12722. <member name="F:SharpDX.Direct3D9.Format.Index32">
  12723. <summary>
  12724. No documentation.
  12725. </summary>
  12726. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_INDEX32']/*" />
  12727. <msdn-id>bb172558</msdn-id>
  12728. <unmanaged>D3DFMT_INDEX32</unmanaged>
  12729. <unmanaged-short>D3DFMT_INDEX32</unmanaged-short>
  12730. </member>
  12731. <member name="F:SharpDX.Direct3D9.Format.Q16W16V16U16">
  12732. <summary>
  12733. No documentation.
  12734. </summary>
  12735. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_Q16W16V16U16']/*" />
  12736. <msdn-id>bb172558</msdn-id>
  12737. <unmanaged>D3DFMT_Q16W16V16U16</unmanaged>
  12738. <unmanaged-short>D3DFMT_Q16W16V16U16</unmanaged-short>
  12739. </member>
  12740. <member name="F:SharpDX.Direct3D9.Format.Multi2Argb8">
  12741. <summary>
  12742. No documentation.
  12743. </summary>
  12744. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_MULTI2_ARGB8']/*" />
  12745. <msdn-id>bb172558</msdn-id>
  12746. <unmanaged>D3DFMT_MULTI2_ARGB8</unmanaged>
  12747. <unmanaged-short>D3DFMT_MULTI2_ARGB8</unmanaged-short>
  12748. </member>
  12749. <member name="F:SharpDX.Direct3D9.Format.R16F">
  12750. <summary>
  12751. No documentation.
  12752. </summary>
  12753. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_R16F']/*" />
  12754. <msdn-id>bb172558</msdn-id>
  12755. <unmanaged>D3DFMT_R16F</unmanaged>
  12756. <unmanaged-short>D3DFMT_R16F</unmanaged-short>
  12757. </member>
  12758. <member name="F:SharpDX.Direct3D9.Format.G16R16F">
  12759. <summary>
  12760. No documentation.
  12761. </summary>
  12762. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_G16R16F']/*" />
  12763. <msdn-id>bb172558</msdn-id>
  12764. <unmanaged>D3DFMT_G16R16F</unmanaged>
  12765. <unmanaged-short>D3DFMT_G16R16F</unmanaged-short>
  12766. </member>
  12767. <member name="F:SharpDX.Direct3D9.Format.A16B16G16R16F">
  12768. <summary>
  12769. No documentation.
  12770. </summary>
  12771. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A16B16G16R16F']/*" />
  12772. <msdn-id>bb172558</msdn-id>
  12773. <unmanaged>D3DFMT_A16B16G16R16F</unmanaged>
  12774. <unmanaged-short>D3DFMT_A16B16G16R16F</unmanaged-short>
  12775. </member>
  12776. <member name="F:SharpDX.Direct3D9.Format.R32F">
  12777. <summary>
  12778. No documentation.
  12779. </summary>
  12780. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_R32F']/*" />
  12781. <msdn-id>bb172558</msdn-id>
  12782. <unmanaged>D3DFMT_R32F</unmanaged>
  12783. <unmanaged-short>D3DFMT_R32F</unmanaged-short>
  12784. </member>
  12785. <member name="F:SharpDX.Direct3D9.Format.G32R32F">
  12786. <summary>
  12787. No documentation.
  12788. </summary>
  12789. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_G32R32F']/*" />
  12790. <msdn-id>bb172558</msdn-id>
  12791. <unmanaged>D3DFMT_G32R32F</unmanaged>
  12792. <unmanaged-short>D3DFMT_G32R32F</unmanaged-short>
  12793. </member>
  12794. <member name="F:SharpDX.Direct3D9.Format.A32B32G32R32F">
  12795. <summary>
  12796. No documentation.
  12797. </summary>
  12798. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A32B32G32R32F']/*" />
  12799. <msdn-id>bb172558</msdn-id>
  12800. <unmanaged>D3DFMT_A32B32G32R32F</unmanaged>
  12801. <unmanaged-short>D3DFMT_A32B32G32R32F</unmanaged-short>
  12802. </member>
  12803. <member name="F:SharpDX.Direct3D9.Format.MtCxV8U8">
  12804. <summary>
  12805. No documentation.
  12806. </summary>
  12807. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_CxV8U8']/*" />
  12808. <msdn-id>bb172558</msdn-id>
  12809. <unmanaged>D3DFMT_CxV8U8</unmanaged>
  12810. <unmanaged-short>D3DFMT_CxV8U8</unmanaged-short>
  12811. </member>
  12812. <member name="F:SharpDX.Direct3D9.Format.A1">
  12813. <summary>
  12814. No documentation.
  12815. </summary>
  12816. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A1']/*" />
  12817. <msdn-id>bb172558</msdn-id>
  12818. <unmanaged>D3DFMT_A1</unmanaged>
  12819. <unmanaged-short>D3DFMT_A1</unmanaged-short>
  12820. </member>
  12821. <member name="F:SharpDX.Direct3D9.Format.MtA2B10G10R10XrBias">
  12822. <summary>
  12823. No documentation.
  12824. </summary>
  12825. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_A2B10G10R10_XR_BIAS']/*" />
  12826. <msdn-id>bb172558</msdn-id>
  12827. <unmanaged>D3DFMT_A2B10G10R10_XR_BIAS</unmanaged>
  12828. <unmanaged-short>D3DFMT_A2B10G10R10_XR_BIAS</unmanaged-short>
  12829. </member>
  12830. <member name="F:SharpDX.Direct3D9.Format.BinaryBuffer">
  12831. <summary>
  12832. No documentation.
  12833. </summary>
  12834. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFMT_BINARYBUFFER']/*" />
  12835. <msdn-id>bb172558</msdn-id>
  12836. <unmanaged>D3DFMT_BINARYBUFFER</unmanaged>
  12837. <unmanaged-short>D3DFMT_BINARYBUFFER</unmanaged-short>
  12838. </member>
  12839. <member name="T:SharpDX.Direct3D9.FX">
  12840. <summary>
  12841. <p>Options for saving and creating effects.</p><p>The constants in the following table are defined in d3dx9effect.h.</p>
  12842. </summary>
  12843. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFX']/*" />
  12844. <msdn-id>bb172855</msdn-id>
  12845. <unmanaged>D3DXFX</unmanaged>
  12846. <unmanaged-short>D3DXFX</unmanaged-short>
  12847. </member>
  12848. <member name="F:SharpDX.Direct3D9.FX.DoNotSaveState">
  12849. <summary>
  12850. No documentation.
  12851. </summary>
  12852. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFX_DONOTSAVESTATE']/*" />
  12853. <msdn-id>bb172855</msdn-id>
  12854. <unmanaged>D3DXFX_DONOTSAVESTATE</unmanaged>
  12855. <unmanaged-short>D3DXFX_DONOTSAVESTATE</unmanaged-short>
  12856. </member>
  12857. <member name="F:SharpDX.Direct3D9.FX.DoNotSaveShaderState">
  12858. <summary>
  12859. No documentation.
  12860. </summary>
  12861. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFX_DONOTSAVESHADERSTATE']/*" />
  12862. <msdn-id>bb172855</msdn-id>
  12863. <unmanaged>D3DXFX_DONOTSAVESHADERSTATE</unmanaged>
  12864. <unmanaged-short>D3DXFX_DONOTSAVESHADERSTATE</unmanaged-short>
  12865. </member>
  12866. <member name="F:SharpDX.Direct3D9.FX.DoNotSaveSamplerState">
  12867. <summary>
  12868. No documentation.
  12869. </summary>
  12870. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFX_DONOTSAVESAMPLERSTATE']/*" />
  12871. <msdn-id>bb172855</msdn-id>
  12872. <unmanaged>D3DXFX_DONOTSAVESAMPLERSTATE</unmanaged>
  12873. <unmanaged-short>D3DXFX_DONOTSAVESAMPLERSTATE</unmanaged-short>
  12874. </member>
  12875. <member name="F:SharpDX.Direct3D9.FX.NotCloneable">
  12876. <summary>
  12877. No documentation.
  12878. </summary>
  12879. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFX_NOT_CLONEABLE']/*" />
  12880. <msdn-id>bb172855</msdn-id>
  12881. <unmanaged>D3DXFX_NOT_CLONEABLE</unmanaged>
  12882. <unmanaged-short>D3DXFX_NOT_CLONEABLE</unmanaged-short>
  12883. </member>
  12884. <member name="F:SharpDX.Direct3D9.FX.LargeAddressAware">
  12885. <summary>
  12886. No documentation.
  12887. </summary>
  12888. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFX_LARGEADDRESSAWARE']/*" />
  12889. <msdn-id>bb172855</msdn-id>
  12890. <unmanaged>D3DXFX_LARGEADDRESSAWARE</unmanaged>
  12891. <unmanaged-short>D3DXFX_LARGEADDRESSAWARE</unmanaged-short>
  12892. </member>
  12893. <member name="F:SharpDX.Direct3D9.FX.None">
  12894. <summary>
  12895. None.
  12896. </summary>
  12897. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  12898. <unmanaged>None</unmanaged>
  12899. <unmanaged-short>None</unmanaged-short>
  12900. </member>
  12901. <member name="T:SharpDX.Direct3D9.ImageFileFormat">
  12902. <summary>
  12903. <p>Describes the supported image file formats. See Remarks for descriptions of these formats.</p>
  12904. </summary>
  12905. <remarks>
  12906. <p>Functions that begin with D3DXLoadxxx support all of the formats listed. Functions that begin with D3DXSavexxx support all of the formats listed except the Truevision (.tga) and portable pixmap (.ppm) formats.</p><p>The following table lists the available input and output formats. </p><table> <tr><th>File Extension</th><th>Description</th></tr> <tr><td>.bmp</td><td>Windows bitmap 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.</td></tr> <tr><td>.dds</td><td>DirectDraw Surface file format. Stores textures, volume textures, and cubic environment maps, with or without mipmap levels, and with or without pixel compression. See DDS.</td></tr> <tr><td>.dib</td><td>Windows DIB. Contains an array of bits combined with structures that specify width and height of the bitmapped image, color format of the device where the image was created, and resolution of the device used to create that image.</td></tr> <tr><td>.hdr</td><td>HDR format. Encodes each pixel as an RGBE 32-bit color, with 8 bits of mantissa for red, green, and blue, and a shared 8-bit exponent. Each channel is separately compressed with run-length encoding (RLE).</td></tr> <tr><td>.jpg</td><td>JPEG standard. Specifies variable compression of 24-bit RGB color and 8-bit gray-scale Tagged Image File Format (TIFF) image document files.</td></tr> <tr><td>.pfm</td><td>Portable float map format. A raw floating point image format, without any compression. The file header specifies image width, height, monochrome or color, and machine word order. Pixel data is stored as 32-bit floating point values, with 3 values per pixel for color, and one value per pixel for monochrome.</td></tr> <tr><td>.png</td><td>PNG format. A non-proprietary bitmap format using lossless compression.</td></tr> <tr><td>.ppm</td><td>Portable Pixmap format. A binary or ASCII file format for color images that includes image height and width and the maximum color component value.</td></tr> <tr><td>.tga</td><td>Targa or Truevision Graphics Adapter format. Supports depths of 8, 15, 16, 24, and 32 bits, including 8-bit gray scale, and contains optional color palette data, image (x, y) origin and size data, and pixel data.</td></tr> </table><p>?</p><p>See Types of Bitmaps for more information on some of these formats.</p>
  12907. </remarks>
  12908. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMAGE_FILEFORMAT']/*" />
  12909. <msdn-id>bb172878</msdn-id>
  12910. <unmanaged>D3DXIMAGE_FILEFORMAT</unmanaged>
  12911. <unmanaged-short>D3DXIMAGE_FILEFORMAT</unmanaged-short>
  12912. </member>
  12913. <member name="F:SharpDX.Direct3D9.ImageFileFormat.Bmp">
  12914. <summary>
  12915. <dd> <p>Windows bitmap (BMP) file format.</p> </dd>
  12916. </summary>
  12917. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIFF_BMP']/*" />
  12918. <msdn-id>bb172878</msdn-id>
  12919. <unmanaged>D3DXIFF_BMP</unmanaged>
  12920. <unmanaged-short>D3DXIFF_BMP</unmanaged-short>
  12921. </member>
  12922. <member name="F:SharpDX.Direct3D9.ImageFileFormat.Jpg">
  12923. <summary>
  12924. <dd> <p>Joint Photographics Experts Group (JPEG) compressed file format.</p> </dd>
  12925. </summary>
  12926. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIFF_JPG']/*" />
  12927. <msdn-id>bb172878</msdn-id>
  12928. <unmanaged>D3DXIFF_JPG</unmanaged>
  12929. <unmanaged-short>D3DXIFF_JPG</unmanaged-short>
  12930. </member>
  12931. <member name="F:SharpDX.Direct3D9.ImageFileFormat.Tga">
  12932. <summary>
  12933. <dd> <p>Truevision (Targa, or TGA) image file format.</p> </dd>
  12934. </summary>
  12935. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIFF_TGA']/*" />
  12936. <msdn-id>bb172878</msdn-id>
  12937. <unmanaged>D3DXIFF_TGA</unmanaged>
  12938. <unmanaged-short>D3DXIFF_TGA</unmanaged-short>
  12939. </member>
  12940. <member name="F:SharpDX.Direct3D9.ImageFileFormat.Png">
  12941. <summary>
  12942. <dd> <p>Portable Network Graphics (PNG) file format.</p> </dd>
  12943. </summary>
  12944. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIFF_PNG']/*" />
  12945. <msdn-id>bb172878</msdn-id>
  12946. <unmanaged>D3DXIFF_PNG</unmanaged>
  12947. <unmanaged-short>D3DXIFF_PNG</unmanaged-short>
  12948. </member>
  12949. <member name="F:SharpDX.Direct3D9.ImageFileFormat.Dds">
  12950. <summary>
  12951. <dd> <p>DirectDraw surface (DDS) file format.</p> </dd>
  12952. </summary>
  12953. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIFF_DDS']/*" />
  12954. <msdn-id>bb172878</msdn-id>
  12955. <unmanaged>D3DXIFF_DDS</unmanaged>
  12956. <unmanaged-short>D3DXIFF_DDS</unmanaged-short>
  12957. </member>
  12958. <member name="F:SharpDX.Direct3D9.ImageFileFormat.Ppm">
  12959. <summary>
  12960. <dd> <p>Portable pixmap (PPM) file format.</p> </dd>
  12961. </summary>
  12962. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIFF_PPM']/*" />
  12963. <msdn-id>bb172878</msdn-id>
  12964. <unmanaged>D3DXIFF_PPM</unmanaged>
  12965. <unmanaged-short>D3DXIFF_PPM</unmanaged-short>
  12966. </member>
  12967. <member name="F:SharpDX.Direct3D9.ImageFileFormat.Dib">
  12968. <summary>
  12969. <dd> <p>Windows device-independent bitmap (DIB) file format.</p> </dd>
  12970. </summary>
  12971. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIFF_DIB']/*" />
  12972. <msdn-id>bb172878</msdn-id>
  12973. <unmanaged>D3DXIFF_DIB</unmanaged>
  12974. <unmanaged-short>D3DXIFF_DIB</unmanaged-short>
  12975. </member>
  12976. <member name="F:SharpDX.Direct3D9.ImageFileFormat.Hdr">
  12977. <summary>
  12978. <dd> <p>High dynamic range (HDR) file format.</p> </dd>
  12979. </summary>
  12980. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIFF_HDR']/*" />
  12981. <msdn-id>bb172878</msdn-id>
  12982. <unmanaged>D3DXIFF_HDR</unmanaged>
  12983. <unmanaged-short>D3DXIFF_HDR</unmanaged-short>
  12984. </member>
  12985. <member name="F:SharpDX.Direct3D9.ImageFileFormat.Pfm">
  12986. <summary>
  12987. <dd> <p>Portable float map file format.</p> </dd>
  12988. </summary>
  12989. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIFF_PFM']/*" />
  12990. <msdn-id>bb172878</msdn-id>
  12991. <unmanaged>D3DXIFF_PFM</unmanaged>
  12992. <unmanaged-short>D3DXIFF_PFM</unmanaged-short>
  12993. </member>
  12994. <member name="T:SharpDX.Direct3D9.IncludeType">
  12995. <summary>
  12996. <p>Describes the location for the include file.</p>
  12997. </summary>
  12998. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXINCLUDE_TYPE']/*" />
  12999. <msdn-id>bb172881</msdn-id>
  13000. <unmanaged>D3DXINCLUDE_TYPE</unmanaged>
  13001. <unmanaged-short>D3DXINCLUDE_TYPE</unmanaged-short>
  13002. </member>
  13003. <member name="F:SharpDX.Direct3D9.IncludeType.Local">
  13004. <summary>
  13005. <dd> <p>Look in the local project for the include file.</p> </dd>
  13006. </summary>
  13007. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXINC_LOCAL']/*" />
  13008. <msdn-id>bb172881</msdn-id>
  13009. <unmanaged>D3DXINC_LOCAL</unmanaged>
  13010. <unmanaged-short>D3DXINC_LOCAL</unmanaged-short>
  13011. </member>
  13012. <member name="F:SharpDX.Direct3D9.IncludeType.System">
  13013. <summary>
  13014. <dd> <p>Look in the system path for the include file.</p> </dd>
  13015. </summary>
  13016. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXINC_SYSTEM']/*" />
  13017. <msdn-id>bb172881</msdn-id>
  13018. <unmanaged>D3DXINC_SYSTEM</unmanaged>
  13019. <unmanaged-short>D3DXINC_SYSTEM</unmanaged-short>
  13020. </member>
  13021. <member name="T:SharpDX.Direct3D9.Issue">
  13022. <summary>
  13023. <p>This macro creates a value used by <strong>Issue</strong> to issue a query end. </p>#define <see cref="F:SharpDX.Direct3D9.Issue.End" /> (1 &lt;&lt; 0)
  13024. </summary>
  13025. <remarks>
  13026. <p>This macro changes the query state to nonsignaled.</p><p><see cref="F:SharpDX.Direct3D9.Issue.End" /> is valid for the following query types.</p><ul> <li><see cref="F:SharpDX.Direct3D9.QueryType.VCache" /></li> <li>D3DQUERYTYPE_ResourceManager</li> <li><see cref="F:SharpDX.Direct3D9.QueryType.VertexStats" /></li> <li><see cref="F:SharpDX.Direct3D9.QueryType.Event" /></li> <li><see cref="F:SharpDX.Direct3D9.QueryType.Occlusion" /></li> </ul>
  13027. </remarks>
  13028. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DISSUE']/*" />
  13029. <msdn-id>bb172565</msdn-id>
  13030. <unmanaged>D3DISSUE</unmanaged>
  13031. <unmanaged-short>D3DISSUE</unmanaged-short>
  13032. </member>
  13033. <member name="F:SharpDX.Direct3D9.Issue.End">
  13034. <summary>
  13035. No documentation.
  13036. </summary>
  13037. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DISSUE_END']/*" />
  13038. <msdn-id>bb172565</msdn-id>
  13039. <unmanaged>D3DISSUE_END</unmanaged>
  13040. <unmanaged-short>D3DISSUE_END</unmanaged-short>
  13041. </member>
  13042. <member name="F:SharpDX.Direct3D9.Issue.Begin">
  13043. <summary>
  13044. No documentation.
  13045. </summary>
  13046. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DISSUE_BEGIN']/*" />
  13047. <msdn-id>bb172565</msdn-id>
  13048. <unmanaged>D3DISSUE_BEGIN</unmanaged>
  13049. <unmanaged-short>D3DISSUE_BEGIN</unmanaged-short>
  13050. </member>
  13051. <member name="T:SharpDX.Direct3D9.LightType">
  13052. <summary>
  13053. <p>Defines the light type.</p>
  13054. </summary>
  13055. <remarks>
  13056. <p>Directional lights are slightly faster than point light sources, but point lights look a little better. Spotlights offer interesting visual effects but are computationally time-consuming.</p>
  13057. </remarks>
  13058. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHTTYPE']/*" />
  13059. <msdn-id>bb172567</msdn-id>
  13060. <unmanaged>D3DLIGHTTYPE</unmanaged>
  13061. <unmanaged-short>D3DLIGHTTYPE</unmanaged-short>
  13062. </member>
  13063. <member name="F:SharpDX.Direct3D9.LightType.Point">
  13064. <summary>
  13065. <dd> <p>Light is a point source. The light has a position in space and radiates light in all directions. </p> </dd>
  13066. </summary>
  13067. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT_POINT']/*" />
  13068. <msdn-id>bb172567</msdn-id>
  13069. <unmanaged>D3DLIGHT_POINT</unmanaged>
  13070. <unmanaged-short>D3DLIGHT_POINT</unmanaged-short>
  13071. </member>
  13072. <member name="F:SharpDX.Direct3D9.LightType.Spot">
  13073. <summary>
  13074. <dd> <p>Light is a spotlight source. This light is like a point light, except that the illumination is limited to a cone. This light type has a direction and several other parameters that determine the shape of the cone it produces. For information about these parameters, see the <strong><see cref="T:SharpDX.Direct3D9.Light" /></strong> structure. </p> </dd>
  13075. </summary>
  13076. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT_SPOT']/*" />
  13077. <msdn-id>bb172567</msdn-id>
  13078. <unmanaged>D3DLIGHT_SPOT</unmanaged>
  13079. <unmanaged-short>D3DLIGHT_SPOT</unmanaged-short>
  13080. </member>
  13081. <member name="F:SharpDX.Direct3D9.LightType.Directional">
  13082. <summary>
  13083. <dd> <p>Light is a directional light source. This is equivalent to using a point light source at an infinite distance. </p> </dd>
  13084. </summary>
  13085. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT_DIRECTIONAL']/*" />
  13086. <msdn-id>bb172567</msdn-id>
  13087. <unmanaged>D3DLIGHT_DIRECTIONAL</unmanaged>
  13088. <unmanaged-short>D3DLIGHT_DIRECTIONAL</unmanaged-short>
  13089. </member>
  13090. <member name="T:SharpDX.Direct3D9.LineCaps">
  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='D3DLINECAPS']/*" />
  13095. <msdn-id>bb206304</msdn-id>
  13096. <unmanaged>D3DLINECAPS</unmanaged>
  13097. <unmanaged-short>D3DLINECAPS</unmanaged-short>
  13098. </member>
  13099. <member name="F:SharpDX.Direct3D9.LineCaps.Texture">
  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='D3DLINECAPS_TEXTURE']/*" />
  13104. <msdn-id>bb206304</msdn-id>
  13105. <unmanaged>D3DLINECAPS_TEXTURE</unmanaged>
  13106. <unmanaged-short>D3DLINECAPS_TEXTURE</unmanaged-short>
  13107. </member>
  13108. <member name="F:SharpDX.Direct3D9.LineCaps.DepthTest">
  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='D3DLINECAPS_ZTEST']/*" />
  13113. <msdn-id>bb206304</msdn-id>
  13114. <unmanaged>D3DLINECAPS_ZTEST</unmanaged>
  13115. <unmanaged-short>D3DLINECAPS_ZTEST</unmanaged-short>
  13116. </member>
  13117. <member name="F:SharpDX.Direct3D9.LineCaps.Blend">
  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='D3DLINECAPS_BLEND']/*" />
  13122. <msdn-id>bb206304</msdn-id>
  13123. <unmanaged>D3DLINECAPS_BLEND</unmanaged>
  13124. <unmanaged-short>D3DLINECAPS_BLEND</unmanaged-short>
  13125. </member>
  13126. <member name="F:SharpDX.Direct3D9.LineCaps.AlphaCompare">
  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='D3DLINECAPS_ALPHACMP']/*" />
  13131. <msdn-id>bb206304</msdn-id>
  13132. <unmanaged>D3DLINECAPS_ALPHACMP</unmanaged>
  13133. <unmanaged-short>D3DLINECAPS_ALPHACMP</unmanaged-short>
  13134. </member>
  13135. <member name="F:SharpDX.Direct3D9.LineCaps.Fog">
  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='D3DLINECAPS_FOG']/*" />
  13140. <msdn-id>bb206304</msdn-id>
  13141. <unmanaged>D3DLINECAPS_FOG</unmanaged>
  13142. <unmanaged-short>D3DLINECAPS_FOG</unmanaged-short>
  13143. </member>
  13144. <member name="F:SharpDX.Direct3D9.LineCaps.Antialias">
  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='D3DLINECAPS_ANTIALIAS']/*" />
  13149. <msdn-id>bb206304</msdn-id>
  13150. <unmanaged>D3DLINECAPS_ANTIALIAS</unmanaged>
  13151. <unmanaged-short>D3DLINECAPS_ANTIALIAS</unmanaged-short>
  13152. </member>
  13153. <member name="T:SharpDX.Direct3D9.LockFlags">
  13154. <summary>
  13155. <p>A combination of zero or more locking options that describe the type of lock to perform.</p>
  13156. </summary>
  13157. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLOCK']/*" />
  13158. <msdn-id>bb172568</msdn-id>
  13159. <unmanaged>D3DLOCK</unmanaged>
  13160. <unmanaged-short>D3DLOCK</unmanaged-short>
  13161. </member>
  13162. <member name="F:SharpDX.Direct3D9.LockFlags.ReadOnly">
  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='D3DLOCK_READONLY']/*" />
  13167. <msdn-id>bb172568</msdn-id>
  13168. <unmanaged>D3DLOCK_READONLY</unmanaged>
  13169. <unmanaged-short>D3DLOCK_READONLY</unmanaged-short>
  13170. </member>
  13171. <member name="F:SharpDX.Direct3D9.LockFlags.Discard">
  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='D3DLOCK_DISCARD']/*" />
  13176. <msdn-id>bb172568</msdn-id>
  13177. <unmanaged>D3DLOCK_DISCARD</unmanaged>
  13178. <unmanaged-short>D3DLOCK_DISCARD</unmanaged-short>
  13179. </member>
  13180. <member name="F:SharpDX.Direct3D9.LockFlags.NoOverwrite">
  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='D3DLOCK_NOOVERWRITE']/*" />
  13185. <msdn-id>bb172568</msdn-id>
  13186. <unmanaged>D3DLOCK_NOOVERWRITE</unmanaged>
  13187. <unmanaged-short>D3DLOCK_NOOVERWRITE</unmanaged-short>
  13188. </member>
  13189. <member name="F:SharpDX.Direct3D9.LockFlags.NoSystemLock">
  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='D3DLOCK_NOSYSLOCK']/*" />
  13194. <msdn-id>bb172568</msdn-id>
  13195. <unmanaged>D3DLOCK_NOSYSLOCK</unmanaged>
  13196. <unmanaged-short>D3DLOCK_NOSYSLOCK</unmanaged-short>
  13197. </member>
  13198. <member name="F:SharpDX.Direct3D9.LockFlags.DoNotWait">
  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='D3DLOCK_DONOTWAIT']/*" />
  13203. <msdn-id>bb172568</msdn-id>
  13204. <unmanaged>D3DLOCK_DONOTWAIT</unmanaged>
  13205. <unmanaged-short>D3DLOCK_DONOTWAIT</unmanaged-short>
  13206. </member>
  13207. <member name="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate">
  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='D3DLOCK_NO_DIRTY_UPDATE']/*" />
  13212. <msdn-id>bb172568</msdn-id>
  13213. <unmanaged>D3DLOCK_NO_DIRTY_UPDATE</unmanaged>
  13214. <unmanaged-short>D3DLOCK_NO_DIRTY_UPDATE</unmanaged-short>
  13215. </member>
  13216. <member name="F:SharpDX.Direct3D9.LockFlags.DoNotCopyData">
  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='D3DLOCK_DONOTCOPYDATA']/*" />
  13221. <msdn-id>bb172568</msdn-id>
  13222. <unmanaged>D3DLOCK_DONOTCOPYDATA</unmanaged>
  13223. <unmanaged-short>D3DLOCK_DONOTCOPYDATA</unmanaged-short>
  13224. </member>
  13225. <member name="F:SharpDX.Direct3D9.LockFlags.None">
  13226. <summary>
  13227. None.
  13228. </summary>
  13229. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  13230. <unmanaged>None</unmanaged>
  13231. <unmanaged-short>None</unmanaged-short>
  13232. </member>
  13233. <member name="T:SharpDX.Direct3D9.MeshDataType">
  13234. <summary>
  13235. <p>Defines the type of mesh data present in <strong><see cref="T:SharpDX.Direct3D9.MeshData" /></strong>.</p>
  13236. </summary>
  13237. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHDATATYPE']/*" />
  13238. <msdn-id>bb205373</msdn-id>
  13239. <unmanaged>D3DXMESHDATATYPE</unmanaged>
  13240. <unmanaged-short>D3DXMESHDATATYPE</unmanaged-short>
  13241. </member>
  13242. <member name="F:SharpDX.Direct3D9.MeshDataType.Mesh">
  13243. <summary>
  13244. No documentation.
  13245. </summary>
  13246. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHTYPE_MESH']/*" />
  13247. <msdn-id>bb205373</msdn-id>
  13248. <unmanaged>D3DXMESHTYPE_MESH</unmanaged>
  13249. <unmanaged-short>D3DXMESHTYPE_MESH</unmanaged-short>
  13250. </member>
  13251. <member name="F:SharpDX.Direct3D9.MeshDataType.ProgressiveMesh">
  13252. <summary>
  13253. No documentation.
  13254. </summary>
  13255. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHTYPE_PMESH']/*" />
  13256. <msdn-id>bb205373</msdn-id>
  13257. <unmanaged>D3DXMESHTYPE_PMESH</unmanaged>
  13258. <unmanaged-short>D3DXMESHTYPE_PMESH</unmanaged-short>
  13259. </member>
  13260. <member name="F:SharpDX.Direct3D9.MeshDataType.PatchMesh">
  13261. <summary>
  13262. No documentation.
  13263. </summary>
  13264. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHTYPE_PATCHMESH']/*" />
  13265. <msdn-id>bb205373</msdn-id>
  13266. <unmanaged>D3DXMESHTYPE_PATCHMESH</unmanaged>
  13267. <unmanaged-short>D3DXMESHTYPE_PATCHMESH</unmanaged-short>
  13268. </member>
  13269. <member name="T:SharpDX.Direct3D9.MeshFlags">
  13270. <summary>
  13271. <p>Flags used to specify creation options for a mesh.</p>
  13272. </summary>
  13273. <remarks>
  13274. <p>A 32-bit mesh (<see cref="F:SharpDX.Direct3D9.MeshFlags.Use32Bit" />) can theoretically support (2^32)-1 faces and vertices. However, allocating memory for a mesh that large on a 32-bit operating system is not practical.</p>
  13275. </remarks>
  13276. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='_D3DXMESH']/*" />
  13277. <msdn-id>bb205370</msdn-id>
  13278. <unmanaged>_D3DXMESH</unmanaged>
  13279. <unmanaged-short>_D3DXMESH</unmanaged-short>
  13280. </member>
  13281. <member name="F:SharpDX.Direct3D9.MeshFlags.Use32Bit">
  13282. <summary>
  13283. <dd> <p>The mesh has 32-bit indices instead of 16-bit indices. See Remarks.</p> </dd>
  13284. </summary>
  13285. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_32BIT']/*" />
  13286. <msdn-id>bb205370</msdn-id>
  13287. <unmanaged>D3DXMESH_32BIT</unmanaged>
  13288. <unmanaged-short>D3DXMESH_32BIT</unmanaged-short>
  13289. </member>
  13290. <member name="F:SharpDX.Direct3D9.MeshFlags.DoNotClip">
  13291. <summary>
  13292. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Usage.DoNotClip" /></strong> usage flag for vertex and index buffers.</p> </dd>
  13293. </summary>
  13294. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_DONOTCLIP']/*" />
  13295. <msdn-id>bb205370</msdn-id>
  13296. <unmanaged>D3DXMESH_DONOTCLIP</unmanaged>
  13297. <unmanaged-short>D3DXMESH_DONOTCLIP</unmanaged-short>
  13298. </member>
  13299. <member name="F:SharpDX.Direct3D9.MeshFlags.Points">
  13300. <summary>
  13301. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Usage.Points" /></strong> usage flag for vertex and index buffers.</p> </dd>
  13302. </summary>
  13303. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_POINTS']/*" />
  13304. <msdn-id>bb205370</msdn-id>
  13305. <unmanaged>D3DXMESH_POINTS</unmanaged>
  13306. <unmanaged-short>D3DXMESH_POINTS</unmanaged-short>
  13307. </member>
  13308. <member name="F:SharpDX.Direct3D9.MeshFlags.RTPatches">
  13309. <summary>
  13310. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Usage.RTPatches" /></strong> usage flag for vertex and index buffers.</p> </dd>
  13311. </summary>
  13312. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_RTPATCHES']/*" />
  13313. <msdn-id>bb205370</msdn-id>
  13314. <unmanaged>D3DXMESH_RTPATCHES</unmanaged>
  13315. <unmanaged-short>D3DXMESH_RTPATCHES</unmanaged-short>
  13316. </member>
  13317. <member name="F:SharpDX.Direct3D9.MeshFlags.NPatches">
  13318. <summary>
  13319. <dd> <p>Specifying this flag causes the vertex and index buffer of the mesh to be created with <strong><see cref="F:SharpDX.Direct3D9.Usage.NPatches" /></strong> flag. This is required if the mesh object is to be rendered using N-patch enhancement using Direct3D.</p> </dd>
  13320. </summary>
  13321. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_NPATCHES']/*" />
  13322. <msdn-id>bb205370</msdn-id>
  13323. <unmanaged>D3DXMESH_NPATCHES</unmanaged>
  13324. <unmanaged-short>D3DXMESH_NPATCHES</unmanaged-short>
  13325. </member>
  13326. <member name="F:SharpDX.Direct3D9.MeshFlags.VertexBufferSystemMemory">
  13327. <summary>
  13328. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /></strong> usage flag for vertex buffers.</p> </dd>
  13329. </summary>
  13330. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_VB_SYSTEMMEM']/*" />
  13331. <msdn-id>bb205370</msdn-id>
  13332. <unmanaged>D3DXMESH_VB_SYSTEMMEM</unmanaged>
  13333. <unmanaged-short>D3DXMESH_VB_SYSTEMMEM</unmanaged-short>
  13334. </member>
  13335. <member name="F:SharpDX.Direct3D9.MeshFlags.VertexBufferManaged">
  13336. <summary>
  13337. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Pool.Managed" /></strong> usage flag for vertex buffers.</p> </dd>
  13338. </summary>
  13339. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_VB_MANAGED']/*" />
  13340. <msdn-id>bb205370</msdn-id>
  13341. <unmanaged>D3DXMESH_VB_MANAGED</unmanaged>
  13342. <unmanaged-short>D3DXMESH_VB_MANAGED</unmanaged-short>
  13343. </member>
  13344. <member name="F:SharpDX.Direct3D9.MeshFlags.VertexBufferWriteOnly">
  13345. <summary>
  13346. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Usage.WriteOnly" /></strong> usage flag for vertex buffers.</p> </dd>
  13347. </summary>
  13348. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_VB_WRITEONLY']/*" />
  13349. <msdn-id>bb205370</msdn-id>
  13350. <unmanaged>D3DXMESH_VB_WRITEONLY</unmanaged>
  13351. <unmanaged-short>D3DXMESH_VB_WRITEONLY</unmanaged-short>
  13352. </member>
  13353. <member name="F:SharpDX.Direct3D9.MeshFlags.VertexBufferDynamic">
  13354. <summary>
  13355. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /></strong> usage flag for vertex buffers.</p> </dd>
  13356. </summary>
  13357. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_VB_DYNAMIC']/*" />
  13358. <msdn-id>bb205370</msdn-id>
  13359. <unmanaged>D3DXMESH_VB_DYNAMIC</unmanaged>
  13360. <unmanaged-short>D3DXMESH_VB_DYNAMIC</unmanaged-short>
  13361. </member>
  13362. <member name="F:SharpDX.Direct3D9.MeshFlags.VertexBufferSoftware">
  13363. <summary>
  13364. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Usage.SoftwareProcessing" /></strong> usage flag for vertex buffers.</p> </dd>
  13365. </summary>
  13366. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_VB_SOFTWAREPROCESSING']/*" />
  13367. <msdn-id>bb205370</msdn-id>
  13368. <unmanaged>D3DXMESH_VB_SOFTWAREPROCESSING</unmanaged>
  13369. <unmanaged-short>D3DXMESH_VB_SOFTWAREPROCESSING</unmanaged-short>
  13370. </member>
  13371. <member name="F:SharpDX.Direct3D9.MeshFlags.IndexBufferSystemMemory">
  13372. <summary>
  13373. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /></strong> usage flag for index buffers.</p> </dd>
  13374. </summary>
  13375. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_IB_SYSTEMMEM']/*" />
  13376. <msdn-id>bb205370</msdn-id>
  13377. <unmanaged>D3DXMESH_IB_SYSTEMMEM</unmanaged>
  13378. <unmanaged-short>D3DXMESH_IB_SYSTEMMEM</unmanaged-short>
  13379. </member>
  13380. <member name="F:SharpDX.Direct3D9.MeshFlags.IndexBufferManaged">
  13381. <summary>
  13382. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Pool.Managed" /></strong> usage flag for index buffers.</p> </dd>
  13383. </summary>
  13384. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_IB_MANAGED']/*" />
  13385. <msdn-id>bb205370</msdn-id>
  13386. <unmanaged>D3DXMESH_IB_MANAGED</unmanaged>
  13387. <unmanaged-short>D3DXMESH_IB_MANAGED</unmanaged-short>
  13388. </member>
  13389. <member name="F:SharpDX.Direct3D9.MeshFlags.IndexBufferWriteOnly">
  13390. <summary>
  13391. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Usage.WriteOnly" /></strong> usage flag for index buffers.</p> </dd>
  13392. </summary>
  13393. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_IB_WRITEONLY']/*" />
  13394. <msdn-id>bb205370</msdn-id>
  13395. <unmanaged>D3DXMESH_IB_WRITEONLY</unmanaged>
  13396. <unmanaged-short>D3DXMESH_IB_WRITEONLY</unmanaged-short>
  13397. </member>
  13398. <member name="F:SharpDX.Direct3D9.MeshFlags.IndexBufferDynamic">
  13399. <summary>
  13400. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /></strong> usage flag for index buffers.</p> </dd>
  13401. </summary>
  13402. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_IB_DYNAMIC']/*" />
  13403. <msdn-id>bb205370</msdn-id>
  13404. <unmanaged>D3DXMESH_IB_DYNAMIC</unmanaged>
  13405. <unmanaged-short>D3DXMESH_IB_DYNAMIC</unmanaged-short>
  13406. </member>
  13407. <member name="F:SharpDX.Direct3D9.MeshFlags.IndexBufferSoftware">
  13408. <summary>
  13409. <dd> <p>Use the <strong><see cref="F:SharpDX.Direct3D9.Usage.SoftwareProcessing" /></strong> usage flag for index buffers.</p> </dd>
  13410. </summary>
  13411. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_IB_SOFTWAREPROCESSING']/*" />
  13412. <msdn-id>bb205370</msdn-id>
  13413. <unmanaged>D3DXMESH_IB_SOFTWAREPROCESSING</unmanaged>
  13414. <unmanaged-short>D3DXMESH_IB_SOFTWAREPROCESSING</unmanaged-short>
  13415. </member>
  13416. <member name="F:SharpDX.Direct3D9.MeshFlags.VertexBufferShare">
  13417. <summary>
  13418. <dd> <p>Forces the cloned meshes to share vertex buffers.</p> </dd>
  13419. </summary>
  13420. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_VB_SHARE']/*" />
  13421. <msdn-id>bb205370</msdn-id>
  13422. <unmanaged>D3DXMESH_VB_SHARE</unmanaged>
  13423. <unmanaged-short>D3DXMESH_VB_SHARE</unmanaged-short>
  13424. </member>
  13425. <member name="F:SharpDX.Direct3D9.MeshFlags.UseHardwareOnly">
  13426. <summary>
  13427. <dd> <p>Use hardware processing only. For mixed-mode device, this flag will cause the system to use hardware (if supported in hardware) or will default to software processing.</p> </dd>
  13428. </summary>
  13429. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_USEHWONLY']/*" />
  13430. <msdn-id>bb205370</msdn-id>
  13431. <unmanaged>D3DXMESH_USEHWONLY</unmanaged>
  13432. <unmanaged-short>D3DXMESH_USEHWONLY</unmanaged-short>
  13433. </member>
  13434. <member name="F:SharpDX.Direct3D9.MeshFlags.SystemMemory">
  13435. <summary>
  13436. <dd> <p>Equivalent to specifying both <see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferSystemMemory" /> and <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferSystemMemory" />.</p> </dd>
  13437. </summary>
  13438. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_SYSTEMMEM']/*" />
  13439. <msdn-id>bb205370</msdn-id>
  13440. <unmanaged>D3DXMESH_SYSTEMMEM</unmanaged>
  13441. <unmanaged-short>D3DXMESH_SYSTEMMEM</unmanaged-short>
  13442. </member>
  13443. <member name="F:SharpDX.Direct3D9.MeshFlags.Managed">
  13444. <summary>
  13445. <dd> <p>Equivalent to specifying both <see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferManaged" /> and <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferManaged" />.</p> </dd>
  13446. </summary>
  13447. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_MANAGED']/*" />
  13448. <msdn-id>bb205370</msdn-id>
  13449. <unmanaged>D3DXMESH_MANAGED</unmanaged>
  13450. <unmanaged-short>D3DXMESH_MANAGED</unmanaged-short>
  13451. </member>
  13452. <member name="F:SharpDX.Direct3D9.MeshFlags.WriteOnly">
  13453. <summary>
  13454. <dd> <p>Equivalent to specifying both <see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferWriteOnly" /> and <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferWriteOnly" />.</p> </dd>
  13455. </summary>
  13456. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_WRITEONLY']/*" />
  13457. <msdn-id>bb205370</msdn-id>
  13458. <unmanaged>D3DXMESH_WRITEONLY</unmanaged>
  13459. <unmanaged-short>D3DXMESH_WRITEONLY</unmanaged-short>
  13460. </member>
  13461. <member name="F:SharpDX.Direct3D9.MeshFlags.Dynamic">
  13462. <summary>
  13463. <dd> <p>Equivalent to specifying both <see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferDynamic" /> and <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferDynamic" />.</p> </dd>
  13464. </summary>
  13465. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_DYNAMIC']/*" />
  13466. <msdn-id>bb205370</msdn-id>
  13467. <unmanaged>D3DXMESH_DYNAMIC</unmanaged>
  13468. <unmanaged-short>D3DXMESH_DYNAMIC</unmanaged-short>
  13469. </member>
  13470. <member name="F:SharpDX.Direct3D9.MeshFlags.Software">
  13471. <summary>
  13472. <dd> <p>Equivalent to specifying both <see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferSoftware" /> and <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferSoftware" />.</p> </dd>
  13473. </summary>
  13474. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESH_SOFTWAREPROCESSING']/*" />
  13475. <msdn-id>bb205370</msdn-id>
  13476. <unmanaged>D3DXMESH_SOFTWAREPROCESSING</unmanaged>
  13477. <unmanaged-short>D3DXMESH_SOFTWAREPROCESSING</unmanaged-short>
  13478. </member>
  13479. <member name="T:SharpDX.Direct3D9.MeshOptimizeFlags">
  13480. <summary>
  13481. <p>Specifies the type of mesh optimization to be performed.</p>
  13482. </summary>
  13483. <remarks>
  13484. <p>The <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.StripReorder" /> and <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.VertexCache" /> optimization flags are mutually exclusive.</p><p>The D3DXMESHOPT_SHAREVB flag has been removed from this enumeration. Use <see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferShare" /> instead, in <strong>D3DXMESH</strong>.</p>
  13485. </remarks>
  13486. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='_D3DXMESHOPT']/*" />
  13487. <msdn-id>bb205374</msdn-id>
  13488. <unmanaged>_D3DXMESHOPT</unmanaged>
  13489. <unmanaged-short>_D3DXMESHOPT</unmanaged-short>
  13490. </member>
  13491. <member name="F:SharpDX.Direct3D9.MeshOptimizeFlags.Compact">
  13492. <summary>
  13493. <dd> <p>Reorders faces to remove unused vertices and faces.</p> </dd>
  13494. </summary>
  13495. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHOPT_COMPACT']/*" />
  13496. <msdn-id>bb205374</msdn-id>
  13497. <unmanaged>D3DXMESHOPT_COMPACT</unmanaged>
  13498. <unmanaged-short>D3DXMESHOPT_COMPACT</unmanaged-short>
  13499. </member>
  13500. <member name="F:SharpDX.Direct3D9.MeshOptimizeFlags.AttributeSort">
  13501. <summary>
  13502. <dd> <p>Reorders faces to optimize for fewer attribute bundle state changes and enhanced <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.DrawSubset(System.Int32)" /></strong> performance.</p> </dd>
  13503. </summary>
  13504. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHOPT_ATTRSORT']/*" />
  13505. <msdn-id>bb205374</msdn-id>
  13506. <unmanaged>D3DXMESHOPT_ATTRSORT</unmanaged>
  13507. <unmanaged-short>D3DXMESHOPT_ATTRSORT</unmanaged-short>
  13508. </member>
  13509. <member name="F:SharpDX.Direct3D9.MeshOptimizeFlags.VertexCache">
  13510. <summary>
  13511. <dd> <p>Reorders faces to increase the cache hit rate of vertex caches.</p> </dd>
  13512. </summary>
  13513. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHOPT_VERTEXCACHE']/*" />
  13514. <msdn-id>bb205374</msdn-id>
  13515. <unmanaged>D3DXMESHOPT_VERTEXCACHE</unmanaged>
  13516. <unmanaged-short>D3DXMESHOPT_VERTEXCACHE</unmanaged-short>
  13517. </member>
  13518. <member name="F:SharpDX.Direct3D9.MeshOptimizeFlags.StripReorder">
  13519. <summary>
  13520. <dd> <p>Reorders faces to maximize length of adjacent triangles.</p> </dd>
  13521. </summary>
  13522. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHOPT_STRIPREORDER']/*" />
  13523. <msdn-id>bb205374</msdn-id>
  13524. <unmanaged>D3DXMESHOPT_STRIPREORDER</unmanaged>
  13525. <unmanaged-short>D3DXMESHOPT_STRIPREORDER</unmanaged-short>
  13526. </member>
  13527. <member name="F:SharpDX.Direct3D9.MeshOptimizeFlags.IgnoreVertices">
  13528. <summary>
  13529. <dd> <p>Optimize the faces only; do not optimize the vertices.</p> </dd>
  13530. </summary>
  13531. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHOPT_IGNOREVERTS']/*" />
  13532. <msdn-id>bb205374</msdn-id>
  13533. <unmanaged>D3DXMESHOPT_IGNOREVERTS</unmanaged>
  13534. <unmanaged-short>D3DXMESHOPT_IGNOREVERTS</unmanaged-short>
  13535. </member>
  13536. <member name="F:SharpDX.Direct3D9.MeshOptimizeFlags.DoNotSplit">
  13537. <summary>
  13538. <dd> <p>While attribute sorting, do not split vertices that are shared between attribute groups.</p> </dd>
  13539. </summary>
  13540. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHOPT_DONOTSPLIT']/*" />
  13541. <msdn-id>bb205374</msdn-id>
  13542. <unmanaged>D3DXMESHOPT_DONOTSPLIT</unmanaged>
  13543. <unmanaged-short>D3DXMESHOPT_DONOTSPLIT</unmanaged-short>
  13544. </member>
  13545. <member name="F:SharpDX.Direct3D9.MeshOptimizeFlags.DeviceIndependent">
  13546. <summary>
  13547. <dd> <p>Affects the vertex cache size. Using this flag specifies a default vertex cache size that works well on legacy hardware.</p> </dd>
  13548. </summary>
  13549. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHOPT_DEVICEINDEPENDENT']/*" />
  13550. <msdn-id>bb205374</msdn-id>
  13551. <unmanaged>D3DXMESHOPT_DEVICEINDEPENDENT</unmanaged>
  13552. <unmanaged-short>D3DXMESHOPT_DEVICEINDEPENDENT</unmanaged-short>
  13553. </member>
  13554. <member name="T:SharpDX.Direct3D9.MeshSimplification">
  13555. <summary>
  13556. <p>Specifies simplification options for a mesh.</p>
  13557. </summary>
  13558. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='_D3DXMESHSIMP']/*" />
  13559. <msdn-id>bb205375</msdn-id>
  13560. <unmanaged>_D3DXMESHSIMP</unmanaged>
  13561. <unmanaged-short>_D3DXMESHSIMP</unmanaged-short>
  13562. </member>
  13563. <member name="F:SharpDX.Direct3D9.MeshSimplification.Vertex">
  13564. <summary>
  13565. <dd> <p>The mesh will be simplified by the number of vertices specified in the MinValue parameter.</p> </dd>
  13566. </summary>
  13567. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHSIMP_VERTEX']/*" />
  13568. <msdn-id>bb205375</msdn-id>
  13569. <unmanaged>D3DXMESHSIMP_VERTEX</unmanaged>
  13570. <unmanaged-short>D3DXMESHSIMP_VERTEX</unmanaged-short>
  13571. </member>
  13572. <member name="F:SharpDX.Direct3D9.MeshSimplification.Face">
  13573. <summary>
  13574. <dd> <p>The mesh will be simplified by the number of faces specified in the MinValue parameter.</p> </dd>
  13575. </summary>
  13576. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHSIMP_FACE']/*" />
  13577. <msdn-id>bb205375</msdn-id>
  13578. <unmanaged>D3DXMESHSIMP_FACE</unmanaged>
  13579. <unmanaged-short>D3DXMESHSIMP_FACE</unmanaged-short>
  13580. </member>
  13581. <member name="T:SharpDX.Direct3D9.MultisampleType">
  13582. <summary>
  13583. <p>Defines the levels of full-scene multisampling that the device can apply.</p>
  13584. </summary>
  13585. <remarks>
  13586. <p>In addition to enabling full-scene multisampling at <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> time, there will be render states that turn various aspects on and off at fine-grained levels.</p><p>Multisampling is valid only on a swap chain that is being created or reset with the <see cref="F:SharpDX.Direct3D9.SwapEffect.Discard" /> swap effect.</p><p>The multisample antialiasing value can be set with the parameters (or sub-parameters) in the following methods.</p><table> <tr><th>Method</th><th>Parameters</th><th>Sub-parameters</th></tr> <tr><td> <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceMultiSampleType_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.MultisampleType,System.Int32@)" /></strong> </td><td>MultiSampleType and pQualityLevels</td><td /></tr> <tr><td> <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CreateDevice(System.Int32,SharpDX.Direct3D9.DeviceType,System.IntPtr,SharpDX.Direct3D9.CreateFlags,SharpDX.Direct3D9.PresentParameters[],SharpDX.Direct3D9.Device)" /></strong> </td><td>pPresentationParameters</td><td>MultiSampleType and pQualityLevels</td></tr> <tr><td> <strong><see cref="M:SharpDX.Direct3D9.Device.CreateAdditionalSwapChain(SharpDX.Direct3D9.PresentParameters@,SharpDX.Direct3D9.SwapChain)" /></strong> </td><td>pPresentationParameters</td><td>MultiSampleType and pQualityLevels</td></tr> <tr><td> <strong><see cref="M:SharpDX.Direct3D9.Device.CreateDepthStencilSurface(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.IntPtr)" /></strong> </td><td>MultiSampleType and pQualityLevels</td><td /></tr> <tr><td> <strong><see cref="M:SharpDX.Direct3D9.Device.CreateRenderTarget(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.IntPtr)" /></strong> </td><td>MultiSampleType and pQualityLevels</td><td /></tr> <tr><td> <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> </td><td>pPresentationParameters</td><td>MultiSampleType and pQualityLevels</td></tr> </table><p>?</p><p>It is not good practice to switch from one multisample type to another to raise the quality of the antialiasing.</p><p><see cref="F:SharpDX.Direct3D9.MultisampleType.None" /> enables swap effects other than discarding, locking, and so on.</p><p>Whether the display device supports maskable multisampling (more than one sample for a multiple-sample render-target format plus antialias support) or just non-maskable multisampling (only antialias support), the driver for the device provides the number of quality levels for the <see cref="F:SharpDX.Direct3D9.MultisampleType.NonMaskable" /> multiple-sample type. Applications that just use multisampling for antialiasing purposes only need to query for the number of non-maskable multiple-sample quality levels that the driver supports.</p><p>The quality levels supported by the device can be obtained with the pQualityLevels parameter of <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceMultiSampleType_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.MultisampleType,System.Int32@)" /></strong>. Quality levels used by the application are set with the MultiSampleQuality parameter of <strong><see cref="M:SharpDX.Direct3D9.Device.CreateDepthStencilSurface(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.IntPtr)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.CreateRenderTarget(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.IntPtr)" /></strong>.</p><p>See <see cref="F:SharpDX.Direct3D9.RenderState.MultisampleMask" /> for discussion of maskable multisampling.</p>
  13587. </remarks>
  13588. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_TYPE']/*" />
  13589. <msdn-id>bb172574</msdn-id>
  13590. <unmanaged>D3DMULTISAMPLE_TYPE</unmanaged>
  13591. <unmanaged-short>D3DMULTISAMPLE_TYPE</unmanaged-short>
  13592. </member>
  13593. <member name="F:SharpDX.Direct3D9.MultisampleType.None">
  13594. <summary>
  13595. <dd> <p>No level of full-scene multisampling is available. </p> </dd>
  13596. </summary>
  13597. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_NONE']/*" />
  13598. <msdn-id>bb172574</msdn-id>
  13599. <unmanaged>D3DMULTISAMPLE_NONE</unmanaged>
  13600. <unmanaged-short>D3DMULTISAMPLE_NONE</unmanaged-short>
  13601. </member>
  13602. <member name="F:SharpDX.Direct3D9.MultisampleType.NonMaskable">
  13603. <summary>
  13604. <dd> <p>Enables the multisample quality value. See Remarks. </p> </dd>
  13605. </summary>
  13606. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_NONMASKABLE']/*" />
  13607. <msdn-id>bb172574</msdn-id>
  13608. <unmanaged>D3DMULTISAMPLE_NONMASKABLE</unmanaged>
  13609. <unmanaged-short>D3DMULTISAMPLE_NONMASKABLE</unmanaged-short>
  13610. </member>
  13611. <member name="F:SharpDX.Direct3D9.MultisampleType.TwoSamples">
  13612. <summary>
  13613. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13614. </summary>
  13615. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_2_SAMPLES']/*" />
  13616. <msdn-id>bb172574</msdn-id>
  13617. <unmanaged>D3DMULTISAMPLE_2_SAMPLES</unmanaged>
  13618. <unmanaged-short>D3DMULTISAMPLE_2_SAMPLES</unmanaged-short>
  13619. </member>
  13620. <member name="F:SharpDX.Direct3D9.MultisampleType.ThreeSamples">
  13621. <summary>
  13622. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13623. </summary>
  13624. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_3_SAMPLES']/*" />
  13625. <msdn-id>bb172574</msdn-id>
  13626. <unmanaged>D3DMULTISAMPLE_3_SAMPLES</unmanaged>
  13627. <unmanaged-short>D3DMULTISAMPLE_3_SAMPLES</unmanaged-short>
  13628. </member>
  13629. <member name="F:SharpDX.Direct3D9.MultisampleType.FourSamples">
  13630. <summary>
  13631. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13632. </summary>
  13633. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_4_SAMPLES']/*" />
  13634. <msdn-id>bb172574</msdn-id>
  13635. <unmanaged>D3DMULTISAMPLE_4_SAMPLES</unmanaged>
  13636. <unmanaged-short>D3DMULTISAMPLE_4_SAMPLES</unmanaged-short>
  13637. </member>
  13638. <member name="F:SharpDX.Direct3D9.MultisampleType.FiveSamples">
  13639. <summary>
  13640. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13641. </summary>
  13642. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_5_SAMPLES']/*" />
  13643. <msdn-id>bb172574</msdn-id>
  13644. <unmanaged>D3DMULTISAMPLE_5_SAMPLES</unmanaged>
  13645. <unmanaged-short>D3DMULTISAMPLE_5_SAMPLES</unmanaged-short>
  13646. </member>
  13647. <member name="F:SharpDX.Direct3D9.MultisampleType.SixSamples">
  13648. <summary>
  13649. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13650. </summary>
  13651. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_6_SAMPLES']/*" />
  13652. <msdn-id>bb172574</msdn-id>
  13653. <unmanaged>D3DMULTISAMPLE_6_SAMPLES</unmanaged>
  13654. <unmanaged-short>D3DMULTISAMPLE_6_SAMPLES</unmanaged-short>
  13655. </member>
  13656. <member name="F:SharpDX.Direct3D9.MultisampleType.SevenSamples">
  13657. <summary>
  13658. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13659. </summary>
  13660. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_7_SAMPLES']/*" />
  13661. <msdn-id>bb172574</msdn-id>
  13662. <unmanaged>D3DMULTISAMPLE_7_SAMPLES</unmanaged>
  13663. <unmanaged-short>D3DMULTISAMPLE_7_SAMPLES</unmanaged-short>
  13664. </member>
  13665. <member name="F:SharpDX.Direct3D9.MultisampleType.EightSamples">
  13666. <summary>
  13667. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13668. </summary>
  13669. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_8_SAMPLES']/*" />
  13670. <msdn-id>bb172574</msdn-id>
  13671. <unmanaged>D3DMULTISAMPLE_8_SAMPLES</unmanaged>
  13672. <unmanaged-short>D3DMULTISAMPLE_8_SAMPLES</unmanaged-short>
  13673. </member>
  13674. <member name="F:SharpDX.Direct3D9.MultisampleType.NineSamples">
  13675. <summary>
  13676. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13677. </summary>
  13678. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_9_SAMPLES']/*" />
  13679. <msdn-id>bb172574</msdn-id>
  13680. <unmanaged>D3DMULTISAMPLE_9_SAMPLES</unmanaged>
  13681. <unmanaged-short>D3DMULTISAMPLE_9_SAMPLES</unmanaged-short>
  13682. </member>
  13683. <member name="F:SharpDX.Direct3D9.MultisampleType.TenSamples">
  13684. <summary>
  13685. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13686. </summary>
  13687. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_10_SAMPLES']/*" />
  13688. <msdn-id>bb172574</msdn-id>
  13689. <unmanaged>D3DMULTISAMPLE_10_SAMPLES</unmanaged>
  13690. <unmanaged-short>D3DMULTISAMPLE_10_SAMPLES</unmanaged-short>
  13691. </member>
  13692. <member name="F:SharpDX.Direct3D9.MultisampleType.ElevenSamples">
  13693. <summary>
  13694. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13695. </summary>
  13696. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_11_SAMPLES']/*" />
  13697. <msdn-id>bb172574</msdn-id>
  13698. <unmanaged>D3DMULTISAMPLE_11_SAMPLES</unmanaged>
  13699. <unmanaged-short>D3DMULTISAMPLE_11_SAMPLES</unmanaged-short>
  13700. </member>
  13701. <member name="F:SharpDX.Direct3D9.MultisampleType.TwelveSamples">
  13702. <summary>
  13703. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13704. </summary>
  13705. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_12_SAMPLES']/*" />
  13706. <msdn-id>bb172574</msdn-id>
  13707. <unmanaged>D3DMULTISAMPLE_12_SAMPLES</unmanaged>
  13708. <unmanaged-short>D3DMULTISAMPLE_12_SAMPLES</unmanaged-short>
  13709. </member>
  13710. <member name="F:SharpDX.Direct3D9.MultisampleType.ThirteenSamples">
  13711. <summary>
  13712. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13713. </summary>
  13714. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_13_SAMPLES']/*" />
  13715. <msdn-id>bb172574</msdn-id>
  13716. <unmanaged>D3DMULTISAMPLE_13_SAMPLES</unmanaged>
  13717. <unmanaged-short>D3DMULTISAMPLE_13_SAMPLES</unmanaged-short>
  13718. </member>
  13719. <member name="F:SharpDX.Direct3D9.MultisampleType.FourteenSamples">
  13720. <summary>
  13721. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13722. </summary>
  13723. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_14_SAMPLES']/*" />
  13724. <msdn-id>bb172574</msdn-id>
  13725. <unmanaged>D3DMULTISAMPLE_14_SAMPLES</unmanaged>
  13726. <unmanaged-short>D3DMULTISAMPLE_14_SAMPLES</unmanaged-short>
  13727. </member>
  13728. <member name="F:SharpDX.Direct3D9.MultisampleType.FifteenSamples">
  13729. <summary>
  13730. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13731. </summary>
  13732. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_15_SAMPLES']/*" />
  13733. <msdn-id>bb172574</msdn-id>
  13734. <unmanaged>D3DMULTISAMPLE_15_SAMPLES</unmanaged>
  13735. <unmanaged-short>D3DMULTISAMPLE_15_SAMPLES</unmanaged-short>
  13736. </member>
  13737. <member name="F:SharpDX.Direct3D9.MultisampleType.SixteenSamples">
  13738. <summary>
  13739. <dd> <p>Level of full-scene multisampling available. </p> </dd>
  13740. </summary>
  13741. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMULTISAMPLE_16_SAMPLES']/*" />
  13742. <msdn-id>bb172574</msdn-id>
  13743. <unmanaged>D3DMULTISAMPLE_16_SAMPLES</unmanaged>
  13744. <unmanaged-short>D3DMULTISAMPLE_16_SAMPLES</unmanaged-short>
  13745. </member>
  13746. <member name="T:SharpDX.Direct3D9.NormalMapFlags">
  13747. <summary>
  13748. <p>Normal maps generation constants.</p>
  13749. </summary>
  13750. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_NORMALMAP']/*" />
  13751. <msdn-id>bb205566</msdn-id>
  13752. <unmanaged>D3DX_NORMALMAP</unmanaged>
  13753. <unmanaged-short>D3DX_NORMALMAP</unmanaged-short>
  13754. </member>
  13755. <member name="F:SharpDX.Direct3D9.NormalMapFlags.MirrorU">
  13756. <summary>
  13757. No documentation.
  13758. </summary>
  13759. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_NORMALMAP_MIRROR_U']/*" />
  13760. <msdn-id>bb205566</msdn-id>
  13761. <unmanaged>D3DX_NORMALMAP_MIRROR_U</unmanaged>
  13762. <unmanaged-short>D3DX_NORMALMAP_MIRROR_U</unmanaged-short>
  13763. </member>
  13764. <member name="F:SharpDX.Direct3D9.NormalMapFlags.MirrorV">
  13765. <summary>
  13766. No documentation.
  13767. </summary>
  13768. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_NORMALMAP_MIRROR_V']/*" />
  13769. <msdn-id>bb205566</msdn-id>
  13770. <unmanaged>D3DX_NORMALMAP_MIRROR_V</unmanaged>
  13771. <unmanaged-short>D3DX_NORMALMAP_MIRROR_V</unmanaged-short>
  13772. </member>
  13773. <member name="F:SharpDX.Direct3D9.NormalMapFlags.Mirror">
  13774. <summary>
  13775. No documentation.
  13776. </summary>
  13777. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_NORMALMAP_MIRROR']/*" />
  13778. <msdn-id>bb205566</msdn-id>
  13779. <unmanaged>D3DX_NORMALMAP_MIRROR</unmanaged>
  13780. <unmanaged-short>D3DX_NORMALMAP_MIRROR</unmanaged-short>
  13781. </member>
  13782. <member name="F:SharpDX.Direct3D9.NormalMapFlags.InvertSign">
  13783. <summary>
  13784. No documentation.
  13785. </summary>
  13786. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_NORMALMAP_INVERTSIGN']/*" />
  13787. <msdn-id>bb205566</msdn-id>
  13788. <unmanaged>D3DX_NORMALMAP_INVERTSIGN</unmanaged>
  13789. <unmanaged-short>D3DX_NORMALMAP_INVERTSIGN</unmanaged-short>
  13790. </member>
  13791. <member name="F:SharpDX.Direct3D9.NormalMapFlags.ComputeOcclusion">
  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='D3DX_NORMALMAP_COMPUTE_OCCLUSION']/*" />
  13796. <msdn-id>bb205566</msdn-id>
  13797. <unmanaged>D3DX_NORMALMAP_COMPUTE_OCCLUSION</unmanaged>
  13798. <unmanaged-short>D3DX_NORMALMAP_COMPUTE_OCCLUSION</unmanaged-short>
  13799. </member>
  13800. <member name="T:SharpDX.Direct3D9.ParameterClass">
  13801. <summary>
  13802. <p>The type of object.</p>
  13803. </summary>
  13804. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_CLASS']/*" />
  13805. <msdn-id>bb205378</msdn-id>
  13806. <unmanaged>D3DXPARAMETER_CLASS</unmanaged>
  13807. <unmanaged-short>D3DXPARAMETER_CLASS</unmanaged-short>
  13808. </member>
  13809. <member name="F:SharpDX.Direct3D9.ParameterClass.Scalar">
  13810. <summary>
  13811. <dd> <p>Constant is a scalar.</p> </dd>
  13812. </summary>
  13813. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPC_SCALAR']/*" />
  13814. <msdn-id>bb205378</msdn-id>
  13815. <unmanaged>D3DXPC_SCALAR</unmanaged>
  13816. <unmanaged-short>D3DXPC_SCALAR</unmanaged-short>
  13817. </member>
  13818. <member name="F:SharpDX.Direct3D9.ParameterClass.Vector">
  13819. <summary>
  13820. <dd> <p>Constant is a vector.</p> </dd>
  13821. </summary>
  13822. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPC_VECTOR']/*" />
  13823. <msdn-id>bb205378</msdn-id>
  13824. <unmanaged>D3DXPC_VECTOR</unmanaged>
  13825. <unmanaged-short>D3DXPC_VECTOR</unmanaged-short>
  13826. </member>
  13827. <member name="F:SharpDX.Direct3D9.ParameterClass.MatrixRows">
  13828. <summary>
  13829. <dd> <p>Constant is a row major matrix.</p> </dd>
  13830. </summary>
  13831. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPC_MATRIX_ROWS']/*" />
  13832. <msdn-id>bb205378</msdn-id>
  13833. <unmanaged>D3DXPC_MATRIX_ROWS</unmanaged>
  13834. <unmanaged-short>D3DXPC_MATRIX_ROWS</unmanaged-short>
  13835. </member>
  13836. <member name="F:SharpDX.Direct3D9.ParameterClass.MatrixColumns">
  13837. <summary>
  13838. <dd> <p>Constant is a column major matrix.</p> </dd>
  13839. </summary>
  13840. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPC_MATRIX_COLUMNS']/*" />
  13841. <msdn-id>bb205378</msdn-id>
  13842. <unmanaged>D3DXPC_MATRIX_COLUMNS</unmanaged>
  13843. <unmanaged-short>D3DXPC_MATRIX_COLUMNS</unmanaged-short>
  13844. </member>
  13845. <member name="F:SharpDX.Direct3D9.ParameterClass.Object">
  13846. <summary>
  13847. <dd> <p>Constant is either a texture, shader, or a string.</p> </dd>
  13848. </summary>
  13849. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPC_OBJECT']/*" />
  13850. <msdn-id>bb205378</msdn-id>
  13851. <unmanaged>D3DXPC_OBJECT</unmanaged>
  13852. <unmanaged-short>D3DXPC_OBJECT</unmanaged-short>
  13853. </member>
  13854. <member name="F:SharpDX.Direct3D9.ParameterClass.Struct">
  13855. <summary>
  13856. <dd> <p>Constant is a structure.</p> </dd>
  13857. </summary>
  13858. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPC_STRUCT']/*" />
  13859. <msdn-id>bb205378</msdn-id>
  13860. <unmanaged>D3DXPC_STRUCT</unmanaged>
  13861. <unmanaged-short>D3DXPC_STRUCT</unmanaged-short>
  13862. </member>
  13863. <member name="T:SharpDX.Direct3D9.ParameterFlags">
  13864. <summary>
  13865. <p>These flags provide additional information about effect parameters.</p><p>Effect parameter constants are used by <strong><see cref="T:SharpDX.Direct3D9.ParameterDescription" /></strong>.</p><p />
  13866. </summary>
  13867. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_PARAMETER']/*" />
  13868. <msdn-id>bb205567</msdn-id>
  13869. <unmanaged>D3DX_PARAMETER</unmanaged>
  13870. <unmanaged-short>D3DX_PARAMETER</unmanaged-short>
  13871. </member>
  13872. <member name="F:SharpDX.Direct3D9.ParameterFlags.Shared">
  13873. <summary>
  13874. No documentation.
  13875. </summary>
  13876. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_PARAMETER_SHARED']/*" />
  13877. <msdn-id>bb205567</msdn-id>
  13878. <unmanaged>D3DX_PARAMETER_SHARED</unmanaged>
  13879. <unmanaged-short>D3DX_PARAMETER_SHARED</unmanaged-short>
  13880. </member>
  13881. <member name="F:SharpDX.Direct3D9.ParameterFlags.Literal">
  13882. <summary>
  13883. No documentation.
  13884. </summary>
  13885. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_PARAMETER_LITERAL']/*" />
  13886. <msdn-id>bb205567</msdn-id>
  13887. <unmanaged>D3DX_PARAMETER_LITERAL</unmanaged>
  13888. <unmanaged-short>D3DX_PARAMETER_LITERAL</unmanaged-short>
  13889. </member>
  13890. <member name="F:SharpDX.Direct3D9.ParameterFlags.Annotation">
  13891. <summary>
  13892. No documentation.
  13893. </summary>
  13894. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_PARAMETER_ANNOTATION']/*" />
  13895. <msdn-id>bb205567</msdn-id>
  13896. <unmanaged>D3DX_PARAMETER_ANNOTATION</unmanaged>
  13897. <unmanaged-short>D3DX_PARAMETER_ANNOTATION</unmanaged-short>
  13898. </member>
  13899. <member name="F:SharpDX.Direct3D9.ParameterFlags.None">
  13900. <summary>
  13901. None.
  13902. </summary>
  13903. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  13904. <unmanaged>None</unmanaged>
  13905. <unmanaged-short>None</unmanaged-short>
  13906. </member>
  13907. <member name="T:SharpDX.Direct3D9.ParameterType">
  13908. <summary>
  13909. <p>Describes the data contained by the enumeration.</p>
  13910. </summary>
  13911. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_TYPE']/*" />
  13912. <msdn-id>bb205380</msdn-id>
  13913. <unmanaged>D3DXPARAMETER_TYPE</unmanaged>
  13914. <unmanaged-short>D3DXPARAMETER_TYPE</unmanaged-short>
  13915. </member>
  13916. <member name="F:SharpDX.Direct3D9.ParameterType.Void">
  13917. <summary>
  13918. <dd> <p>Parameter is a void reference.</p> </dd>
  13919. </summary>
  13920. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_VOID']/*" />
  13921. <msdn-id>bb205380</msdn-id>
  13922. <unmanaged>D3DXPT_VOID</unmanaged>
  13923. <unmanaged-short>D3DXPT_VOID</unmanaged-short>
  13924. </member>
  13925. <member name="F:SharpDX.Direct3D9.ParameterType.Bool">
  13926. <summary>
  13927. <dd> <p>Parameter is a Boolean. Any non-zero value passed into <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.SetBool(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.SetBoolArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool[],System.Int32)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Boolean)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.SetVector(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4)" /></strong>, or <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.SetVectorArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4[],System.Int32)" /></strong> will be mapped to 1 (TRUE) before being written into the constant table; otherwise, the value will be set to 0 in the constant table.</p> </dd>
  13928. </summary>
  13929. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_BOOL']/*" />
  13930. <msdn-id>bb205380</msdn-id>
  13931. <unmanaged>D3DXPT_BOOL</unmanaged>
  13932. <unmanaged-short>D3DXPT_BOOL</unmanaged-short>
  13933. </member>
  13934. <member name="F:SharpDX.Direct3D9.ParameterType.Int">
  13935. <summary>
  13936. <dd> <p>Parameter is an integer. Any floating-point values passed into <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.SetValue(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,System.Boolean)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.SetVector(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4)" /></strong>, or <strong><see cref="M:SharpDX.Direct3D9.ConstantTable.SetVectorArray(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4[],System.Int32)" /></strong> will be rounded off (to zero decimal places) before being written into the constant table.</p> </dd>
  13937. </summary>
  13938. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_INT']/*" />
  13939. <msdn-id>bb205380</msdn-id>
  13940. <unmanaged>D3DXPT_INT</unmanaged>
  13941. <unmanaged-short>D3DXPT_INT</unmanaged-short>
  13942. </member>
  13943. <member name="F:SharpDX.Direct3D9.ParameterType.Float">
  13944. <summary>
  13945. <dd> <p>Parameter is a floating-point number.</p> </dd>
  13946. </summary>
  13947. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_FLOAT']/*" />
  13948. <msdn-id>bb205380</msdn-id>
  13949. <unmanaged>D3DXPT_FLOAT</unmanaged>
  13950. <unmanaged-short>D3DXPT_FLOAT</unmanaged-short>
  13951. </member>
  13952. <member name="F:SharpDX.Direct3D9.ParameterType.String">
  13953. <summary>
  13954. <dd> <p>Parameter is a string.</p> </dd>
  13955. </summary>
  13956. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_STRING']/*" />
  13957. <msdn-id>bb205380</msdn-id>
  13958. <unmanaged>D3DXPT_STRING</unmanaged>
  13959. <unmanaged-short>D3DXPT_STRING</unmanaged-short>
  13960. </member>
  13961. <member name="F:SharpDX.Direct3D9.ParameterType.Texture">
  13962. <summary>
  13963. <dd> <p>Parameter is a texture.</p> </dd>
  13964. </summary>
  13965. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_TEXTURE']/*" />
  13966. <msdn-id>bb205380</msdn-id>
  13967. <unmanaged>D3DXPT_TEXTURE</unmanaged>
  13968. <unmanaged-short>D3DXPT_TEXTURE</unmanaged-short>
  13969. </member>
  13970. <member name="F:SharpDX.Direct3D9.ParameterType.Texture1D">
  13971. <summary>
  13972. <dd> <p>Parameter is a 1D texture.</p> </dd>
  13973. </summary>
  13974. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_TEXTURE1D']/*" />
  13975. <msdn-id>bb205380</msdn-id>
  13976. <unmanaged>D3DXPT_TEXTURE1D</unmanaged>
  13977. <unmanaged-short>D3DXPT_TEXTURE1D</unmanaged-short>
  13978. </member>
  13979. <member name="F:SharpDX.Direct3D9.ParameterType.Texture2D">
  13980. <summary>
  13981. <dd> <p>Parameter is a 2D texture.</p> </dd>
  13982. </summary>
  13983. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_TEXTURE2D']/*" />
  13984. <msdn-id>bb205380</msdn-id>
  13985. <unmanaged>D3DXPT_TEXTURE2D</unmanaged>
  13986. <unmanaged-short>D3DXPT_TEXTURE2D</unmanaged-short>
  13987. </member>
  13988. <member name="F:SharpDX.Direct3D9.ParameterType.Texture3D">
  13989. <summary>
  13990. <dd> <p>Parameter is a 3D texture.</p> </dd>
  13991. </summary>
  13992. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_TEXTURE3D']/*" />
  13993. <msdn-id>bb205380</msdn-id>
  13994. <unmanaged>D3DXPT_TEXTURE3D</unmanaged>
  13995. <unmanaged-short>D3DXPT_TEXTURE3D</unmanaged-short>
  13996. </member>
  13997. <member name="F:SharpDX.Direct3D9.ParameterType.TextureCube">
  13998. <summary>
  13999. <dd> <p>Parameter is a cube texture.</p> </dd>
  14000. </summary>
  14001. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_TEXTURECUBE']/*" />
  14002. <msdn-id>bb205380</msdn-id>
  14003. <unmanaged>D3DXPT_TEXTURECUBE</unmanaged>
  14004. <unmanaged-short>D3DXPT_TEXTURECUBE</unmanaged-short>
  14005. </member>
  14006. <member name="F:SharpDX.Direct3D9.ParameterType.Sampler">
  14007. <summary>
  14008. <dd> <p>Parameter is a sampler.</p> </dd>
  14009. </summary>
  14010. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_SAMPLER']/*" />
  14011. <msdn-id>bb205380</msdn-id>
  14012. <unmanaged>D3DXPT_SAMPLER</unmanaged>
  14013. <unmanaged-short>D3DXPT_SAMPLER</unmanaged-short>
  14014. </member>
  14015. <member name="F:SharpDX.Direct3D9.ParameterType.Sampler1D">
  14016. <summary>
  14017. <dd> <p>Parameter is a 1D sampler.</p> </dd>
  14018. </summary>
  14019. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_SAMPLER1D']/*" />
  14020. <msdn-id>bb205380</msdn-id>
  14021. <unmanaged>D3DXPT_SAMPLER1D</unmanaged>
  14022. <unmanaged-short>D3DXPT_SAMPLER1D</unmanaged-short>
  14023. </member>
  14024. <member name="F:SharpDX.Direct3D9.ParameterType.Sampler2D">
  14025. <summary>
  14026. <dd> <p>Parameter is a 2D sampler.</p> </dd>
  14027. </summary>
  14028. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_SAMPLER2D']/*" />
  14029. <msdn-id>bb205380</msdn-id>
  14030. <unmanaged>D3DXPT_SAMPLER2D</unmanaged>
  14031. <unmanaged-short>D3DXPT_SAMPLER2D</unmanaged-short>
  14032. </member>
  14033. <member name="F:SharpDX.Direct3D9.ParameterType.Sampler3D">
  14034. <summary>
  14035. <dd> <p>Parameter is a 3D sampler.</p> </dd>
  14036. </summary>
  14037. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_SAMPLER3D']/*" />
  14038. <msdn-id>bb205380</msdn-id>
  14039. <unmanaged>D3DXPT_SAMPLER3D</unmanaged>
  14040. <unmanaged-short>D3DXPT_SAMPLER3D</unmanaged-short>
  14041. </member>
  14042. <member name="F:SharpDX.Direct3D9.ParameterType.SamplerCube">
  14043. <summary>
  14044. <dd> <p>Parameter is a cube sampler.</p> </dd>
  14045. </summary>
  14046. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_SAMPLERCUBE']/*" />
  14047. <msdn-id>bb205380</msdn-id>
  14048. <unmanaged>D3DXPT_SAMPLERCUBE</unmanaged>
  14049. <unmanaged-short>D3DXPT_SAMPLERCUBE</unmanaged-short>
  14050. </member>
  14051. <member name="F:SharpDX.Direct3D9.ParameterType.PixelShader">
  14052. <summary>
  14053. <dd> <p>Parameter is a pixel shader.</p> </dd>
  14054. </summary>
  14055. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_PIXELSHADER']/*" />
  14056. <msdn-id>bb205380</msdn-id>
  14057. <unmanaged>D3DXPT_PIXELSHADER</unmanaged>
  14058. <unmanaged-short>D3DXPT_PIXELSHADER</unmanaged-short>
  14059. </member>
  14060. <member name="F:SharpDX.Direct3D9.ParameterType.VertexShader">
  14061. <summary>
  14062. <dd> <p>Parameter is a vertex shader.</p> </dd>
  14063. </summary>
  14064. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_VERTEXSHADER']/*" />
  14065. <msdn-id>bb205380</msdn-id>
  14066. <unmanaged>D3DXPT_VERTEXSHADER</unmanaged>
  14067. <unmanaged-short>D3DXPT_VERTEXSHADER</unmanaged-short>
  14068. </member>
  14069. <member name="F:SharpDX.Direct3D9.ParameterType.PixelFragment">
  14070. <summary>
  14071. <dd> <p>Parameter is a pixel shader fragment.</p> </dd>
  14072. </summary>
  14073. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_PIXELFRAGMENT']/*" />
  14074. <msdn-id>bb205380</msdn-id>
  14075. <unmanaged>D3DXPT_PIXELFRAGMENT</unmanaged>
  14076. <unmanaged-short>D3DXPT_PIXELFRAGMENT</unmanaged-short>
  14077. </member>
  14078. <member name="F:SharpDX.Direct3D9.ParameterType.VertexFragment">
  14079. <summary>
  14080. <dd> <p>Parameter is a vertex shader fragment.</p> </dd>
  14081. </summary>
  14082. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_VERTEXFRAGMENT']/*" />
  14083. <msdn-id>bb205380</msdn-id>
  14084. <unmanaged>D3DXPT_VERTEXFRAGMENT</unmanaged>
  14085. <unmanaged-short>D3DXPT_VERTEXFRAGMENT</unmanaged-short>
  14086. </member>
  14087. <member name="F:SharpDX.Direct3D9.ParameterType.Unsupported">
  14088. <summary>
  14089. <dd> <p>Parameter is not supported.</p> </dd>
  14090. </summary>
  14091. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPT_UNSUPPORTED']/*" />
  14092. <msdn-id>bb205380</msdn-id>
  14093. <unmanaged>D3DXPT_UNSUPPORTED</unmanaged>
  14094. <unmanaged-short>D3DXPT_UNSUPPORTED</unmanaged-short>
  14095. </member>
  14096. <member name="T:SharpDX.Direct3D9.PatchEdgeStyle">
  14097. <summary>
  14098. <p>Defines whether the current tessellation mode is discrete or continuous.</p>
  14099. </summary>
  14100. <remarks>
  14101. <p>Note that continuous tessellation produces a completely different tessellation pattern from the discrete one for the same tessellation values (this is more apparent in wireframe mode). Thus, 4.0 continuous is not the same as 4 discrete.</p>
  14102. </remarks>
  14103. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPATCHEDGESTYLE']/*" />
  14104. <msdn-id>bb172575</msdn-id>
  14105. <unmanaged>D3DPATCHEDGESTYLE</unmanaged>
  14106. <unmanaged-short>D3DPATCHEDGESTYLE</unmanaged-short>
  14107. </member>
  14108. <member name="F:SharpDX.Direct3D9.PatchEdgeStyle.Discrete">
  14109. <summary>
  14110. <dd> <p>Discrete edge style. In discrete mode, you can specify float tessellation but it will be truncated to integers. </p> </dd>
  14111. </summary>
  14112. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPATCHEDGE_DISCRETE']/*" />
  14113. <msdn-id>bb172575</msdn-id>
  14114. <unmanaged>D3DPATCHEDGE_DISCRETE</unmanaged>
  14115. <unmanaged-short>D3DPATCHEDGE_DISCRETE</unmanaged-short>
  14116. </member>
  14117. <member name="F:SharpDX.Direct3D9.PatchEdgeStyle.Continuous">
  14118. <summary>
  14119. <dd> <p>Continuous edge style. In continuous mode, tessellation is specified as float values that can be smoothly varied to reduce "popping" artifacts. </p> </dd>
  14120. </summary>
  14121. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPATCHEDGE_CONTINUOUS']/*" />
  14122. <msdn-id>bb172575</msdn-id>
  14123. <unmanaged>D3DPATCHEDGE_CONTINUOUS</unmanaged>
  14124. <unmanaged-short>D3DPATCHEDGE_CONTINUOUS</unmanaged-short>
  14125. </member>
  14126. <member name="T:SharpDX.Direct3D9.PatchMeshType">
  14127. <summary>
  14128. <p>Mesh patch types.</p>
  14129. </summary>
  14130. <remarks>
  14131. <p>Triangle patches have three sides and are described in <strong><see cref="T:SharpDX.Direct3D9.TrianglePatchInfo" /></strong>. Rectangle patches are four-sided and are described in <strong><see cref="T:SharpDX.Direct3D9.RectanglePatchInfo" /></strong>. </p>
  14132. </remarks>
  14133. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPATCHMESHTYPE']/*" />
  14134. <msdn-id>bb205384</msdn-id>
  14135. <unmanaged>D3DXPATCHMESHTYPE</unmanaged>
  14136. <unmanaged-short>D3DXPATCHMESHTYPE</unmanaged-short>
  14137. </member>
  14138. <member name="F:SharpDX.Direct3D9.PatchMeshType.Rectangle">
  14139. <summary>
  14140. <dd> <p>Rectangle patch mesh type.</p> </dd>
  14141. </summary>
  14142. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPATCHMESH_RECT']/*" />
  14143. <msdn-id>bb205384</msdn-id>
  14144. <unmanaged>D3DXPATCHMESH_RECT</unmanaged>
  14145. <unmanaged-short>D3DXPATCHMESH_RECT</unmanaged-short>
  14146. </member>
  14147. <member name="F:SharpDX.Direct3D9.PatchMeshType.Triangle">
  14148. <summary>
  14149. <dd> <p>Triangle patch mesh type.</p> </dd>
  14150. </summary>
  14151. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPATCHMESH_TRI']/*" />
  14152. <msdn-id>bb205384</msdn-id>
  14153. <unmanaged>D3DXPATCHMESH_TRI</unmanaged>
  14154. <unmanaged-short>D3DXPATCHMESH_TRI</unmanaged-short>
  14155. </member>
  14156. <member name="F:SharpDX.Direct3D9.PatchMeshType.NPatch">
  14157. <summary>
  14158. <dd> <p>N-patch mesh type.</p> </dd>
  14159. </summary>
  14160. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPATCHMESH_NPATCH']/*" />
  14161. <msdn-id>bb205384</msdn-id>
  14162. <unmanaged>D3DXPATCHMESH_NPATCH</unmanaged>
  14163. <unmanaged-short>D3DXPATCHMESH_NPATCH</unmanaged-short>
  14164. </member>
  14165. <member name="T:SharpDX.Direct3D9.PixelShaderCaps">
  14166. <summary>
  14167. No documentation.
  14168. </summary>
  14169. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPS20CAPS']/*" />
  14170. <unmanaged>D3DPS20CAPS</unmanaged>
  14171. <unmanaged-short>D3DPS20CAPS</unmanaged-short>
  14172. </member>
  14173. <member name="F:SharpDX.Direct3D9.PixelShaderCaps.ArbitrarySwizzle">
  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='D3DPS20CAPS_ARBITRARYSWIZZLE']/*" />
  14178. <unmanaged>D3DPS20CAPS_ARBITRARYSWIZZLE</unmanaged>
  14179. <unmanaged-short>D3DPS20CAPS_ARBITRARYSWIZZLE</unmanaged-short>
  14180. </member>
  14181. <member name="F:SharpDX.Direct3D9.PixelShaderCaps.GradientInstructions">
  14182. <summary>
  14183. No documentation.
  14184. </summary>
  14185. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPS20CAPS_GRADIENTINSTRUCTIONS']/*" />
  14186. <unmanaged>D3DPS20CAPS_GRADIENTINSTRUCTIONS</unmanaged>
  14187. <unmanaged-short>D3DPS20CAPS_GRADIENTINSTRUCTIONS</unmanaged-short>
  14188. </member>
  14189. <member name="F:SharpDX.Direct3D9.PixelShaderCaps.Predication">
  14190. <summary>
  14191. No documentation.
  14192. </summary>
  14193. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPS20CAPS_PREDICATION']/*" />
  14194. <unmanaged>D3DPS20CAPS_PREDICATION</unmanaged>
  14195. <unmanaged-short>D3DPS20CAPS_PREDICATION</unmanaged-short>
  14196. </member>
  14197. <member name="F:SharpDX.Direct3D9.PixelShaderCaps.NoDependentReadLimit">
  14198. <summary>
  14199. No documentation.
  14200. </summary>
  14201. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPS20CAPS_NODEPENDENTREADLIMIT']/*" />
  14202. <unmanaged>D3DPS20CAPS_NODEPENDENTREADLIMIT</unmanaged>
  14203. <unmanaged-short>D3DPS20CAPS_NODEPENDENTREADLIMIT</unmanaged-short>
  14204. </member>
  14205. <member name="F:SharpDX.Direct3D9.PixelShaderCaps.NoTextureInstructionLimit">
  14206. <summary>
  14207. No documentation.
  14208. </summary>
  14209. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPS20CAPS_NOTEXINSTRUCTIONLIMIT']/*" />
  14210. <unmanaged>D3DPS20CAPS_NOTEXINSTRUCTIONLIMIT</unmanaged>
  14211. <unmanaged-short>D3DPS20CAPS_NOTEXINSTRUCTIONLIMIT</unmanaged-short>
  14212. </member>
  14213. <member name="F:SharpDX.Direct3D9.PixelShaderCaps.None">
  14214. <summary>
  14215. None.
  14216. </summary>
  14217. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  14218. <unmanaged>None</unmanaged>
  14219. <unmanaged-short>None</unmanaged-short>
  14220. </member>
  14221. <member name="T:SharpDX.Direct3D9.PlaybackType">
  14222. <summary>
  14223. <p>Defines the type of animation set looping modes used for playback.</p>
  14224. </summary>
  14225. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPLAYBACK_TYPE']/*" />
  14226. <msdn-id>bb205397</msdn-id>
  14227. <unmanaged>D3DXPLAYBACK_TYPE</unmanaged>
  14228. <unmanaged-short>D3DXPLAYBACK_TYPE</unmanaged-short>
  14229. </member>
  14230. <member name="F:SharpDX.Direct3D9.PlaybackType.Loop">
  14231. <summary>
  14232. <dd> <p>The animation repeats endlessly.</p> </dd>
  14233. </summary>
  14234. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPLAY_LOOP']/*" />
  14235. <msdn-id>bb205397</msdn-id>
  14236. <unmanaged>D3DXPLAY_LOOP</unmanaged>
  14237. <unmanaged-short>D3DXPLAY_LOOP</unmanaged-short>
  14238. </member>
  14239. <member name="F:SharpDX.Direct3D9.PlaybackType.Once">
  14240. <summary>
  14241. <dd> <p>The animation plays once, and then it stops on the last frame.</p> </dd>
  14242. </summary>
  14243. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPLAY_ONCE']/*" />
  14244. <msdn-id>bb205397</msdn-id>
  14245. <unmanaged>D3DXPLAY_ONCE</unmanaged>
  14246. <unmanaged-short>D3DXPLAY_ONCE</unmanaged-short>
  14247. </member>
  14248. <member name="F:SharpDX.Direct3D9.PlaybackType.PingPong">
  14249. <summary>
  14250. <dd> <p>The animation alternates endlessly between playing forward and playing backward.</p> </dd>
  14251. </summary>
  14252. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPLAY_PINGPONG']/*" />
  14253. <msdn-id>bb205397</msdn-id>
  14254. <unmanaged>D3DXPLAY_PINGPONG</unmanaged>
  14255. <unmanaged-short>D3DXPLAY_PINGPONG</unmanaged-short>
  14256. </member>
  14257. <member name="T:SharpDX.Direct3D9.Pool">
  14258. <summary>
  14259. <p>Defines the memory class that holds the buffers for a resource.</p>
  14260. </summary>
  14261. <remarks>
  14262. <p>All pool types are valid with all resources including: vertex buffers, index buffers, textures, and surfaces.</p><p>The following tables indicate restrictions on pool types for render targets, depth stencils, and dynamic and mipmap usages. An x indicates a compatible combination; lack of an x indicates incompatibility.</p><table> <tr><th>Pool</th><th><see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /></th><th><see cref="F:SharpDX.Direct3D9.Usage.DepthStencil" /></th></tr> <tr><th><see cref="F:SharpDX.Direct3D9.Pool.Default" /></th><td>x</td><td>x</td></tr> <tr><th><see cref="F:SharpDX.Direct3D9.Pool.Managed" /></th><td /><td /></tr> <tr><th><see cref="F:SharpDX.Direct3D9.Pool.Scratch" /></th><td /><td /></tr> <tr><th><see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /></th><td /><td /></tr> </table><p>?</p><table> <tr><th>Pool</th><th><see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /></th><th><see cref="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap" /></th></tr> <tr><th><see cref="F:SharpDX.Direct3D9.Pool.Default" /></th><td>x</td><td>x</td></tr> <tr><th><see cref="F:SharpDX.Direct3D9.Pool.Managed" /></th><td /><td>x</td></tr> <tr><th><see cref="F:SharpDX.Direct3D9.Pool.Scratch" /></th><td /><td /></tr> <tr><th><see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /></th><td>x</td><td /></tr> </table><p>?</p><p>For more information about usage types, see <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong>.</p><p>Pools cannot be mixed for different objects contained within one resource (mip levels in a mipmap) and, when a pool is chosen, it cannot be changed.</p><p>Applications should use <see cref="F:SharpDX.Direct3D9.Pool.Managed" /> for most static resources because this saves the application from having to deal with lost devices. (Managed resources are restored by the runtime.) This is especially beneficial for unified memory architecture (UMA) systems. Other dynamic resources are not a good match for <see cref="F:SharpDX.Direct3D9.Pool.Managed" />. In fact, index buffers and vertex buffers cannot be created using <see cref="F:SharpDX.Direct3D9.Pool.Managed" /> together with <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" />.</p><p>For dynamic textures, it is sometimes desirable to use a pair of video memory and system memory textures, allocating the video memory using <see cref="F:SharpDX.Direct3D9.Pool.Default" /> and the system memory using <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" />. You can lock and modify the bits of the system memory texture using a locking method. Then you can update the video memory texture using <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong>.</p>
  14263. </remarks>
  14264. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPOOL']/*" />
  14265. <msdn-id>bb172584</msdn-id>
  14266. <unmanaged>D3DPOOL</unmanaged>
  14267. <unmanaged-short>D3DPOOL</unmanaged-short>
  14268. </member>
  14269. <member name="F:SharpDX.Direct3D9.Pool.Default">
  14270. <summary>
  14271. <dd> <p>Resources are placed in the memory pool most appropriate for the set of usages requested for the given resource. This is usually video memory, including both local video memory and AGP memory. The <see cref="F:SharpDX.Direct3D9.Pool.Default" /> pool is separate from <see cref="F:SharpDX.Direct3D9.Pool.Managed" /> and <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" />, and it specifies that the resource is placed in the preferred memory for device access. Note that <see cref="F:SharpDX.Direct3D9.Pool.Default" /> never indicates that either <see cref="F:SharpDX.Direct3D9.Pool.Managed" /> or <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /> should be chosen as the memory pool type for this resource. Textures placed in the <see cref="F:SharpDX.Direct3D9.Pool.Default" /> pool cannot be locked unless they are dynamic textures or they are private, FOURCC, driver formats. To access unlockable textures, you must use functions such as <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.Device.GetFrontBufferData(System.Int32,SharpDX.Direct3D9.Surface)" /></strong>, and <strong><see cref="M:SharpDX.Direct3D9.Device.GetRenderTargetData(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong>. <see cref="F:SharpDX.Direct3D9.Pool.Managed" /> is probably a better choice than <see cref="F:SharpDX.Direct3D9.Pool.Default" /> for most applications. Note that some textures created in driver-proprietary pixel formats, unknown to the Direct3D runtime, can be locked. Also note that - unlike textures - swap chain back buffers, render targets, vertex buffers, and index buffers can be locked. When a device is lost, resources created using <see cref="F:SharpDX.Direct3D9.Pool.Default" /> must be released before calling <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>. For more information, see Lost Devices (Direct3D 9). </p> <p>When creating resources with <see cref="F:SharpDX.Direct3D9.Pool.Default" />, if video card memory is already committed, managed resources will be evicted to free enough memory to satisfy the request.</p> </dd>
  14272. </summary>
  14273. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPOOL_DEFAULT']/*" />
  14274. <msdn-id>bb172584</msdn-id>
  14275. <unmanaged>D3DPOOL_DEFAULT</unmanaged>
  14276. <unmanaged-short>D3DPOOL_DEFAULT</unmanaged-short>
  14277. </member>
  14278. <member name="F:SharpDX.Direct3D9.Pool.Managed">
  14279. <summary>
  14280. <dd> <p>Resources are copied automatically to device-accessible memory as needed. Managed resources are backed by system memory and do not need to be recreated when a device is lost. See Managing Resources (Direct3D 9) for more information. Managed resources can be locked. Only the system-memory copy is directly modified. Direct3D copies your changes to driver-accessible memory as needed. </p> <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 9Ex:</p> <p><see cref="F:SharpDX.Direct3D9.Pool.Managed" /> is valid with <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>; however, it is not valid with <strong><see cref="T:SharpDX.Direct3D9.DeviceEx" /></strong>.</p> </td></tr> </table> <p>?</p> </dd>
  14281. </summary>
  14282. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPOOL_MANAGED']/*" />
  14283. <msdn-id>bb172584</msdn-id>
  14284. <unmanaged>D3DPOOL_MANAGED</unmanaged>
  14285. <unmanaged-short>D3DPOOL_MANAGED</unmanaged-short>
  14286. </member>
  14287. <member name="F:SharpDX.Direct3D9.Pool.SystemMemory">
  14288. <summary>
  14289. <dd> <p>Resources are placed in memory that is not typically accessible by the Direct3D device. This memory allocation consumes system RAM but does not reduce pageable RAM. These resources do not need to be recreated when a device is lost. Resources in this pool can be locked and can be used as the source for a <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong> operation to a memory resource created with <see cref="F:SharpDX.Direct3D9.Pool.Default" />. </p> </dd>
  14290. </summary>
  14291. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPOOL_SYSTEMMEM']/*" />
  14292. <msdn-id>bb172584</msdn-id>
  14293. <unmanaged>D3DPOOL_SYSTEMMEM</unmanaged>
  14294. <unmanaged-short>D3DPOOL_SYSTEMMEM</unmanaged-short>
  14295. </member>
  14296. <member name="F:SharpDX.Direct3D9.Pool.Scratch">
  14297. <summary>
  14298. <dd> <p>Resources are placed in system RAM and do not need to be recreated when a device is lost. These resources are not bound by device size or format restrictions. Because of this, these resources cannot be accessed by the Direct3D device nor set as textures or render targets. However, these resources can always be created, locked, and copied.</p> </dd>
  14299. </summary>
  14300. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPOOL_SCRATCH']/*" />
  14301. <msdn-id>bb172584</msdn-id>
  14302. <unmanaged>D3DPOOL_SCRATCH</unmanaged>
  14303. <unmanaged-short>D3DPOOL_SCRATCH</unmanaged-short>
  14304. </member>
  14305. <member name="T:SharpDX.Direct3D9.Present">
  14306. <summary>
  14307. <p>Describes the relationship between the adapter refresh rate and the rate at which <strong>Present</strong> or <strong>Present</strong> operations are completed. These values also serve as flag values for the PresentationIntervals field of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p><p />
  14308. </summary>
  14309. <remarks>
  14310. <p>Windowed mode supports <see cref="F:SharpDX.Direct3D9.PresentInterval.Default" />, <see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" />, and <see cref="F:SharpDX.Direct3D9.PresentInterval.One" />. <see cref="F:SharpDX.Direct3D9.PresentInterval.Default" /> and the <see cref="F:SharpDX.Direct3D9.PresentInterval.One" /> are nearly equivalent (see the information regarding timer resolution below). They perform similarly to COPY_VSYNC in that there is only one present per frame, and they prevent tearing with beam-following. In contrast, <see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" /> will attempt to provide an unlimited presentation rate.</p><p>Full-screen mode supports similar usage as windowed mode by supporting <see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" /> regardless of the refresh rate or swap effect. <see cref="F:SharpDX.Direct3D9.PresentInterval.Default" /> uses the default system timer resolution whereas the <see cref="F:SharpDX.Direct3D9.PresentInterval.One" /> calls <strong>timeBeginPeriod</strong> to enhance system timer resolution. This improves the quality of vertical sync, but consumes slightly more processing time. Both parameters attempt to synchronize vertically.</p>
  14311. </remarks>
  14312. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT']/*" />
  14313. <msdn-id>bb172585</msdn-id>
  14314. <unmanaged>D3DPRESENT</unmanaged>
  14315. <unmanaged-short>D3DPRESENT</unmanaged-short>
  14316. </member>
  14317. <member name="F:SharpDX.Direct3D9.Present.BackBuffersMaximum">
  14318. <summary>
  14319. No documentation.
  14320. </summary>
  14321. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_BACK_BUFFERS_MAX']/*" />
  14322. <msdn-id>bb172585</msdn-id>
  14323. <unmanaged>D3DPRESENT_BACK_BUFFERS_MAX</unmanaged>
  14324. <unmanaged-short>D3DPRESENT_BACK_BUFFERS_MAX</unmanaged-short>
  14325. </member>
  14326. <member name="F:SharpDX.Direct3D9.Present.BackBuffersMaximumEx">
  14327. <summary>
  14328. No documentation.
  14329. </summary>
  14330. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_BACK_BUFFERS_MAX_EX']/*" />
  14331. <msdn-id>bb172585</msdn-id>
  14332. <unmanaged>D3DPRESENT_BACK_BUFFERS_MAX_EX</unmanaged>
  14333. <unmanaged-short>D3DPRESENT_BACK_BUFFERS_MAX_EX</unmanaged-short>
  14334. </member>
  14335. <member name="F:SharpDX.Direct3D9.Present.DoNotWait">
  14336. <summary>
  14337. No documentation.
  14338. </summary>
  14339. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_DONOTWAIT']/*" />
  14340. <msdn-id>bb172585</msdn-id>
  14341. <unmanaged>D3DPRESENT_DONOTWAIT</unmanaged>
  14342. <unmanaged-short>D3DPRESENT_DONOTWAIT</unmanaged-short>
  14343. </member>
  14344. <member name="F:SharpDX.Direct3D9.Present.LinearContent">
  14345. <summary>
  14346. No documentation.
  14347. </summary>
  14348. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_LINEAR_CONTENT']/*" />
  14349. <msdn-id>bb172585</msdn-id>
  14350. <unmanaged>D3DPRESENT_LINEAR_CONTENT</unmanaged>
  14351. <unmanaged-short>D3DPRESENT_LINEAR_CONTENT</unmanaged-short>
  14352. </member>
  14353. <member name="F:SharpDX.Direct3D9.Present.DoNotFlip">
  14354. <summary>
  14355. No documentation.
  14356. </summary>
  14357. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_DONOTFLIP']/*" />
  14358. <msdn-id>bb172585</msdn-id>
  14359. <unmanaged>D3DPRESENT_DONOTFLIP</unmanaged>
  14360. <unmanaged-short>D3DPRESENT_DONOTFLIP</unmanaged-short>
  14361. </member>
  14362. <member name="F:SharpDX.Direct3D9.Present.FlipRestart">
  14363. <summary>
  14364. No documentation.
  14365. </summary>
  14366. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_FLIPRESTART']/*" />
  14367. <msdn-id>bb172585</msdn-id>
  14368. <unmanaged>D3DPRESENT_FLIPRESTART</unmanaged>
  14369. <unmanaged-short>D3DPRESENT_FLIPRESTART</unmanaged-short>
  14370. </member>
  14371. <member name="F:SharpDX.Direct3D9.Present.VideoRestrictToMonitor">
  14372. <summary>
  14373. No documentation.
  14374. </summary>
  14375. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_VIDEO_RESTRICT_TO_MONITOR']/*" />
  14376. <msdn-id>bb172585</msdn-id>
  14377. <unmanaged>D3DPRESENT_VIDEO_RESTRICT_TO_MONITOR</unmanaged>
  14378. <unmanaged-short>D3DPRESENT_VIDEO_RESTRICT_TO_MONITOR</unmanaged-short>
  14379. </member>
  14380. <member name="F:SharpDX.Direct3D9.Present.UpdateOverlayOnly">
  14381. <summary>
  14382. No documentation.
  14383. </summary>
  14384. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_UPDATEOVERLAYONLY']/*" />
  14385. <msdn-id>bb172585</msdn-id>
  14386. <unmanaged>D3DPRESENT_UPDATEOVERLAYONLY</unmanaged>
  14387. <unmanaged-short>D3DPRESENT_UPDATEOVERLAYONLY</unmanaged-short>
  14388. </member>
  14389. <member name="F:SharpDX.Direct3D9.Present.HideOverlay">
  14390. <summary>
  14391. No documentation.
  14392. </summary>
  14393. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_HIDEOVERLAY']/*" />
  14394. <msdn-id>bb172585</msdn-id>
  14395. <unmanaged>D3DPRESENT_HIDEOVERLAY</unmanaged>
  14396. <unmanaged-short>D3DPRESENT_HIDEOVERLAY</unmanaged-short>
  14397. </member>
  14398. <member name="F:SharpDX.Direct3D9.Present.UpdateColorKey">
  14399. <summary>
  14400. No documentation.
  14401. </summary>
  14402. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_UPDATECOLORKEY']/*" />
  14403. <msdn-id>bb172585</msdn-id>
  14404. <unmanaged>D3DPRESENT_UPDATECOLORKEY</unmanaged>
  14405. <unmanaged-short>D3DPRESENT_UPDATECOLORKEY</unmanaged-short>
  14406. </member>
  14407. <member name="F:SharpDX.Direct3D9.Present.ForceImmediate">
  14408. <summary>
  14409. No documentation.
  14410. </summary>
  14411. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_FORCEIMMEDIATE']/*" />
  14412. <msdn-id>bb172585</msdn-id>
  14413. <unmanaged>D3DPRESENT_FORCEIMMEDIATE</unmanaged>
  14414. <unmanaged-short>D3DPRESENT_FORCEIMMEDIATE</unmanaged-short>
  14415. </member>
  14416. <member name="F:SharpDX.Direct3D9.Present.RateDefault">
  14417. <summary>
  14418. No documentation.
  14419. </summary>
  14420. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_RATE_DEFAULT']/*" />
  14421. <msdn-id>bb172585</msdn-id>
  14422. <unmanaged>D3DPRESENT_RATE_DEFAULT</unmanaged>
  14423. <unmanaged-short>D3DPRESENT_RATE_DEFAULT</unmanaged-short>
  14424. </member>
  14425. <member name="F:SharpDX.Direct3D9.Present.None">
  14426. <summary>
  14427. None.
  14428. </summary>
  14429. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  14430. <unmanaged>None</unmanaged>
  14431. <unmanaged-short>None</unmanaged-short>
  14432. </member>
  14433. <member name="T:SharpDX.Direct3D9.PresentFlags">
  14434. <summary>
  14435. <p>Constants used by <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong>.</p>
  14436. </summary>
  14437. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG']/*" />
  14438. <msdn-id>bb172586</msdn-id>
  14439. <unmanaged>D3DPRESENTFLAG</unmanaged>
  14440. <unmanaged-short>D3DPRESENTFLAG</unmanaged-short>
  14441. </member>
  14442. <member name="F:SharpDX.Direct3D9.PresentFlags.LockableBackBuffer">
  14443. <summary>
  14444. No documentation.
  14445. </summary>
  14446. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_LOCKABLE_BACKBUFFER']/*" />
  14447. <msdn-id>bb172586</msdn-id>
  14448. <unmanaged>D3DPRESENTFLAG_LOCKABLE_BACKBUFFER</unmanaged>
  14449. <unmanaged-short>D3DPRESENTFLAG_LOCKABLE_BACKBUFFER</unmanaged-short>
  14450. </member>
  14451. <member name="F:SharpDX.Direct3D9.PresentFlags.DiscardDepthStencil">
  14452. <summary>
  14453. No documentation.
  14454. </summary>
  14455. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_DISCARD_DEPTHSTENCIL']/*" />
  14456. <msdn-id>bb172586</msdn-id>
  14457. <unmanaged>D3DPRESENTFLAG_DISCARD_DEPTHSTENCIL</unmanaged>
  14458. <unmanaged-short>D3DPRESENTFLAG_DISCARD_DEPTHSTENCIL</unmanaged-short>
  14459. </member>
  14460. <member name="F:SharpDX.Direct3D9.PresentFlags.DeviceClip">
  14461. <summary>
  14462. No documentation.
  14463. </summary>
  14464. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_DEVICECLIP']/*" />
  14465. <msdn-id>bb172586</msdn-id>
  14466. <unmanaged>D3DPRESENTFLAG_DEVICECLIP</unmanaged>
  14467. <unmanaged-short>D3DPRESENTFLAG_DEVICECLIP</unmanaged-short>
  14468. </member>
  14469. <member name="F:SharpDX.Direct3D9.PresentFlags.Video">
  14470. <summary>
  14471. No documentation.
  14472. </summary>
  14473. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_VIDEO']/*" />
  14474. <msdn-id>bb172586</msdn-id>
  14475. <unmanaged>D3DPRESENTFLAG_VIDEO</unmanaged>
  14476. <unmanaged-short>D3DPRESENTFLAG_VIDEO</unmanaged-short>
  14477. </member>
  14478. <member name="F:SharpDX.Direct3D9.PresentFlags.NoAutoRotate">
  14479. <summary>
  14480. No documentation.
  14481. </summary>
  14482. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_NOAUTOROTATE']/*" />
  14483. <msdn-id>bb172586</msdn-id>
  14484. <unmanaged>D3DPRESENTFLAG_NOAUTOROTATE</unmanaged>
  14485. <unmanaged-short>D3DPRESENTFLAG_NOAUTOROTATE</unmanaged-short>
  14486. </member>
  14487. <member name="F:SharpDX.Direct3D9.PresentFlags.UnprunedMode">
  14488. <summary>
  14489. No documentation.
  14490. </summary>
  14491. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_UNPRUNEDMODE']/*" />
  14492. <msdn-id>bb172586</msdn-id>
  14493. <unmanaged>D3DPRESENTFLAG_UNPRUNEDMODE</unmanaged>
  14494. <unmanaged-short>D3DPRESENTFLAG_UNPRUNEDMODE</unmanaged-short>
  14495. </member>
  14496. <member name="F:SharpDX.Direct3D9.PresentFlags.OverlayLimitedRgb">
  14497. <summary>
  14498. No documentation.
  14499. </summary>
  14500. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_OVERLAY_LIMITEDRGB']/*" />
  14501. <msdn-id>bb172586</msdn-id>
  14502. <unmanaged>D3DPRESENTFLAG_OVERLAY_LIMITEDRGB</unmanaged>
  14503. <unmanaged-short>D3DPRESENTFLAG_OVERLAY_LIMITEDRGB</unmanaged-short>
  14504. </member>
  14505. <member name="F:SharpDX.Direct3D9.PresentFlags.OverlayYCbCrBt709">
  14506. <summary>
  14507. No documentation.
  14508. </summary>
  14509. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_OVERLAY_YCbCr_BT709']/*" />
  14510. <msdn-id>bb172586</msdn-id>
  14511. <unmanaged>D3DPRESENTFLAG_OVERLAY_YCbCr_BT709</unmanaged>
  14512. <unmanaged-short>D3DPRESENTFLAG_OVERLAY_YCbCr_BT709</unmanaged-short>
  14513. </member>
  14514. <member name="F:SharpDX.Direct3D9.PresentFlags.OverlayYCbCrXvYCC">
  14515. <summary>
  14516. No documentation.
  14517. </summary>
  14518. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_OVERLAY_YCbCr_xvYCC']/*" />
  14519. <msdn-id>bb172586</msdn-id>
  14520. <unmanaged>D3DPRESENTFLAG_OVERLAY_YCbCr_xvYCC</unmanaged>
  14521. <unmanaged-short>D3DPRESENTFLAG_OVERLAY_YCbCr_xvYCC</unmanaged-short>
  14522. </member>
  14523. <member name="F:SharpDX.Direct3D9.PresentFlags.RestrictedContent">
  14524. <summary>
  14525. No documentation.
  14526. </summary>
  14527. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_RESTRICTED_CONTENT']/*" />
  14528. <msdn-id>bb172586</msdn-id>
  14529. <unmanaged>D3DPRESENTFLAG_RESTRICTED_CONTENT</unmanaged>
  14530. <unmanaged-short>D3DPRESENTFLAG_RESTRICTED_CONTENT</unmanaged-short>
  14531. </member>
  14532. <member name="F:SharpDX.Direct3D9.PresentFlags.RestrictSharedResourceDriver">
  14533. <summary>
  14534. No documentation.
  14535. </summary>
  14536. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTFLAG_RESTRICT_SHARED_RESOURCE_DRIVER']/*" />
  14537. <msdn-id>bb172586</msdn-id>
  14538. <unmanaged>D3DPRESENTFLAG_RESTRICT_SHARED_RESOURCE_DRIVER</unmanaged>
  14539. <unmanaged-short>D3DPRESENTFLAG_RESTRICT_SHARED_RESOURCE_DRIVER</unmanaged-short>
  14540. </member>
  14541. <member name="F:SharpDX.Direct3D9.PresentFlags.None">
  14542. <summary>
  14543. None.
  14544. </summary>
  14545. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  14546. <unmanaged>None</unmanaged>
  14547. <unmanaged-short>None</unmanaged-short>
  14548. </member>
  14549. <member name="T:SharpDX.Direct3D9.PresentInterval">
  14550. <summary>
  14551. <p>Describes the relationship between the adapter refresh rate and the rate at which <strong>Present</strong> or <strong>Present</strong> operations are completed. These values also serve as flag values for the PresentationIntervals field of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p><p />
  14552. </summary>
  14553. <remarks>
  14554. <p>Windowed mode supports <see cref="F:SharpDX.Direct3D9.PresentInterval.Default" />, <see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" />, and <see cref="F:SharpDX.Direct3D9.PresentInterval.One" />. <see cref="F:SharpDX.Direct3D9.PresentInterval.Default" /> and the <see cref="F:SharpDX.Direct3D9.PresentInterval.One" /> are nearly equivalent (see the information regarding timer resolution below). They perform similarly to COPY_VSYNC in that there is only one present per frame, and they prevent tearing with beam-following. In contrast, <see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" /> will attempt to provide an unlimited presentation rate.</p><p>Full-screen mode supports similar usage as windowed mode by supporting <see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" /> regardless of the refresh rate or swap effect. <see cref="F:SharpDX.Direct3D9.PresentInterval.Default" /> uses the default system timer resolution whereas the <see cref="F:SharpDX.Direct3D9.PresentInterval.One" /> calls <strong>timeBeginPeriod</strong> to enhance system timer resolution. This improves the quality of vertical sync, but consumes slightly more processing time. Both parameters attempt to synchronize vertically.</p>
  14555. </remarks>
  14556. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_INTERVAL']/*" />
  14557. <msdn-id>bb172585</msdn-id>
  14558. <unmanaged>D3DPRESENT_INTERVAL</unmanaged>
  14559. <unmanaged-short>D3DPRESENT_INTERVAL</unmanaged-short>
  14560. </member>
  14561. <member name="F:SharpDX.Direct3D9.PresentInterval.Default">
  14562. <summary>
  14563. No documentation.
  14564. </summary>
  14565. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_INTERVAL_DEFAULT']/*" />
  14566. <msdn-id>bb172585</msdn-id>
  14567. <unmanaged>D3DPRESENT_INTERVAL_DEFAULT</unmanaged>
  14568. <unmanaged-short>D3DPRESENT_INTERVAL_DEFAULT</unmanaged-short>
  14569. </member>
  14570. <member name="F:SharpDX.Direct3D9.PresentInterval.One">
  14571. <summary>
  14572. No documentation.
  14573. </summary>
  14574. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_INTERVAL_ONE']/*" />
  14575. <msdn-id>bb172585</msdn-id>
  14576. <unmanaged>D3DPRESENT_INTERVAL_ONE</unmanaged>
  14577. <unmanaged-short>D3DPRESENT_INTERVAL_ONE</unmanaged-short>
  14578. </member>
  14579. <member name="F:SharpDX.Direct3D9.PresentInterval.Two">
  14580. <summary>
  14581. No documentation.
  14582. </summary>
  14583. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_INTERVAL_TWO']/*" />
  14584. <msdn-id>bb172585</msdn-id>
  14585. <unmanaged>D3DPRESENT_INTERVAL_TWO</unmanaged>
  14586. <unmanaged-short>D3DPRESENT_INTERVAL_TWO</unmanaged-short>
  14587. </member>
  14588. <member name="F:SharpDX.Direct3D9.PresentInterval.Three">
  14589. <summary>
  14590. No documentation.
  14591. </summary>
  14592. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_INTERVAL_THREE']/*" />
  14593. <msdn-id>bb172585</msdn-id>
  14594. <unmanaged>D3DPRESENT_INTERVAL_THREE</unmanaged>
  14595. <unmanaged-short>D3DPRESENT_INTERVAL_THREE</unmanaged-short>
  14596. </member>
  14597. <member name="F:SharpDX.Direct3D9.PresentInterval.Four">
  14598. <summary>
  14599. No documentation.
  14600. </summary>
  14601. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_INTERVAL_FOUR']/*" />
  14602. <msdn-id>bb172585</msdn-id>
  14603. <unmanaged>D3DPRESENT_INTERVAL_FOUR</unmanaged>
  14604. <unmanaged-short>D3DPRESENT_INTERVAL_FOUR</unmanaged-short>
  14605. </member>
  14606. <member name="F:SharpDX.Direct3D9.PresentInterval.Immediate">
  14607. <summary>
  14608. No documentation.
  14609. </summary>
  14610. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_INTERVAL_IMMEDIATE']/*" />
  14611. <msdn-id>bb172585</msdn-id>
  14612. <unmanaged>D3DPRESENT_INTERVAL_IMMEDIATE</unmanaged>
  14613. <unmanaged-short>D3DPRESENT_INTERVAL_IMMEDIATE</unmanaged-short>
  14614. </member>
  14615. <member name="T:SharpDX.Direct3D9.PrimitiveMiscCaps">
  14616. <summary>
  14617. <p>Miscellaneous driver primitive capability flags.</p>
  14618. </summary>
  14619. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS']/*" />
  14620. <msdn-id>bb172583</msdn-id>
  14621. <unmanaged>D3DPMISCCAPS</unmanaged>
  14622. <unmanaged-short>D3DPMISCCAPS</unmanaged-short>
  14623. </member>
  14624. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.MaskZ">
  14625. <summary>
  14626. No documentation.
  14627. </summary>
  14628. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_MASKZ']/*" />
  14629. <msdn-id>bb172583</msdn-id>
  14630. <unmanaged>D3DPMISCCAPS_MASKZ</unmanaged>
  14631. <unmanaged-short>D3DPMISCCAPS_MASKZ</unmanaged-short>
  14632. </member>
  14633. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.CullNone">
  14634. <summary>
  14635. No documentation.
  14636. </summary>
  14637. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_CULLNONE']/*" />
  14638. <msdn-id>bb172583</msdn-id>
  14639. <unmanaged>D3DPMISCCAPS_CULLNONE</unmanaged>
  14640. <unmanaged-short>D3DPMISCCAPS_CULLNONE</unmanaged-short>
  14641. </member>
  14642. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.CullCW">
  14643. <summary>
  14644. No documentation.
  14645. </summary>
  14646. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_CULLCW']/*" />
  14647. <msdn-id>bb172583</msdn-id>
  14648. <unmanaged>D3DPMISCCAPS_CULLCW</unmanaged>
  14649. <unmanaged-short>D3DPMISCCAPS_CULLCW</unmanaged-short>
  14650. </member>
  14651. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.CullCCW">
  14652. <summary>
  14653. No documentation.
  14654. </summary>
  14655. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_CULLCCW']/*" />
  14656. <msdn-id>bb172583</msdn-id>
  14657. <unmanaged>D3DPMISCCAPS_CULLCCW</unmanaged>
  14658. <unmanaged-short>D3DPMISCCAPS_CULLCCW</unmanaged-short>
  14659. </member>
  14660. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.ColorWriteEnable">
  14661. <summary>
  14662. No documentation.
  14663. </summary>
  14664. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_COLORWRITEENABLE']/*" />
  14665. <msdn-id>bb172583</msdn-id>
  14666. <unmanaged>D3DPMISCCAPS_COLORWRITEENABLE</unmanaged>
  14667. <unmanaged-short>D3DPMISCCAPS_COLORWRITEENABLE</unmanaged-short>
  14668. </member>
  14669. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.ClipPlanesScaledPoints">
  14670. <summary>
  14671. No documentation.
  14672. </summary>
  14673. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_CLIPPLANESCALEDPOINTS']/*" />
  14674. <msdn-id>bb172583</msdn-id>
  14675. <unmanaged>D3DPMISCCAPS_CLIPPLANESCALEDPOINTS</unmanaged>
  14676. <unmanaged-short>D3DPMISCCAPS_CLIPPLANESCALEDPOINTS</unmanaged-short>
  14677. </member>
  14678. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.ClipTLVertices">
  14679. <summary>
  14680. No documentation.
  14681. </summary>
  14682. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_CLIPTLVERTS']/*" />
  14683. <msdn-id>bb172583</msdn-id>
  14684. <unmanaged>D3DPMISCCAPS_CLIPTLVERTS</unmanaged>
  14685. <unmanaged-short>D3DPMISCCAPS_CLIPTLVERTS</unmanaged-short>
  14686. </member>
  14687. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.TssArgTemp">
  14688. <summary>
  14689. No documentation.
  14690. </summary>
  14691. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_TSSARGTEMP']/*" />
  14692. <msdn-id>bb172583</msdn-id>
  14693. <unmanaged>D3DPMISCCAPS_TSSARGTEMP</unmanaged>
  14694. <unmanaged-short>D3DPMISCCAPS_TSSARGTEMP</unmanaged-short>
  14695. </member>
  14696. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.BlendOperation">
  14697. <summary>
  14698. No documentation.
  14699. </summary>
  14700. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_BLENDOP']/*" />
  14701. <msdn-id>bb172583</msdn-id>
  14702. <unmanaged>D3DPMISCCAPS_BLENDOP</unmanaged>
  14703. <unmanaged-short>D3DPMISCCAPS_BLENDOP</unmanaged-short>
  14704. </member>
  14705. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.NullReference">
  14706. <summary>
  14707. No documentation.
  14708. </summary>
  14709. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_NULLREFERENCE']/*" />
  14710. <msdn-id>bb172583</msdn-id>
  14711. <unmanaged>D3DPMISCCAPS_NULLREFERENCE</unmanaged>
  14712. <unmanaged-short>D3DPMISCCAPS_NULLREFERENCE</unmanaged-short>
  14713. </member>
  14714. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.IndependentWriteMasks">
  14715. <summary>
  14716. No documentation.
  14717. </summary>
  14718. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_INDEPENDENTWRITEMASKS']/*" />
  14719. <msdn-id>bb172583</msdn-id>
  14720. <unmanaged>D3DPMISCCAPS_INDEPENDENTWRITEMASKS</unmanaged>
  14721. <unmanaged-short>D3DPMISCCAPS_INDEPENDENTWRITEMASKS</unmanaged-short>
  14722. </member>
  14723. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.PerStageConstant">
  14724. <summary>
  14725. No documentation.
  14726. </summary>
  14727. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_PERSTAGECONSTANT']/*" />
  14728. <msdn-id>bb172583</msdn-id>
  14729. <unmanaged>D3DPMISCCAPS_PERSTAGECONSTANT</unmanaged>
  14730. <unmanaged-short>D3DPMISCCAPS_PERSTAGECONSTANT</unmanaged-short>
  14731. </member>
  14732. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.FogAndSpecularAlpha">
  14733. <summary>
  14734. No documentation.
  14735. </summary>
  14736. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_FOGANDSPECULARALPHA']/*" />
  14737. <msdn-id>bb172583</msdn-id>
  14738. <unmanaged>D3DPMISCCAPS_FOGANDSPECULARALPHA</unmanaged>
  14739. <unmanaged-short>D3DPMISCCAPS_FOGANDSPECULARALPHA</unmanaged-short>
  14740. </member>
  14741. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.SeparateAlphaBlend">
  14742. <summary>
  14743. No documentation.
  14744. </summary>
  14745. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_SEPARATEALPHABLEND']/*" />
  14746. <msdn-id>bb172583</msdn-id>
  14747. <unmanaged>D3DPMISCCAPS_SEPARATEALPHABLEND</unmanaged>
  14748. <unmanaged-short>D3DPMISCCAPS_SEPARATEALPHABLEND</unmanaged-short>
  14749. </member>
  14750. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.MrtIndependentBitDepths">
  14751. <summary>
  14752. No documentation.
  14753. </summary>
  14754. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_MRTINDEPENDENTBITDEPTHS']/*" />
  14755. <msdn-id>bb172583</msdn-id>
  14756. <unmanaged>D3DPMISCCAPS_MRTINDEPENDENTBITDEPTHS</unmanaged>
  14757. <unmanaged-short>D3DPMISCCAPS_MRTINDEPENDENTBITDEPTHS</unmanaged-short>
  14758. </member>
  14759. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.MrtPostPixelShaderBlending">
  14760. <summary>
  14761. No documentation.
  14762. </summary>
  14763. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_MRTPOSTPIXELSHADERBLENDING']/*" />
  14764. <msdn-id>bb172583</msdn-id>
  14765. <unmanaged>D3DPMISCCAPS_MRTPOSTPIXELSHADERBLENDING</unmanaged>
  14766. <unmanaged-short>D3DPMISCCAPS_MRTPOSTPIXELSHADERBLENDING</unmanaged-short>
  14767. </member>
  14768. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.FogVertexClamped">
  14769. <summary>
  14770. No documentation.
  14771. </summary>
  14772. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_FOGVERTEXCLAMPED']/*" />
  14773. <msdn-id>bb172583</msdn-id>
  14774. <unmanaged>D3DPMISCCAPS_FOGVERTEXCLAMPED</unmanaged>
  14775. <unmanaged-short>D3DPMISCCAPS_FOGVERTEXCLAMPED</unmanaged-short>
  14776. </member>
  14777. <member name="F:SharpDX.Direct3D9.PrimitiveMiscCaps.PostBlendSrgbConvert">
  14778. <summary>
  14779. No documentation.
  14780. </summary>
  14781. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPMISCCAPS_POSTBLENDSRGBCONVERT']/*" />
  14782. <msdn-id>bb172583</msdn-id>
  14783. <unmanaged>D3DPMISCCAPS_POSTBLENDSRGBCONVERT</unmanaged>
  14784. <unmanaged-short>D3DPMISCCAPS_POSTBLENDSRGBCONVERT</unmanaged-short>
  14785. </member>
  14786. <member name="T:SharpDX.Direct3D9.PrimitiveType">
  14787. <summary>
  14788. <p>Defines the primitives supported by Direct3D.</p>
  14789. </summary>
  14790. <remarks>
  14791. <p>Using Triangle Strips or Triangle Fans (Direct3D 9) is often more efficient than using triangle lists because fewer vertices are duplicated.</p>
  14792. </remarks>
  14793. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRIMITIVETYPE']/*" />
  14794. <msdn-id>bb172589</msdn-id>
  14795. <unmanaged>D3DPRIMITIVETYPE</unmanaged>
  14796. <unmanaged-short>D3DPRIMITIVETYPE</unmanaged-short>
  14797. </member>
  14798. <member name="F:SharpDX.Direct3D9.PrimitiveType.PointList">
  14799. <summary>
  14800. <dd> <p>Renders the vertices as a collection of isolated points. This value is unsupported for indexed primitives.</p> </dd>
  14801. </summary>
  14802. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPT_POINTLIST']/*" />
  14803. <msdn-id>bb172589</msdn-id>
  14804. <unmanaged>D3DPT_POINTLIST</unmanaged>
  14805. <unmanaged-short>D3DPT_POINTLIST</unmanaged-short>
  14806. </member>
  14807. <member name="F:SharpDX.Direct3D9.PrimitiveType.LineList">
  14808. <summary>
  14809. <dd> <p>Renders the vertices as a list of isolated straight line segments.</p> </dd>
  14810. </summary>
  14811. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPT_LINELIST']/*" />
  14812. <msdn-id>bb172589</msdn-id>
  14813. <unmanaged>D3DPT_LINELIST</unmanaged>
  14814. <unmanaged-short>D3DPT_LINELIST</unmanaged-short>
  14815. </member>
  14816. <member name="F:SharpDX.Direct3D9.PrimitiveType.LineStrip">
  14817. <summary>
  14818. <dd> <p>Renders the vertices as a single polyline.</p> </dd>
  14819. </summary>
  14820. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPT_LINESTRIP']/*" />
  14821. <msdn-id>bb172589</msdn-id>
  14822. <unmanaged>D3DPT_LINESTRIP</unmanaged>
  14823. <unmanaged-short>D3DPT_LINESTRIP</unmanaged-short>
  14824. </member>
  14825. <member name="F:SharpDX.Direct3D9.PrimitiveType.TriangleList">
  14826. <summary>
  14827. <dd> <p>Renders the specified vertices as a sequence of isolated triangles. Each group of three vertices defines a separate triangle. </p> <p>Back-face culling is affected by the current winding-order render state.</p> </dd>
  14828. </summary>
  14829. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPT_TRIANGLELIST']/*" />
  14830. <msdn-id>bb172589</msdn-id>
  14831. <unmanaged>D3DPT_TRIANGLELIST</unmanaged>
  14832. <unmanaged-short>D3DPT_TRIANGLELIST</unmanaged-short>
  14833. </member>
  14834. <member name="F:SharpDX.Direct3D9.PrimitiveType.TriangleStrip">
  14835. <summary>
  14836. <dd> <p>Renders the vertices as a triangle strip. The backface-culling flag is automatically flipped on even-numbered triangles. </p> </dd>
  14837. </summary>
  14838. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPT_TRIANGLESTRIP']/*" />
  14839. <msdn-id>bb172589</msdn-id>
  14840. <unmanaged>D3DPT_TRIANGLESTRIP</unmanaged>
  14841. <unmanaged-short>D3DPT_TRIANGLESTRIP</unmanaged-short>
  14842. </member>
  14843. <member name="F:SharpDX.Direct3D9.PrimitiveType.TriangleFan">
  14844. <summary>
  14845. <dd> <p>Renders the vertices as a triangle fan. </p> </dd>
  14846. </summary>
  14847. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPT_TRIANGLEFAN']/*" />
  14848. <msdn-id>bb172589</msdn-id>
  14849. <unmanaged>D3DPT_TRIANGLEFAN</unmanaged>
  14850. <unmanaged-short>D3DPT_TRIANGLEFAN</unmanaged-short>
  14851. </member>
  14852. <member name="T:SharpDX.Direct3D9.QueryType">
  14853. <summary>
  14854. <p>Identifies the query type. For information about queries, see Queries (Direct3D 9) </p>
  14855. </summary>
  14856. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE']/*" />
  14857. <msdn-id>bb172594</msdn-id>
  14858. <unmanaged>D3DQUERYTYPE</unmanaged>
  14859. <unmanaged-short>D3DQUERYTYPE</unmanaged-short>
  14860. </member>
  14861. <member name="F:SharpDX.Direct3D9.QueryType.VCache">
  14862. <summary>
  14863. No documentation.
  14864. </summary>
  14865. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_VCACHE']/*" />
  14866. <msdn-id>bb172594</msdn-id>
  14867. <unmanaged>D3DQUERYTYPE_VCACHE</unmanaged>
  14868. <unmanaged-short>D3DQUERYTYPE_VCACHE</unmanaged-short>
  14869. </member>
  14870. <member name="F:SharpDX.Direct3D9.QueryType.ResourceManager">
  14871. <summary>
  14872. No documentation.
  14873. </summary>
  14874. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_RESOURCEMANAGER']/*" />
  14875. <msdn-id>bb172594</msdn-id>
  14876. <unmanaged>D3DQUERYTYPE_RESOURCEMANAGER</unmanaged>
  14877. <unmanaged-short>D3DQUERYTYPE_RESOURCEMANAGER</unmanaged-short>
  14878. </member>
  14879. <member name="F:SharpDX.Direct3D9.QueryType.VertexStats">
  14880. <summary>
  14881. No documentation.
  14882. </summary>
  14883. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_VERTEXSTATS']/*" />
  14884. <msdn-id>bb172594</msdn-id>
  14885. <unmanaged>D3DQUERYTYPE_VERTEXSTATS</unmanaged>
  14886. <unmanaged-short>D3DQUERYTYPE_VERTEXSTATS</unmanaged-short>
  14887. </member>
  14888. <member name="F:SharpDX.Direct3D9.QueryType.Event">
  14889. <summary>
  14890. No documentation.
  14891. </summary>
  14892. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_EVENT']/*" />
  14893. <msdn-id>bb172594</msdn-id>
  14894. <unmanaged>D3DQUERYTYPE_EVENT</unmanaged>
  14895. <unmanaged-short>D3DQUERYTYPE_EVENT</unmanaged-short>
  14896. </member>
  14897. <member name="F:SharpDX.Direct3D9.QueryType.Occlusion">
  14898. <summary>
  14899. No documentation.
  14900. </summary>
  14901. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_OCCLUSION']/*" />
  14902. <msdn-id>bb172594</msdn-id>
  14903. <unmanaged>D3DQUERYTYPE_OCCLUSION</unmanaged>
  14904. <unmanaged-short>D3DQUERYTYPE_OCCLUSION</unmanaged-short>
  14905. </member>
  14906. <member name="F:SharpDX.Direct3D9.QueryType.Timestamp">
  14907. <summary>
  14908. No documentation.
  14909. </summary>
  14910. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_TIMESTAMP']/*" />
  14911. <msdn-id>bb172594</msdn-id>
  14912. <unmanaged>D3DQUERYTYPE_TIMESTAMP</unmanaged>
  14913. <unmanaged-short>D3DQUERYTYPE_TIMESTAMP</unmanaged-short>
  14914. </member>
  14915. <member name="F:SharpDX.Direct3D9.QueryType.TimestampDisjoint">
  14916. <summary>
  14917. No documentation.
  14918. </summary>
  14919. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_TIMESTAMPDISJOINT']/*" />
  14920. <msdn-id>bb172594</msdn-id>
  14921. <unmanaged>D3DQUERYTYPE_TIMESTAMPDISJOINT</unmanaged>
  14922. <unmanaged-short>D3DQUERYTYPE_TIMESTAMPDISJOINT</unmanaged-short>
  14923. </member>
  14924. <member name="F:SharpDX.Direct3D9.QueryType.TimestampFreq">
  14925. <summary>
  14926. No documentation.
  14927. </summary>
  14928. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_TIMESTAMPFREQ']/*" />
  14929. <msdn-id>bb172594</msdn-id>
  14930. <unmanaged>D3DQUERYTYPE_TIMESTAMPFREQ</unmanaged>
  14931. <unmanaged-short>D3DQUERYTYPE_TIMESTAMPFREQ</unmanaged-short>
  14932. </member>
  14933. <member name="F:SharpDX.Direct3D9.QueryType.PipelineTimings">
  14934. <summary>
  14935. No documentation.
  14936. </summary>
  14937. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_PIPELINETIMINGS']/*" />
  14938. <msdn-id>bb172594</msdn-id>
  14939. <unmanaged>D3DQUERYTYPE_PIPELINETIMINGS</unmanaged>
  14940. <unmanaged-short>D3DQUERYTYPE_PIPELINETIMINGS</unmanaged-short>
  14941. </member>
  14942. <member name="F:SharpDX.Direct3D9.QueryType.InterfaceTimings">
  14943. <summary>
  14944. No documentation.
  14945. </summary>
  14946. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_INTERFACETIMINGS']/*" />
  14947. <msdn-id>bb172594</msdn-id>
  14948. <unmanaged>D3DQUERYTYPE_INTERFACETIMINGS</unmanaged>
  14949. <unmanaged-short>D3DQUERYTYPE_INTERFACETIMINGS</unmanaged-short>
  14950. </member>
  14951. <member name="F:SharpDX.Direct3D9.QueryType.VertexTimings">
  14952. <summary>
  14953. No documentation.
  14954. </summary>
  14955. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_VERTEXTIMINGS']/*" />
  14956. <msdn-id>bb172594</msdn-id>
  14957. <unmanaged>D3DQUERYTYPE_VERTEXTIMINGS</unmanaged>
  14958. <unmanaged-short>D3DQUERYTYPE_VERTEXTIMINGS</unmanaged-short>
  14959. </member>
  14960. <member name="F:SharpDX.Direct3D9.QueryType.PixelTimings">
  14961. <summary>
  14962. No documentation.
  14963. </summary>
  14964. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_PIXELTIMINGS']/*" />
  14965. <msdn-id>bb172594</msdn-id>
  14966. <unmanaged>D3DQUERYTYPE_PIXELTIMINGS</unmanaged>
  14967. <unmanaged-short>D3DQUERYTYPE_PIXELTIMINGS</unmanaged-short>
  14968. </member>
  14969. <member name="F:SharpDX.Direct3D9.QueryType.BandwidthTimings">
  14970. <summary>
  14971. No documentation.
  14972. </summary>
  14973. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_BANDWIDTHTIMINGS']/*" />
  14974. <msdn-id>bb172594</msdn-id>
  14975. <unmanaged>D3DQUERYTYPE_BANDWIDTHTIMINGS</unmanaged>
  14976. <unmanaged-short>D3DQUERYTYPE_BANDWIDTHTIMINGS</unmanaged-short>
  14977. </member>
  14978. <member name="F:SharpDX.Direct3D9.QueryType.CacheUtilization">
  14979. <summary>
  14980. No documentation.
  14981. </summary>
  14982. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_CACHEUTILIZATION']/*" />
  14983. <msdn-id>bb172594</msdn-id>
  14984. <unmanaged>D3DQUERYTYPE_CACHEUTILIZATION</unmanaged>
  14985. <unmanaged-short>D3DQUERYTYPE_CACHEUTILIZATION</unmanaged-short>
  14986. </member>
  14987. <member name="F:SharpDX.Direct3D9.QueryType.MemoryPressure">
  14988. <summary>
  14989. No documentation.
  14990. </summary>
  14991. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DQUERYTYPE_MEMORYPRESSURE']/*" />
  14992. <msdn-id>bb172594</msdn-id>
  14993. <unmanaged>D3DQUERYTYPE_MEMORYPRESSURE</unmanaged>
  14994. <unmanaged-short>D3DQUERYTYPE_MEMORYPRESSURE</unmanaged-short>
  14995. </member>
  14996. <member name="T:SharpDX.Direct3D9.RasterCaps">
  14997. <summary>
  14998. <p>A programmable pixel shader is made up of a set of instructions that operate on pixel data. Registers transfer data in and out of the ALU. Additional control can be applied to modify the instruction, the results, or what data gets written out.</p><ul> <li> ps_3_0 Instructions contains a list of the available instructions.</li> <li> ps_3_0 Registers lists the different types of registers used by the pixel shader ALU.</li> <li> Modifiers Are used to modify the way an instruction works.</li> <li> Destination Register Write Mask determines what components of the destination register get written.</li> <li> Pixel Shader Source Register Modifiers alter the source register data before the instruction runs.</li> <li> Source Register Swizzling gives additional control over which register components are read, copied, or written.</li> </ul>
  14999. </summary>
  15000. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS']/*" />
  15001. <msdn-id>bb219845</msdn-id>
  15002. <unmanaged>D3DPRASTERCAPS</unmanaged>
  15003. <unmanaged-short>D3DPRASTERCAPS</unmanaged-short>
  15004. </member>
  15005. <member name="F:SharpDX.Direct3D9.RasterCaps.Dither">
  15006. <summary>
  15007. No documentation.
  15008. </summary>
  15009. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_DITHER']/*" />
  15010. <msdn-id>bb219845</msdn-id>
  15011. <unmanaged>D3DPRASTERCAPS_DITHER</unmanaged>
  15012. <unmanaged-short>D3DPRASTERCAPS_DITHER</unmanaged-short>
  15013. </member>
  15014. <member name="F:SharpDX.Direct3D9.RasterCaps.DepthTest">
  15015. <summary>
  15016. No documentation.
  15017. </summary>
  15018. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_ZTEST']/*" />
  15019. <msdn-id>bb219845</msdn-id>
  15020. <unmanaged>D3DPRASTERCAPS_ZTEST</unmanaged>
  15021. <unmanaged-short>D3DPRASTERCAPS_ZTEST</unmanaged-short>
  15022. </member>
  15023. <member name="F:SharpDX.Direct3D9.RasterCaps.FogVertex">
  15024. <summary>
  15025. No documentation.
  15026. </summary>
  15027. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_FOGVERTEX']/*" />
  15028. <msdn-id>bb219845</msdn-id>
  15029. <unmanaged>D3DPRASTERCAPS_FOGVERTEX</unmanaged>
  15030. <unmanaged-short>D3DPRASTERCAPS_FOGVERTEX</unmanaged-short>
  15031. </member>
  15032. <member name="F:SharpDX.Direct3D9.RasterCaps.FogTable">
  15033. <summary>
  15034. No documentation.
  15035. </summary>
  15036. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_FOGTABLE']/*" />
  15037. <msdn-id>bb219845</msdn-id>
  15038. <unmanaged>D3DPRASTERCAPS_FOGTABLE</unmanaged>
  15039. <unmanaged-short>D3DPRASTERCAPS_FOGTABLE</unmanaged-short>
  15040. </member>
  15041. <member name="F:SharpDX.Direct3D9.RasterCaps.MipMapLodBias">
  15042. <summary>
  15043. No documentation.
  15044. </summary>
  15045. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_MIPMAPLODBIAS']/*" />
  15046. <msdn-id>bb219845</msdn-id>
  15047. <unmanaged>D3DPRASTERCAPS_MIPMAPLODBIAS</unmanaged>
  15048. <unmanaged-short>D3DPRASTERCAPS_MIPMAPLODBIAS</unmanaged-short>
  15049. </member>
  15050. <member name="F:SharpDX.Direct3D9.RasterCaps.ZBufferLessHsr">
  15051. <summary>
  15052. No documentation.
  15053. </summary>
  15054. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_ZBUFFERLESSHSR']/*" />
  15055. <msdn-id>bb219845</msdn-id>
  15056. <unmanaged>D3DPRASTERCAPS_ZBUFFERLESSHSR</unmanaged>
  15057. <unmanaged-short>D3DPRASTERCAPS_ZBUFFERLESSHSR</unmanaged-short>
  15058. </member>
  15059. <member name="F:SharpDX.Direct3D9.RasterCaps.FogRange">
  15060. <summary>
  15061. No documentation.
  15062. </summary>
  15063. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_FOGRANGE']/*" />
  15064. <msdn-id>bb219845</msdn-id>
  15065. <unmanaged>D3DPRASTERCAPS_FOGRANGE</unmanaged>
  15066. <unmanaged-short>D3DPRASTERCAPS_FOGRANGE</unmanaged-short>
  15067. </member>
  15068. <member name="F:SharpDX.Direct3D9.RasterCaps.Anisotropy">
  15069. <summary>
  15070. No documentation.
  15071. </summary>
  15072. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_ANISOTROPY']/*" />
  15073. <msdn-id>bb219845</msdn-id>
  15074. <unmanaged>D3DPRASTERCAPS_ANISOTROPY</unmanaged>
  15075. <unmanaged-short>D3DPRASTERCAPS_ANISOTROPY</unmanaged-short>
  15076. </member>
  15077. <member name="F:SharpDX.Direct3D9.RasterCaps.WBuffer">
  15078. <summary>
  15079. No documentation.
  15080. </summary>
  15081. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_WBUFFER']/*" />
  15082. <msdn-id>bb219845</msdn-id>
  15083. <unmanaged>D3DPRASTERCAPS_WBUFFER</unmanaged>
  15084. <unmanaged-short>D3DPRASTERCAPS_WBUFFER</unmanaged-short>
  15085. </member>
  15086. <member name="F:SharpDX.Direct3D9.RasterCaps.WFog">
  15087. <summary>
  15088. No documentation.
  15089. </summary>
  15090. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_WFOG']/*" />
  15091. <msdn-id>bb219845</msdn-id>
  15092. <unmanaged>D3DPRASTERCAPS_WFOG</unmanaged>
  15093. <unmanaged-short>D3DPRASTERCAPS_WFOG</unmanaged-short>
  15094. </member>
  15095. <member name="F:SharpDX.Direct3D9.RasterCaps.ZFog">
  15096. <summary>
  15097. No documentation.
  15098. </summary>
  15099. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_ZFOG']/*" />
  15100. <msdn-id>bb219845</msdn-id>
  15101. <unmanaged>D3DPRASTERCAPS_ZFOG</unmanaged>
  15102. <unmanaged-short>D3DPRASTERCAPS_ZFOG</unmanaged-short>
  15103. </member>
  15104. <member name="F:SharpDX.Direct3D9.RasterCaps.ColorPerspective">
  15105. <summary>
  15106. No documentation.
  15107. </summary>
  15108. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_COLORPERSPECTIVE']/*" />
  15109. <msdn-id>bb219845</msdn-id>
  15110. <unmanaged>D3DPRASTERCAPS_COLORPERSPECTIVE</unmanaged>
  15111. <unmanaged-short>D3DPRASTERCAPS_COLORPERSPECTIVE</unmanaged-short>
  15112. </member>
  15113. <member name="F:SharpDX.Direct3D9.RasterCaps.ScissorTest">
  15114. <summary>
  15115. No documentation.
  15116. </summary>
  15117. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_SCISSORTEST']/*" />
  15118. <msdn-id>bb219845</msdn-id>
  15119. <unmanaged>D3DPRASTERCAPS_SCISSORTEST</unmanaged>
  15120. <unmanaged-short>D3DPRASTERCAPS_SCISSORTEST</unmanaged-short>
  15121. </member>
  15122. <member name="F:SharpDX.Direct3D9.RasterCaps.SlopeScaleDepthBias">
  15123. <summary>
  15124. No documentation.
  15125. </summary>
  15126. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_SLOPESCALEDEPTHBIAS']/*" />
  15127. <msdn-id>bb219845</msdn-id>
  15128. <unmanaged>D3DPRASTERCAPS_SLOPESCALEDEPTHBIAS</unmanaged>
  15129. <unmanaged-short>D3DPRASTERCAPS_SLOPESCALEDEPTHBIAS</unmanaged-short>
  15130. </member>
  15131. <member name="F:SharpDX.Direct3D9.RasterCaps.DepthBias">
  15132. <summary>
  15133. No documentation.
  15134. </summary>
  15135. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_DEPTHBIAS']/*" />
  15136. <msdn-id>bb219845</msdn-id>
  15137. <unmanaged>D3DPRASTERCAPS_DEPTHBIAS</unmanaged>
  15138. <unmanaged-short>D3DPRASTERCAPS_DEPTHBIAS</unmanaged-short>
  15139. </member>
  15140. <member name="F:SharpDX.Direct3D9.RasterCaps.MultisampleToggle">
  15141. <summary>
  15142. No documentation.
  15143. </summary>
  15144. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRASTERCAPS_MULTISAMPLE_TOGGLE']/*" />
  15145. <msdn-id>bb219845</msdn-id>
  15146. <unmanaged>D3DPRASTERCAPS_MULTISAMPLE_TOGGLE</unmanaged>
  15147. <unmanaged-short>D3DPRASTERCAPS_MULTISAMPLE_TOGGLE</unmanaged-short>
  15148. </member>
  15149. <member name="T:SharpDX.Direct3D9.RegisterSet">
  15150. <summary>
  15151. <p>Data type of the register.</p>
  15152. </summary>
  15153. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXREGISTER_SET']/*" />
  15154. <msdn-id>bb205424</msdn-id>
  15155. <unmanaged>D3DXREGISTER_SET</unmanaged>
  15156. <unmanaged-short>D3DXREGISTER_SET</unmanaged-short>
  15157. </member>
  15158. <member name="F:SharpDX.Direct3D9.RegisterSet.Bool">
  15159. <summary>
  15160. <dd> <p>Boolean value.</p> </dd>
  15161. </summary>
  15162. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRS_BOOL']/*" />
  15163. <msdn-id>bb205424</msdn-id>
  15164. <unmanaged>D3DXRS_BOOL</unmanaged>
  15165. <unmanaged-short>D3DXRS_BOOL</unmanaged-short>
  15166. </member>
  15167. <member name="F:SharpDX.Direct3D9.RegisterSet.Int4">
  15168. <summary>
  15169. <dd> <p>4D integer number.</p> </dd>
  15170. </summary>
  15171. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRS_INT4']/*" />
  15172. <msdn-id>bb205424</msdn-id>
  15173. <unmanaged>D3DXRS_INT4</unmanaged>
  15174. <unmanaged-short>D3DXRS_INT4</unmanaged-short>
  15175. </member>
  15176. <member name="F:SharpDX.Direct3D9.RegisterSet.Float4">
  15177. <summary>
  15178. <dd> <p>4D floating-point number.</p> </dd>
  15179. </summary>
  15180. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRS_FLOAT4']/*" />
  15181. <msdn-id>bb205424</msdn-id>
  15182. <unmanaged>D3DXRS_FLOAT4</unmanaged>
  15183. <unmanaged-short>D3DXRS_FLOAT4</unmanaged-short>
  15184. </member>
  15185. <member name="F:SharpDX.Direct3D9.RegisterSet.Sampler">
  15186. <summary>
  15187. <dd> <p>The register contains 4D sampler data.</p> </dd>
  15188. </summary>
  15189. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRS_SAMPLER']/*" />
  15190. <msdn-id>bb205424</msdn-id>
  15191. <unmanaged>D3DXRS_SAMPLER</unmanaged>
  15192. <unmanaged-short>D3DXRS_SAMPLER</unmanaged-short>
  15193. </member>
  15194. <member name="T:SharpDX.Direct3D9.RenderState">
  15195. <summary>
  15196. <p>The <see cref="T:SharpDX.Direct3D9.RenderState" /> enumerated type lists a variety of attributes, or render states. The enumerators of <see cref="T:SharpDX.Direct3D9.RenderState" /> that are used exclusively by drivers can specify either rendering information or a texture attribute. The following render states are used by display drivers:</p><pre>#define D3DRENDERSTATE_EVICTMANAGEDTEXTURES 61
  15197. #define D3DRENDERSTATE_SCENECAPTURE 62
  15198. #define D3DRS_DELETERTPATCH 169
  15199. #define D3DRS_MAXVERTEXSHADERINST 196
  15200. #define D3DRS_MAXPIXELSHADERINST 197</pre><p> </p><p><strong>Enumerators</strong></p><dl> <dt><strong>D3DRENDERSTATE_EVICTMANAGEDTEXTURES</strong></dt> <dd> <dl> <dt /> <dt> <p> Determines whether textures are evicted from memory.
  15201. The driver uses a <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> data type without a default value to detect whether to evict.</p> <p>This render state determines whether the driver evicts textures that it manages (as opposed to textures managed by the Direct3D runtime) from video memory. If the render state value is <strong>TRUE</strong>, the driver evicts the textures. Otherwise, the driver does not evict those textures.</p> </dt> </dl> </dd> <dt><strong>D3DRENDERSTATE_SCENECAPTURE</strong></dt> <dd> <dl> <dt /> <dt> <p>Specifies either begin scene information or end scene information for geometric data captured within a frame.
  15202. The driver uses a <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> data type with a default value of <strong>TRUE</strong> to detect scene-capture information.</p> <p>The driver responds to D3DRENDERSTATE_SCENECAPTURE first with <strong>TRUE</strong> for begin scene information and next with <strong><see cref="F:SharpDX.Result.False" /></strong> for end scene information to capture geometric data within a frame.
  15203. See the <em>permedia2</em> sample driver that ships with the Windows Driver Development Kit (DDK) for an example implementation.
  15204. Using the D3DRENDERSTATE_SCENECAPTURE render state in a <em>D3dDrawPrimitives2</em> call replaces the legacy <strong>D3DHALCallbacks</strong>-&gt;<em>D3dSceneCapture</em> callback routine.</p> <p>Care must be taken in updating a driver that implements the legacy <strong>D3DHALCallbacks</strong>-&gt;<em>D3dSceneCapture</em> callback routine to one using the D3DRENDERSTATE_SCENECAPTURE render state. The <em>D3dSceneCapture</em> callback routine uses the constants D3DHAL_SCENE_CAPTURE_START and D3DHAL_SCENE_CAPTURE_END to indicate, respectively, the beginning and end of a scene. The values of these constants are, respectively, 0 and 1. If you use these constants in place of <strong>TRUE</strong> and <strong><see cref="F:SharpDX.Result.False" /></strong> in this render state, the meaning will be the exact opposite of what you intend.</p> </dt> </dl> </dd> <dt><strong>D3DRS_DELETERTPATCH</strong></dt> <dd> <dl> <dt /> <dt> <p><strong>DirectX 8.0 and later versions only.</strong></p> <p>Deletes either a rectangular or triangular patch from memory.
  15205. The driver uses a DWORD data type without a default value to detect the patch to delete.</p> <p>This render state notifies the driver that a patch is to be deleted. The value of this render state is the handle to the patch affected. All cached information should be freed and the handle should be removed from the driver's patch handle table. This render state is not visible to applications but is generated internally when an application calls the <strong>DeletePatch</strong> function. This render state is sent to the driver only when patches are deleted by <strong>DeletePatch</strong> explicitly. All other patches should be cleaned up when the device is destroyed.</p> </dt> </dl> </dd> <dt><strong>D3DRS_MAXVERTEXSHADERINST</strong></dt> <dd> <dl> <dt /> <dt> <p><strong>DirectX 9.0 and later versions only.</strong></p> <p>Determines the maximum number of instructions that the vertex shader assembler can execute.</p> <p>The driver uses a DWORD data type with a default value of D3DINFINITEINSTRUCTIONS (0xffffffff) to report the maximum number of vertex-shader instructions.
  15206. This maximum number depends on the version of the vertex shader that the display device supports as shown in the following table.</p> <table> <tr><th>Version</th><th>Maximum number</th></tr> <tr><td>earlier than 2_0</td><td>0</td></tr> <tr><td>2_0 and later</td><td>From 216 (0x0000ffff) to D3DINFINITEINSTRUCTIONS</td></tr> </table> <p>?</p> <p>D3DINFINITEINSTRUCTIONS represents a virtually unlimited amount.</p> <p>Valid values for this render state are numbers that are powers of 2; if the driver sets any other integer, the runtime uses the next nearest power of 2 number.</p> <p>The runtime sets the <strong>MaxVShaderInstructionsExecuted</strong> member of the <see cref="T:SharpDX.Direct3D9.Capabilities" /> structure to this maximum number.</p> </dt> </dl> </dd> <dt><strong>D3DRS_MAXPIXELSHADERINST</strong></dt> <dd> <dl> <dt /> <dt> <p><strong>DirectX 9.0 and later versions only.</strong></p> <p>Determines the maximum number of instructions that the pixel shader assembler can execute.</p> <p>The driver uses a DWORD data type with a default value of D3DINFINITEINSTRUCTIONS (0xffffffff) to report the maximum number of pixel-shader instructions.
  15207. This maximum number depends on the version of the pixel shader that the display device supports as shown in the following table.</p> <table> <tr><th>Version</th><th>Maximum number</th></tr> <tr><td>earlier than 2_0</td><td>0</td></tr> <tr><td>2_0</td><td>From 96 to D3DINFINITEINSTRUCTIONS</td></tr> <tr><td>3_0 and later</td><td>From 216 (0x0000ffff) to D3DINFINITEINSTRUCTIONS</td></tr> </table> <p>?</p> <p>D3DINFINITEINSTRUCTIONS represents a virtually unlimited amount.</p> <p>Valid values for this render state are numbers that are powers of 2; if the driver sets any other integer, the runtime uses the next nearest power of 2 number.</p> <p>The runtime sets the <strong>MaxVShaderInstructionsExecuted</strong> member of the <see cref="T:SharpDX.Direct3D9.Capabilities" /> structure to this maximum number.</p> </dt> </dl> </dd> </dl>
  15208. </summary>
  15209. <remarks>
  15210. <p>The driver uses these render states when it performs graphics rendering. Only render states that are specific to drivers are included in the Windows Driver Kit (WDK) documentation. The render states accessible to DirectX applications are included in the DirectX SDK documentation. These application-level render states include such characteristics as whether alpha blending is enabled, whether dithering is enabled, whether Direct3D lighting is used, and the type of shading to be used. </p><p>To update a particular render state, Direct3D stores information about the render state, and then calls the driver's <em>D3dDrawPrimitives2</em> callback routine. The information provided to the driver enables it to:</p><ul> <li> <p>Determine that it should update one or more render states.</p> </li> <li> <p>Identify which render states to update, and what the new render state values should be.</p> </li> </ul><p>Note that for certain render states to be honored, the driver must have previously set capability flags in the relevant member of the D3DPRIMCAPS structure.</p><p>In order to indicate a specific render state update, Direct3D inserts a <strong>D3DHAL_DP2COMMAND</strong> structure into the command buffer, setting the <strong>bCommand</strong> member of this structure to D3DDP2OP_RENDERSTATE (see the description for D3DDP2OP_RENDERSTATE in <strong>D3DHAL_DP2OPERATION</strong>), and setting the <strong>wStateCount</strong> member of the same structure to the number of render states to be updated.</p><p>Immediately following the <strong>D3DHAL_DP2COMMAND</strong> structure, Direct3D inserts one <strong>D3DHAL_DP2RENDERSTATE</strong> structure into the command buffer for each render state to be updated. The <strong>RenderState</strong> member of this structure identifies the render state to be changed; the new value of this render state is specified in either the <strong>dwState</strong> member (for DWORD values) or the <strong>fState</strong> member (for D3DVALUE values).</p><p>The following figure shows a portion of the command buffer containing a D3DDP2OP_RENDERSTATE command and two D3DHAL_DP2RENDERSTATE structures. The first of the three structures indicates that two render states are to be updated. The second structure indicates that the D3DRENDERSTATE_FILLMODE render state is to be changed to <see cref="F:SharpDX.Direct3D9.FillMode.Solid" />. The third structure indicates that the D3DRENDERSTATE_SHADEMODE render state should be updated to <see cref="F:SharpDX.Direct3D9.ShadeMode.Gouraud" />.</p><p><strong> Additional Notes</strong></p><p>See the <see cref="T:SharpDX.Direct3D9.TextureStage" />, <see cref="T:SharpDX.Direct3D9.TextureOperation" />, and D3DTEXTUREFILTER enumerated types in the DirectX SDK documentation for complete listings of all of the enabled render state types.</p><p>Some changes have been made to the <see cref="T:SharpDX.Direct3D9.RenderState" /> enumerated type for DirectX 5.0 and beyond. D3DRENDERSTATE_BLENDENABLE has been removed completely although it is defined as D3DRENDERSTATE_ALPHABLENDENABLE in the <em>d3dtypes.h</em> header file. See D3DRENDERSTATE_COLORKEYENABLE for an explanation. The 128 integer values in the interval [128, 255] are reserved for texture coordinate wrap flags. These are constructed with the D3DWRAP_U and D3DWRAP_V macros. Using a flags word preserves forward compatibility with texture coordinates of higher dimension than 2D.</p><p>Multitexture macro ops and D3DRENDERSTATE_TEXTUREFACTOR override all of the per-texture stage blending controls (COLOR{OP,ARG1,ARG2} &amp; ALPHA{OP,ARG1,ARG2}).</p>
  15211. </remarks>
  15212. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRENDERSTATETYPE']/*" />
  15213. <msdn-id>ff549036</msdn-id>
  15214. <unmanaged>D3DRENDERSTATETYPE</unmanaged>
  15215. <unmanaged-short>D3DRENDERSTATETYPE</unmanaged-short>
  15216. </member>
  15217. <member name="F:SharpDX.Direct3D9.RenderState.ZEnable">
  15218. <summary>
  15219. <dd> <dl> <dt /> <dt> <p> Determines whether textures are evicted from memory.
  15220. The driver uses a <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> data type without a default value to detect whether to evict.</p> <p>This render state determines whether the driver evicts textures that it manages (as opposed to textures managed by the Direct3D runtime) from video memory. If the render state value is <strong>TRUE</strong>, the driver evicts the textures. Otherwise, the driver does not evict those textures.</p> </dt> </dl> </dd>
  15221. </summary>
  15222. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ZENABLE']/*" />
  15223. <msdn-id>ff549036</msdn-id>
  15224. <unmanaged>D3DRS_ZENABLE</unmanaged>
  15225. <unmanaged-short>D3DRS_ZENABLE</unmanaged-short>
  15226. </member>
  15227. <member name="F:SharpDX.Direct3D9.RenderState.FillMode">
  15228. <summary>
  15229. <dd> <dl> <dt /> <dt> <p>Specifies either begin scene information or end scene information for geometric data captured within a frame.
  15230. The driver uses a <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> data type with a default value of <strong>TRUE</strong> to detect scene-capture information.</p> <p>The driver responds to D3DRENDERSTATE_SCENECAPTURE first with <strong>TRUE</strong> for begin scene information and next with <strong><see cref="F:SharpDX.Result.False" /></strong> for end scene information to capture geometric data within a frame.
  15231. See the <em>permedia2</em> sample driver that ships with the Windows Driver Development Kit (DDK) for an example implementation.
  15232. Using the D3DRENDERSTATE_SCENECAPTURE render state in a <em>D3dDrawPrimitives2</em> call replaces the legacy <strong>D3DHALCallbacks</strong>-&gt;<em>D3dSceneCapture</em> callback routine.</p> <p>Care must be taken in updating a driver that implements the legacy <strong>D3DHALCallbacks</strong>-&gt;<em>D3dSceneCapture</em> callback routine to one using the D3DRENDERSTATE_SCENECAPTURE render state. The <em>D3dSceneCapture</em> callback routine uses the constants D3DHAL_SCENE_CAPTURE_START and D3DHAL_SCENE_CAPTURE_END to indicate, respectively, the beginning and end of a scene. The values of these constants are, respectively, 0 and 1. If you use these constants in place of <strong>TRUE</strong> and <strong><see cref="F:SharpDX.Result.False" /></strong> in this render state, the meaning will be the exact opposite of what you intend.</p> </dt> </dl> </dd>
  15233. </summary>
  15234. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_FILLMODE']/*" />
  15235. <msdn-id>ff549036</msdn-id>
  15236. <unmanaged>D3DRS_FILLMODE</unmanaged>
  15237. <unmanaged-short>D3DRS_FILLMODE</unmanaged-short>
  15238. </member>
  15239. <member name="F:SharpDX.Direct3D9.RenderState.ShadeMode">
  15240. <summary>
  15241. <dd> <dl> <dt /> <dt> <p><strong>DirectX 8.0 and later versions only.</strong></p> <p>Deletes either a rectangular or triangular patch from memory.
  15242. The driver uses a DWORD data type without a default value to detect the patch to delete.</p> <p>This render state notifies the driver that a patch is to be deleted. The value of this render state is the handle to the patch affected. All cached information should be freed and the handle should be removed from the driver's patch handle table. This render state is not visible to applications but is generated internally when an application calls the <strong>DeletePatch</strong> function. This render state is sent to the driver only when patches are deleted by <strong>DeletePatch</strong> explicitly. All other patches should be cleaned up when the device is destroyed.</p> </dt> </dl> </dd>
  15243. </summary>
  15244. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_SHADEMODE']/*" />
  15245. <msdn-id>ff549036</msdn-id>
  15246. <unmanaged>D3DRS_SHADEMODE</unmanaged>
  15247. <unmanaged-short>D3DRS_SHADEMODE</unmanaged-short>
  15248. </member>
  15249. <member name="F:SharpDX.Direct3D9.RenderState.ZWriteEnable">
  15250. <summary>
  15251. <dd> <dl> <dt /> <dt> <p><strong>DirectX 9.0 and later versions only.</strong></p> <p>Determines the maximum number of instructions that the vertex shader assembler can execute.</p> <p>The driver uses a DWORD data type with a default value of D3DINFINITEINSTRUCTIONS (0xffffffff) to report the maximum number of vertex-shader instructions.
  15252. This maximum number depends on the version of the vertex shader that the display device supports as shown in the following table.</p> <table> <tr><th>Version</th><th>Maximum number</th></tr> <tr><td>earlier than 2_0</td><td>0</td></tr> <tr><td>2_0 and later</td><td>From 216 (0x0000ffff) to D3DINFINITEINSTRUCTIONS</td></tr> </table> <p>?</p> <p>D3DINFINITEINSTRUCTIONS represents a virtually unlimited amount.</p> <p>Valid values for this render state are numbers that are powers of 2; if the driver sets any other integer, the runtime uses the next nearest power of 2 number.</p> <p>The runtime sets the <strong>MaxVShaderInstructionsExecuted</strong> member of the <see cref="T:SharpDX.Direct3D9.Capabilities" /> structure to this maximum number.</p> </dt> </dl> </dd>
  15253. </summary>
  15254. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ZWRITEENABLE']/*" />
  15255. <msdn-id>ff549036</msdn-id>
  15256. <unmanaged>D3DRS_ZWRITEENABLE</unmanaged>
  15257. <unmanaged-short>D3DRS_ZWRITEENABLE</unmanaged-short>
  15258. </member>
  15259. <member name="F:SharpDX.Direct3D9.RenderState.AlphaTestEnable">
  15260. <summary>
  15261. <dd> <dl> <dt /> <dt> <p><strong>DirectX 9.0 and later versions only.</strong></p> <p>Determines the maximum number of instructions that the pixel shader assembler can execute.</p> <p>The driver uses a DWORD data type with a default value of D3DINFINITEINSTRUCTIONS (0xffffffff) to report the maximum number of pixel-shader instructions.
  15262. This maximum number depends on the version of the pixel shader that the display device supports as shown in the following table.</p> <table> <tr><th>Version</th><th>Maximum number</th></tr> <tr><td>earlier than 2_0</td><td>0</td></tr> <tr><td>2_0</td><td>From 96 to D3DINFINITEINSTRUCTIONS</td></tr> <tr><td>3_0 and later</td><td>From 216 (0x0000ffff) to D3DINFINITEINSTRUCTIONS</td></tr> </table> <p>?</p> <p>D3DINFINITEINSTRUCTIONS represents a virtually unlimited amount.</p> <p>Valid values for this render state are numbers that are powers of 2; if the driver sets any other integer, the runtime uses the next nearest power of 2 number.</p> <p>The runtime sets the <strong>MaxVShaderInstructionsExecuted</strong> member of the <see cref="T:SharpDX.Direct3D9.Capabilities" /> structure to this maximum number.</p> </dt> </dl> </dd>
  15263. </summary>
  15264. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ALPHATESTENABLE']/*" />
  15265. <msdn-id>ff549036</msdn-id>
  15266. <unmanaged>D3DRS_ALPHATESTENABLE</unmanaged>
  15267. <unmanaged-short>D3DRS_ALPHATESTENABLE</unmanaged-short>
  15268. </member>
  15269. <member name="F:SharpDX.Direct3D9.RenderState.LastPixel">
  15270. <summary>
  15271. No documentation.
  15272. </summary>
  15273. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_LASTPIXEL']/*" />
  15274. <msdn-id>ff549036</msdn-id>
  15275. <unmanaged>D3DRS_LASTPIXEL</unmanaged>
  15276. <unmanaged-short>D3DRS_LASTPIXEL</unmanaged-short>
  15277. </member>
  15278. <member name="F:SharpDX.Direct3D9.RenderState.SourceBlend">
  15279. <summary>
  15280. No documentation.
  15281. </summary>
  15282. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_SRCBLEND']/*" />
  15283. <msdn-id>ff549036</msdn-id>
  15284. <unmanaged>D3DRS_SRCBLEND</unmanaged>
  15285. <unmanaged-short>D3DRS_SRCBLEND</unmanaged-short>
  15286. </member>
  15287. <member name="F:SharpDX.Direct3D9.RenderState.DestinationBlend">
  15288. <summary>
  15289. No documentation.
  15290. </summary>
  15291. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_DESTBLEND']/*" />
  15292. <msdn-id>ff549036</msdn-id>
  15293. <unmanaged>D3DRS_DESTBLEND</unmanaged>
  15294. <unmanaged-short>D3DRS_DESTBLEND</unmanaged-short>
  15295. </member>
  15296. <member name="F:SharpDX.Direct3D9.RenderState.CullMode">
  15297. <summary>
  15298. No documentation.
  15299. </summary>
  15300. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_CULLMODE']/*" />
  15301. <msdn-id>ff549036</msdn-id>
  15302. <unmanaged>D3DRS_CULLMODE</unmanaged>
  15303. <unmanaged-short>D3DRS_CULLMODE</unmanaged-short>
  15304. </member>
  15305. <member name="F:SharpDX.Direct3D9.RenderState.ZFunc">
  15306. <summary>
  15307. No documentation.
  15308. </summary>
  15309. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ZFUNC']/*" />
  15310. <msdn-id>ff549036</msdn-id>
  15311. <unmanaged>D3DRS_ZFUNC</unmanaged>
  15312. <unmanaged-short>D3DRS_ZFUNC</unmanaged-short>
  15313. </member>
  15314. <member name="F:SharpDX.Direct3D9.RenderState.AlphaRef">
  15315. <summary>
  15316. No documentation.
  15317. </summary>
  15318. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ALPHAREF']/*" />
  15319. <msdn-id>ff549036</msdn-id>
  15320. <unmanaged>D3DRS_ALPHAREF</unmanaged>
  15321. <unmanaged-short>D3DRS_ALPHAREF</unmanaged-short>
  15322. </member>
  15323. <member name="F:SharpDX.Direct3D9.RenderState.AlphaFunc">
  15324. <summary>
  15325. No documentation.
  15326. </summary>
  15327. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ALPHAFUNC']/*" />
  15328. <msdn-id>ff549036</msdn-id>
  15329. <unmanaged>D3DRS_ALPHAFUNC</unmanaged>
  15330. <unmanaged-short>D3DRS_ALPHAFUNC</unmanaged-short>
  15331. </member>
  15332. <member name="F:SharpDX.Direct3D9.RenderState.DitherEnable">
  15333. <summary>
  15334. No documentation.
  15335. </summary>
  15336. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_DITHERENABLE']/*" />
  15337. <msdn-id>ff549036</msdn-id>
  15338. <unmanaged>D3DRS_DITHERENABLE</unmanaged>
  15339. <unmanaged-short>D3DRS_DITHERENABLE</unmanaged-short>
  15340. </member>
  15341. <member name="F:SharpDX.Direct3D9.RenderState.AlphaBlendEnable">
  15342. <summary>
  15343. No documentation.
  15344. </summary>
  15345. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ALPHABLENDENABLE']/*" />
  15346. <msdn-id>ff549036</msdn-id>
  15347. <unmanaged>D3DRS_ALPHABLENDENABLE</unmanaged>
  15348. <unmanaged-short>D3DRS_ALPHABLENDENABLE</unmanaged-short>
  15349. </member>
  15350. <member name="F:SharpDX.Direct3D9.RenderState.FogEnable">
  15351. <summary>
  15352. No documentation.
  15353. </summary>
  15354. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_FOGENABLE']/*" />
  15355. <msdn-id>ff549036</msdn-id>
  15356. <unmanaged>D3DRS_FOGENABLE</unmanaged>
  15357. <unmanaged-short>D3DRS_FOGENABLE</unmanaged-short>
  15358. </member>
  15359. <member name="F:SharpDX.Direct3D9.RenderState.SpecularEnable">
  15360. <summary>
  15361. No documentation.
  15362. </summary>
  15363. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_SPECULARENABLE']/*" />
  15364. <msdn-id>ff549036</msdn-id>
  15365. <unmanaged>D3DRS_SPECULARENABLE</unmanaged>
  15366. <unmanaged-short>D3DRS_SPECULARENABLE</unmanaged-short>
  15367. </member>
  15368. <member name="F:SharpDX.Direct3D9.RenderState.FogColor">
  15369. <summary>
  15370. No documentation.
  15371. </summary>
  15372. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_FOGCOLOR']/*" />
  15373. <msdn-id>ff549036</msdn-id>
  15374. <unmanaged>D3DRS_FOGCOLOR</unmanaged>
  15375. <unmanaged-short>D3DRS_FOGCOLOR</unmanaged-short>
  15376. </member>
  15377. <member name="F:SharpDX.Direct3D9.RenderState.FogTableMode">
  15378. <summary>
  15379. No documentation.
  15380. </summary>
  15381. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_FOGTABLEMODE']/*" />
  15382. <msdn-id>ff549036</msdn-id>
  15383. <unmanaged>D3DRS_FOGTABLEMODE</unmanaged>
  15384. <unmanaged-short>D3DRS_FOGTABLEMODE</unmanaged-short>
  15385. </member>
  15386. <member name="F:SharpDX.Direct3D9.RenderState.FogStart">
  15387. <summary>
  15388. No documentation.
  15389. </summary>
  15390. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_FOGSTART']/*" />
  15391. <msdn-id>ff549036</msdn-id>
  15392. <unmanaged>D3DRS_FOGSTART</unmanaged>
  15393. <unmanaged-short>D3DRS_FOGSTART</unmanaged-short>
  15394. </member>
  15395. <member name="F:SharpDX.Direct3D9.RenderState.FogEnd">
  15396. <summary>
  15397. No documentation.
  15398. </summary>
  15399. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_FOGEND']/*" />
  15400. <msdn-id>ff549036</msdn-id>
  15401. <unmanaged>D3DRS_FOGEND</unmanaged>
  15402. <unmanaged-short>D3DRS_FOGEND</unmanaged-short>
  15403. </member>
  15404. <member name="F:SharpDX.Direct3D9.RenderState.FogDensity">
  15405. <summary>
  15406. No documentation.
  15407. </summary>
  15408. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_FOGDENSITY']/*" />
  15409. <msdn-id>ff549036</msdn-id>
  15410. <unmanaged>D3DRS_FOGDENSITY</unmanaged>
  15411. <unmanaged-short>D3DRS_FOGDENSITY</unmanaged-short>
  15412. </member>
  15413. <member name="F:SharpDX.Direct3D9.RenderState.RangeFogEnable">
  15414. <summary>
  15415. No documentation.
  15416. </summary>
  15417. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_RANGEFOGENABLE']/*" />
  15418. <msdn-id>ff549036</msdn-id>
  15419. <unmanaged>D3DRS_RANGEFOGENABLE</unmanaged>
  15420. <unmanaged-short>D3DRS_RANGEFOGENABLE</unmanaged-short>
  15421. </member>
  15422. <member name="F:SharpDX.Direct3D9.RenderState.StencilEnable">
  15423. <summary>
  15424. No documentation.
  15425. </summary>
  15426. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_STENCILENABLE']/*" />
  15427. <msdn-id>ff549036</msdn-id>
  15428. <unmanaged>D3DRS_STENCILENABLE</unmanaged>
  15429. <unmanaged-short>D3DRS_STENCILENABLE</unmanaged-short>
  15430. </member>
  15431. <member name="F:SharpDX.Direct3D9.RenderState.StencilFail">
  15432. <summary>
  15433. No documentation.
  15434. </summary>
  15435. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_STENCILFAIL']/*" />
  15436. <msdn-id>ff549036</msdn-id>
  15437. <unmanaged>D3DRS_STENCILFAIL</unmanaged>
  15438. <unmanaged-short>D3DRS_STENCILFAIL</unmanaged-short>
  15439. </member>
  15440. <member name="F:SharpDX.Direct3D9.RenderState.StencilZFail">
  15441. <summary>
  15442. No documentation.
  15443. </summary>
  15444. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_STENCILZFAIL']/*" />
  15445. <msdn-id>ff549036</msdn-id>
  15446. <unmanaged>D3DRS_STENCILZFAIL</unmanaged>
  15447. <unmanaged-short>D3DRS_STENCILZFAIL</unmanaged-short>
  15448. </member>
  15449. <member name="F:SharpDX.Direct3D9.RenderState.StencilPass">
  15450. <summary>
  15451. No documentation.
  15452. </summary>
  15453. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_STENCILPASS']/*" />
  15454. <msdn-id>ff549036</msdn-id>
  15455. <unmanaged>D3DRS_STENCILPASS</unmanaged>
  15456. <unmanaged-short>D3DRS_STENCILPASS</unmanaged-short>
  15457. </member>
  15458. <member name="F:SharpDX.Direct3D9.RenderState.StencilFunc">
  15459. <summary>
  15460. No documentation.
  15461. </summary>
  15462. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_STENCILFUNC']/*" />
  15463. <msdn-id>ff549036</msdn-id>
  15464. <unmanaged>D3DRS_STENCILFUNC</unmanaged>
  15465. <unmanaged-short>D3DRS_STENCILFUNC</unmanaged-short>
  15466. </member>
  15467. <member name="F:SharpDX.Direct3D9.RenderState.StencilRef">
  15468. <summary>
  15469. No documentation.
  15470. </summary>
  15471. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_STENCILREF']/*" />
  15472. <msdn-id>ff549036</msdn-id>
  15473. <unmanaged>D3DRS_STENCILREF</unmanaged>
  15474. <unmanaged-short>D3DRS_STENCILREF</unmanaged-short>
  15475. </member>
  15476. <member name="F:SharpDX.Direct3D9.RenderState.StencilMask">
  15477. <summary>
  15478. No documentation.
  15479. </summary>
  15480. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_STENCILMASK']/*" />
  15481. <msdn-id>ff549036</msdn-id>
  15482. <unmanaged>D3DRS_STENCILMASK</unmanaged>
  15483. <unmanaged-short>D3DRS_STENCILMASK</unmanaged-short>
  15484. </member>
  15485. <member name="F:SharpDX.Direct3D9.RenderState.StencilWriteMask">
  15486. <summary>
  15487. No documentation.
  15488. </summary>
  15489. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_STENCILWRITEMASK']/*" />
  15490. <msdn-id>ff549036</msdn-id>
  15491. <unmanaged>D3DRS_STENCILWRITEMASK</unmanaged>
  15492. <unmanaged-short>D3DRS_STENCILWRITEMASK</unmanaged-short>
  15493. </member>
  15494. <member name="F:SharpDX.Direct3D9.RenderState.TextureFactor">
  15495. <summary>
  15496. No documentation.
  15497. </summary>
  15498. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_TEXTUREFACTOR']/*" />
  15499. <msdn-id>ff549036</msdn-id>
  15500. <unmanaged>D3DRS_TEXTUREFACTOR</unmanaged>
  15501. <unmanaged-short>D3DRS_TEXTUREFACTOR</unmanaged-short>
  15502. </member>
  15503. <member name="F:SharpDX.Direct3D9.RenderState.Wrap0">
  15504. <summary>
  15505. No documentation.
  15506. </summary>
  15507. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP0']/*" />
  15508. <msdn-id>ff549036</msdn-id>
  15509. <unmanaged>D3DRS_WRAP0</unmanaged>
  15510. <unmanaged-short>D3DRS_WRAP0</unmanaged-short>
  15511. </member>
  15512. <member name="F:SharpDX.Direct3D9.RenderState.Wrap1">
  15513. <summary>
  15514. No documentation.
  15515. </summary>
  15516. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP1']/*" />
  15517. <msdn-id>ff549036</msdn-id>
  15518. <unmanaged>D3DRS_WRAP1</unmanaged>
  15519. <unmanaged-short>D3DRS_WRAP1</unmanaged-short>
  15520. </member>
  15521. <member name="F:SharpDX.Direct3D9.RenderState.Wrap2">
  15522. <summary>
  15523. No documentation.
  15524. </summary>
  15525. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP2']/*" />
  15526. <msdn-id>ff549036</msdn-id>
  15527. <unmanaged>D3DRS_WRAP2</unmanaged>
  15528. <unmanaged-short>D3DRS_WRAP2</unmanaged-short>
  15529. </member>
  15530. <member name="F:SharpDX.Direct3D9.RenderState.Wrap3">
  15531. <summary>
  15532. No documentation.
  15533. </summary>
  15534. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP3']/*" />
  15535. <msdn-id>ff549036</msdn-id>
  15536. <unmanaged>D3DRS_WRAP3</unmanaged>
  15537. <unmanaged-short>D3DRS_WRAP3</unmanaged-short>
  15538. </member>
  15539. <member name="F:SharpDX.Direct3D9.RenderState.Wrap4">
  15540. <summary>
  15541. No documentation.
  15542. </summary>
  15543. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP4']/*" />
  15544. <msdn-id>ff549036</msdn-id>
  15545. <unmanaged>D3DRS_WRAP4</unmanaged>
  15546. <unmanaged-short>D3DRS_WRAP4</unmanaged-short>
  15547. </member>
  15548. <member name="F:SharpDX.Direct3D9.RenderState.Wrap5">
  15549. <summary>
  15550. No documentation.
  15551. </summary>
  15552. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP5']/*" />
  15553. <msdn-id>ff549036</msdn-id>
  15554. <unmanaged>D3DRS_WRAP5</unmanaged>
  15555. <unmanaged-short>D3DRS_WRAP5</unmanaged-short>
  15556. </member>
  15557. <member name="F:SharpDX.Direct3D9.RenderState.Wrap6">
  15558. <summary>
  15559. No documentation.
  15560. </summary>
  15561. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP6']/*" />
  15562. <msdn-id>ff549036</msdn-id>
  15563. <unmanaged>D3DRS_WRAP6</unmanaged>
  15564. <unmanaged-short>D3DRS_WRAP6</unmanaged-short>
  15565. </member>
  15566. <member name="F:SharpDX.Direct3D9.RenderState.Wrap7">
  15567. <summary>
  15568. No documentation.
  15569. </summary>
  15570. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP7']/*" />
  15571. <msdn-id>ff549036</msdn-id>
  15572. <unmanaged>D3DRS_WRAP7</unmanaged>
  15573. <unmanaged-short>D3DRS_WRAP7</unmanaged-short>
  15574. </member>
  15575. <member name="F:SharpDX.Direct3D9.RenderState.Clipping">
  15576. <summary>
  15577. No documentation.
  15578. </summary>
  15579. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_CLIPPING']/*" />
  15580. <msdn-id>ff549036</msdn-id>
  15581. <unmanaged>D3DRS_CLIPPING</unmanaged>
  15582. <unmanaged-short>D3DRS_CLIPPING</unmanaged-short>
  15583. </member>
  15584. <member name="F:SharpDX.Direct3D9.RenderState.Lighting">
  15585. <summary>
  15586. No documentation.
  15587. </summary>
  15588. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_LIGHTING']/*" />
  15589. <msdn-id>ff549036</msdn-id>
  15590. <unmanaged>D3DRS_LIGHTING</unmanaged>
  15591. <unmanaged-short>D3DRS_LIGHTING</unmanaged-short>
  15592. </member>
  15593. <member name="F:SharpDX.Direct3D9.RenderState.Ambient">
  15594. <summary>
  15595. No documentation.
  15596. </summary>
  15597. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_AMBIENT']/*" />
  15598. <msdn-id>ff549036</msdn-id>
  15599. <unmanaged>D3DRS_AMBIENT</unmanaged>
  15600. <unmanaged-short>D3DRS_AMBIENT</unmanaged-short>
  15601. </member>
  15602. <member name="F:SharpDX.Direct3D9.RenderState.FogVertexMode">
  15603. <summary>
  15604. No documentation.
  15605. </summary>
  15606. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_FOGVERTEXMODE']/*" />
  15607. <msdn-id>ff549036</msdn-id>
  15608. <unmanaged>D3DRS_FOGVERTEXMODE</unmanaged>
  15609. <unmanaged-short>D3DRS_FOGVERTEXMODE</unmanaged-short>
  15610. </member>
  15611. <member name="F:SharpDX.Direct3D9.RenderState.ColorVertex">
  15612. <summary>
  15613. No documentation.
  15614. </summary>
  15615. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_COLORVERTEX']/*" />
  15616. <msdn-id>ff549036</msdn-id>
  15617. <unmanaged>D3DRS_COLORVERTEX</unmanaged>
  15618. <unmanaged-short>D3DRS_COLORVERTEX</unmanaged-short>
  15619. </member>
  15620. <member name="F:SharpDX.Direct3D9.RenderState.LocalViewer">
  15621. <summary>
  15622. No documentation.
  15623. </summary>
  15624. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_LOCALVIEWER']/*" />
  15625. <msdn-id>ff549036</msdn-id>
  15626. <unmanaged>D3DRS_LOCALVIEWER</unmanaged>
  15627. <unmanaged-short>D3DRS_LOCALVIEWER</unmanaged-short>
  15628. </member>
  15629. <member name="F:SharpDX.Direct3D9.RenderState.NormalizeNormals">
  15630. <summary>
  15631. No documentation.
  15632. </summary>
  15633. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_NORMALIZENORMALS']/*" />
  15634. <msdn-id>ff549036</msdn-id>
  15635. <unmanaged>D3DRS_NORMALIZENORMALS</unmanaged>
  15636. <unmanaged-short>D3DRS_NORMALIZENORMALS</unmanaged-short>
  15637. </member>
  15638. <member name="F:SharpDX.Direct3D9.RenderState.DiffuseMaterialSource">
  15639. <summary>
  15640. No documentation.
  15641. </summary>
  15642. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_DIFFUSEMATERIALSOURCE']/*" />
  15643. <msdn-id>ff549036</msdn-id>
  15644. <unmanaged>D3DRS_DIFFUSEMATERIALSOURCE</unmanaged>
  15645. <unmanaged-short>D3DRS_DIFFUSEMATERIALSOURCE</unmanaged-short>
  15646. </member>
  15647. <member name="F:SharpDX.Direct3D9.RenderState.SpecularMaterialSource">
  15648. <summary>
  15649. No documentation.
  15650. </summary>
  15651. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_SPECULARMATERIALSOURCE']/*" />
  15652. <msdn-id>ff549036</msdn-id>
  15653. <unmanaged>D3DRS_SPECULARMATERIALSOURCE</unmanaged>
  15654. <unmanaged-short>D3DRS_SPECULARMATERIALSOURCE</unmanaged-short>
  15655. </member>
  15656. <member name="F:SharpDX.Direct3D9.RenderState.AmbientMaterialSource">
  15657. <summary>
  15658. No documentation.
  15659. </summary>
  15660. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_AMBIENTMATERIALSOURCE']/*" />
  15661. <msdn-id>ff549036</msdn-id>
  15662. <unmanaged>D3DRS_AMBIENTMATERIALSOURCE</unmanaged>
  15663. <unmanaged-short>D3DRS_AMBIENTMATERIALSOURCE</unmanaged-short>
  15664. </member>
  15665. <member name="F:SharpDX.Direct3D9.RenderState.EmissiveMaterialSource">
  15666. <summary>
  15667. No documentation.
  15668. </summary>
  15669. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_EMISSIVEMATERIALSOURCE']/*" />
  15670. <msdn-id>ff549036</msdn-id>
  15671. <unmanaged>D3DRS_EMISSIVEMATERIALSOURCE</unmanaged>
  15672. <unmanaged-short>D3DRS_EMISSIVEMATERIALSOURCE</unmanaged-short>
  15673. </member>
  15674. <member name="F:SharpDX.Direct3D9.RenderState.VertexBlend">
  15675. <summary>
  15676. No documentation.
  15677. </summary>
  15678. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_VERTEXBLEND']/*" />
  15679. <msdn-id>ff549036</msdn-id>
  15680. <unmanaged>D3DRS_VERTEXBLEND</unmanaged>
  15681. <unmanaged-short>D3DRS_VERTEXBLEND</unmanaged-short>
  15682. </member>
  15683. <member name="F:SharpDX.Direct3D9.RenderState.ClipPlaneEnable">
  15684. <summary>
  15685. No documentation.
  15686. </summary>
  15687. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_CLIPPLANEENABLE']/*" />
  15688. <msdn-id>ff549036</msdn-id>
  15689. <unmanaged>D3DRS_CLIPPLANEENABLE</unmanaged>
  15690. <unmanaged-short>D3DRS_CLIPPLANEENABLE</unmanaged-short>
  15691. </member>
  15692. <member name="F:SharpDX.Direct3D9.RenderState.PointSize">
  15693. <summary>
  15694. No documentation.
  15695. </summary>
  15696. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_POINTSIZE']/*" />
  15697. <msdn-id>ff549036</msdn-id>
  15698. <unmanaged>D3DRS_POINTSIZE</unmanaged>
  15699. <unmanaged-short>D3DRS_POINTSIZE</unmanaged-short>
  15700. </member>
  15701. <member name="F:SharpDX.Direct3D9.RenderState.PointSizeMin">
  15702. <summary>
  15703. No documentation.
  15704. </summary>
  15705. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_POINTSIZE_MIN']/*" />
  15706. <msdn-id>ff549036</msdn-id>
  15707. <unmanaged>D3DRS_POINTSIZE_MIN</unmanaged>
  15708. <unmanaged-short>D3DRS_POINTSIZE_MIN</unmanaged-short>
  15709. </member>
  15710. <member name="F:SharpDX.Direct3D9.RenderState.PointSpriteEnable">
  15711. <summary>
  15712. No documentation.
  15713. </summary>
  15714. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_POINTSPRITEENABLE']/*" />
  15715. <msdn-id>ff549036</msdn-id>
  15716. <unmanaged>D3DRS_POINTSPRITEENABLE</unmanaged>
  15717. <unmanaged-short>D3DRS_POINTSPRITEENABLE</unmanaged-short>
  15718. </member>
  15719. <member name="F:SharpDX.Direct3D9.RenderState.PointScaleEnable">
  15720. <summary>
  15721. No documentation.
  15722. </summary>
  15723. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_POINTSCALEENABLE']/*" />
  15724. <msdn-id>ff549036</msdn-id>
  15725. <unmanaged>D3DRS_POINTSCALEENABLE</unmanaged>
  15726. <unmanaged-short>D3DRS_POINTSCALEENABLE</unmanaged-short>
  15727. </member>
  15728. <member name="F:SharpDX.Direct3D9.RenderState.PointScaleA">
  15729. <summary>
  15730. No documentation.
  15731. </summary>
  15732. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_POINTSCALE_A']/*" />
  15733. <msdn-id>ff549036</msdn-id>
  15734. <unmanaged>D3DRS_POINTSCALE_A</unmanaged>
  15735. <unmanaged-short>D3DRS_POINTSCALE_A</unmanaged-short>
  15736. </member>
  15737. <member name="F:SharpDX.Direct3D9.RenderState.PointScaleB">
  15738. <summary>
  15739. No documentation.
  15740. </summary>
  15741. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_POINTSCALE_B']/*" />
  15742. <msdn-id>ff549036</msdn-id>
  15743. <unmanaged>D3DRS_POINTSCALE_B</unmanaged>
  15744. <unmanaged-short>D3DRS_POINTSCALE_B</unmanaged-short>
  15745. </member>
  15746. <member name="F:SharpDX.Direct3D9.RenderState.PointScaleC">
  15747. <summary>
  15748. No documentation.
  15749. </summary>
  15750. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_POINTSCALE_C']/*" />
  15751. <msdn-id>ff549036</msdn-id>
  15752. <unmanaged>D3DRS_POINTSCALE_C</unmanaged>
  15753. <unmanaged-short>D3DRS_POINTSCALE_C</unmanaged-short>
  15754. </member>
  15755. <member name="F:SharpDX.Direct3D9.RenderState.MultisampleAntialias">
  15756. <summary>
  15757. No documentation.
  15758. </summary>
  15759. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_MULTISAMPLEANTIALIAS']/*" />
  15760. <msdn-id>ff549036</msdn-id>
  15761. <unmanaged>D3DRS_MULTISAMPLEANTIALIAS</unmanaged>
  15762. <unmanaged-short>D3DRS_MULTISAMPLEANTIALIAS</unmanaged-short>
  15763. </member>
  15764. <member name="F:SharpDX.Direct3D9.RenderState.MultisampleMask">
  15765. <summary>
  15766. No documentation.
  15767. </summary>
  15768. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_MULTISAMPLEMASK']/*" />
  15769. <msdn-id>ff549036</msdn-id>
  15770. <unmanaged>D3DRS_MULTISAMPLEMASK</unmanaged>
  15771. <unmanaged-short>D3DRS_MULTISAMPLEMASK</unmanaged-short>
  15772. </member>
  15773. <member name="F:SharpDX.Direct3D9.RenderState.PatchEdgeStyle">
  15774. <summary>
  15775. No documentation.
  15776. </summary>
  15777. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_PATCHEDGESTYLE']/*" />
  15778. <msdn-id>ff549036</msdn-id>
  15779. <unmanaged>D3DRS_PATCHEDGESTYLE</unmanaged>
  15780. <unmanaged-short>D3DRS_PATCHEDGESTYLE</unmanaged-short>
  15781. </member>
  15782. <member name="F:SharpDX.Direct3D9.RenderState.DebugMonitorToken">
  15783. <summary>
  15784. No documentation.
  15785. </summary>
  15786. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_DEBUGMONITORTOKEN']/*" />
  15787. <msdn-id>ff549036</msdn-id>
  15788. <unmanaged>D3DRS_DEBUGMONITORTOKEN</unmanaged>
  15789. <unmanaged-short>D3DRS_DEBUGMONITORTOKEN</unmanaged-short>
  15790. </member>
  15791. <member name="F:SharpDX.Direct3D9.RenderState.PointSizeMax">
  15792. <summary>
  15793. No documentation.
  15794. </summary>
  15795. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_POINTSIZE_MAX']/*" />
  15796. <msdn-id>ff549036</msdn-id>
  15797. <unmanaged>D3DRS_POINTSIZE_MAX</unmanaged>
  15798. <unmanaged-short>D3DRS_POINTSIZE_MAX</unmanaged-short>
  15799. </member>
  15800. <member name="F:SharpDX.Direct3D9.RenderState.IndexedVertexBlendEnable">
  15801. <summary>
  15802. No documentation.
  15803. </summary>
  15804. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_INDEXEDVERTEXBLENDENABLE']/*" />
  15805. <msdn-id>ff549036</msdn-id>
  15806. <unmanaged>D3DRS_INDEXEDVERTEXBLENDENABLE</unmanaged>
  15807. <unmanaged-short>D3DRS_INDEXEDVERTEXBLENDENABLE</unmanaged-short>
  15808. </member>
  15809. <member name="F:SharpDX.Direct3D9.RenderState.ColorWriteEnable">
  15810. <summary>
  15811. No documentation.
  15812. </summary>
  15813. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_COLORWRITEENABLE']/*" />
  15814. <msdn-id>ff549036</msdn-id>
  15815. <unmanaged>D3DRS_COLORWRITEENABLE</unmanaged>
  15816. <unmanaged-short>D3DRS_COLORWRITEENABLE</unmanaged-short>
  15817. </member>
  15818. <member name="F:SharpDX.Direct3D9.RenderState.TweenFactor">
  15819. <summary>
  15820. No documentation.
  15821. </summary>
  15822. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_TWEENFACTOR']/*" />
  15823. <msdn-id>ff549036</msdn-id>
  15824. <unmanaged>D3DRS_TWEENFACTOR</unmanaged>
  15825. <unmanaged-short>D3DRS_TWEENFACTOR</unmanaged-short>
  15826. </member>
  15827. <member name="F:SharpDX.Direct3D9.RenderState.BlendOperation">
  15828. <summary>
  15829. No documentation.
  15830. </summary>
  15831. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_BLENDOP']/*" />
  15832. <msdn-id>ff549036</msdn-id>
  15833. <unmanaged>D3DRS_BLENDOP</unmanaged>
  15834. <unmanaged-short>D3DRS_BLENDOP</unmanaged-short>
  15835. </member>
  15836. <member name="F:SharpDX.Direct3D9.RenderState.PositionDegree">
  15837. <summary>
  15838. No documentation.
  15839. </summary>
  15840. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_POSITIONDEGREE']/*" />
  15841. <msdn-id>ff549036</msdn-id>
  15842. <unmanaged>D3DRS_POSITIONDEGREE</unmanaged>
  15843. <unmanaged-short>D3DRS_POSITIONDEGREE</unmanaged-short>
  15844. </member>
  15845. <member name="F:SharpDX.Direct3D9.RenderState.NormalDegree">
  15846. <summary>
  15847. No documentation.
  15848. </summary>
  15849. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_NORMALDEGREE']/*" />
  15850. <msdn-id>ff549036</msdn-id>
  15851. <unmanaged>D3DRS_NORMALDEGREE</unmanaged>
  15852. <unmanaged-short>D3DRS_NORMALDEGREE</unmanaged-short>
  15853. </member>
  15854. <member name="F:SharpDX.Direct3D9.RenderState.ScissorTestEnable">
  15855. <summary>
  15856. No documentation.
  15857. </summary>
  15858. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_SCISSORTESTENABLE']/*" />
  15859. <msdn-id>ff549036</msdn-id>
  15860. <unmanaged>D3DRS_SCISSORTESTENABLE</unmanaged>
  15861. <unmanaged-short>D3DRS_SCISSORTESTENABLE</unmanaged-short>
  15862. </member>
  15863. <member name="F:SharpDX.Direct3D9.RenderState.SlopeScaleDepthBias">
  15864. <summary>
  15865. No documentation.
  15866. </summary>
  15867. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_SLOPESCALEDEPTHBIAS']/*" />
  15868. <msdn-id>ff549036</msdn-id>
  15869. <unmanaged>D3DRS_SLOPESCALEDEPTHBIAS</unmanaged>
  15870. <unmanaged-short>D3DRS_SLOPESCALEDEPTHBIAS</unmanaged-short>
  15871. </member>
  15872. <member name="F:SharpDX.Direct3D9.RenderState.AntialiasedLineEnable">
  15873. <summary>
  15874. No documentation.
  15875. </summary>
  15876. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ANTIALIASEDLINEENABLE']/*" />
  15877. <msdn-id>ff549036</msdn-id>
  15878. <unmanaged>D3DRS_ANTIALIASEDLINEENABLE</unmanaged>
  15879. <unmanaged-short>D3DRS_ANTIALIASEDLINEENABLE</unmanaged-short>
  15880. </member>
  15881. <member name="F:SharpDX.Direct3D9.RenderState.MinTessellationLevel">
  15882. <summary>
  15883. No documentation.
  15884. </summary>
  15885. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_MINTESSELLATIONLEVEL']/*" />
  15886. <msdn-id>ff549036</msdn-id>
  15887. <unmanaged>D3DRS_MINTESSELLATIONLEVEL</unmanaged>
  15888. <unmanaged-short>D3DRS_MINTESSELLATIONLEVEL</unmanaged-short>
  15889. </member>
  15890. <member name="F:SharpDX.Direct3D9.RenderState.MaxTessellationLevel">
  15891. <summary>
  15892. No documentation.
  15893. </summary>
  15894. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_MAXTESSELLATIONLEVEL']/*" />
  15895. <msdn-id>ff549036</msdn-id>
  15896. <unmanaged>D3DRS_MAXTESSELLATIONLEVEL</unmanaged>
  15897. <unmanaged-short>D3DRS_MAXTESSELLATIONLEVEL</unmanaged-short>
  15898. </member>
  15899. <member name="F:SharpDX.Direct3D9.RenderState.AdaptiveTessX">
  15900. <summary>
  15901. No documentation.
  15902. </summary>
  15903. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ADAPTIVETESS_X']/*" />
  15904. <msdn-id>ff549036</msdn-id>
  15905. <unmanaged>D3DRS_ADAPTIVETESS_X</unmanaged>
  15906. <unmanaged-short>D3DRS_ADAPTIVETESS_X</unmanaged-short>
  15907. </member>
  15908. <member name="F:SharpDX.Direct3D9.RenderState.AdaptiveTessY">
  15909. <summary>
  15910. No documentation.
  15911. </summary>
  15912. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ADAPTIVETESS_Y']/*" />
  15913. <msdn-id>ff549036</msdn-id>
  15914. <unmanaged>D3DRS_ADAPTIVETESS_Y</unmanaged>
  15915. <unmanaged-short>D3DRS_ADAPTIVETESS_Y</unmanaged-short>
  15916. </member>
  15917. <member name="F:SharpDX.Direct3D9.RenderState.AdaptiveTessZ">
  15918. <summary>
  15919. No documentation.
  15920. </summary>
  15921. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ADAPTIVETESS_Z']/*" />
  15922. <msdn-id>ff549036</msdn-id>
  15923. <unmanaged>D3DRS_ADAPTIVETESS_Z</unmanaged>
  15924. <unmanaged-short>D3DRS_ADAPTIVETESS_Z</unmanaged-short>
  15925. </member>
  15926. <member name="F:SharpDX.Direct3D9.RenderState.AdaptiveTessW">
  15927. <summary>
  15928. No documentation.
  15929. </summary>
  15930. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ADAPTIVETESS_W']/*" />
  15931. <msdn-id>ff549036</msdn-id>
  15932. <unmanaged>D3DRS_ADAPTIVETESS_W</unmanaged>
  15933. <unmanaged-short>D3DRS_ADAPTIVETESS_W</unmanaged-short>
  15934. </member>
  15935. <member name="F:SharpDX.Direct3D9.RenderState.EnableAdaptiveTessellation">
  15936. <summary>
  15937. No documentation.
  15938. </summary>
  15939. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_ENABLEADAPTIVETESSELLATION']/*" />
  15940. <msdn-id>ff549036</msdn-id>
  15941. <unmanaged>D3DRS_ENABLEADAPTIVETESSELLATION</unmanaged>
  15942. <unmanaged-short>D3DRS_ENABLEADAPTIVETESSELLATION</unmanaged-short>
  15943. </member>
  15944. <member name="F:SharpDX.Direct3D9.RenderState.TwoSidedStencilMode">
  15945. <summary>
  15946. No documentation.
  15947. </summary>
  15948. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_TWOSIDEDSTENCILMODE']/*" />
  15949. <msdn-id>ff549036</msdn-id>
  15950. <unmanaged>D3DRS_TWOSIDEDSTENCILMODE</unmanaged>
  15951. <unmanaged-short>D3DRS_TWOSIDEDSTENCILMODE</unmanaged-short>
  15952. </member>
  15953. <member name="F:SharpDX.Direct3D9.RenderState.CcwStencilFail">
  15954. <summary>
  15955. No documentation.
  15956. </summary>
  15957. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_CCW_STENCILFAIL']/*" />
  15958. <msdn-id>ff549036</msdn-id>
  15959. <unmanaged>D3DRS_CCW_STENCILFAIL</unmanaged>
  15960. <unmanaged-short>D3DRS_CCW_STENCILFAIL</unmanaged-short>
  15961. </member>
  15962. <member name="F:SharpDX.Direct3D9.RenderState.CcwStencilZFail">
  15963. <summary>
  15964. No documentation.
  15965. </summary>
  15966. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_CCW_STENCILZFAIL']/*" />
  15967. <msdn-id>ff549036</msdn-id>
  15968. <unmanaged>D3DRS_CCW_STENCILZFAIL</unmanaged>
  15969. <unmanaged-short>D3DRS_CCW_STENCILZFAIL</unmanaged-short>
  15970. </member>
  15971. <member name="F:SharpDX.Direct3D9.RenderState.CcwStencilPass">
  15972. <summary>
  15973. No documentation.
  15974. </summary>
  15975. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_CCW_STENCILPASS']/*" />
  15976. <msdn-id>ff549036</msdn-id>
  15977. <unmanaged>D3DRS_CCW_STENCILPASS</unmanaged>
  15978. <unmanaged-short>D3DRS_CCW_STENCILPASS</unmanaged-short>
  15979. </member>
  15980. <member name="F:SharpDX.Direct3D9.RenderState.CcwStencilFunc">
  15981. <summary>
  15982. No documentation.
  15983. </summary>
  15984. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_CCW_STENCILFUNC']/*" />
  15985. <msdn-id>ff549036</msdn-id>
  15986. <unmanaged>D3DRS_CCW_STENCILFUNC</unmanaged>
  15987. <unmanaged-short>D3DRS_CCW_STENCILFUNC</unmanaged-short>
  15988. </member>
  15989. <member name="F:SharpDX.Direct3D9.RenderState.ColorWriteEnable1">
  15990. <summary>
  15991. No documentation.
  15992. </summary>
  15993. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_COLORWRITEENABLE1']/*" />
  15994. <msdn-id>ff549036</msdn-id>
  15995. <unmanaged>D3DRS_COLORWRITEENABLE1</unmanaged>
  15996. <unmanaged-short>D3DRS_COLORWRITEENABLE1</unmanaged-short>
  15997. </member>
  15998. <member name="F:SharpDX.Direct3D9.RenderState.ColorWriteEnable2">
  15999. <summary>
  16000. No documentation.
  16001. </summary>
  16002. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_COLORWRITEENABLE2']/*" />
  16003. <msdn-id>ff549036</msdn-id>
  16004. <unmanaged>D3DRS_COLORWRITEENABLE2</unmanaged>
  16005. <unmanaged-short>D3DRS_COLORWRITEENABLE2</unmanaged-short>
  16006. </member>
  16007. <member name="F:SharpDX.Direct3D9.RenderState.ColorWriteEnable3">
  16008. <summary>
  16009. No documentation.
  16010. </summary>
  16011. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_COLORWRITEENABLE3']/*" />
  16012. <msdn-id>ff549036</msdn-id>
  16013. <unmanaged>D3DRS_COLORWRITEENABLE3</unmanaged>
  16014. <unmanaged-short>D3DRS_COLORWRITEENABLE3</unmanaged-short>
  16015. </member>
  16016. <member name="F:SharpDX.Direct3D9.RenderState.BlendFactor">
  16017. <summary>
  16018. No documentation.
  16019. </summary>
  16020. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_BLENDFACTOR']/*" />
  16021. <msdn-id>ff549036</msdn-id>
  16022. <unmanaged>D3DRS_BLENDFACTOR</unmanaged>
  16023. <unmanaged-short>D3DRS_BLENDFACTOR</unmanaged-short>
  16024. </member>
  16025. <member name="F:SharpDX.Direct3D9.RenderState.SrgbWriteEnable">
  16026. <summary>
  16027. No documentation.
  16028. </summary>
  16029. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_SRGBWRITEENABLE']/*" />
  16030. <msdn-id>ff549036</msdn-id>
  16031. <unmanaged>D3DRS_SRGBWRITEENABLE</unmanaged>
  16032. <unmanaged-short>D3DRS_SRGBWRITEENABLE</unmanaged-short>
  16033. </member>
  16034. <member name="F:SharpDX.Direct3D9.RenderState.DepthBias">
  16035. <summary>
  16036. No documentation.
  16037. </summary>
  16038. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_DEPTHBIAS']/*" />
  16039. <msdn-id>ff549036</msdn-id>
  16040. <unmanaged>D3DRS_DEPTHBIAS</unmanaged>
  16041. <unmanaged-short>D3DRS_DEPTHBIAS</unmanaged-short>
  16042. </member>
  16043. <member name="F:SharpDX.Direct3D9.RenderState.Wrap8">
  16044. <summary>
  16045. No documentation.
  16046. </summary>
  16047. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP8']/*" />
  16048. <msdn-id>ff549036</msdn-id>
  16049. <unmanaged>D3DRS_WRAP8</unmanaged>
  16050. <unmanaged-short>D3DRS_WRAP8</unmanaged-short>
  16051. </member>
  16052. <member name="F:SharpDX.Direct3D9.RenderState.Wrap9">
  16053. <summary>
  16054. No documentation.
  16055. </summary>
  16056. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP9']/*" />
  16057. <msdn-id>ff549036</msdn-id>
  16058. <unmanaged>D3DRS_WRAP9</unmanaged>
  16059. <unmanaged-short>D3DRS_WRAP9</unmanaged-short>
  16060. </member>
  16061. <member name="F:SharpDX.Direct3D9.RenderState.Wrap10">
  16062. <summary>
  16063. No documentation.
  16064. </summary>
  16065. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP10']/*" />
  16066. <msdn-id>ff549036</msdn-id>
  16067. <unmanaged>D3DRS_WRAP10</unmanaged>
  16068. <unmanaged-short>D3DRS_WRAP10</unmanaged-short>
  16069. </member>
  16070. <member name="F:SharpDX.Direct3D9.RenderState.Wrap11">
  16071. <summary>
  16072. No documentation.
  16073. </summary>
  16074. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP11']/*" />
  16075. <msdn-id>ff549036</msdn-id>
  16076. <unmanaged>D3DRS_WRAP11</unmanaged>
  16077. <unmanaged-short>D3DRS_WRAP11</unmanaged-short>
  16078. </member>
  16079. <member name="F:SharpDX.Direct3D9.RenderState.Wrap12">
  16080. <summary>
  16081. No documentation.
  16082. </summary>
  16083. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP12']/*" />
  16084. <msdn-id>ff549036</msdn-id>
  16085. <unmanaged>D3DRS_WRAP12</unmanaged>
  16086. <unmanaged-short>D3DRS_WRAP12</unmanaged-short>
  16087. </member>
  16088. <member name="F:SharpDX.Direct3D9.RenderState.Wrap13">
  16089. <summary>
  16090. No documentation.
  16091. </summary>
  16092. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP13']/*" />
  16093. <msdn-id>ff549036</msdn-id>
  16094. <unmanaged>D3DRS_WRAP13</unmanaged>
  16095. <unmanaged-short>D3DRS_WRAP13</unmanaged-short>
  16096. </member>
  16097. <member name="F:SharpDX.Direct3D9.RenderState.Wrap14">
  16098. <summary>
  16099. No documentation.
  16100. </summary>
  16101. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP14']/*" />
  16102. <msdn-id>ff549036</msdn-id>
  16103. <unmanaged>D3DRS_WRAP14</unmanaged>
  16104. <unmanaged-short>D3DRS_WRAP14</unmanaged-short>
  16105. </member>
  16106. <member name="F:SharpDX.Direct3D9.RenderState.Wrap15">
  16107. <summary>
  16108. No documentation.
  16109. </summary>
  16110. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_WRAP15']/*" />
  16111. <msdn-id>ff549036</msdn-id>
  16112. <unmanaged>D3DRS_WRAP15</unmanaged>
  16113. <unmanaged-short>D3DRS_WRAP15</unmanaged-short>
  16114. </member>
  16115. <member name="F:SharpDX.Direct3D9.RenderState.SeparateAlphaBlendEnable">
  16116. <summary>
  16117. No documentation.
  16118. </summary>
  16119. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_SEPARATEALPHABLENDENABLE']/*" />
  16120. <msdn-id>ff549036</msdn-id>
  16121. <unmanaged>D3DRS_SEPARATEALPHABLENDENABLE</unmanaged>
  16122. <unmanaged-short>D3DRS_SEPARATEALPHABLENDENABLE</unmanaged-short>
  16123. </member>
  16124. <member name="F:SharpDX.Direct3D9.RenderState.SourceBlendAlpha">
  16125. <summary>
  16126. No documentation.
  16127. </summary>
  16128. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_SRCBLENDALPHA']/*" />
  16129. <msdn-id>ff549036</msdn-id>
  16130. <unmanaged>D3DRS_SRCBLENDALPHA</unmanaged>
  16131. <unmanaged-short>D3DRS_SRCBLENDALPHA</unmanaged-short>
  16132. </member>
  16133. <member name="F:SharpDX.Direct3D9.RenderState.DestinationBlendAlpha">
  16134. <summary>
  16135. No documentation.
  16136. </summary>
  16137. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_DESTBLENDALPHA']/*" />
  16138. <msdn-id>ff549036</msdn-id>
  16139. <unmanaged>D3DRS_DESTBLENDALPHA</unmanaged>
  16140. <unmanaged-short>D3DRS_DESTBLENDALPHA</unmanaged-short>
  16141. </member>
  16142. <member name="F:SharpDX.Direct3D9.RenderState.BlendOperationAlpha">
  16143. <summary>
  16144. No documentation.
  16145. </summary>
  16146. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRS_BLENDOPALPHA']/*" />
  16147. <msdn-id>ff549036</msdn-id>
  16148. <unmanaged>D3DRS_BLENDOPALPHA</unmanaged>
  16149. <unmanaged-short>D3DRS_BLENDOPALPHA</unmanaged-short>
  16150. </member>
  16151. <member name="T:SharpDX.Direct3D9.ResourceResidency">
  16152. <summary>
  16153. No documentation.
  16154. </summary>
  16155. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_RESOURCE_RESIDENCY']/*" />
  16156. <unmanaged>D3DX_RESOURCE_RESIDENCY</unmanaged>
  16157. <unmanaged-short>D3DX_RESOURCE_RESIDENCY</unmanaged-short>
  16158. </member>
  16159. <member name="F:SharpDX.Direct3D9.ResourceResidency.Resident">
  16160. <summary>
  16161. No documentation.
  16162. </summary>
  16163. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_RESOURCE_RESIDENCY_RESIDENT']/*" />
  16164. <unmanaged>D3DX_RESOURCE_RESIDENCY_RESIDENT</unmanaged>
  16165. <unmanaged-short>D3DX_RESOURCE_RESIDENCY_RESIDENT</unmanaged-short>
  16166. </member>
  16167. <member name="F:SharpDX.Direct3D9.ResourceResidency.ResidentInSharedMemory">
  16168. <summary>
  16169. No documentation.
  16170. </summary>
  16171. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_RESOURCE_RESIDENCY_RESIDENT_IN_SHARED_MEMORY']/*" />
  16172. <unmanaged>D3DX_RESOURCE_RESIDENCY_RESIDENT_IN_SHARED_MEMORY</unmanaged>
  16173. <unmanaged-short>D3DX_RESOURCE_RESIDENCY_RESIDENT_IN_SHARED_MEMORY</unmanaged-short>
  16174. </member>
  16175. <member name="F:SharpDX.Direct3D9.ResourceResidency.NotResident">
  16176. <summary>
  16177. No documentation.
  16178. </summary>
  16179. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DX_RESOURCE_RESIDENCY_NOT_RESIDENT']/*" />
  16180. <unmanaged>D3DX_RESOURCE_RESIDENCY_NOT_RESIDENT</unmanaged>
  16181. <unmanaged-short>D3DX_RESOURCE_RESIDENCY_NOT_RESIDENT</unmanaged-short>
  16182. </member>
  16183. <member name="T:SharpDX.Direct3D9.ResourceType">
  16184. <summary>
  16185. No documentation.
  16186. </summary>
  16187. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCETYPE']/*" />
  16188. <unmanaged>D3DRESOURCETYPE</unmanaged>
  16189. <unmanaged-short>D3DRESOURCETYPE</unmanaged-short>
  16190. </member>
  16191. <member name="F:SharpDX.Direct3D9.ResourceType.Surface">
  16192. <summary>
  16193. No documentation.
  16194. </summary>
  16195. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRTYPE_SURFACE']/*" />
  16196. <unmanaged>D3DRTYPE_SURFACE</unmanaged>
  16197. <unmanaged-short>D3DRTYPE_SURFACE</unmanaged-short>
  16198. </member>
  16199. <member name="F:SharpDX.Direct3D9.ResourceType.Volume">
  16200. <summary>
  16201. No documentation.
  16202. </summary>
  16203. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRTYPE_VOLUME']/*" />
  16204. <unmanaged>D3DRTYPE_VOLUME</unmanaged>
  16205. <unmanaged-short>D3DRTYPE_VOLUME</unmanaged-short>
  16206. </member>
  16207. <member name="F:SharpDX.Direct3D9.ResourceType.Texture">
  16208. <summary>
  16209. No documentation.
  16210. </summary>
  16211. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRTYPE_TEXTURE']/*" />
  16212. <unmanaged>D3DRTYPE_TEXTURE</unmanaged>
  16213. <unmanaged-short>D3DRTYPE_TEXTURE</unmanaged-short>
  16214. </member>
  16215. <member name="F:SharpDX.Direct3D9.ResourceType.VolumeTexture">
  16216. <summary>
  16217. No documentation.
  16218. </summary>
  16219. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRTYPE_VOLUMETEXTURE']/*" />
  16220. <unmanaged>D3DRTYPE_VOLUMETEXTURE</unmanaged>
  16221. <unmanaged-short>D3DRTYPE_VOLUMETEXTURE</unmanaged-short>
  16222. </member>
  16223. <member name="F:SharpDX.Direct3D9.ResourceType.CubeTexture">
  16224. <summary>
  16225. No documentation.
  16226. </summary>
  16227. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRTYPE_CUBETEXTURE']/*" />
  16228. <unmanaged>D3DRTYPE_CUBETEXTURE</unmanaged>
  16229. <unmanaged-short>D3DRTYPE_CUBETEXTURE</unmanaged-short>
  16230. </member>
  16231. <member name="F:SharpDX.Direct3D9.ResourceType.VertexBuffer">
  16232. <summary>
  16233. No documentation.
  16234. </summary>
  16235. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRTYPE_VERTEXBUFFER']/*" />
  16236. <unmanaged>D3DRTYPE_VERTEXBUFFER</unmanaged>
  16237. <unmanaged-short>D3DRTYPE_VERTEXBUFFER</unmanaged-short>
  16238. </member>
  16239. <member name="F:SharpDX.Direct3D9.ResourceType.IndexBuffer">
  16240. <summary>
  16241. No documentation.
  16242. </summary>
  16243. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRTYPE_INDEXBUFFER']/*" />
  16244. <unmanaged>D3DRTYPE_INDEXBUFFER</unmanaged>
  16245. <unmanaged-short>D3DRTYPE_INDEXBUFFER</unmanaged-short>
  16246. </member>
  16247. <member name="T:SharpDX.Direct3D9.SamplerState">
  16248. <summary>
  16249. <p>Sampler states define texture sampling operations such as texture addressing and texture filtering. Some sampler states set-up vertex processing, and some set-up pixel processing. Sampler states can be saved and restored using stateblocks (see State Blocks Save and Restore State (Direct3D 9)).</p>
  16250. </summary>
  16251. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMPLERSTATETYPE']/*" />
  16252. <msdn-id>bb172602</msdn-id>
  16253. <unmanaged>D3DSAMPLERSTATETYPE</unmanaged>
  16254. <unmanaged-short>D3DSAMPLERSTATETYPE</unmanaged-short>
  16255. </member>
  16256. <member name="F:SharpDX.Direct3D9.SamplerState.AddressU">
  16257. <summary>
  16258. No documentation.
  16259. </summary>
  16260. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_ADDRESSU']/*" />
  16261. <msdn-id>bb172602</msdn-id>
  16262. <unmanaged>D3DSAMP_ADDRESSU</unmanaged>
  16263. <unmanaged-short>D3DSAMP_ADDRESSU</unmanaged-short>
  16264. </member>
  16265. <member name="F:SharpDX.Direct3D9.SamplerState.AddressV">
  16266. <summary>
  16267. No documentation.
  16268. </summary>
  16269. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_ADDRESSV']/*" />
  16270. <msdn-id>bb172602</msdn-id>
  16271. <unmanaged>D3DSAMP_ADDRESSV</unmanaged>
  16272. <unmanaged-short>D3DSAMP_ADDRESSV</unmanaged-short>
  16273. </member>
  16274. <member name="F:SharpDX.Direct3D9.SamplerState.AddressW">
  16275. <summary>
  16276. No documentation.
  16277. </summary>
  16278. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_ADDRESSW']/*" />
  16279. <msdn-id>bb172602</msdn-id>
  16280. <unmanaged>D3DSAMP_ADDRESSW</unmanaged>
  16281. <unmanaged-short>D3DSAMP_ADDRESSW</unmanaged-short>
  16282. </member>
  16283. <member name="F:SharpDX.Direct3D9.SamplerState.BorderColor">
  16284. <summary>
  16285. No documentation.
  16286. </summary>
  16287. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_BORDERCOLOR']/*" />
  16288. <msdn-id>bb172602</msdn-id>
  16289. <unmanaged>D3DSAMP_BORDERCOLOR</unmanaged>
  16290. <unmanaged-short>D3DSAMP_BORDERCOLOR</unmanaged-short>
  16291. </member>
  16292. <member name="F:SharpDX.Direct3D9.SamplerState.MagFilter">
  16293. <summary>
  16294. No documentation.
  16295. </summary>
  16296. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_MAGFILTER']/*" />
  16297. <msdn-id>bb172602</msdn-id>
  16298. <unmanaged>D3DSAMP_MAGFILTER</unmanaged>
  16299. <unmanaged-short>D3DSAMP_MAGFILTER</unmanaged-short>
  16300. </member>
  16301. <member name="F:SharpDX.Direct3D9.SamplerState.MinFilter">
  16302. <summary>
  16303. No documentation.
  16304. </summary>
  16305. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_MINFILTER']/*" />
  16306. <msdn-id>bb172602</msdn-id>
  16307. <unmanaged>D3DSAMP_MINFILTER</unmanaged>
  16308. <unmanaged-short>D3DSAMP_MINFILTER</unmanaged-short>
  16309. </member>
  16310. <member name="F:SharpDX.Direct3D9.SamplerState.MipFilter">
  16311. <summary>
  16312. No documentation.
  16313. </summary>
  16314. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_MIPFILTER']/*" />
  16315. <msdn-id>bb172602</msdn-id>
  16316. <unmanaged>D3DSAMP_MIPFILTER</unmanaged>
  16317. <unmanaged-short>D3DSAMP_MIPFILTER</unmanaged-short>
  16318. </member>
  16319. <member name="F:SharpDX.Direct3D9.SamplerState.MipMapLodBias">
  16320. <summary>
  16321. No documentation.
  16322. </summary>
  16323. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_MIPMAPLODBIAS']/*" />
  16324. <msdn-id>bb172602</msdn-id>
  16325. <unmanaged>D3DSAMP_MIPMAPLODBIAS</unmanaged>
  16326. <unmanaged-short>D3DSAMP_MIPMAPLODBIAS</unmanaged-short>
  16327. </member>
  16328. <member name="F:SharpDX.Direct3D9.SamplerState.MaxMipLevel">
  16329. <summary>
  16330. No documentation.
  16331. </summary>
  16332. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_MAXMIPLEVEL']/*" />
  16333. <msdn-id>bb172602</msdn-id>
  16334. <unmanaged>D3DSAMP_MAXMIPLEVEL</unmanaged>
  16335. <unmanaged-short>D3DSAMP_MAXMIPLEVEL</unmanaged-short>
  16336. </member>
  16337. <member name="F:SharpDX.Direct3D9.SamplerState.MaxAnisotropy">
  16338. <summary>
  16339. No documentation.
  16340. </summary>
  16341. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_MAXANISOTROPY']/*" />
  16342. <msdn-id>bb172602</msdn-id>
  16343. <unmanaged>D3DSAMP_MAXANISOTROPY</unmanaged>
  16344. <unmanaged-short>D3DSAMP_MAXANISOTROPY</unmanaged-short>
  16345. </member>
  16346. <member name="F:SharpDX.Direct3D9.SamplerState.SrgbTexture">
  16347. <summary>
  16348. No documentation.
  16349. </summary>
  16350. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_SRGBTEXTURE']/*" />
  16351. <msdn-id>bb172602</msdn-id>
  16352. <unmanaged>D3DSAMP_SRGBTEXTURE</unmanaged>
  16353. <unmanaged-short>D3DSAMP_SRGBTEXTURE</unmanaged-short>
  16354. </member>
  16355. <member name="F:SharpDX.Direct3D9.SamplerState.ElementIndex">
  16356. <summary>
  16357. No documentation.
  16358. </summary>
  16359. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_ELEMENTINDEX']/*" />
  16360. <msdn-id>bb172602</msdn-id>
  16361. <unmanaged>D3DSAMP_ELEMENTINDEX</unmanaged>
  16362. <unmanaged-short>D3DSAMP_ELEMENTINDEX</unmanaged-short>
  16363. </member>
  16364. <member name="F:SharpDX.Direct3D9.SamplerState.DisplacementMapOffset">
  16365. <summary>
  16366. No documentation.
  16367. </summary>
  16368. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMP_DMAPOFFSET']/*" />
  16369. <msdn-id>bb172602</msdn-id>
  16370. <unmanaged>D3DSAMP_DMAPOFFSET</unmanaged>
  16371. <unmanaged-short>D3DSAMP_DMAPOFFSET</unmanaged-short>
  16372. </member>
  16373. <member name="T:SharpDX.Direct3D9.SamplerTextureType">
  16374. <summary>
  16375. <p>Defines the sampler texture types for vertex shaders.</p>
  16376. </summary>
  16377. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSAMPLER_TEXTURE_TYPE']/*" />
  16378. <msdn-id>bb172603</msdn-id>
  16379. <unmanaged>D3DSAMPLER_TEXTURE_TYPE</unmanaged>
  16380. <unmanaged-short>D3DSAMPLER_TEXTURE_TYPE</unmanaged-short>
  16381. </member>
  16382. <member name="F:SharpDX.Direct3D9.SamplerTextureType.Unknown">
  16383. <summary>
  16384. <dd> <p>Uninitialized value. The value of this element is D3DSP_TEXTURETYPE_SHIFT.</p> </dd>
  16385. </summary>
  16386. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTT_UNKNOWN']/*" />
  16387. <msdn-id>bb172603</msdn-id>
  16388. <unmanaged>D3DSTT_UNKNOWN</unmanaged>
  16389. <unmanaged-short>D3DSTT_UNKNOWN</unmanaged-short>
  16390. </member>
  16391. <member name="F:SharpDX.Direct3D9.SamplerTextureType.Texture2D">
  16392. <summary>
  16393. <dd> <p>Declaring a 2D texture. The value of this element is D3DSP_TEXTURETYPE_SHIFT * 4.</p> </dd>
  16394. </summary>
  16395. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTT_2D']/*" />
  16396. <msdn-id>bb172603</msdn-id>
  16397. <unmanaged>D3DSTT_2D</unmanaged>
  16398. <unmanaged-short>D3DSTT_2D</unmanaged-short>
  16399. </member>
  16400. <member name="F:SharpDX.Direct3D9.SamplerTextureType.Cube">
  16401. <summary>
  16402. <dd> <p>Declaring a cube texture. The value of this element is D3DSP_TEXTURETYPE_SHIFT * 8.</p> </dd>
  16403. </summary>
  16404. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTT_CUBE']/*" />
  16405. <msdn-id>bb172603</msdn-id>
  16406. <unmanaged>D3DSTT_CUBE</unmanaged>
  16407. <unmanaged-short>D3DSTT_CUBE</unmanaged-short>
  16408. </member>
  16409. <member name="F:SharpDX.Direct3D9.SamplerTextureType.Volume">
  16410. <summary>
  16411. <dd> <p>Declaring a volume texture. The value of this element is D3DSP_TEXTURETYPE_SHIFT * 16.</p> </dd>
  16412. </summary>
  16413. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTT_VOLUME']/*" />
  16414. <msdn-id>bb172603</msdn-id>
  16415. <unmanaged>D3DSTT_VOLUME</unmanaged>
  16416. <unmanaged-short>D3DSTT_VOLUME</unmanaged-short>
  16417. </member>
  16418. <member name="T:SharpDX.Direct3D9.ScanlineOrdering">
  16419. <summary>
  16420. <p>Flags indicating the method the rasterizer uses to create an image on a surface.</p>
  16421. </summary>
  16422. <remarks>
  16423. <p>This enumeration is used as a member in <strong><see cref="T:SharpDX.Direct3D9.DisplayModeFilter" /></strong> and <strong><see cref="T:SharpDX.Direct3D9.DisplayModeEx" /></strong>.</p>
  16424. </remarks>
  16425. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSCANLINEORDERING']/*" />
  16426. <msdn-id>bb172604</msdn-id>
  16427. <unmanaged>D3DSCANLINEORDERING</unmanaged>
  16428. <unmanaged-short>D3DSCANLINEORDERING</unmanaged-short>
  16429. </member>
  16430. <member name="F:SharpDX.Direct3D9.ScanlineOrdering.Unknown">
  16431. <summary>
  16432. <dd> <p>The image is created from the first scanline to the last without skipping any.</p> </dd>
  16433. </summary>
  16434. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSCANLINEORDERING_UNKNOWN']/*" />
  16435. <msdn-id>bb172604</msdn-id>
  16436. <unmanaged>D3DSCANLINEORDERING_UNKNOWN</unmanaged>
  16437. <unmanaged-short>D3DSCANLINEORDERING_UNKNOWN</unmanaged-short>
  16438. </member>
  16439. <member name="F:SharpDX.Direct3D9.ScanlineOrdering.Progressive">
  16440. <summary>
  16441. <dd> <p>The image is created using the interlaced method in which odd-numbered lines are drawn on odd-numbered passes and even lines are drawn on even-numbered passes.</p> </dd>
  16442. </summary>
  16443. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSCANLINEORDERING_PROGRESSIVE']/*" />
  16444. <msdn-id>bb172604</msdn-id>
  16445. <unmanaged>D3DSCANLINEORDERING_PROGRESSIVE</unmanaged>
  16446. <unmanaged-short>D3DSCANLINEORDERING_PROGRESSIVE</unmanaged-short>
  16447. </member>
  16448. <member name="F:SharpDX.Direct3D9.ScanlineOrdering.Interlaced">
  16449. <summary>
  16450. <dd> <p>The image is created using the interlaced method in which odd-numbered lines are drawn on odd-numbered passes and even lines are drawn on even-numbered passes.</p> </dd>
  16451. </summary>
  16452. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSCANLINEORDERING_INTERLACED']/*" />
  16453. <msdn-id>bb172604</msdn-id>
  16454. <unmanaged>D3DSCANLINEORDERING_INTERLACED</unmanaged>
  16455. <unmanaged-short>D3DSCANLINEORDERING_INTERLACED</unmanaged-short>
  16456. </member>
  16457. <member name="T:SharpDX.Direct3D9.ShadeCaps">
  16458. <summary>
  16459. <p>The following page provides a basic outline of key differences between Direct3D 9 and Direct3D 10. The outline below provides some insight to assist developers with Direct3D 9 experience to explore and relate to Direct3D 10.</p><p>Although the info in this topic compares Direct3D 9 with Direct3D 10, because Direct3D 11 builds on the improvements made in Direct3D 10 and 10.1, you also need this info to migrate from Direct3D 9 to Direct3D 11. For info about moving beyond Direct3D 10 to Direct3D 11, see Migrating to Direct3D 11.</p><p> </p><ul> <li>Overview<ul> <li>Removal</li> <li>Device</li> </ul> </li> <li>Engine<ul> <li>Direct</li> </ul> </li> <li>Tricks<ul> <li>Overriding</li> <li>Resolving</li> <li>Simulating</li> </ul> </li> <li>Driving<ul> <li>Resource</li> <li>Views</li> <li>Static</li> <li>Direct3D</li> <li>HLSL</li> <li>Shader</li> <li>Creation</li> <li>Shader</li> <li>Input</li> <li>Impact</li> <li>Vertex</li> <li>State</li> </ul> </li> <li>Porting<ul> <li>File</li> <li>Mapping</li> </ul> </li> <li>Porting<ul> <li>Direct3D</li> <li>Shader</li> <li>HLSL</li> <li>Constant</li> <li>User</li> </ul> </li> <li>Additional<ul> <li>Integers</li> <li>Mouse</li> <li>Mapping</li> <li>Reference</li> <li>Test</li> <li>StretchRect</li> </ul> </li> <li>Additional</li> <li>Related</li> </ul>
  16460. </summary>
  16461. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADECAPS']/*" />
  16462. <msdn-id>bb205073</msdn-id>
  16463. <unmanaged>D3DPSHADECAPS</unmanaged>
  16464. <unmanaged-short>D3DPSHADECAPS</unmanaged-short>
  16465. </member>
  16466. <member name="F:SharpDX.Direct3D9.ShadeCaps.ColorGouraudRgb">
  16467. <summary>
  16468. No documentation.
  16469. </summary>
  16470. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADECAPS_COLORGOURAUDRGB']/*" />
  16471. <msdn-id>bb205073</msdn-id>
  16472. <unmanaged>D3DPSHADECAPS_COLORGOURAUDRGB</unmanaged>
  16473. <unmanaged-short>D3DPSHADECAPS_COLORGOURAUDRGB</unmanaged-short>
  16474. </member>
  16475. <member name="F:SharpDX.Direct3D9.ShadeCaps.SpecularGouraudRgb">
  16476. <summary>
  16477. No documentation.
  16478. </summary>
  16479. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADECAPS_SPECULARGOURAUDRGB']/*" />
  16480. <msdn-id>bb205073</msdn-id>
  16481. <unmanaged>D3DPSHADECAPS_SPECULARGOURAUDRGB</unmanaged>
  16482. <unmanaged-short>D3DPSHADECAPS_SPECULARGOURAUDRGB</unmanaged-short>
  16483. </member>
  16484. <member name="F:SharpDX.Direct3D9.ShadeCaps.AlphaGouraudBlend">
  16485. <summary>
  16486. No documentation.
  16487. </summary>
  16488. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADECAPS_ALPHAGOURAUDBLEND']/*" />
  16489. <msdn-id>bb205073</msdn-id>
  16490. <unmanaged>D3DPSHADECAPS_ALPHAGOURAUDBLEND</unmanaged>
  16491. <unmanaged-short>D3DPSHADECAPS_ALPHAGOURAUDBLEND</unmanaged-short>
  16492. </member>
  16493. <member name="F:SharpDX.Direct3D9.ShadeCaps.FogGouraud">
  16494. <summary>
  16495. No documentation.
  16496. </summary>
  16497. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADECAPS_FOGGOURAUD']/*" />
  16498. <msdn-id>bb205073</msdn-id>
  16499. <unmanaged>D3DPSHADECAPS_FOGGOURAUD</unmanaged>
  16500. <unmanaged-short>D3DPSHADECAPS_FOGGOURAUD</unmanaged-short>
  16501. </member>
  16502. <member name="T:SharpDX.Direct3D9.ShadeMode">
  16503. <summary>
  16504. <p>Defines constants that describe the supported shading modes.</p>
  16505. </summary>
  16506. <remarks>
  16507. <p>The first vertex of a triangle for flat shading mode is defined in the following manner. </p><ul> <li>For a triangle list, the first vertex of the triangle i is i * 3.</li> <li>For a triangle strip, the first vertex of the triangle i is vertex i.</li> <li>For a triangle fan, the first vertex of the triangle i is vertex i + 1.</li> </ul><p>The members of this enumerated type define the vales for the <see cref="F:SharpDX.Direct3D9.RenderState.ShadeMode" /> render state.</p>
  16508. </remarks>
  16509. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSHADEMODE']/*" />
  16510. <msdn-id>bb172605</msdn-id>
  16511. <unmanaged>D3DSHADEMODE</unmanaged>
  16512. <unmanaged-short>D3DSHADEMODE</unmanaged-short>
  16513. </member>
  16514. <member name="F:SharpDX.Direct3D9.ShadeMode.Flat">
  16515. <summary>
  16516. <dd> <p>Flat shading mode. The color and specular component of the first vertex in the triangle are used to determine the color and specular component of the face. These colors remain constant across the triangle; that is, they are not interpolated. The specular alpha is interpolated. See Remarks. </p> </dd>
  16517. </summary>
  16518. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSHADE_FLAT']/*" />
  16519. <msdn-id>bb172605</msdn-id>
  16520. <unmanaged>D3DSHADE_FLAT</unmanaged>
  16521. <unmanaged-short>D3DSHADE_FLAT</unmanaged-short>
  16522. </member>
  16523. <member name="F:SharpDX.Direct3D9.ShadeMode.Gouraud">
  16524. <summary>
  16525. <dd> <p>Gouraud shading mode. The color and specular components of the face are determined by a linear interpolation between all three of the triangle's vertices. </p> </dd>
  16526. </summary>
  16527. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSHADE_GOURAUD']/*" />
  16528. <msdn-id>bb172605</msdn-id>
  16529. <unmanaged>D3DSHADE_GOURAUD</unmanaged>
  16530. <unmanaged-short>D3DSHADE_GOURAUD</unmanaged-short>
  16531. </member>
  16532. <member name="F:SharpDX.Direct3D9.ShadeMode.Phong">
  16533. <summary>
  16534. <dd> <p>Not supported. </p> </dd>
  16535. </summary>
  16536. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSHADE_PHONG']/*" />
  16537. <msdn-id>bb172605</msdn-id>
  16538. <unmanaged>D3DSHADE_PHONG</unmanaged>
  16539. <unmanaged-short>D3DSHADE_PHONG</unmanaged-short>
  16540. </member>
  16541. <member name="T:SharpDX.Direct3D9.ShaderFlags">
  16542. <summary>
  16543. <p>The <strong><see cref="T:SharpDX.Direct3D9.ShaderFlags" /></strong> flags are used for parsing, compiling, or assembling shaders.</p><p> </p><p><strong>Parser flags</strong></p><p>Parse time flags are only used by the effect system (before effect compilation) when you create an effect compiler. For example, you could create a compiler object with <strong><see cref="F:SharpDX.Direct3D9.ShaderFlags.PackMatrixColumnMajor" /></strong>, and then use that compiler object repeatedly with different compiler flags to generate specialized code.</p>
  16544. </summary>
  16545. <remarks>
  16546. <p>The effect system will use <strong>parser flags</strong> when called by the following functions:</p><ul> <li> <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CompileShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CompileShaderFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CompileShaderFromResourceW(System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" /></strong> </li> <li> <strong>CompileEffect</strong> </li> </ul><p>The effect system will use <strong>compiler flags</strong> when called by the following functions:</p><ul> <li> <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CompileShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" /></strong> (or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CompileShaderFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CompileShaderFromResourceW(System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" /></strong>)</li> <li> <strong>CompileEffect</strong> (or <strong>CompileShader</strong>)</li> </ul><p>In addition, you can use <strong>compiler flags</strong> when creating an effect by calling <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffect(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong> (or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong>).</p><ul> <li>If you pass in an uncompiled .fx file, the effect system will use the flag input parameter during compilation.</li> <li>If you pass in a compiled effect, the effect system will ignore the compiler flags since they are not needed to load the effect.</li> </ul><p>The effect system will use <strong>assembler flags</strong> when called by the following functions:</p><ul> <li> <strong><see cref="M:SharpDX.Direct3D9.D3DX9.AssembleShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.D3DX9.AssembleShaderFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.D3DX9.AssembleShaderFromResourceW(System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)" /></strong> </li> </ul><p>Applying <strong>compiler flags</strong> or <strong>assembler flags</strong> to the incorrect API will fail shader validation. Check the Direct3D error code return value from the function (with the DirectX Error Lookup Tool) to help track down this error.</p>
  16547. </remarks>
  16548. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER']/*" />
  16549. <msdn-id>bb205441</msdn-id>
  16550. <unmanaged>D3DXSHADER</unmanaged>
  16551. <unmanaged-short>D3DXSHADER</unmanaged-short>
  16552. </member>
  16553. <member name="F:SharpDX.Direct3D9.ShaderFlags.Debug">
  16554. <summary>
  16555. No documentation.
  16556. </summary>
  16557. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_DEBUG']/*" />
  16558. <msdn-id>bb205441</msdn-id>
  16559. <unmanaged>D3DXSHADER_DEBUG</unmanaged>
  16560. <unmanaged-short>D3DXSHADER_DEBUG</unmanaged-short>
  16561. </member>
  16562. <member name="F:SharpDX.Direct3D9.ShaderFlags.SkipValidation">
  16563. <summary>
  16564. No documentation.
  16565. </summary>
  16566. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_SKIPVALIDATION']/*" />
  16567. <msdn-id>bb205441</msdn-id>
  16568. <unmanaged>D3DXSHADER_SKIPVALIDATION</unmanaged>
  16569. <unmanaged-short>D3DXSHADER_SKIPVALIDATION</unmanaged-short>
  16570. </member>
  16571. <member name="F:SharpDX.Direct3D9.ShaderFlags.SkipOptimization">
  16572. <summary>
  16573. No documentation.
  16574. </summary>
  16575. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_SKIPOPTIMIZATION']/*" />
  16576. <msdn-id>bb205441</msdn-id>
  16577. <unmanaged>D3DXSHADER_SKIPOPTIMIZATION</unmanaged>
  16578. <unmanaged-short>D3DXSHADER_SKIPOPTIMIZATION</unmanaged-short>
  16579. </member>
  16580. <member name="F:SharpDX.Direct3D9.ShaderFlags.PackMatrixRowMajor">
  16581. <summary>
  16582. No documentation.
  16583. </summary>
  16584. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_PACKMATRIX_ROWMAJOR']/*" />
  16585. <msdn-id>bb205441</msdn-id>
  16586. <unmanaged>D3DXSHADER_PACKMATRIX_ROWMAJOR</unmanaged>
  16587. <unmanaged-short>D3DXSHADER_PACKMATRIX_ROWMAJOR</unmanaged-short>
  16588. </member>
  16589. <member name="F:SharpDX.Direct3D9.ShaderFlags.PackMatrixColumnMajor">
  16590. <summary>
  16591. No documentation.
  16592. </summary>
  16593. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_PACKMATRIX_COLUMNMAJOR']/*" />
  16594. <msdn-id>bb205441</msdn-id>
  16595. <unmanaged>D3DXSHADER_PACKMATRIX_COLUMNMAJOR</unmanaged>
  16596. <unmanaged-short>D3DXSHADER_PACKMATRIX_COLUMNMAJOR</unmanaged-short>
  16597. </member>
  16598. <member name="F:SharpDX.Direct3D9.ShaderFlags.PartialPrecision">
  16599. <summary>
  16600. No documentation.
  16601. </summary>
  16602. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_PARTIALPRECISION']/*" />
  16603. <msdn-id>bb205441</msdn-id>
  16604. <unmanaged>D3DXSHADER_PARTIALPRECISION</unmanaged>
  16605. <unmanaged-short>D3DXSHADER_PARTIALPRECISION</unmanaged-short>
  16606. </member>
  16607. <member name="F:SharpDX.Direct3D9.ShaderFlags.ForceVSSoftwareNoOpt">
  16608. <summary>
  16609. No documentation.
  16610. </summary>
  16611. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_FORCE_VS_SOFTWARE_NOOPT']/*" />
  16612. <msdn-id>bb205441</msdn-id>
  16613. <unmanaged>D3DXSHADER_FORCE_VS_SOFTWARE_NOOPT</unmanaged>
  16614. <unmanaged-short>D3DXSHADER_FORCE_VS_SOFTWARE_NOOPT</unmanaged-short>
  16615. </member>
  16616. <member name="F:SharpDX.Direct3D9.ShaderFlags.ForcePSSoftwareNoOpt">
  16617. <summary>
  16618. No documentation.
  16619. </summary>
  16620. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_FORCE_PS_SOFTWARE_NOOPT']/*" />
  16621. <msdn-id>bb205441</msdn-id>
  16622. <unmanaged>D3DXSHADER_FORCE_PS_SOFTWARE_NOOPT</unmanaged>
  16623. <unmanaged-short>D3DXSHADER_FORCE_PS_SOFTWARE_NOOPT</unmanaged-short>
  16624. </member>
  16625. <member name="F:SharpDX.Direct3D9.ShaderFlags.NoPreshader">
  16626. <summary>
  16627. No documentation.
  16628. </summary>
  16629. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_NO_PRESHADER']/*" />
  16630. <msdn-id>bb205441</msdn-id>
  16631. <unmanaged>D3DXSHADER_NO_PRESHADER</unmanaged>
  16632. <unmanaged-short>D3DXSHADER_NO_PRESHADER</unmanaged-short>
  16633. </member>
  16634. <member name="F:SharpDX.Direct3D9.ShaderFlags.AvoidFlowControl">
  16635. <summary>
  16636. No documentation.
  16637. </summary>
  16638. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_AVOID_FLOW_CONTROL']/*" />
  16639. <msdn-id>bb205441</msdn-id>
  16640. <unmanaged>D3DXSHADER_AVOID_FLOW_CONTROL</unmanaged>
  16641. <unmanaged-short>D3DXSHADER_AVOID_FLOW_CONTROL</unmanaged-short>
  16642. </member>
  16643. <member name="F:SharpDX.Direct3D9.ShaderFlags.PreferFlowControl">
  16644. <summary>
  16645. No documentation.
  16646. </summary>
  16647. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_PREFER_FLOW_CONTROL']/*" />
  16648. <msdn-id>bb205441</msdn-id>
  16649. <unmanaged>D3DXSHADER_PREFER_FLOW_CONTROL</unmanaged>
  16650. <unmanaged-short>D3DXSHADER_PREFER_FLOW_CONTROL</unmanaged-short>
  16651. </member>
  16652. <member name="F:SharpDX.Direct3D9.ShaderFlags.EnableBackwardsCompatibility">
  16653. <summary>
  16654. No documentation.
  16655. </summary>
  16656. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_ENABLE_BACKWARDS_COMPATIBILITY']/*" />
  16657. <msdn-id>bb205441</msdn-id>
  16658. <unmanaged>D3DXSHADER_ENABLE_BACKWARDS_COMPATIBILITY</unmanaged>
  16659. <unmanaged-short>D3DXSHADER_ENABLE_BACKWARDS_COMPATIBILITY</unmanaged-short>
  16660. </member>
  16661. <member name="F:SharpDX.Direct3D9.ShaderFlags.IeeeStrictness">
  16662. <summary>
  16663. No documentation.
  16664. </summary>
  16665. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_IEEE_STRICTNESS']/*" />
  16666. <msdn-id>bb205441</msdn-id>
  16667. <unmanaged>D3DXSHADER_IEEE_STRICTNESS</unmanaged>
  16668. <unmanaged-short>D3DXSHADER_IEEE_STRICTNESS</unmanaged-short>
  16669. </member>
  16670. <member name="F:SharpDX.Direct3D9.ShaderFlags.UseLegacyD3DX9_31Dll">
  16671. <summary>
  16672. No documentation.
  16673. </summary>
  16674. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_USE_LEGACY_D3DX9_31_DLL']/*" />
  16675. <msdn-id>bb205441</msdn-id>
  16676. <unmanaged>D3DXSHADER_USE_LEGACY_D3DX9_31_DLL</unmanaged>
  16677. <unmanaged-short>D3DXSHADER_USE_LEGACY_D3DX9_31_DLL</unmanaged-short>
  16678. </member>
  16679. <member name="F:SharpDX.Direct3D9.ShaderFlags.OptimizationLevel0">
  16680. <summary>
  16681. No documentation.
  16682. </summary>
  16683. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_OPTIMIZATION_LEVEL0']/*" />
  16684. <msdn-id>bb205441</msdn-id>
  16685. <unmanaged>D3DXSHADER_OPTIMIZATION_LEVEL0</unmanaged>
  16686. <unmanaged-short>D3DXSHADER_OPTIMIZATION_LEVEL0</unmanaged-short>
  16687. </member>
  16688. <member name="F:SharpDX.Direct3D9.ShaderFlags.OptimizationLevel1">
  16689. <summary>
  16690. No documentation.
  16691. </summary>
  16692. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_OPTIMIZATION_LEVEL1']/*" />
  16693. <msdn-id>bb205441</msdn-id>
  16694. <unmanaged>D3DXSHADER_OPTIMIZATION_LEVEL1</unmanaged>
  16695. <unmanaged-short>D3DXSHADER_OPTIMIZATION_LEVEL1</unmanaged-short>
  16696. </member>
  16697. <member name="F:SharpDX.Direct3D9.ShaderFlags.OptimizationLevel2">
  16698. <summary>
  16699. No documentation.
  16700. </summary>
  16701. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_OPTIMIZATION_LEVEL2']/*" />
  16702. <msdn-id>bb205441</msdn-id>
  16703. <unmanaged>D3DXSHADER_OPTIMIZATION_LEVEL2</unmanaged>
  16704. <unmanaged-short>D3DXSHADER_OPTIMIZATION_LEVEL2</unmanaged-short>
  16705. </member>
  16706. <member name="F:SharpDX.Direct3D9.ShaderFlags.OptimizationLevel3">
  16707. <summary>
  16708. No documentation.
  16709. </summary>
  16710. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_OPTIMIZATION_LEVEL3']/*" />
  16711. <msdn-id>bb205441</msdn-id>
  16712. <unmanaged>D3DXSHADER_OPTIMIZATION_LEVEL3</unmanaged>
  16713. <unmanaged-short>D3DXSHADER_OPTIMIZATION_LEVEL3</unmanaged-short>
  16714. </member>
  16715. <member name="F:SharpDX.Direct3D9.ShaderFlags.None">
  16716. <summary>
  16717. None.
  16718. </summary>
  16719. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  16720. <unmanaged>None</unmanaged>
  16721. <unmanaged-short>None</unmanaged-short>
  16722. </member>
  16723. <member name="T:SharpDX.Direct3D9.SpriteFlags">
  16724. <summary>
  16725. <p>The following flags are used to specify sprite rendering options to the flags parameter in the <strong>Begin</strong> method:</p>
  16726. </summary>
  16727. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSPRITE']/*" />
  16728. <msdn-id>bb205466</msdn-id>
  16729. <unmanaged>D3DXSPRITE</unmanaged>
  16730. <unmanaged-short>D3DXSPRITE</unmanaged-short>
  16731. </member>
  16732. <member name="F:SharpDX.Direct3D9.SpriteFlags.DoNotSaveState">
  16733. <summary>
  16734. No documentation.
  16735. </summary>
  16736. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSPRITE_DONOTSAVESTATE']/*" />
  16737. <msdn-id>bb205466</msdn-id>
  16738. <unmanaged>D3DXSPRITE_DONOTSAVESTATE</unmanaged>
  16739. <unmanaged-short>D3DXSPRITE_DONOTSAVESTATE</unmanaged-short>
  16740. </member>
  16741. <member name="F:SharpDX.Direct3D9.SpriteFlags.DoNotModifyRenderState">
  16742. <summary>
  16743. No documentation.
  16744. </summary>
  16745. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSPRITE_DONOTMODIFY_RENDERSTATE']/*" />
  16746. <msdn-id>bb205466</msdn-id>
  16747. <unmanaged>D3DXSPRITE_DONOTMODIFY_RENDERSTATE</unmanaged>
  16748. <unmanaged-short>D3DXSPRITE_DONOTMODIFY_RENDERSTATE</unmanaged-short>
  16749. </member>
  16750. <member name="F:SharpDX.Direct3D9.SpriteFlags.ObjectSpace">
  16751. <summary>
  16752. No documentation.
  16753. </summary>
  16754. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSPRITE_OBJECTSPACE']/*" />
  16755. <msdn-id>bb205466</msdn-id>
  16756. <unmanaged>D3DXSPRITE_OBJECTSPACE</unmanaged>
  16757. <unmanaged-short>D3DXSPRITE_OBJECTSPACE</unmanaged-short>
  16758. </member>
  16759. <member name="F:SharpDX.Direct3D9.SpriteFlags.Billboard">
  16760. <summary>
  16761. No documentation.
  16762. </summary>
  16763. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSPRITE_BILLBOARD']/*" />
  16764. <msdn-id>bb205466</msdn-id>
  16765. <unmanaged>D3DXSPRITE_BILLBOARD</unmanaged>
  16766. <unmanaged-short>D3DXSPRITE_BILLBOARD</unmanaged-short>
  16767. </member>
  16768. <member name="F:SharpDX.Direct3D9.SpriteFlags.AlphaBlend">
  16769. <summary>
  16770. No documentation.
  16771. </summary>
  16772. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSPRITE_ALPHABLEND']/*" />
  16773. <msdn-id>bb205466</msdn-id>
  16774. <unmanaged>D3DXSPRITE_ALPHABLEND</unmanaged>
  16775. <unmanaged-short>D3DXSPRITE_ALPHABLEND</unmanaged-short>
  16776. </member>
  16777. <member name="F:SharpDX.Direct3D9.SpriteFlags.SortTexture">
  16778. <summary>
  16779. No documentation.
  16780. </summary>
  16781. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSPRITE_SORT_TEXTURE']/*" />
  16782. <msdn-id>bb205466</msdn-id>
  16783. <unmanaged>D3DXSPRITE_SORT_TEXTURE</unmanaged>
  16784. <unmanaged-short>D3DXSPRITE_SORT_TEXTURE</unmanaged-short>
  16785. </member>
  16786. <member name="F:SharpDX.Direct3D9.SpriteFlags.SortDepthFrontToBack">
  16787. <summary>
  16788. No documentation.
  16789. </summary>
  16790. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSPRITE_SORT_DEPTH_FRONTTOBACK']/*" />
  16791. <msdn-id>bb205466</msdn-id>
  16792. <unmanaged>D3DXSPRITE_SORT_DEPTH_FRONTTOBACK</unmanaged>
  16793. <unmanaged-short>D3DXSPRITE_SORT_DEPTH_FRONTTOBACK</unmanaged-short>
  16794. </member>
  16795. <member name="F:SharpDX.Direct3D9.SpriteFlags.SortDepthBackToFront">
  16796. <summary>
  16797. No documentation.
  16798. </summary>
  16799. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSPRITE_SORT_DEPTH_BACKTOFRONT']/*" />
  16800. <msdn-id>bb205466</msdn-id>
  16801. <unmanaged>D3DXSPRITE_SORT_DEPTH_BACKTOFRONT</unmanaged>
  16802. <unmanaged-short>D3DXSPRITE_SORT_DEPTH_BACKTOFRONT</unmanaged-short>
  16803. </member>
  16804. <member name="F:SharpDX.Direct3D9.SpriteFlags.DoNotAddRefTexture">
  16805. <summary>
  16806. No documentation.
  16807. </summary>
  16808. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSPRITE_DO_NOT_ADDREF_TEXTURE']/*" />
  16809. <msdn-id>bb205466</msdn-id>
  16810. <unmanaged>D3DXSPRITE_DO_NOT_ADDREF_TEXTURE</unmanaged>
  16811. <unmanaged-short>D3DXSPRITE_DO_NOT_ADDREF_TEXTURE</unmanaged-short>
  16812. </member>
  16813. <member name="F:SharpDX.Direct3D9.SpriteFlags.None">
  16814. <summary>
  16815. None.
  16816. </summary>
  16817. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  16818. <unmanaged>None</unmanaged>
  16819. <unmanaged-short>None</unmanaged-short>
  16820. </member>
  16821. <member name="T:SharpDX.Direct3D9.StateBlockType">
  16822. <summary>
  16823. <p>Predefined sets of pipeline state used by state blocks (see State Blocks Save and Restore State (Direct3D 9)).</p>
  16824. </summary>
  16825. <remarks>
  16826. <p>As the following diagram shows, vertex and pixel state are both subsets of device state.</p><p /><p>There are only a few states that are considered both vertex and pixel state. These states are:</p><ul> <li>Render state: <see cref="F:SharpDX.Direct3D9.RenderState.FogDensity" /></li> <li>Render state: <see cref="F:SharpDX.Direct3D9.RenderState.FogStart" /></li> <li>Render state: <see cref="F:SharpDX.Direct3D9.RenderState.FogEnd" /></li> <li>Texture state: <see cref="F:SharpDX.Direct3D9.TextureStage.TexCoordIndex" /></li> <li>Texture state: <see cref="F:SharpDX.Direct3D9.TextureStage.TextureTransformFlags" /></li> </ul>
  16827. </remarks>
  16828. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTATEBLOCKTYPE']/*" />
  16829. <msdn-id>bb172608</msdn-id>
  16830. <unmanaged>D3DSTATEBLOCKTYPE</unmanaged>
  16831. <unmanaged-short>D3DSTATEBLOCKTYPE</unmanaged-short>
  16832. </member>
  16833. <member name="F:SharpDX.Direct3D9.StateBlockType.All">
  16834. <summary>
  16835. No documentation.
  16836. </summary>
  16837. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSBT_ALL']/*" />
  16838. <msdn-id>bb172608</msdn-id>
  16839. <unmanaged>D3DSBT_ALL</unmanaged>
  16840. <unmanaged-short>D3DSBT_ALL</unmanaged-short>
  16841. </member>
  16842. <member name="F:SharpDX.Direct3D9.StateBlockType.PixelState">
  16843. <summary>
  16844. No documentation.
  16845. </summary>
  16846. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSBT_PIXELSTATE']/*" />
  16847. <msdn-id>bb172608</msdn-id>
  16848. <unmanaged>D3DSBT_PIXELSTATE</unmanaged>
  16849. <unmanaged-short>D3DSBT_PIXELSTATE</unmanaged-short>
  16850. </member>
  16851. <member name="F:SharpDX.Direct3D9.StateBlockType.VertexState">
  16852. <summary>
  16853. No documentation.
  16854. </summary>
  16855. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSBT_VERTEXSTATE']/*" />
  16856. <msdn-id>bb172608</msdn-id>
  16857. <unmanaged>D3DSBT_VERTEXSTATE</unmanaged>
  16858. <unmanaged-short>D3DSBT_VERTEXSTATE</unmanaged-short>
  16859. </member>
  16860. <member name="T:SharpDX.Direct3D9.StencilCaps">
  16861. <summary>
  16862. <p>Driver stencil capability flags.</p>
  16863. </summary>
  16864. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILCAPS']/*" />
  16865. <msdn-id>bb172609</msdn-id>
  16866. <unmanaged>D3DSTENCILCAPS</unmanaged>
  16867. <unmanaged-short>D3DSTENCILCAPS</unmanaged-short>
  16868. </member>
  16869. <member name="F:SharpDX.Direct3D9.StencilCaps.Keep">
  16870. <summary>
  16871. No documentation.
  16872. </summary>
  16873. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILCAPS_KEEP']/*" />
  16874. <msdn-id>bb172609</msdn-id>
  16875. <unmanaged>D3DSTENCILCAPS_KEEP</unmanaged>
  16876. <unmanaged-short>D3DSTENCILCAPS_KEEP</unmanaged-short>
  16877. </member>
  16878. <member name="F:SharpDX.Direct3D9.StencilCaps.Zero">
  16879. <summary>
  16880. No documentation.
  16881. </summary>
  16882. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILCAPS_ZERO']/*" />
  16883. <msdn-id>bb172609</msdn-id>
  16884. <unmanaged>D3DSTENCILCAPS_ZERO</unmanaged>
  16885. <unmanaged-short>D3DSTENCILCAPS_ZERO</unmanaged-short>
  16886. </member>
  16887. <member name="F:SharpDX.Direct3D9.StencilCaps.Replace">
  16888. <summary>
  16889. No documentation.
  16890. </summary>
  16891. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILCAPS_REPLACE']/*" />
  16892. <msdn-id>bb172609</msdn-id>
  16893. <unmanaged>D3DSTENCILCAPS_REPLACE</unmanaged>
  16894. <unmanaged-short>D3DSTENCILCAPS_REPLACE</unmanaged-short>
  16895. </member>
  16896. <member name="F:SharpDX.Direct3D9.StencilCaps.IncrementClamp">
  16897. <summary>
  16898. No documentation.
  16899. </summary>
  16900. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILCAPS_INCRSAT']/*" />
  16901. <msdn-id>bb172609</msdn-id>
  16902. <unmanaged>D3DSTENCILCAPS_INCRSAT</unmanaged>
  16903. <unmanaged-short>D3DSTENCILCAPS_INCRSAT</unmanaged-short>
  16904. </member>
  16905. <member name="F:SharpDX.Direct3D9.StencilCaps.DecrementClamp">
  16906. <summary>
  16907. No documentation.
  16908. </summary>
  16909. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILCAPS_DECRSAT']/*" />
  16910. <msdn-id>bb172609</msdn-id>
  16911. <unmanaged>D3DSTENCILCAPS_DECRSAT</unmanaged>
  16912. <unmanaged-short>D3DSTENCILCAPS_DECRSAT</unmanaged-short>
  16913. </member>
  16914. <member name="F:SharpDX.Direct3D9.StencilCaps.Invert">
  16915. <summary>
  16916. No documentation.
  16917. </summary>
  16918. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILCAPS_INVERT']/*" />
  16919. <msdn-id>bb172609</msdn-id>
  16920. <unmanaged>D3DSTENCILCAPS_INVERT</unmanaged>
  16921. <unmanaged-short>D3DSTENCILCAPS_INVERT</unmanaged-short>
  16922. </member>
  16923. <member name="F:SharpDX.Direct3D9.StencilCaps.Increment">
  16924. <summary>
  16925. No documentation.
  16926. </summary>
  16927. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILCAPS_INCR']/*" />
  16928. <msdn-id>bb172609</msdn-id>
  16929. <unmanaged>D3DSTENCILCAPS_INCR</unmanaged>
  16930. <unmanaged-short>D3DSTENCILCAPS_INCR</unmanaged-short>
  16931. </member>
  16932. <member name="F:SharpDX.Direct3D9.StencilCaps.Decrement">
  16933. <summary>
  16934. No documentation.
  16935. </summary>
  16936. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILCAPS_DECR']/*" />
  16937. <msdn-id>bb172609</msdn-id>
  16938. <unmanaged>D3DSTENCILCAPS_DECR</unmanaged>
  16939. <unmanaged-short>D3DSTENCILCAPS_DECR</unmanaged-short>
  16940. </member>
  16941. <member name="F:SharpDX.Direct3D9.StencilCaps.TwoSided">
  16942. <summary>
  16943. No documentation.
  16944. </summary>
  16945. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILCAPS_TWOSIDED']/*" />
  16946. <msdn-id>bb172609</msdn-id>
  16947. <unmanaged>D3DSTENCILCAPS_TWOSIDED</unmanaged>
  16948. <unmanaged-short>D3DSTENCILCAPS_TWOSIDED</unmanaged-short>
  16949. </member>
  16950. <member name="T:SharpDX.Direct3D9.StencilOperation">
  16951. <summary>
  16952. <p>Defines stencil-buffer operations.</p>
  16953. </summary>
  16954. <remarks>
  16955. <p>Stencil-buffer entries are integer values ranging from 0 through 2n - 1, where n is the bit depth of the stencil buffer.</p>
  16956. </remarks>
  16957. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILOP']/*" />
  16958. <msdn-id>bb172610</msdn-id>
  16959. <unmanaged>D3DSTENCILOP</unmanaged>
  16960. <unmanaged-short>D3DSTENCILOP</unmanaged-short>
  16961. </member>
  16962. <member name="F:SharpDX.Direct3D9.StencilOperation.Keep">
  16963. <summary>
  16964. <dd> <p>Do not update the entry in the stencil buffer. This is the default value.</p> </dd>
  16965. </summary>
  16966. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILOP_KEEP']/*" />
  16967. <msdn-id>bb172610</msdn-id>
  16968. <unmanaged>D3DSTENCILOP_KEEP</unmanaged>
  16969. <unmanaged-short>D3DSTENCILOP_KEEP</unmanaged-short>
  16970. </member>
  16971. <member name="F:SharpDX.Direct3D9.StencilOperation.Zero">
  16972. <summary>
  16973. <dd> <p>Set the stencil-buffer entry to 0.</p> </dd>
  16974. </summary>
  16975. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILOP_ZERO']/*" />
  16976. <msdn-id>bb172610</msdn-id>
  16977. <unmanaged>D3DSTENCILOP_ZERO</unmanaged>
  16978. <unmanaged-short>D3DSTENCILOP_ZERO</unmanaged-short>
  16979. </member>
  16980. <member name="F:SharpDX.Direct3D9.StencilOperation.Replace">
  16981. <summary>
  16982. <dd> <p>Replace the stencil-buffer entry with a reference value.</p> </dd>
  16983. </summary>
  16984. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILOP_REPLACE']/*" />
  16985. <msdn-id>bb172610</msdn-id>
  16986. <unmanaged>D3DSTENCILOP_REPLACE</unmanaged>
  16987. <unmanaged-short>D3DSTENCILOP_REPLACE</unmanaged-short>
  16988. </member>
  16989. <member name="F:SharpDX.Direct3D9.StencilOperation.IncrementSaturate">
  16990. <summary>
  16991. <dd> <p>Increment the stencil-buffer entry, clamping to the maximum value.</p> </dd>
  16992. </summary>
  16993. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILOP_INCRSAT']/*" />
  16994. <msdn-id>bb172610</msdn-id>
  16995. <unmanaged>D3DSTENCILOP_INCRSAT</unmanaged>
  16996. <unmanaged-short>D3DSTENCILOP_INCRSAT</unmanaged-short>
  16997. </member>
  16998. <member name="F:SharpDX.Direct3D9.StencilOperation.DecrementSaturate">
  16999. <summary>
  17000. <dd> <p>Decrement the stencil-buffer entry, clamping to zero.</p> </dd>
  17001. </summary>
  17002. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILOP_DECRSAT']/*" />
  17003. <msdn-id>bb172610</msdn-id>
  17004. <unmanaged>D3DSTENCILOP_DECRSAT</unmanaged>
  17005. <unmanaged-short>D3DSTENCILOP_DECRSAT</unmanaged-short>
  17006. </member>
  17007. <member name="F:SharpDX.Direct3D9.StencilOperation.Invert">
  17008. <summary>
  17009. <dd> <p>Invert the bits in the stencil-buffer entry.</p> </dd>
  17010. </summary>
  17011. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILOP_INVERT']/*" />
  17012. <msdn-id>bb172610</msdn-id>
  17013. <unmanaged>D3DSTENCILOP_INVERT</unmanaged>
  17014. <unmanaged-short>D3DSTENCILOP_INVERT</unmanaged-short>
  17015. </member>
  17016. <member name="F:SharpDX.Direct3D9.StencilOperation.Increment">
  17017. <summary>
  17018. <dd> <p>Increment the stencil-buffer entry, wrapping to zero if the new value exceeds the maximum value.</p> </dd>
  17019. </summary>
  17020. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILOP_INCR']/*" />
  17021. <msdn-id>bb172610</msdn-id>
  17022. <unmanaged>D3DSTENCILOP_INCR</unmanaged>
  17023. <unmanaged-short>D3DSTENCILOP_INCR</unmanaged-short>
  17024. </member>
  17025. <member name="F:SharpDX.Direct3D9.StencilOperation.Decrement">
  17026. <summary>
  17027. <dd> <p>Decrement the stencil-buffer entry, wrapping to the maximum value if the new value is less than zero.</p> </dd>
  17028. </summary>
  17029. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTENCILOP_DECR']/*" />
  17030. <msdn-id>bb172610</msdn-id>
  17031. <unmanaged>D3DSTENCILOP_DECR</unmanaged>
  17032. <unmanaged-short>D3DSTENCILOP_DECR</unmanaged-short>
  17033. </member>
  17034. <member name="T:SharpDX.Direct3D9.StreamSource">
  17035. <summary>
  17036. <p>Given a scene that contains many objects that use the same geometry, you can draw many instances of that geometry at different orientations, sizes, colors, and so on with dramatically better performance by reducing the amount of data you need to supply to the renderer.</p><p>This can be accomplished through the use of two techniques: the first for drawing indexed geometry and the second for non-indexed geometry. Both techniques use two vertex buffers: one to supply geometry data and one to supply per-object instance data. The instance data can be a wide variety of information such as a transform, color data, or lighting data - basically anything that you can describe in a vertex declaration. Drawing many instances of geometry with these techniques can dramatically reduce the amount of data sent to the renderer.</p><p> </p><ul> <li>Drawing<ul> <li>Indexed</li> </ul> </li> <li>Drawing<ul> <li>Non-Indexed</li> </ul> </li> <li>Related</li> </ul>
  17037. </summary>
  17038. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTREAMSOURCE']/*" />
  17039. <msdn-id>bb173349</msdn-id>
  17040. <unmanaged>D3DSTREAMSOURCE</unmanaged>
  17041. <unmanaged-short>D3DSTREAMSOURCE</unmanaged-short>
  17042. </member>
  17043. <member name="F:SharpDX.Direct3D9.StreamSource.IndexedData">
  17044. <summary>
  17045. No documentation.
  17046. </summary>
  17047. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTREAMSOURCE_INDEXEDDATA']/*" />
  17048. <msdn-id>bb173349</msdn-id>
  17049. <unmanaged>D3DSTREAMSOURCE_INDEXEDDATA</unmanaged>
  17050. <unmanaged-short>D3DSTREAMSOURCE_INDEXEDDATA</unmanaged-short>
  17051. </member>
  17052. <member name="F:SharpDX.Direct3D9.StreamSource.InstanceData">
  17053. <summary>
  17054. No documentation.
  17055. </summary>
  17056. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSTREAMSOURCE_INSTANCEDATA']/*" />
  17057. <msdn-id>bb173349</msdn-id>
  17058. <unmanaged>D3DSTREAMSOURCE_INSTANCEDATA</unmanaged>
  17059. <unmanaged-short>D3DSTREAMSOURCE_INSTANCEDATA</unmanaged-short>
  17060. </member>
  17061. <member name="T:SharpDX.Direct3D9.SwapEffect">
  17062. <summary>
  17063. <p>Defines swap effects.</p>
  17064. </summary>
  17065. <remarks>
  17066. <p>The state of the back buffer after a call to Present is well-defined by each of these swap effects, and whether the Direct3D device was created with a full-screen swap chain or a windowed swap chain has no effect on this state. In particular, the <see cref="F:SharpDX.Direct3D9.SwapEffect.Flip" /> swap effect operates the same whether windowed or full-screen, and the Direct3D runtime guarantees this by creating extra buffers. As a result, it is recommended that applications use <see cref="F:SharpDX.Direct3D9.SwapEffect.Discard" /> whenever possible to avoid any such penalties. This is because this swap effect will always be the most efficient in terms of memory consumption and performance.</p><p>Applications that use <see cref="F:SharpDX.Direct3D9.SwapEffect.Flip" /> or <see cref="F:SharpDX.Direct3D9.SwapEffect.Discard" /> should not expect full-screen destination alpha to work. This means that the <see cref="F:SharpDX.Direct3D9.RenderState.DestinationBlend" /> render state will not work as expected because full-screen swap chains with these swap effects do not have an explicit pixel format from the driver's point of view. The driver infers that they should take on the display format, which does not have an alpha channel. To work around this, take the following steps: </p><ul> <li>Use <see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" />.</li> <li>Check the <see cref="F:SharpDX.Direct3D9.Caps3.AlphaFullScreenFlipOrDiscard" /> flag in the Caps3 member of the <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong> structure. This flag indicates whether the driver can do alpha blending when <see cref="F:SharpDX.Direct3D9.SwapEffect.Flip" /> or <see cref="F:SharpDX.Direct3D9.SwapEffect.Discard" /> is used.</li> <li>Applications using flip mode swap effect (<see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" />) should call <strong>PresentEx</strong> after a window resize or region change to ensure that the display content is updated.</li> </ul><p>An invisible window cannot receive user-mode events; furthermore, an invisible-fullscreen window will interfere with the presentation of another applications' windowed-mode window. Therefore, each application needs to ensure that a device window is visible when a swapchain is presented in fullscreen mode.</p>
  17067. </remarks>
  17068. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSWAPEFFECT']/*" />
  17069. <msdn-id>bb172612</msdn-id>
  17070. <unmanaged>D3DSWAPEFFECT</unmanaged>
  17071. <unmanaged-short>D3DSWAPEFFECT</unmanaged-short>
  17072. </member>
  17073. <member name="F:SharpDX.Direct3D9.SwapEffect.Discard">
  17074. <summary>
  17075. <dd> <p>When a swap chain is created with a swap effect of <see cref="F:SharpDX.Direct3D9.SwapEffect.Flip" /> or <see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" />, the runtime will guarantee that an <strong><see cref="M:SharpDX.Direct3D9.Device.Present" /></strong> operation will not affect the content of any of the back buffers. Unfortunately, meeting this guarantee can involve substantial video memory or processing overheads, especially when implementing flip semantics for a windowed swap chain or copy semantics for a full-screen swap chain. An application may use the <see cref="F:SharpDX.Direct3D9.SwapEffect.Discard" /> swap effect to avoid these overheads and to enable the display driver to select the most efficient presentation technique for the swap chain. This is also the only swap effect that may be used when specifying a value other than <see cref="F:SharpDX.Direct3D9.MultisampleType.None" /> for the MultiSampleType member of <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong>.</p> <p>Like a swap chain that uses <see cref="F:SharpDX.Direct3D9.SwapEffect.Flip" />, a swap chain that uses <see cref="F:SharpDX.Direct3D9.SwapEffect.Discard" /> might include more than one back buffer, any of which may be accessed using <strong><see cref="M:SharpDX.Direct3D9.Device.GetBackBuffer(System.Int32,System.Int32)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.SwapChain.GetBackBuffer(System.Int32,SharpDX.Direct3D9.BackBufferType)" /></strong>. The swap chain is best envisaged as a queue in which 0 always indexes the back buffer that will be displayed by the next Present operation and from which buffers are discarded when they have been displayed.</p> <p>An application that uses this swap effect cannot make any assumptions about the contents of a discarded back buffer and should therefore update an entire back buffer before invoking a Present operation that would display it. Although this is not enforced, the debug version of the runtime will overwrite the contents of discarded back buffers with random data to enable developers to verify that their applications are updating the entire back buffer surfaces correctly.</p> </dd>
  17076. </summary>
  17077. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSWAPEFFECT_DISCARD']/*" />
  17078. <msdn-id>bb172612</msdn-id>
  17079. <unmanaged>D3DSWAPEFFECT_DISCARD</unmanaged>
  17080. <unmanaged-short>D3DSWAPEFFECT_DISCARD</unmanaged-short>
  17081. </member>
  17082. <member name="F:SharpDX.Direct3D9.SwapEffect.Flip">
  17083. <summary>
  17084. <dd> <p>The swap chain might include multiple back buffers and is best envisaged as a circular queue that includes the front buffer. Within this queue, the back buffers are always numbered sequentially from 0 to (n - 1), where n is the number of back buffers, so that 0 denotes the least recently presented buffer. When Present is invoked, the queue is "rotated" so that the front buffer becomes back buffer (n - 1), while the back buffer 0 becomes the new front buffer.</p> </dd>
  17085. </summary>
  17086. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSWAPEFFECT_FLIP']/*" />
  17087. <msdn-id>bb172612</msdn-id>
  17088. <unmanaged>D3DSWAPEFFECT_FLIP</unmanaged>
  17089. <unmanaged-short>D3DSWAPEFFECT_FLIP</unmanaged-short>
  17090. </member>
  17091. <member name="F:SharpDX.Direct3D9.SwapEffect.Copy">
  17092. <summary>
  17093. <dd> <p>This swap effect may be specified only for a swap chain comprising a single back buffer. Whether the swap chain is windowed or full-screen, the runtime will guarantee the semantics implied by a copy-based Present operation, namely that the operation leaves the content of the back buffer unchanged, instead of replacing it with the content of the front buffer as a flip-based Present operation would. </p> <p>For a full-screen swap chain, the runtime uses a combination of flip operations and copy operations, supported if necessary by hidden back buffers, to accomplish the Present operation. Accordingly, the presentation is synchronized with the display adapter's vertical retrace and its rate is constrained by the chosen presentation interval. A swap chain specified with the <see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" /> flag is the only exception. (Refer to the description of the <strong>PresentationIntervals</strong> member of the <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structure.) In this case, a Present operation copies the back buffer content directly to the front buffer without waiting for the vertical retrace.</p> </dd>
  17094. </summary>
  17095. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSWAPEFFECT_COPY']/*" />
  17096. <msdn-id>bb172612</msdn-id>
  17097. <unmanaged>D3DSWAPEFFECT_COPY</unmanaged>
  17098. <unmanaged-short>D3DSWAPEFFECT_COPY</unmanaged-short>
  17099. </member>
  17100. <member name="F:SharpDX.Direct3D9.SwapEffect.Overlay">
  17101. <summary>
  17102. <dd> <p>Use a dedicated area of video memory that can be overlayed on the primary surface. No copy is performed when the overlay is displayed. The overlay operation is performed in hardware, without modifying the data in the primary surface.</p> <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 9Ex:</p> <p><see cref="F:SharpDX.Direct3D9.SwapEffect.Overlay" /> is only available in Direct3D9Ex running on Windows 7 (or more current operating system).</p> </td></tr> </table> <p>?</p> </dd>
  17103. </summary>
  17104. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSWAPEFFECT_OVERLAY']/*" />
  17105. <msdn-id>bb172612</msdn-id>
  17106. <unmanaged>D3DSWAPEFFECT_OVERLAY</unmanaged>
  17107. <unmanaged-short>D3DSWAPEFFECT_OVERLAY</unmanaged-short>
  17108. </member>
  17109. <member name="F:SharpDX.Direct3D9.SwapEffect.FlipEx">
  17110. <summary>
  17111. <dd> <p>Designates when an application is adopting flip mode, during which time an application's frame is passed instead of copied to the Desktop Window Manager(DWM) for composition when the application is presenting in windowed mode. Flip mode allows an application to more efficiently use memory bandwidth as well as enabling an application to take advantage of full-screen-present statistics. Flip mode does not affect full-screen behavior. A sample application that uses <see cref="F:SharpDX.Direct3D9.Present.ForceImmediate" /> and <see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" /> is the D3D9ExFlipEx sample on the MSDN Code Gallery.</p> <p><strong>Note</strong>??If you create a swap chain with <see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" />, you can't override the <strong>hDeviceWindow</strong> member of the <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> structure when you present a new frame for display. That is, you must pass <strong><c>null</c></strong> to the <em>hDestWindowOverride</em> parameter of <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.PresentEx(SharpDX.Direct3D9.Present)" /></strong> to instruct the runtime to use the <strong>hDeviceWindow</strong> member of <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> for the presentation.</p> <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 9Ex:</p> <p><see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" /> is only available in Direct3D9Ex running on Windows 7 (or more current operating system).</p> </td></tr> </table> <p>?</p> </dd>
  17112. </summary>
  17113. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSWAPEFFECT_FLIPEX']/*" />
  17114. <msdn-id>bb172612</msdn-id>
  17115. <unmanaged>D3DSWAPEFFECT_FLIPEX</unmanaged>
  17116. <unmanaged-short>D3DSWAPEFFECT_FLIPEX</unmanaged-short>
  17117. </member>
  17118. <member name="T:SharpDX.Direct3D9.TangentOptions">
  17119. <summary>
  17120. <p>Defines settings used for mesh tangent frame computations.</p>
  17121. </summary>
  17122. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT']/*" />
  17123. <msdn-id>bb205467</msdn-id>
  17124. <unmanaged>D3DXTANGENT</unmanaged>
  17125. <unmanaged-short>D3DXTANGENT</unmanaged-short>
  17126. </member>
  17127. <member name="F:SharpDX.Direct3D9.TangentOptions.WrapU">
  17128. <summary>
  17129. <dd> <p>Texture coordinate values in the u direction are between 0 and 1. In this case a texture coordinate set will be chosen that minimizes the perimeter of the triangle. See Texture Wrapping (Direct3D 9).</p> </dd>
  17130. </summary>
  17131. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_WRAP_U']/*" />
  17132. <msdn-id>bb205467</msdn-id>
  17133. <unmanaged>D3DXTANGENT_WRAP_U</unmanaged>
  17134. <unmanaged-short>D3DXTANGENT_WRAP_U</unmanaged-short>
  17135. </member>
  17136. <member name="F:SharpDX.Direct3D9.TangentOptions.WrapV">
  17137. <summary>
  17138. <dd> <p>Texture coordinate values in the v direction are between 0 and 1. In this case a texture coordinate set will be chosen that minimizes the perimeter of the triangle. See Texture Wrapping (Direct3D 9).</p> </dd>
  17139. </summary>
  17140. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_WRAP_V']/*" />
  17141. <msdn-id>bb205467</msdn-id>
  17142. <unmanaged>D3DXTANGENT_WRAP_V</unmanaged>
  17143. <unmanaged-short>D3DXTANGENT_WRAP_V</unmanaged-short>
  17144. </member>
  17145. <member name="F:SharpDX.Direct3D9.TangentOptions.WrapUV">
  17146. <summary>
  17147. <dd> <p>Texture coordinate values in both u and v directions are between 0 and 1. In this case a texture coordinate set will be chosen that minimizes the perimeter of the triangle. See Texture Wrapping (Direct3D 9).</p> </dd>
  17148. </summary>
  17149. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_WRAP_UV']/*" />
  17150. <msdn-id>bb205467</msdn-id>
  17151. <unmanaged>D3DXTANGENT_WRAP_UV</unmanaged>
  17152. <unmanaged-short>D3DXTANGENT_WRAP_UV</unmanaged-short>
  17153. </member>
  17154. <member name="F:SharpDX.Direct3D9.TangentOptions.DontNormalizePartials">
  17155. <summary>
  17156. <dd> <p>Do not normalize partial derivatives with respect to texture coordinates. If not normalized, the scale of the partial derivatives is proportional to the scale of the 3D model divided by the scale of the triangle in (u, v) space. This scale value provides a measure of how much the texture is stretched in a given direction. The resulting vector length is a weighted sum of the lengths of the partial derivatives.</p> </dd>
  17157. </summary>
  17158. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_DONT_NORMALIZE_PARTIALS']/*" />
  17159. <msdn-id>bb205467</msdn-id>
  17160. <unmanaged>D3DXTANGENT_DONT_NORMALIZE_PARTIALS</unmanaged>
  17161. <unmanaged-short>D3DXTANGENT_DONT_NORMALIZE_PARTIALS</unmanaged-short>
  17162. </member>
  17163. <member name="F:SharpDX.Direct3D9.TangentOptions.DontOrthogonalize">
  17164. <summary>
  17165. <dd> <p>Do not transform texture coordinates to orthogonal Cartesian coordinates. Mutually exclusive with <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromU" /> and <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromV" />.</p> </dd>
  17166. </summary>
  17167. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_DONT_ORTHOGONALIZE']/*" />
  17168. <msdn-id>bb205467</msdn-id>
  17169. <unmanaged>D3DXTANGENT_DONT_ORTHOGONALIZE</unmanaged>
  17170. <unmanaged-short>D3DXTANGENT_DONT_ORTHOGONALIZE</unmanaged-short>
  17171. </member>
  17172. <member name="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromV">
  17173. <summary>
  17174. <dd> <p>Compute the partial derivative with respect to texture coordinate v independently for each vertex, and then compute the partial derivative with respect to u as the cross product of the partial derivative with respect to v and the normal vector. Mutually exclusive with <see cref="F:SharpDX.Direct3D9.TangentOptions.DontOrthogonalize" /> and <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromU" />.</p> </dd>
  17175. </summary>
  17176. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_ORTHOGONALIZE_FROM_V']/*" />
  17177. <msdn-id>bb205467</msdn-id>
  17178. <unmanaged>D3DXTANGENT_ORTHOGONALIZE_FROM_V</unmanaged>
  17179. <unmanaged-short>D3DXTANGENT_ORTHOGONALIZE_FROM_V</unmanaged-short>
  17180. </member>
  17181. <member name="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromU">
  17182. <summary>
  17183. <dd> <p>Compute the partial derivative with respect to texture coordinate u independently for each vertex, and then compute the partial derivative with respect to v as the cross product of the normal vector and the partial derivative with respect to u. Mutually exclusive with <see cref="F:SharpDX.Direct3D9.TangentOptions.DontOrthogonalize" /> and <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromV" />.</p> </dd>
  17184. </summary>
  17185. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_ORTHOGONALIZE_FROM_U']/*" />
  17186. <msdn-id>bb205467</msdn-id>
  17187. <unmanaged>D3DXTANGENT_ORTHOGONALIZE_FROM_U</unmanaged>
  17188. <unmanaged-short>D3DXTANGENT_ORTHOGONALIZE_FROM_U</unmanaged-short>
  17189. </member>
  17190. <member name="F:SharpDX.Direct3D9.TangentOptions.WeightByArea">
  17191. <summary>
  17192. <dd> <p>Weight the direction of the computed per-vertex normal or partial derivative vector according to the areas of triangles attached to that vertex. Mutually exclusive with <see cref="F:SharpDX.Direct3D9.TangentOptions.WeightEqual" />.</p> </dd>
  17193. </summary>
  17194. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_WEIGHT_BY_AREA']/*" />
  17195. <msdn-id>bb205467</msdn-id>
  17196. <unmanaged>D3DXTANGENT_WEIGHT_BY_AREA</unmanaged>
  17197. <unmanaged-short>D3DXTANGENT_WEIGHT_BY_AREA</unmanaged-short>
  17198. </member>
  17199. <member name="F:SharpDX.Direct3D9.TangentOptions.WeightEqual">
  17200. <summary>
  17201. <dd> <p>Compute a unit-length normal vector for each triangle of the input mesh. Mutually exclusive with <see cref="F:SharpDX.Direct3D9.TangentOptions.WeightByArea" />.</p> </dd>
  17202. </summary>
  17203. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_WEIGHT_EQUAL']/*" />
  17204. <msdn-id>bb205467</msdn-id>
  17205. <unmanaged>D3DXTANGENT_WEIGHT_EQUAL</unmanaged>
  17206. <unmanaged-short>D3DXTANGENT_WEIGHT_EQUAL</unmanaged-short>
  17207. </member>
  17208. <member name="F:SharpDX.Direct3D9.TangentOptions.WindCW">
  17209. <summary>
  17210. <dd> <p>Vertices are ordered in a clockwise direction around each triangle. The computed normal vector direction is therefore inverted 180 degrees from the direction computed using counterclockwise vertex ordering.</p> </dd>
  17211. </summary>
  17212. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_WIND_CW']/*" />
  17213. <msdn-id>bb205467</msdn-id>
  17214. <unmanaged>D3DXTANGENT_WIND_CW</unmanaged>
  17215. <unmanaged-short>D3DXTANGENT_WIND_CW</unmanaged-short>
  17216. </member>
  17217. <member name="F:SharpDX.Direct3D9.TangentOptions.CalculateNormals">
  17218. <summary>
  17219. <dd> <p>Compute the per-vertex normal vector for each triangle of the input mesh, and ignore any normal vectors already in the input mesh.</p> </dd>
  17220. </summary>
  17221. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_CALCULATE_NORMALS']/*" />
  17222. <msdn-id>bb205467</msdn-id>
  17223. <unmanaged>D3DXTANGENT_CALCULATE_NORMALS</unmanaged>
  17224. <unmanaged-short>D3DXTANGENT_CALCULATE_NORMALS</unmanaged-short>
  17225. </member>
  17226. <member name="F:SharpDX.Direct3D9.TangentOptions.GenerateInPlace">
  17227. <summary>
  17228. <dd> <p>The results are stored in the original input mesh, and the output mesh is not used.</p> </dd>
  17229. </summary>
  17230. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTANGENT_GENERATE_IN_PLACE']/*" />
  17231. <msdn-id>bb205467</msdn-id>
  17232. <unmanaged>D3DXTANGENT_GENERATE_IN_PLACE</unmanaged>
  17233. <unmanaged-short>D3DXTANGENT_GENERATE_IN_PLACE</unmanaged-short>
  17234. </member>
  17235. <member name="F:SharpDX.Direct3D9.TangentOptions.None">
  17236. <summary>
  17237. None.
  17238. </summary>
  17239. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  17240. <unmanaged>None</unmanaged>
  17241. <unmanaged-short>None</unmanaged-short>
  17242. </member>
  17243. <member name="T:SharpDX.Direct3D9.TextureAddress">
  17244. <summary>
  17245. <p>Defines constants that describe the supported texture-addressing modes.</p>
  17246. </summary>
  17247. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXTUREADDRESS']/*" />
  17248. <msdn-id>bb172614</msdn-id>
  17249. <unmanaged>D3DTEXTUREADDRESS</unmanaged>
  17250. <unmanaged-short>D3DTEXTUREADDRESS</unmanaged-short>
  17251. </member>
  17252. <member name="F:SharpDX.Direct3D9.TextureAddress.Wrap">
  17253. <summary>
  17254. <dd> <p>Tile the texture at every integer junction. For example, for u values between 0 and 3, the texture is repeated three times; no mirroring is performed. </p> </dd>
  17255. </summary>
  17256. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTADDRESS_WRAP']/*" />
  17257. <msdn-id>bb172614</msdn-id>
  17258. <unmanaged>D3DTADDRESS_WRAP</unmanaged>
  17259. <unmanaged-short>D3DTADDRESS_WRAP</unmanaged-short>
  17260. </member>
  17261. <member name="F:SharpDX.Direct3D9.TextureAddress.Mirror">
  17262. <summary>
  17263. <dd> <p>Similar to <see cref="F:SharpDX.Direct3D9.TextureAddress.Wrap" />, except that the texture is flipped 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>
  17264. </summary>
  17265. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTADDRESS_MIRROR']/*" />
  17266. <msdn-id>bb172614</msdn-id>
  17267. <unmanaged>D3DTADDRESS_MIRROR</unmanaged>
  17268. <unmanaged-short>D3DTADDRESS_MIRROR</unmanaged-short>
  17269. </member>
  17270. <member name="F:SharpDX.Direct3D9.TextureAddress.Clamp">
  17271. <summary>
  17272. <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>
  17273. </summary>
  17274. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTADDRESS_CLAMP']/*" />
  17275. <msdn-id>bb172614</msdn-id>
  17276. <unmanaged>D3DTADDRESS_CLAMP</unmanaged>
  17277. <unmanaged-short>D3DTADDRESS_CLAMP</unmanaged-short>
  17278. </member>
  17279. <member name="F:SharpDX.Direct3D9.TextureAddress.Border">
  17280. <summary>
  17281. <dd> <p>Texture coordinates outside the range [0.0, 1.0] are set to the border color. </p> </dd>
  17282. </summary>
  17283. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTADDRESS_BORDER']/*" />
  17284. <msdn-id>bb172614</msdn-id>
  17285. <unmanaged>D3DTADDRESS_BORDER</unmanaged>
  17286. <unmanaged-short>D3DTADDRESS_BORDER</unmanaged-short>
  17287. </member>
  17288. <member name="F:SharpDX.Direct3D9.TextureAddress.MirrorOnce">
  17289. <summary>
  17290. <dd> <p>Similar to <see cref="F:SharpDX.Direct3D9.TextureAddress.Mirror" /> and <see cref="F:SharpDX.Direct3D9.TextureAddress.Clamp" />. Takes the absolute value of the texture coordinate (thus, mirroring around 0), and then clamps to the maximum value. The most common usage is for volume textures, where support for the full <see cref="F:SharpDX.Direct3D9.TextureAddress.MirrorOnce" /> texture-addressing mode is not necessary, but the data is symmetric around the one axis. </p> </dd>
  17291. </summary>
  17292. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTADDRESS_MIRRORONCE']/*" />
  17293. <msdn-id>bb172614</msdn-id>
  17294. <unmanaged>D3DTADDRESS_MIRRORONCE</unmanaged>
  17295. <unmanaged-short>D3DTADDRESS_MIRRORONCE</unmanaged-short>
  17296. </member>
  17297. <member name="T:SharpDX.Direct3D9.TextureAddressCaps">
  17298. <summary>
  17299. <p>A programmable pixel shader is made up of a set of instructions that operate on pixel data. Registers transfer data in and out of the ALU. Additional control can be applied to modify the instruction, the results, or what data gets written out.</p><ul> <li> ps_3_0 Instructions contains a list of the available instructions.</li> <li> ps_3_0 Registers lists the different types of registers used by the pixel shader ALU.</li> <li> Modifiers Are used to modify the way an instruction works.</li> <li> Destination Register Write Mask determines what components of the destination register get written.</li> <li> Pixel Shader Source Register Modifiers alter the source register data before the instruction runs.</li> <li> Source Register Swizzling gives additional control over which register components are read, copied, or written.</li> </ul>
  17300. </summary>
  17301. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTADDRESSCAPS']/*" />
  17302. <msdn-id>bb219845</msdn-id>
  17303. <unmanaged>D3DPTADDRESSCAPS</unmanaged>
  17304. <unmanaged-short>D3DPTADDRESSCAPS</unmanaged-short>
  17305. </member>
  17306. <member name="F:SharpDX.Direct3D9.TextureAddressCaps.Wrap">
  17307. <summary>
  17308. No documentation.
  17309. </summary>
  17310. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTADDRESSCAPS_WRAP']/*" />
  17311. <msdn-id>bb219845</msdn-id>
  17312. <unmanaged>D3DPTADDRESSCAPS_WRAP</unmanaged>
  17313. <unmanaged-short>D3DPTADDRESSCAPS_WRAP</unmanaged-short>
  17314. </member>
  17315. <member name="F:SharpDX.Direct3D9.TextureAddressCaps.Mirror">
  17316. <summary>
  17317. No documentation.
  17318. </summary>
  17319. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTADDRESSCAPS_MIRROR']/*" />
  17320. <msdn-id>bb219845</msdn-id>
  17321. <unmanaged>D3DPTADDRESSCAPS_MIRROR</unmanaged>
  17322. <unmanaged-short>D3DPTADDRESSCAPS_MIRROR</unmanaged-short>
  17323. </member>
  17324. <member name="F:SharpDX.Direct3D9.TextureAddressCaps.Clamp">
  17325. <summary>
  17326. No documentation.
  17327. </summary>
  17328. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTADDRESSCAPS_CLAMP']/*" />
  17329. <msdn-id>bb219845</msdn-id>
  17330. <unmanaged>D3DPTADDRESSCAPS_CLAMP</unmanaged>
  17331. <unmanaged-short>D3DPTADDRESSCAPS_CLAMP</unmanaged-short>
  17332. </member>
  17333. <member name="F:SharpDX.Direct3D9.TextureAddressCaps.Border">
  17334. <summary>
  17335. No documentation.
  17336. </summary>
  17337. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTADDRESSCAPS_BORDER']/*" />
  17338. <msdn-id>bb219845</msdn-id>
  17339. <unmanaged>D3DPTADDRESSCAPS_BORDER</unmanaged>
  17340. <unmanaged-short>D3DPTADDRESSCAPS_BORDER</unmanaged-short>
  17341. </member>
  17342. <member name="F:SharpDX.Direct3D9.TextureAddressCaps.IndependentUV">
  17343. <summary>
  17344. No documentation.
  17345. </summary>
  17346. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTADDRESSCAPS_INDEPENDENTUV']/*" />
  17347. <msdn-id>bb219845</msdn-id>
  17348. <unmanaged>D3DPTADDRESSCAPS_INDEPENDENTUV</unmanaged>
  17349. <unmanaged-short>D3DPTADDRESSCAPS_INDEPENDENTUV</unmanaged-short>
  17350. </member>
  17351. <member name="F:SharpDX.Direct3D9.TextureAddressCaps.MirrorOnce">
  17352. <summary>
  17353. No documentation.
  17354. </summary>
  17355. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTADDRESSCAPS_MIRRORONCE']/*" />
  17356. <msdn-id>bb219845</msdn-id>
  17357. <unmanaged>D3DPTADDRESSCAPS_MIRRORONCE</unmanaged>
  17358. <unmanaged-short>D3DPTADDRESSCAPS_MIRRORONCE</unmanaged-short>
  17359. </member>
  17360. <member name="T:SharpDX.Direct3D9.TextureArgument">
  17361. <summary>
  17362. <p>Texture argument constants are used as values for the following members of the <strong><see cref="T:SharpDX.Direct3D9.TextureStage" /></strong> enumerated type:</p><ul> <li><see cref="F:SharpDX.Direct3D9.TextureStage.AlphaArg0" /></li> <li><see cref="F:SharpDX.Direct3D9.TextureStage.AlphaArg1" /></li> <li><see cref="F:SharpDX.Direct3D9.TextureStage.AlphaArg2" /></li> <li><see cref="F:SharpDX.Direct3D9.TextureStage.ColorArg0" /></li> <li><see cref="F:SharpDX.Direct3D9.TextureStage.ColorArg1" /></li> <li><see cref="F:SharpDX.Direct3D9.TextureStage.ColorArg2" /></li> <li><see cref="F:SharpDX.Direct3D9.TextureStage.ResultArg" /></li> </ul><p>Set and retrieve texture arguments by calling the <strong>SetTextureStageState</strong> and <strong>GetTextureStageState</strong> methods.</p><p>Argument flags</p><p>You can combine an argument flag with a modifier, but two argument flags cannot be combined.</p>
  17363. </summary>
  17364. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA']/*" />
  17365. <msdn-id>bb172613</msdn-id>
  17366. <unmanaged>D3DTA</unmanaged>
  17367. <unmanaged-short>D3DTA</unmanaged-short>
  17368. </member>
  17369. <member name="F:SharpDX.Direct3D9.TextureArgument.SelectMask">
  17370. <summary>
  17371. No documentation.
  17372. </summary>
  17373. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA_SELECTMASK']/*" />
  17374. <msdn-id>bb172613</msdn-id>
  17375. <unmanaged>D3DTA_SELECTMASK</unmanaged>
  17376. <unmanaged-short>D3DTA_SELECTMASK</unmanaged-short>
  17377. </member>
  17378. <member name="F:SharpDX.Direct3D9.TextureArgument.Diffuse">
  17379. <summary>
  17380. No documentation.
  17381. </summary>
  17382. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA_DIFFUSE']/*" />
  17383. <msdn-id>bb172613</msdn-id>
  17384. <unmanaged>D3DTA_DIFFUSE</unmanaged>
  17385. <unmanaged-short>D3DTA_DIFFUSE</unmanaged-short>
  17386. </member>
  17387. <member name="F:SharpDX.Direct3D9.TextureArgument.Current">
  17388. <summary>
  17389. No documentation.
  17390. </summary>
  17391. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA_CURRENT']/*" />
  17392. <msdn-id>bb172613</msdn-id>
  17393. <unmanaged>D3DTA_CURRENT</unmanaged>
  17394. <unmanaged-short>D3DTA_CURRENT</unmanaged-short>
  17395. </member>
  17396. <member name="F:SharpDX.Direct3D9.TextureArgument.Texture">
  17397. <summary>
  17398. No documentation.
  17399. </summary>
  17400. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA_TEXTURE']/*" />
  17401. <msdn-id>bb172613</msdn-id>
  17402. <unmanaged>D3DTA_TEXTURE</unmanaged>
  17403. <unmanaged-short>D3DTA_TEXTURE</unmanaged-short>
  17404. </member>
  17405. <member name="F:SharpDX.Direct3D9.TextureArgument.TFactor">
  17406. <summary>
  17407. No documentation.
  17408. </summary>
  17409. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA_TFACTOR']/*" />
  17410. <msdn-id>bb172613</msdn-id>
  17411. <unmanaged>D3DTA_TFACTOR</unmanaged>
  17412. <unmanaged-short>D3DTA_TFACTOR</unmanaged-short>
  17413. </member>
  17414. <member name="F:SharpDX.Direct3D9.TextureArgument.Specular">
  17415. <summary>
  17416. No documentation.
  17417. </summary>
  17418. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA_SPECULAR']/*" />
  17419. <msdn-id>bb172613</msdn-id>
  17420. <unmanaged>D3DTA_SPECULAR</unmanaged>
  17421. <unmanaged-short>D3DTA_SPECULAR</unmanaged-short>
  17422. </member>
  17423. <member name="F:SharpDX.Direct3D9.TextureArgument.Temp">
  17424. <summary>
  17425. No documentation.
  17426. </summary>
  17427. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA_TEMP']/*" />
  17428. <msdn-id>bb172613</msdn-id>
  17429. <unmanaged>D3DTA_TEMP</unmanaged>
  17430. <unmanaged-short>D3DTA_TEMP</unmanaged-short>
  17431. </member>
  17432. <member name="F:SharpDX.Direct3D9.TextureArgument.Constant">
  17433. <summary>
  17434. No documentation.
  17435. </summary>
  17436. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA_CONSTANT']/*" />
  17437. <msdn-id>bb172613</msdn-id>
  17438. <unmanaged>D3DTA_CONSTANT</unmanaged>
  17439. <unmanaged-short>D3DTA_CONSTANT</unmanaged-short>
  17440. </member>
  17441. <member name="F:SharpDX.Direct3D9.TextureArgument.Complement">
  17442. <summary>
  17443. No documentation.
  17444. </summary>
  17445. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA_COMPLEMENT']/*" />
  17446. <msdn-id>bb172613</msdn-id>
  17447. <unmanaged>D3DTA_COMPLEMENT</unmanaged>
  17448. <unmanaged-short>D3DTA_COMPLEMENT</unmanaged-short>
  17449. </member>
  17450. <member name="F:SharpDX.Direct3D9.TextureArgument.AlphaReplicate">
  17451. <summary>
  17452. No documentation.
  17453. </summary>
  17454. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTA_ALPHAREPLICATE']/*" />
  17455. <msdn-id>bb172613</msdn-id>
  17456. <unmanaged>D3DTA_ALPHAREPLICATE</unmanaged>
  17457. <unmanaged-short>D3DTA_ALPHAREPLICATE</unmanaged-short>
  17458. </member>
  17459. <member name="T:SharpDX.Direct3D9.TextureCaps">
  17460. <summary>
  17461. <p>A programmable pixel shader is made up of a set of instructions that operate on pixel data. Registers transfer data in and out of the ALU. Additional control can be applied to modify the instruction, the results, or what data gets written out.</p><ul> <li> ps_3_0 Instructions contains a list of the available instructions.</li> <li> ps_3_0 Registers lists the different types of registers used by the pixel shader ALU.</li> <li> Modifiers Are used to modify the way an instruction works.</li> <li> Destination Register Write Mask determines what components of the destination register get written.</li> <li> Pixel Shader Source Register Modifiers alter the source register data before the instruction runs.</li> <li> Source Register Swizzling gives additional control over which register components are read, copied, or written.</li> </ul>
  17462. </summary>
  17463. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS']/*" />
  17464. <msdn-id>bb219845</msdn-id>
  17465. <unmanaged>D3DPTEXTURECAPS</unmanaged>
  17466. <unmanaged-short>D3DPTEXTURECAPS</unmanaged-short>
  17467. </member>
  17468. <member name="F:SharpDX.Direct3D9.TextureCaps.Perspective">
  17469. <summary>
  17470. No documentation.
  17471. </summary>
  17472. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_PERSPECTIVE']/*" />
  17473. <msdn-id>bb219845</msdn-id>
  17474. <unmanaged>D3DPTEXTURECAPS_PERSPECTIVE</unmanaged>
  17475. <unmanaged-short>D3DPTEXTURECAPS_PERSPECTIVE</unmanaged-short>
  17476. </member>
  17477. <member name="F:SharpDX.Direct3D9.TextureCaps.Pow2">
  17478. <summary>
  17479. No documentation.
  17480. </summary>
  17481. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_POW2']/*" />
  17482. <msdn-id>bb219845</msdn-id>
  17483. <unmanaged>D3DPTEXTURECAPS_POW2</unmanaged>
  17484. <unmanaged-short>D3DPTEXTURECAPS_POW2</unmanaged-short>
  17485. </member>
  17486. <member name="F:SharpDX.Direct3D9.TextureCaps.Alpha">
  17487. <summary>
  17488. No documentation.
  17489. </summary>
  17490. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_ALPHA']/*" />
  17491. <msdn-id>bb219845</msdn-id>
  17492. <unmanaged>D3DPTEXTURECAPS_ALPHA</unmanaged>
  17493. <unmanaged-short>D3DPTEXTURECAPS_ALPHA</unmanaged-short>
  17494. </member>
  17495. <member name="F:SharpDX.Direct3D9.TextureCaps.SquareOnly">
  17496. <summary>
  17497. No documentation.
  17498. </summary>
  17499. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_SQUAREONLY']/*" />
  17500. <msdn-id>bb219845</msdn-id>
  17501. <unmanaged>D3DPTEXTURECAPS_SQUAREONLY</unmanaged>
  17502. <unmanaged-short>D3DPTEXTURECAPS_SQUAREONLY</unmanaged-short>
  17503. </member>
  17504. <member name="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize">
  17505. <summary>
  17506. No documentation.
  17507. </summary>
  17508. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_TEXREPEATNOTSCALEDBYSIZE']/*" />
  17509. <msdn-id>bb219845</msdn-id>
  17510. <unmanaged>D3DPTEXTURECAPS_TEXREPEATNOTSCALEDBYSIZE</unmanaged>
  17511. <unmanaged-short>D3DPTEXTURECAPS_TEXREPEATNOTSCALEDBYSIZE</unmanaged-short>
  17512. </member>
  17513. <member name="F:SharpDX.Direct3D9.TextureCaps.AlphaPalette">
  17514. <summary>
  17515. No documentation.
  17516. </summary>
  17517. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_ALPHAPALETTE']/*" />
  17518. <msdn-id>bb219845</msdn-id>
  17519. <unmanaged>D3DPTEXTURECAPS_ALPHAPALETTE</unmanaged>
  17520. <unmanaged-short>D3DPTEXTURECAPS_ALPHAPALETTE</unmanaged-short>
  17521. </member>
  17522. <member name="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional">
  17523. <summary>
  17524. No documentation.
  17525. </summary>
  17526. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_NONPOW2CONDITIONAL']/*" />
  17527. <msdn-id>bb219845</msdn-id>
  17528. <unmanaged>D3DPTEXTURECAPS_NONPOW2CONDITIONAL</unmanaged>
  17529. <unmanaged-short>D3DPTEXTURECAPS_NONPOW2CONDITIONAL</unmanaged-short>
  17530. </member>
  17531. <member name="F:SharpDX.Direct3D9.TextureCaps.Projected">
  17532. <summary>
  17533. No documentation.
  17534. </summary>
  17535. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_PROJECTED']/*" />
  17536. <msdn-id>bb219845</msdn-id>
  17537. <unmanaged>D3DPTEXTURECAPS_PROJECTED</unmanaged>
  17538. <unmanaged-short>D3DPTEXTURECAPS_PROJECTED</unmanaged-short>
  17539. </member>
  17540. <member name="F:SharpDX.Direct3D9.TextureCaps.CubeMap">
  17541. <summary>
  17542. No documentation.
  17543. </summary>
  17544. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_CUBEMAP']/*" />
  17545. <msdn-id>bb219845</msdn-id>
  17546. <unmanaged>D3DPTEXTURECAPS_CUBEMAP</unmanaged>
  17547. <unmanaged-short>D3DPTEXTURECAPS_CUBEMAP</unmanaged-short>
  17548. </member>
  17549. <member name="F:SharpDX.Direct3D9.TextureCaps.VolumeMap">
  17550. <summary>
  17551. No documentation.
  17552. </summary>
  17553. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_VOLUMEMAP']/*" />
  17554. <msdn-id>bb219845</msdn-id>
  17555. <unmanaged>D3DPTEXTURECAPS_VOLUMEMAP</unmanaged>
  17556. <unmanaged-short>D3DPTEXTURECAPS_VOLUMEMAP</unmanaged-short>
  17557. </member>
  17558. <member name="F:SharpDX.Direct3D9.TextureCaps.MipMap">
  17559. <summary>
  17560. No documentation.
  17561. </summary>
  17562. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_MIPMAP']/*" />
  17563. <msdn-id>bb219845</msdn-id>
  17564. <unmanaged>D3DPTEXTURECAPS_MIPMAP</unmanaged>
  17565. <unmanaged-short>D3DPTEXTURECAPS_MIPMAP</unmanaged-short>
  17566. </member>
  17567. <member name="F:SharpDX.Direct3D9.TextureCaps.MipVolumeMap">
  17568. <summary>
  17569. No documentation.
  17570. </summary>
  17571. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_MIPVOLUMEMAP']/*" />
  17572. <msdn-id>bb219845</msdn-id>
  17573. <unmanaged>D3DPTEXTURECAPS_MIPVOLUMEMAP</unmanaged>
  17574. <unmanaged-short>D3DPTEXTURECAPS_MIPVOLUMEMAP</unmanaged-short>
  17575. </member>
  17576. <member name="F:SharpDX.Direct3D9.TextureCaps.MipCubeMap">
  17577. <summary>
  17578. No documentation.
  17579. </summary>
  17580. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_MIPCUBEMAP']/*" />
  17581. <msdn-id>bb219845</msdn-id>
  17582. <unmanaged>D3DPTEXTURECAPS_MIPCUBEMAP</unmanaged>
  17583. <unmanaged-short>D3DPTEXTURECAPS_MIPCUBEMAP</unmanaged-short>
  17584. </member>
  17585. <member name="F:SharpDX.Direct3D9.TextureCaps.CubeMapPow2">
  17586. <summary>
  17587. No documentation.
  17588. </summary>
  17589. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_CUBEMAP_POW2']/*" />
  17590. <msdn-id>bb219845</msdn-id>
  17591. <unmanaged>D3DPTEXTURECAPS_CUBEMAP_POW2</unmanaged>
  17592. <unmanaged-short>D3DPTEXTURECAPS_CUBEMAP_POW2</unmanaged-short>
  17593. </member>
  17594. <member name="F:SharpDX.Direct3D9.TextureCaps.VolumeMapPow2">
  17595. <summary>
  17596. No documentation.
  17597. </summary>
  17598. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_VOLUMEMAP_POW2']/*" />
  17599. <msdn-id>bb219845</msdn-id>
  17600. <unmanaged>D3DPTEXTURECAPS_VOLUMEMAP_POW2</unmanaged>
  17601. <unmanaged-short>D3DPTEXTURECAPS_VOLUMEMAP_POW2</unmanaged-short>
  17602. </member>
  17603. <member name="F:SharpDX.Direct3D9.TextureCaps.NoProjectedBumpEnvironment">
  17604. <summary>
  17605. No documentation.
  17606. </summary>
  17607. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPTEXTURECAPS_NOPROJECTEDBUMPENV']/*" />
  17608. <msdn-id>bb219845</msdn-id>
  17609. <unmanaged>D3DPTEXTURECAPS_NOPROJECTEDBUMPENV</unmanaged>
  17610. <unmanaged-short>D3DPTEXTURECAPS_NOPROJECTEDBUMPENV</unmanaged-short>
  17611. </member>
  17612. <member name="T:SharpDX.Direct3D9.TextureCoordIndex">
  17613. <summary>
  17614. <p>Driver texture coordinate capability flags.</p>
  17615. </summary>
  17616. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_TCI']/*" />
  17617. <msdn-id>bb172621</msdn-id>
  17618. <unmanaged>D3DTSS_TCI</unmanaged>
  17619. <unmanaged-short>D3DTSS_TCI</unmanaged-short>
  17620. </member>
  17621. <member name="F:SharpDX.Direct3D9.TextureCoordIndex.PassThru">
  17622. <summary>
  17623. No documentation.
  17624. </summary>
  17625. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_TCI_PASSTHRU']/*" />
  17626. <msdn-id>bb172621</msdn-id>
  17627. <unmanaged>D3DTSS_TCI_PASSTHRU</unmanaged>
  17628. <unmanaged-short>D3DTSS_TCI_PASSTHRU</unmanaged-short>
  17629. </member>
  17630. <member name="F:SharpDX.Direct3D9.TextureCoordIndex.CameraSpaceNormal">
  17631. <summary>
  17632. No documentation.
  17633. </summary>
  17634. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_TCI_CAMERASPACENORMAL']/*" />
  17635. <msdn-id>bb172621</msdn-id>
  17636. <unmanaged>D3DTSS_TCI_CAMERASPACENORMAL</unmanaged>
  17637. <unmanaged-short>D3DTSS_TCI_CAMERASPACENORMAL</unmanaged-short>
  17638. </member>
  17639. <member name="F:SharpDX.Direct3D9.TextureCoordIndex.CameraSpacePosition">
  17640. <summary>
  17641. No documentation.
  17642. </summary>
  17643. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_TCI_CAMERASPACEPOSITION']/*" />
  17644. <msdn-id>bb172621</msdn-id>
  17645. <unmanaged>D3DTSS_TCI_CAMERASPACEPOSITION</unmanaged>
  17646. <unmanaged-short>D3DTSS_TCI_CAMERASPACEPOSITION</unmanaged-short>
  17647. </member>
  17648. <member name="F:SharpDX.Direct3D9.TextureCoordIndex.CameraSpaceReflectionVector">
  17649. <summary>
  17650. No documentation.
  17651. </summary>
  17652. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_TCI_CAMERASPACEREFLECTIONVECTOR']/*" />
  17653. <msdn-id>bb172621</msdn-id>
  17654. <unmanaged>D3DTSS_TCI_CAMERASPACEREFLECTIONVECTOR</unmanaged>
  17655. <unmanaged-short>D3DTSS_TCI_CAMERASPACEREFLECTIONVECTOR</unmanaged-short>
  17656. </member>
  17657. <member name="F:SharpDX.Direct3D9.TextureCoordIndex.SphereMap">
  17658. <summary>
  17659. No documentation.
  17660. </summary>
  17661. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_TCI_SPHEREMAP']/*" />
  17662. <msdn-id>bb172621</msdn-id>
  17663. <unmanaged>D3DTSS_TCI_SPHEREMAP</unmanaged>
  17664. <unmanaged-short>D3DTSS_TCI_SPHEREMAP</unmanaged-short>
  17665. </member>
  17666. <member name="T:SharpDX.Direct3D9.TextureFilter">
  17667. <summary>
  17668. <p>Defines texture filtering modes for a texture stage.</p>
  17669. </summary>
  17670. <remarks>
  17671. <p><see cref="T:SharpDX.Direct3D9.TextureFilter" /> is used by <strong><see cref="M:SharpDX.Direct3D9.Device.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,SharpDX.Direct3D9.TextureFilter)" /></strong> along with <strong><see cref="T:SharpDX.Direct3D9.SamplerState" /></strong> to define texture filtering modes for a texture stage. </p><p>To check if a format supports texture filter types other than <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" /> (which is always supported), call <strong><see cref="M:SharpDX.Direct3D9.Direct3D.CheckDeviceFormat_(System.Int32,SharpDX.Direct3D9.DeviceType,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Direct3D9.ResourceType,SharpDX.Direct3D9.Format)" /></strong> with <see cref="F:SharpDX.Direct3D9.Usage.QueryFilter" />.</p><p>Set a texture stage's magnification filter by calling <strong><see cref="M:SharpDX.Direct3D9.Device.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,SharpDX.Direct3D9.TextureFilter)" /></strong> with the <see cref="F:SharpDX.Direct3D9.SamplerState.MagFilter" /> value as the second parameter and one member of this enumeration as the third parameter.</p><p>Set a texture stage's minification filter by calling <strong><see cref="M:SharpDX.Direct3D9.Device.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,SharpDX.Direct3D9.TextureFilter)" /></strong> with the <see cref="F:SharpDX.Direct3D9.SamplerState.MinFilter" /> value as the second parameter and one member of this enumeration as the third parameter.</p><p>Set the texture filter to use between-mipmap levels by calling <strong><see cref="M:SharpDX.Direct3D9.Device.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,SharpDX.Direct3D9.TextureFilter)" /></strong> with the <see cref="F:SharpDX.Direct3D9.SamplerState.MipFilter" /> value as the second parameter and one member of this enumeration as the third parameter.</p><p>Not all valid filtering modes for a device will apply to volume maps. In general, <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" /> and <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" /> magnification filters will be supported for volume maps. If <see cref="F:SharpDX.Direct3D9.TextureCaps.MipVolumeMap" /> is set, then the <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" /> mipmap filter and <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" /> and <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" /> minification filters will be supported for volume maps. The device may or may not support the <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" /> mipmap filter for volume maps. Devices that support anisotropic filtering for 2D maps do not necessarily support anisotropic filtering for volume maps. However, applications that enable anisotropic filtering will receive the best available filtering (probably linear) if anisotropic filtering is not supported.</p>
  17672. </remarks>
  17673. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXTUREFILTERTYPE']/*" />
  17674. <msdn-id>bb172615</msdn-id>
  17675. <unmanaged>D3DTEXTUREFILTERTYPE</unmanaged>
  17676. <unmanaged-short>D3DTEXTUREFILTERTYPE</unmanaged-short>
  17677. </member>
  17678. <member name="F:SharpDX.Direct3D9.TextureFilter.None">
  17679. <summary>
  17680. <dd> <p>When used with <strong><see cref="F:SharpDX.Direct3D9.SamplerState.MipFilter" /></strong>, disables mipmapping.</p> </dd>
  17681. </summary>
  17682. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXF_NONE']/*" />
  17683. <msdn-id>bb172615</msdn-id>
  17684. <unmanaged>D3DTEXF_NONE</unmanaged>
  17685. <unmanaged-short>D3DTEXF_NONE</unmanaged-short>
  17686. </member>
  17687. <member name="F:SharpDX.Direct3D9.TextureFilter.Point">
  17688. <summary>
  17689. <dd> <p>When used with <strong>D3DSAMP_ MAGFILTER</strong> or <strong><see cref="F:SharpDX.Direct3D9.SamplerState.MinFilter" /></strong>, specifies that point filtering is to be used as the texture magnification or minification filter respectively. When used with <strong><see cref="F:SharpDX.Direct3D9.SamplerState.MipFilter" /></strong>, enables mipmapping and specifies that the rasterizer chooses the color from the texel of the nearest mip level.</p> </dd>
  17690. </summary>
  17691. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXF_POINT']/*" />
  17692. <msdn-id>bb172615</msdn-id>
  17693. <unmanaged>D3DTEXF_POINT</unmanaged>
  17694. <unmanaged-short>D3DTEXF_POINT</unmanaged-short>
  17695. </member>
  17696. <member name="F:SharpDX.Direct3D9.TextureFilter.Linear">
  17697. <summary>
  17698. <dd> <p>When used with <strong>D3DSAMP_ MAGFILTER</strong> or <strong><see cref="F:SharpDX.Direct3D9.SamplerState.MinFilter" /></strong>, specifies that linear filtering is to be used as the texture magnification or minification filter respectively. When used with <strong><see cref="F:SharpDX.Direct3D9.SamplerState.MipFilter" /></strong>, enables mipmapping and trilinear filtering; it specifies that the rasterizer interpolates between the two nearest mip levels.</p> </dd>
  17699. </summary>
  17700. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXF_LINEAR']/*" />
  17701. <msdn-id>bb172615</msdn-id>
  17702. <unmanaged>D3DTEXF_LINEAR</unmanaged>
  17703. <unmanaged-short>D3DTEXF_LINEAR</unmanaged-short>
  17704. </member>
  17705. <member name="F:SharpDX.Direct3D9.TextureFilter.Anisotropic">
  17706. <summary>
  17707. <dd> <p>When used with <strong>D3DSAMP_ MAGFILTER</strong> or <strong><see cref="F:SharpDX.Direct3D9.SamplerState.MinFilter" /></strong>, specifies that anisotropic texture filtering used as a texture magnification or minification filter respectively. Compensates for distortion caused by the difference in angle between the texture polygon and the plane of the screen. Use with <strong><see cref="F:SharpDX.Direct3D9.SamplerState.MipFilter" /></strong> is undefined.</p> </dd>
  17708. </summary>
  17709. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXF_ANISOTROPIC']/*" />
  17710. <msdn-id>bb172615</msdn-id>
  17711. <unmanaged>D3DTEXF_ANISOTROPIC</unmanaged>
  17712. <unmanaged-short>D3DTEXF_ANISOTROPIC</unmanaged-short>
  17713. </member>
  17714. <member name="F:SharpDX.Direct3D9.TextureFilter.PyramidalQuad">
  17715. <summary>
  17716. <dd> <p>A 4-sample tent filter used as a texture magnification or minification filter. Use with <strong><see cref="F:SharpDX.Direct3D9.SamplerState.MipFilter" /></strong> is undefined.</p> </dd>
  17717. </summary>
  17718. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXF_PYRAMIDALQUAD']/*" />
  17719. <msdn-id>bb172615</msdn-id>
  17720. <unmanaged>D3DTEXF_PYRAMIDALQUAD</unmanaged>
  17721. <unmanaged-short>D3DTEXF_PYRAMIDALQUAD</unmanaged-short>
  17722. </member>
  17723. <member name="F:SharpDX.Direct3D9.TextureFilter.GaussianQuad">
  17724. <summary>
  17725. <dd> <p>A 4-sample Gaussian filter used as a texture magnification or minification filter. Use with <strong><see cref="F:SharpDX.Direct3D9.SamplerState.MipFilter" /></strong> is undefined.</p> </dd>
  17726. </summary>
  17727. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXF_GAUSSIANQUAD']/*" />
  17728. <msdn-id>bb172615</msdn-id>
  17729. <unmanaged>D3DTEXF_GAUSSIANQUAD</unmanaged>
  17730. <unmanaged-short>D3DTEXF_GAUSSIANQUAD</unmanaged-short>
  17731. </member>
  17732. <member name="F:SharpDX.Direct3D9.TextureFilter.ConvolutionMono">
  17733. <summary>
  17734. <dd> <p>Convolution filter for monochrome textures. See <see cref="F:SharpDX.Direct3D9.Format.A1" />. </p> <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 9Ex:</p> <p>This flag is available in Direct3D 9Ex only.</p> </td></tr> </table> <p>?</p> <p> Use with <strong><see cref="F:SharpDX.Direct3D9.SamplerState.MipFilter" /></strong> is undefined. </p> </dd>
  17735. </summary>
  17736. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXF_CONVOLUTIONMONO']/*" />
  17737. <msdn-id>bb172615</msdn-id>
  17738. <unmanaged>D3DTEXF_CONVOLUTIONMONO</unmanaged>
  17739. <unmanaged-short>D3DTEXF_CONVOLUTIONMONO</unmanaged-short>
  17740. </member>
  17741. <member name="T:SharpDX.Direct3D9.TextureOperation">
  17742. <summary>
  17743. <p>Defines per-stage texture-blending operations.</p>
  17744. </summary>
  17745. <remarks>
  17746. <p> The members of this type are used when setting color or alpha operations by using the <see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" /> or <see cref="F:SharpDX.Direct3D9.TextureStage.AlphaOperation" /> values with the <strong><see cref="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,SharpDX.Direct3D9.TextureArgument)" /></strong> method. </p><p> In the above formulas, SRGBA is the RGBA color produced by a texture operation, and Arg1, Arg2, and Arg3 represent the complete RGBA color of the texture arguments. Individual components of an argument are shown with subscripts. For example, the alpha component for argument 1 would be shown as Arg1A. </p>
  17747. </remarks>
  17748. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXTUREOP']/*" />
  17749. <msdn-id>bb172616</msdn-id>
  17750. <unmanaged>D3DTEXTUREOP</unmanaged>
  17751. <unmanaged-short>D3DTEXTUREOP</unmanaged-short>
  17752. </member>
  17753. <member name="F:SharpDX.Direct3D9.TextureOperation.Disable">
  17754. <summary>
  17755. <dd> <p>Disables output from this texture stage and all stages with a higher index. To disable texture mapping, set this as the color operation for the first texture stage (stage 0). Alpha operations cannot be disabled when color operations are enabled. Setting the alpha operation to <see cref="F:SharpDX.Direct3D9.TextureOperation.Disable" /> when color blending is enabled causes undefined behavior. </p> </dd>
  17756. </summary>
  17757. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_DISABLE']/*" />
  17758. <msdn-id>bb172616</msdn-id>
  17759. <unmanaged>D3DTOP_DISABLE</unmanaged>
  17760. <unmanaged-short>D3DTOP_DISABLE</unmanaged-short>
  17761. </member>
  17762. <member name="F:SharpDX.Direct3D9.TextureOperation.SelectArg1">
  17763. <summary>
  17764. <dd> <p>Use this texture stage's first color or alpha argument, unmodified, as the output. This operation affects the color argument when used with the <see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" /> texture-stage state, and the alpha argument when used with <see cref="F:SharpDX.Direct3D9.TextureStage.AlphaOperation" />. </p> <p /> </dd>
  17765. </summary>
  17766. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_SELECTARG1']/*" />
  17767. <msdn-id>bb172616</msdn-id>
  17768. <unmanaged>D3DTOP_SELECTARG1</unmanaged>
  17769. <unmanaged-short>D3DTOP_SELECTARG1</unmanaged-short>
  17770. </member>
  17771. <member name="F:SharpDX.Direct3D9.TextureOperation.SelectArg2">
  17772. <summary>
  17773. <dd> <p>Use this texture stage's second color or alpha argument, unmodified, as the output. This operation affects the color argument when used with the <see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" /> texture stage state, and the alpha argument when used with <see cref="F:SharpDX.Direct3D9.TextureStage.AlphaOperation" />. </p> <p /> </dd>
  17774. </summary>
  17775. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_SELECTARG2']/*" />
  17776. <msdn-id>bb172616</msdn-id>
  17777. <unmanaged>D3DTOP_SELECTARG2</unmanaged>
  17778. <unmanaged-short>D3DTOP_SELECTARG2</unmanaged-short>
  17779. </member>
  17780. <member name="F:SharpDX.Direct3D9.TextureOperation.Modulate">
  17781. <summary>
  17782. <dd> <p>Multiply the components of the arguments. </p> <p /> </dd>
  17783. </summary>
  17784. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_MODULATE']/*" />
  17785. <msdn-id>bb172616</msdn-id>
  17786. <unmanaged>D3DTOP_MODULATE</unmanaged>
  17787. <unmanaged-short>D3DTOP_MODULATE</unmanaged-short>
  17788. </member>
  17789. <member name="F:SharpDX.Direct3D9.TextureOperation.Modulate2X">
  17790. <summary>
  17791. <dd> <p>Multiply the components of the arguments, and shift the products to the left 1 bit (effectively multiplying them by 2) for brightening. </p> <p /> </dd>
  17792. </summary>
  17793. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_MODULATE2X']/*" />
  17794. <msdn-id>bb172616</msdn-id>
  17795. <unmanaged>D3DTOP_MODULATE2X</unmanaged>
  17796. <unmanaged-short>D3DTOP_MODULATE2X</unmanaged-short>
  17797. </member>
  17798. <member name="F:SharpDX.Direct3D9.TextureOperation.Modulate4X">
  17799. <summary>
  17800. <dd> <p>Multiply the components of the arguments, and shift the products to the left 2 bits (effectively multiplying them by 4) for brightening. </p> <p /> </dd>
  17801. </summary>
  17802. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_MODULATE4X']/*" />
  17803. <msdn-id>bb172616</msdn-id>
  17804. <unmanaged>D3DTOP_MODULATE4X</unmanaged>
  17805. <unmanaged-short>D3DTOP_MODULATE4X</unmanaged-short>
  17806. </member>
  17807. <member name="F:SharpDX.Direct3D9.TextureOperation.Add">
  17808. <summary>
  17809. <dd> <p>Add the components of the arguments. </p> <p /> </dd>
  17810. </summary>
  17811. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_ADD']/*" />
  17812. <msdn-id>bb172616</msdn-id>
  17813. <unmanaged>D3DTOP_ADD</unmanaged>
  17814. <unmanaged-short>D3DTOP_ADD</unmanaged-short>
  17815. </member>
  17816. <member name="F:SharpDX.Direct3D9.TextureOperation.AddSigned">
  17817. <summary>
  17818. <dd> <p>Add the components of the arguments with a - 0.5 bias, making the effective range of values from - 0.5 through 0.5. </p> <p /> </dd>
  17819. </summary>
  17820. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_ADDSIGNED']/*" />
  17821. <msdn-id>bb172616</msdn-id>
  17822. <unmanaged>D3DTOP_ADDSIGNED</unmanaged>
  17823. <unmanaged-short>D3DTOP_ADDSIGNED</unmanaged-short>
  17824. </member>
  17825. <member name="F:SharpDX.Direct3D9.TextureOperation.AddSigned2X">
  17826. <summary>
  17827. <dd> <p>Add the components of the arguments with a - 0.5 bias, and shift the products to the left 1 bit. </p> <p /> </dd>
  17828. </summary>
  17829. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_ADDSIGNED2X']/*" />
  17830. <msdn-id>bb172616</msdn-id>
  17831. <unmanaged>D3DTOP_ADDSIGNED2X</unmanaged>
  17832. <unmanaged-short>D3DTOP_ADDSIGNED2X</unmanaged-short>
  17833. </member>
  17834. <member name="F:SharpDX.Direct3D9.TextureOperation.Subtract">
  17835. <summary>
  17836. <dd> <p>Subtract the components of the second argument from those of the first argument. </p> <p /> </dd>
  17837. </summary>
  17838. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_SUBTRACT']/*" />
  17839. <msdn-id>bb172616</msdn-id>
  17840. <unmanaged>D3DTOP_SUBTRACT</unmanaged>
  17841. <unmanaged-short>D3DTOP_SUBTRACT</unmanaged-short>
  17842. </member>
  17843. <member name="F:SharpDX.Direct3D9.TextureOperation.AddSmooth">
  17844. <summary>
  17845. <dd> <p>Add the first and second arguments; then subtract their product from the sum. </p> <p /> </dd>
  17846. </summary>
  17847. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_ADDSMOOTH']/*" />
  17848. <msdn-id>bb172616</msdn-id>
  17849. <unmanaged>D3DTOP_ADDSMOOTH</unmanaged>
  17850. <unmanaged-short>D3DTOP_ADDSMOOTH</unmanaged-short>
  17851. </member>
  17852. <member name="F:SharpDX.Direct3D9.TextureOperation.BlendDiffuseAlpha">
  17853. <summary>
  17854. <dd> <p>Linearly blend this texture stage, using the interpolated alpha from each vertex. </p> <p /> </dd>
  17855. </summary>
  17856. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_BLENDDIFFUSEALPHA']/*" />
  17857. <msdn-id>bb172616</msdn-id>
  17858. <unmanaged>D3DTOP_BLENDDIFFUSEALPHA</unmanaged>
  17859. <unmanaged-short>D3DTOP_BLENDDIFFUSEALPHA</unmanaged-short>
  17860. </member>
  17861. <member name="F:SharpDX.Direct3D9.TextureOperation.BlendTextureAlpha">
  17862. <summary>
  17863. <dd> <p>Linearly blend this texture stage, using the alpha from this stage's texture. </p> <p /> </dd>
  17864. </summary>
  17865. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_BLENDTEXTUREALPHA']/*" />
  17866. <msdn-id>bb172616</msdn-id>
  17867. <unmanaged>D3DTOP_BLENDTEXTUREALPHA</unmanaged>
  17868. <unmanaged-short>D3DTOP_BLENDTEXTUREALPHA</unmanaged-short>
  17869. </member>
  17870. <member name="F:SharpDX.Direct3D9.TextureOperation.BlendFactorAlpha">
  17871. <summary>
  17872. <dd> <p>Linearly blend this texture stage, using a scalar alpha set with the <see cref="F:SharpDX.Direct3D9.RenderState.TextureFactor" /> render state. </p> <p /> </dd>
  17873. </summary>
  17874. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_BLENDFACTORALPHA']/*" />
  17875. <msdn-id>bb172616</msdn-id>
  17876. <unmanaged>D3DTOP_BLENDFACTORALPHA</unmanaged>
  17877. <unmanaged-short>D3DTOP_BLENDFACTORALPHA</unmanaged-short>
  17878. </member>
  17879. <member name="F:SharpDX.Direct3D9.TextureOperation.BlendTextureAlphaPM">
  17880. <summary>
  17881. <dd> <p>Linearly blend a texture stage that uses a premultiplied alpha. </p> <p /> </dd>
  17882. </summary>
  17883. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_BLENDTEXTUREALPHAPM']/*" />
  17884. <msdn-id>bb172616</msdn-id>
  17885. <unmanaged>D3DTOP_BLENDTEXTUREALPHAPM</unmanaged>
  17886. <unmanaged-short>D3DTOP_BLENDTEXTUREALPHAPM</unmanaged-short>
  17887. </member>
  17888. <member name="F:SharpDX.Direct3D9.TextureOperation.BlendCurrentAlpha">
  17889. <summary>
  17890. <dd> <p>Linearly blend this texture stage, using the alpha taken from the previous texture stage. </p> <p /> </dd>
  17891. </summary>
  17892. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_BLENDCURRENTALPHA']/*" />
  17893. <msdn-id>bb172616</msdn-id>
  17894. <unmanaged>D3DTOP_BLENDCURRENTALPHA</unmanaged>
  17895. <unmanaged-short>D3DTOP_BLENDCURRENTALPHA</unmanaged-short>
  17896. </member>
  17897. <member name="F:SharpDX.Direct3D9.TextureOperation.Premodulate">
  17898. <summary>
  17899. <dd> <p><see cref="F:SharpDX.Direct3D9.TextureOperation.Premodulate" /> is set in stage n. The output of stage n is arg1. Additionally, if there is a texture in stage n + 1, any <see cref="F:SharpDX.Direct3D9.TextureArgument.Current" /> in stage n + 1 is premultiplied by texture in stage n + 1.</p> </dd>
  17900. </summary>
  17901. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_PREMODULATE']/*" />
  17902. <msdn-id>bb172616</msdn-id>
  17903. <unmanaged>D3DTOP_PREMODULATE</unmanaged>
  17904. <unmanaged-short>D3DTOP_PREMODULATE</unmanaged-short>
  17905. </member>
  17906. <member name="F:SharpDX.Direct3D9.TextureOperation.ModulateAlphaAddColor">
  17907. <summary>
  17908. <dd> <p>Modulate the color of the second argument, using the alpha of the first argument; then add the result to argument one. This operation is supported only for color operations (<see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" />). </p> <p /> </dd>
  17909. </summary>
  17910. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_MODULATEALPHA_ADDCOLOR']/*" />
  17911. <msdn-id>bb172616</msdn-id>
  17912. <unmanaged>D3DTOP_MODULATEALPHA_ADDCOLOR</unmanaged>
  17913. <unmanaged-short>D3DTOP_MODULATEALPHA_ADDCOLOR</unmanaged-short>
  17914. </member>
  17915. <member name="F:SharpDX.Direct3D9.TextureOperation.ModulateColorAddAlpha">
  17916. <summary>
  17917. <dd> <p>Modulate the arguments; then add the alpha of the first argument. This operation is supported only for color operations (<see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" />). </p> <p /> </dd>
  17918. </summary>
  17919. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_MODULATECOLOR_ADDALPHA']/*" />
  17920. <msdn-id>bb172616</msdn-id>
  17921. <unmanaged>D3DTOP_MODULATECOLOR_ADDALPHA</unmanaged>
  17922. <unmanaged-short>D3DTOP_MODULATECOLOR_ADDALPHA</unmanaged-short>
  17923. </member>
  17924. <member name="F:SharpDX.Direct3D9.TextureOperation.ModulateInvAlphaAddColor">
  17925. <summary>
  17926. <dd> <p>Similar to <see cref="F:SharpDX.Direct3D9.TextureOperation.ModulateAlphaAddColor" />, but use the inverse of the alpha of the first argument. This operation is supported only for color operations (<see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" />). </p> <p /> </dd>
  17927. </summary>
  17928. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_MODULATEINVALPHA_ADDCOLOR']/*" />
  17929. <msdn-id>bb172616</msdn-id>
  17930. <unmanaged>D3DTOP_MODULATEINVALPHA_ADDCOLOR</unmanaged>
  17931. <unmanaged-short>D3DTOP_MODULATEINVALPHA_ADDCOLOR</unmanaged-short>
  17932. </member>
  17933. <member name="F:SharpDX.Direct3D9.TextureOperation.ModulateInvColorAddAlpha">
  17934. <summary>
  17935. <dd> <p>Similar to <see cref="F:SharpDX.Direct3D9.TextureOperation.ModulateColorAddAlpha" />, but use the inverse of the color of the first argument. This operation is supported only for color operations (<see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" />). </p> <p /> </dd>
  17936. </summary>
  17937. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_MODULATEINVCOLOR_ADDALPHA']/*" />
  17938. <msdn-id>bb172616</msdn-id>
  17939. <unmanaged>D3DTOP_MODULATEINVCOLOR_ADDALPHA</unmanaged>
  17940. <unmanaged-short>D3DTOP_MODULATEINVCOLOR_ADDALPHA</unmanaged-short>
  17941. </member>
  17942. <member name="F:SharpDX.Direct3D9.TextureOperation.BumpEnvironmentMap">
  17943. <summary>
  17944. <dd> <p>Perform per-pixel bump mapping, using the environment map in the next texture stage, without luminance. This operation is supported only for color operations (<see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" />). </p> </dd>
  17945. </summary>
  17946. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_BUMPENVMAP']/*" />
  17947. <msdn-id>bb172616</msdn-id>
  17948. <unmanaged>D3DTOP_BUMPENVMAP</unmanaged>
  17949. <unmanaged-short>D3DTOP_BUMPENVMAP</unmanaged-short>
  17950. </member>
  17951. <member name="F:SharpDX.Direct3D9.TextureOperation.BumpEnvironmentMapLuminance">
  17952. <summary>
  17953. <dd> <p>Perform per-pixel bump mapping, using the environment map in the next texture stage, with luminance. This operation is supported only for color operations (<see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" />). </p> </dd>
  17954. </summary>
  17955. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_BUMPENVMAPLUMINANCE']/*" />
  17956. <msdn-id>bb172616</msdn-id>
  17957. <unmanaged>D3DTOP_BUMPENVMAPLUMINANCE</unmanaged>
  17958. <unmanaged-short>D3DTOP_BUMPENVMAPLUMINANCE</unmanaged-short>
  17959. </member>
  17960. <member name="F:SharpDX.Direct3D9.TextureOperation.DotProduct3">
  17961. <summary>
  17962. <dd> <p> Modulate the components of each argument as signed components, add their products; then replicate the sum to all color channels, including alpha. This operation is supported for color and alpha operations. </p> <p /> <p> In DirectX 6 and DirectX 7, multitexture operations the above inputs are all shifted down by half (y = x - 0.5) before use to simulate signed data, and the scalar result is automatically clamped to positive values and replicated to all three output channels. Also, note that as a color operation this does not updated the alpha it just updates the RGB components. </p> <p>However, in DirectX 8.1 shaders you can specify that the output be routed to the .rgb or the .a components or both (the default). You can also specify a separate scalar operation on the alpha channel. </p> </dd>
  17963. </summary>
  17964. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_DOTPRODUCT3']/*" />
  17965. <msdn-id>bb172616</msdn-id>
  17966. <unmanaged>D3DTOP_DOTPRODUCT3</unmanaged>
  17967. <unmanaged-short>D3DTOP_DOTPRODUCT3</unmanaged-short>
  17968. </member>
  17969. <member name="F:SharpDX.Direct3D9.TextureOperation.MultiplyAdd">
  17970. <summary>
  17971. <dd> <p>Performs a multiply-accumulate operation. It takes the last two arguments, multiplies them together, and adds them to the remaining input/source argument, and places that into the result. </p> <p>SRGBA = Arg1 + Arg2 * Arg3 </p> </dd>
  17972. </summary>
  17973. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_MULTIPLYADD']/*" />
  17974. <msdn-id>bb172616</msdn-id>
  17975. <unmanaged>D3DTOP_MULTIPLYADD</unmanaged>
  17976. <unmanaged-short>D3DTOP_MULTIPLYADD</unmanaged-short>
  17977. </member>
  17978. <member name="F:SharpDX.Direct3D9.TextureOperation.Lerp">
  17979. <summary>
  17980. <dd> <p>Linearly interpolates between the second and third source arguments by a proportion specified in the first source argument.</p> <p>SRGBA = (Arg1) * Arg2 + (1- Arg1) * Arg3.</p> </dd>
  17981. </summary>
  17982. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTOP_LERP']/*" />
  17983. <msdn-id>bb172616</msdn-id>
  17984. <unmanaged>D3DTOP_LERP</unmanaged>
  17985. <unmanaged-short>D3DTOP_LERP</unmanaged-short>
  17986. </member>
  17987. <member name="T:SharpDX.Direct3D9.TextureOperationCaps">
  17988. <summary>
  17989. <p>Represents the capabilities of the hardware exposed through the Direct3D object.</p>
  17990. </summary>
  17991. <remarks>
  17992. <p>The MaxTextureBlendStages and MaxSimultaneousTextures members might seem similar, but they contain different information. The MaxTextureBlendStages member contains the total number of texture-blending stages supported by the current device, and the MaxSimultaneousTextures member describes how many of those stages can have textures bound to them by using the <strong>SetTexture</strong> method.</p><p>When the driver fills this structure, it can set values for execute-buffer capabilities, even when the interface being used to retrieve the capabilities (such as <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>) does not support execute buffers.</p><p>In general, performance problems may occur if you use a texture and then modify it during a scene. Ensure that no texture used in the current <strong>BeginScene</strong> and <strong>EndScene</strong> block is evicted unless absolutely necessary. In the case of extremely high texture usage within a scene, the results are undefined. This occurs when you modify a texture that you have used in the scene and there is no spare texture memory available. For such systems, the contents of the z-buffer become invalid at EndScene. Applications should not call <strong>UpdateSurface</strong> to or from the back buffer on this type of hardware inside a BeginScene/EndScene pair. In addition, applications should not try to access the z-buffer if the <see cref="F:SharpDX.Direct3D9.RasterCaps.ZBufferLessHsr" /> capability flag is set. Finally, applications should not lock the back buffer or the z-buffer inside a BeginScene/EndScene pair.</p><p>The following flags concerning mipmapped textures are not supported in Direct3D 9. </p><ul> <li>D3DPTFILTERCAPS_LINEAR</li> <li>D3DPTFILTERCAPS_LINEARMIPLINEAR</li> <li>D3DPTFILTERCAPS_LINEARMIPNEAREST</li> <li>D3DPTFILTERCAPS_MIPNEAREST</li> <li>D3DPTFILTERCAPS_NEAREST</li> </ul>
  17993. </remarks>
  17994. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS']/*" />
  17995. <msdn-id>bb172513</msdn-id>
  17996. <unmanaged>D3DTEXOPCAPS</unmanaged>
  17997. <unmanaged-short>D3DTEXOPCAPS</unmanaged-short>
  17998. </member>
  17999. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.Disable">
  18000. <summary>
  18001. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type, which identifies what type of resources are used for processing vertices.</p> </dd>
  18002. </summary>
  18003. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_DISABLE']/*" />
  18004. <msdn-id>bb172513</msdn-id>
  18005. <unmanaged>D3DTEXOPCAPS_DISABLE</unmanaged>
  18006. <unmanaged-short>D3DTEXOPCAPS_DISABLE</unmanaged-short>
  18007. </member>
  18008. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.SelectArg1">
  18009. <summary>
  18010. <dd> <p>Adapter on which this Direct3D device was created. This ordinal is valid only to pass to methods of the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface that created this Direct3D device. The <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface can always be retrieved by calling <strong>GetDirect3D</strong>. </p> </dd>
  18011. </summary>
  18012. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_SELECTARG1']/*" />
  18013. <msdn-id>bb172513</msdn-id>
  18014. <unmanaged>D3DTEXOPCAPS_SELECTARG1</unmanaged>
  18015. <unmanaged-short>D3DTEXOPCAPS_SELECTARG1</unmanaged-short>
  18016. </member>
  18017. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.SelectArg2">
  18018. <summary>
  18019. <dd> <p> </p><p>The following driver-specific capability.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Caps.ReadScanline" /></strong></dt> </dl> </td><td> <p>Display hardware is capable of returning the current scan line.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Caps.Overlay" /></strong></dt> </dl> </td><td> <p>The display driver supports an overlay DDI that allows for verification of overlay capabilities. For more information about the overlay DDI, see Overlay DDI.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> </table> <p>?</p> </dd>
  18020. </summary>
  18021. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_SELECTARG2']/*" />
  18022. <msdn-id>bb172513</msdn-id>
  18023. <unmanaged>D3DTEXOPCAPS_SELECTARG2</unmanaged>
  18024. <unmanaged-short>D3DTEXOPCAPS_SELECTARG2</unmanaged-short>
  18025. </member>
  18026. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.Modulate">
  18027. <summary>
  18028. <dd> <p>Driver-specific capabilities identified in <see cref="T:SharpDX.Direct3D9.Caps2" />.</p> </dd>
  18029. </summary>
  18030. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_MODULATE']/*" />
  18031. <msdn-id>bb172513</msdn-id>
  18032. <unmanaged>D3DTEXOPCAPS_MODULATE</unmanaged>
  18033. <unmanaged-short>D3DTEXOPCAPS_MODULATE</unmanaged-short>
  18034. </member>
  18035. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.Modulate2X">
  18036. <summary>
  18037. <dd> <p>Driver-specific capabilities identified in <see cref="T:SharpDX.Direct3D9.Caps3" />.</p> </dd>
  18038. </summary>
  18039. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_MODULATE2X']/*" />
  18040. <msdn-id>bb172513</msdn-id>
  18041. <unmanaged>D3DTEXOPCAPS_MODULATE2X</unmanaged>
  18042. <unmanaged-short>D3DTEXOPCAPS_MODULATE2X</unmanaged-short>
  18043. </member>
  18044. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.Modulate4X">
  18045. <summary>
  18046. <dd> <p> </p><p>Bit mask of values representing what presentation swap intervals are available.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Immediate" /></strong></dt> </dl> </td><td> <p>The driver supports an immediate presentation swap interval.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.One" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Two" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every second screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Three" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every third screen refresh.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.PresentInterval.Four" /></strong></dt> </dl> </td><td> <p>The driver supports a presentation swap interval of every fourth screen refresh.</p> </td></tr> </table> <p>?</p> </dd>
  18047. </summary>
  18048. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_MODULATE4X']/*" />
  18049. <msdn-id>bb172513</msdn-id>
  18050. <unmanaged>D3DTEXOPCAPS_MODULATE4X</unmanaged>
  18051. <unmanaged-short>D3DTEXOPCAPS_MODULATE4X</unmanaged-short>
  18052. </member>
  18053. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.Add">
  18054. <summary>
  18055. <dd> <p> </p><p>Bit mask indicating what hardware support is available for cursors. Direct3D 9 does not define alpha-blending cursor capabilities.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CursorCaps.Color" /></strong></dt> </dl> </td><td> <p>A full-color cursor is supported in hardware. Specifically, this flag indicates that the driver supports at least a hardware color cursor in high-resolution modes (with scan lines greater than or equal to 400).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CursorCaps.LowResolution" /></strong></dt> </dl> </td><td> <p>A full-color cursor is supported in hardware. Specifically, this flag indicates that the driver supports a hardware color cursor in both high-resolution and low-resolution modes (with scan lines less than 400).</p> </td></tr> </table> <p>?</p> </dd>
  18056. </summary>
  18057. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_ADD']/*" />
  18058. <msdn-id>bb172513</msdn-id>
  18059. <unmanaged>D3DTEXOPCAPS_ADD</unmanaged>
  18060. <unmanaged-short>D3DTEXOPCAPS_ADD</unmanaged-short>
  18061. </member>
  18062. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.AddSigned">
  18063. <summary>
  18064. <dd> <p> </p><p>Flags identifying the capabilities of the device.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.CanBlitSysToNonLocal" /></strong></dt> </dl> </td><td> <p>Device supports blits from system-memory textures to nonlocal video-memory textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.CanRenderAfterFlip" /></strong></dt> </dl> </td><td> <p>Device can queue rendering commands after a page flip. Applications do not change their behavior if this flag is set; this capability means that the device is relatively fast.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimitives2" /></strong></dt> </dl> </td><td> <p>Device can support at least a DirectX 5-compliant driver.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimitives2Extended" /></strong></dt> </dl> </td><td> <p>Device can support at least a DirectX 7-compliant driver.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.DrawPrimTLVertex" /></strong></dt> </dl> </td><td> <p>Device exports an <strong><see cref="M:SharpDX.Direct3D9.Device.DrawPrimitives(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32)" /></strong>-aware hal.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.ExecuteSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can use execute buffers from system memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.ExecuteVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can use execute buffers from video memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.HWRasterization" /></strong></dt> </dl> </td><td> <p>Device has hardware acceleration for scene rasterization.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.HWTransformAndLight" /></strong></dt> </dl> </td><td> <p>Device can support transformation and lighting in hardware.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.NPatches" /></strong></dt> </dl> </td><td> <p>Device supports N patches.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.PureDevice" /></strong></dt> </dl> </td><td> <p>Device can support rasterization, transform, lighting, and shading in hardware.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.QuinticRTPatches" /></strong></dt> </dl> </td><td> <p>Device supports quintic B?zier curves and B-splines.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatches" /></strong></dt> </dl> </td><td> <p>Device supports rectangular and triangular patches.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatchHandleZero" /></strong></dt> </dl> </td><td> <p>When this device capability is set, the hardware architecture does not require caching of any information, and uncached patches (handle zero) will be drawn as efficiently as cached ones. Note that setting <see cref="F:SharpDX.Direct3D9.DeviceCaps.RTPatchHandleZero" /> does not mean that a patch with handle zero can be drawn. A handle-zero patch can always be drawn whether this cap is set or not.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.SeparateTextureMemory" /></strong></dt> </dl> </td><td> <p>Device is texturing from separate memory pools.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureNonLocalVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from non-local video memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from system memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TextureVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can retrieve textures from device memory.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TLVertexSystemMemory" /></strong></dt> </dl> </td><td> <p>Device can use buffers from system memory for transformed and lit vertices.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.DeviceCaps.TLVertexVideoMemory" /></strong></dt> </dl> </td><td> <p>Device can use buffers from video memory for transformed and lit vertices.</p> </td></tr> </table> <p>?</p> </dd>
  18065. </summary>
  18066. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_ADDSIGNED']/*" />
  18067. <msdn-id>bb172513</msdn-id>
  18068. <unmanaged>D3DTEXOPCAPS_ADDSIGNED</unmanaged>
  18069. <unmanaged-short>D3DTEXOPCAPS_ADDSIGNED</unmanaged-short>
  18070. </member>
  18071. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.AddSigned2X">
  18072. <summary>
  18073. <dd> <p>Miscellaneous driver primitive capabilities. See <see cref="T:SharpDX.Direct3D9.PrimitiveMiscCaps" />.</p> </dd>
  18074. </summary>
  18075. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_ADDSIGNED2X']/*" />
  18076. <msdn-id>bb172513</msdn-id>
  18077. <unmanaged>D3DTEXOPCAPS_ADDSIGNED2X</unmanaged>
  18078. <unmanaged-short>D3DTEXOPCAPS_ADDSIGNED2X</unmanaged-short>
  18079. </member>
  18080. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.Subtract">
  18081. <summary>
  18082. <dd> <p> </p><p>Information on raster-drawing capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.Anisotropy" /></strong></dt> </dl> </td><td> <p>Device supports anisotropic filtering.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ColorPerspective" /></strong></dt> </dl> </td><td> <p>Device iterates colors perspective correctly.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.Dither" /></strong></dt> </dl> </td><td> <p>Device can dither to improve color resolution.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.DepthBias" /></strong></dt> </dl> </td><td> <p>Device supports legacy depth bias. For true depth bias, see <see cref="F:SharpDX.Direct3D9.RasterCaps.SlopeScaleDepthBias" />.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogRange" /></strong></dt> </dl> </td><td> <p>Device supports range-based fog. In range-based fog, the distance of an object from the viewer is used to compute fog effects, not the depth of the object (that is, the z-coordinate) in the scene.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogTable" /></strong></dt> </dl> </td><td> <p>Device calculates the fog value by referring to a lookup table containing fog values that are indexed to the depth of a given pixel.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.FogVertex" /></strong></dt> </dl> </td><td> <p>Device calculates the fog value during the lighting operation and interpolates the fog value during rasterization.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.MipMapLodBias" /></strong></dt> </dl> </td><td> <p>Device supports level-of-detail bias adjustments. These bias adjustments enable an application to make a mipmap appear crisper or less sharp than it normally would. For more information about level-of-detail bias in mipmaps, see <see cref="F:SharpDX.Direct3D9.SamplerState.MipMapLodBias" />.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.MultisampleToggle" /></strong></dt> </dl> </td><td> <p>Device supports toggling multisampling on and off between <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> (using <see cref="F:SharpDX.Direct3D9.RenderState.MultisampleAntialias" />).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ScissorTest" /></strong></dt> </dl> </td><td> <p>Device supports scissor test. See Scissor Test (Direct3D 9).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.SlopeScaleDepthBias" /></strong></dt> </dl> </td><td> <p>Device performs true slope-scale based depth bias. This is in contrast to the legacy style depth bias.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.WBuffer" /></strong></dt> </dl> </td><td> <p>Device supports depth buffering using w.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.WFog" /></strong></dt> </dl> </td><td> <p>Device supports w-based fog. W-based fog is used when a perspective projection matrix is specified, but affine projections still use z-based fog. The system considers a projection matrix that contains a nonzero value in the [3][4] element to be a perspective projection matrix.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ZBufferLessHsr" /></strong></dt> </dl> </td><td> <p>Device can perform hidden-surface removal (HSR) without requiring the application to sort polygons and without requiring the allocation of a depth-buffer. This leaves more video memory for textures. The method used to perform HSR is hardware-dependent and is transparent to the application.</p> <p>Z-bufferless HSR is performed if no depth-buffer surface is associated with the rendering-target surface and the depth-buffer comparison test is enabled (that is, when the state value associated with the <strong><see cref="F:SharpDX.Direct3D9.RenderState.ZEnable" /></strong> enumeration constant is set to <strong>TRUE</strong>).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.ZFog" /></strong></dt> </dl> </td><td> <p>Device supports z-based fog.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.RasterCaps.DepthTest" /></strong></dt> </dl> </td><td> <p>Device can perform z-test operations. This effectively renders a primitive and indicates whether any z pixels have been rendered.</p> </td></tr> </table> <p>?</p> </dd>
  18083. </summary>
  18084. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_SUBTRACT']/*" />
  18085. <msdn-id>bb172513</msdn-id>
  18086. <unmanaged>D3DTEXOPCAPS_SUBTRACT</unmanaged>
  18087. <unmanaged-short>D3DTEXOPCAPS_SUBTRACT</unmanaged-short>
  18088. </member>
  18089. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.AddSmooth">
  18090. <summary>
  18091. <dd> <p> </p><p>Z-buffer comparison capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Always" /></strong></dt> </dl> </td><td> <p>Always pass the z-test.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Equal" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z equals the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Greater" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is greater than the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.GreaterEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is greater than or equal to the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Less" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is less than the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.LessEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z is less than or equal to the current z.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.Never" /></strong></dt> </dl> </td><td> <p>Always fail the z-test.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.CompareCaps.NotEqual" /></strong></dt> </dl> </td><td> <p>Pass the z-test if the new z does not equal the current z.</p> </td></tr> </table> <p>?</p> </dd>
  18092. </summary>
  18093. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_ADDSMOOTH']/*" />
  18094. <msdn-id>bb172513</msdn-id>
  18095. <unmanaged>D3DTEXOPCAPS_ADDSMOOTH</unmanaged>
  18096. <unmanaged-short>D3DTEXOPCAPS_ADDSMOOTH</unmanaged-short>
  18097. </member>
  18098. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.BlendDiffuseAlpha">
  18099. <summary>
  18100. <dd> <p> </p><p>Source-blending capabilities. This member can be one or more of the following flags. (The RGBA values of the source and destination are indicated by the subscripts s and d.)</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.BlendFactor" /></strong></dt> </dl> </td><td> <p>The driver supports both <see cref="F:SharpDX.Direct3D9.Blend.BlendFactor" /> and <see cref="F:SharpDX.Direct3D9.Blend.InverseBlendFactor" />. See <strong><see cref="T:SharpDX.Direct3D9.Blend" /></strong>.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.BothInverseSourceAlpha" /></strong></dt> </dl> </td><td> <p>Source blend factor is (1 - As, 1 - As, 1 - As, 1 - As) and destination blend factor is (As, As, As, As); the destination blend selection is overridden.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.Bothsrcalpha" /></strong></dt> </dl> </td><td> <p>The driver supports the <see cref="F:SharpDX.Direct3D9.Blend.Bothsrcalpha" /> blend mode. (This blend mode is obsolete. For more information, see <see cref="T:SharpDX.Direct3D9.Blend" />.)</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.DestinationAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (Ad, Ad, Ad, Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.DestinationColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (Rd, Gd, Bd, Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseDestinationAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Ad, 1 - Ad, 1 - Ad, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseDestinationColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - As, 1 - As, 1 - As, 1 - As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - Rs, 1 - Gs, 1 - Bs, 1 - As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.InverseSourceColor2" /></strong></dt> </dl> </td><td> <p>Blend factor is (1 - PSOutColor[1]r, 1 - PSOutColor[1]g, 1 - PSOutColor[1]b, not used)). See <strong>Render Target Blending</strong>.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.One" /></strong></dt> </dl> </td><td> <p>Blend factor is (1, 1, 1, 1).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceAlpha" /></strong></dt> </dl> </td><td> <p>Blend factor is (As, As, As, As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceAlphaSaturated" /></strong></dt> </dl> </td><td> <p>Blend factor is (f, f, f, 1); f = min(As, 1 - Ad).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceColor" /></strong></dt> </dl> </td><td> <p>Blend factor is (Rs, Gs, Bs, As).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.SourceColor2" /></strong></dt> </dl> </td><td> <p>Blend factor is (PSOutColor[1]r, PSOutColor[1]g, PSOutColor[1]b, not used). See <strong>Render Target Blending</strong>.</p> <p> </p> Differences between Direct3D 9 and Direct3D 9Ex: This flag is available in Direct3D 9Ex only. <p>?</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.BlendCaps.Zero" /></strong></dt> </dl> </td><td> <p>Blend factor is (0, 0, 0, 0).</p> </td></tr> </table> <p>?</p> </dd>
  18101. </summary>
  18102. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_BLENDDIFFUSEALPHA']/*" />
  18103. <msdn-id>bb172513</msdn-id>
  18104. <unmanaged>D3DTEXOPCAPS_BLENDDIFFUSEALPHA</unmanaged>
  18105. <unmanaged-short>D3DTEXOPCAPS_BLENDDIFFUSEALPHA</unmanaged-short>
  18106. </member>
  18107. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.BlendTextureAlpha">
  18108. <summary>
  18109. <dd> <p>Destination-blending capabilities. This member can be the same capabilities that are defined for the SrcBlendCaps member. </p> </dd>
  18110. </summary>
  18111. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_BLENDTEXTUREALPHA']/*" />
  18112. <msdn-id>bb172513</msdn-id>
  18113. <unmanaged>D3DTEXOPCAPS_BLENDTEXTUREALPHA</unmanaged>
  18114. <unmanaged-short>D3DTEXOPCAPS_BLENDTEXTUREALPHA</unmanaged-short>
  18115. </member>
  18116. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.BlendFactorAlpha">
  18117. <summary>
  18118. <dd> <p>Alpha-test comparison capabilities. This member can include the same capability flags defined for the ZCmpCaps member. If this member contains only the <see cref="F:SharpDX.Direct3D9.CompareCaps.Always" /> capability or only the <see cref="F:SharpDX.Direct3D9.CompareCaps.Never" /> capability, the driver does not support alpha tests. Otherwise, the flags identify the individual comparisons that are supported for alpha testing. </p> </dd>
  18119. </summary>
  18120. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_BLENDFACTORALPHA']/*" />
  18121. <msdn-id>bb172513</msdn-id>
  18122. <unmanaged>D3DTEXOPCAPS_BLENDFACTORALPHA</unmanaged>
  18123. <unmanaged-short>D3DTEXOPCAPS_BLENDFACTORALPHA</unmanaged-short>
  18124. </member>
  18125. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.BlendTextureAlphaPM">
  18126. <summary>
  18127. <dd> <p>Shading operations capabilities. It is assumed, in general, that if a device supports a given command at all, it supports the <see cref="F:SharpDX.Direct3D9.ShadeMode.Flat" /> mode (as specified in the <strong><see cref="T:SharpDX.Direct3D9.ShadeMode" /></strong> enumerated type). This flag specifies whether the driver can also support Gouraud shading and whether alpha color components are supported. When alpha components are not supported, the alpha value of colors generated is implicitly 255. This is the maximum possible alpha (that is, the alpha component is at full intensity). </p> <p>The color, specular highlights, fog, and alpha interpolants of a triangle each have capability flags that an application can use to find out how they are implemented by the device driver.</p> <p> </p><p>This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.AlphaGouraudBlend" /></strong></dt> </dl> </td><td> <p>Device can support an alpha component for Gouraud-blended transparency (the <see cref="F:SharpDX.Direct3D9.ShadeMode.Gouraud" /> state for the <see cref="T:SharpDX.Direct3D9.ShadeMode" /> enumerated type). In this mode, the alpha color component of a primitive is provided at vertices and interpolated across a face along with the other color components.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.ColorGouraudRgb" /></strong></dt> </dl> </td><td> <p>Device can support colored Gouraud shading. In this mode, the per-vertex color components (red, green, and blue) are interpolated across a triangle face.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.FogGouraud" /></strong></dt> </dl> </td><td> <p>Device can support fog in the Gouraud shading mode.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ShadeCaps.SpecularGouraudRgb" /></strong></dt> </dl> </td><td> <p>Device supports Gouraud shading of specular highlights.</p> </td></tr> </table> <p>?</p> </dd>
  18128. </summary>
  18129. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_BLENDTEXTUREALPHAPM']/*" />
  18130. <msdn-id>bb172513</msdn-id>
  18131. <unmanaged>D3DTEXOPCAPS_BLENDTEXTUREALPHAPM</unmanaged>
  18132. <unmanaged-short>D3DTEXOPCAPS_BLENDTEXTUREALPHAPM</unmanaged-short>
  18133. </member>
  18134. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.BlendCurrentAlpha">
  18135. <summary>
  18136. <dd> <p> </p><p>Miscellaneous texture-mapping capabilities. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Alpha" /></strong></dt> </dl> </td><td> <p>Alpha in texture pixels is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.AlphaPalette" /></strong></dt> </dl> </td><td> <p>Device can draw alpha from texture palettes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.CubeMap" /></strong></dt> </dl> </td><td> <p>Supports cube textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.CubeMapPow2" /></strong></dt> </dl> </td><td> <p>Device requires that cube texture maps have dimensions specified as powers of two.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipCubeMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped cube textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.MipVolumeMap" /></strong></dt> </dl> </td><td> <p>Device supports mipmapped volume textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /></strong></dt> </dl> </td><td> <p><see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /> is also set, conditionally supports the use of 2D textures with dimensions that are not powers of two. A device that exposes this capability can use such a texture if all of the following requirements are met.</p> <p> </p><ul> <li>The texture addressing mode for the texture stage is set to <see cref="F:SharpDX.Direct3D9.TextureAddress.Clamp" />.</li> <li>Texture wrapping for the texture stage is disabled (<strong>D3DRS_WRAP</strong> n set to 0).</li> <li>Mipmapping is not in use (use magnification filter only).</li> <li>Texture formats must not be <see cref="F:SharpDX.Direct3D9.Format.Dxt1" /> through <see cref="F:SharpDX.Direct3D9.Format.Dxt5" />.</li> </ul> <p>If this flag is not set, and <see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /> is also not set, then unconditional support is provided for 2D textures with dimensions that are not powers of two.</p> <p>A texture that is not a power of two cannot be set at a stage that will be read based on a shader computation (such as the bem - ps and texm3x3 - ps instructions in pixel shaders versions 1_0 to 1_3). For example, these textures can be used to store bumps that will be fed into texture reads, but not the environment maps that are used in texbem - ps, texbeml - ps, and texm3x3spec - ps. This means that a texture with dimensions that are not powers of two cannot be addressed or sampled using texture coordinates computed within the shader. This type of operation is known as a dependent read and cannot be performed on these types of textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.NoProjectedBumpEnvironment" /></strong></dt> </dl> </td><td> <p>Device does not support a projected bump-environment loopkup operation in programmable and fixed function shaders.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Perspective" /></strong></dt> </dl> </td><td> <p>Perspective correction texturing is supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Pow2" /></strong></dt> </dl> </td><td> <p>If <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is not set, all textures must have widths and heights specified as powers of two. This requirement does not apply to either cube textures or volume textures.</p> <p>If <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is also set, conditionally supports the use of 2D textures with dimensions that are not powers of two. See <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> description.</p> <p>If this flag is not set, and <see cref="F:SharpDX.Direct3D9.TextureCaps.NonPow2Conditional" /> is also not set, then unconditional support is provided for 2D textures with dimensions that are not powers of two.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.Projected" /></strong></dt> </dl> </td><td> <p>Supports the <see cref="F:SharpDX.Direct3D9.TextureTransform.Projected" /> texture transformation flag. When applied, the device divides transformed texture coordinates by the last texture coordinate. If this capability is present, then the projective divide occurs per pixel. If this capability is not present, but the projective divide needs to occur anyway, then it is performed on a per-vertex basis by the Direct3D runtime.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.SquareOnly" /></strong></dt> </dl> </td><td> <p>All textures must be square.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize" /></strong></dt> </dl> </td><td> <p>Texture indices are not scaled by the texture size prior to interpolation.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMap" /></strong></dt> </dl> </td><td> <p>Device supports volume textures.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureCaps.VolumeMapPow2" /></strong></dt> </dl> </td><td> <p>Device requires that volume texture maps have dimensions specified as powers of two.</p> </td></tr> </table> <p>?</p> </dd>
  18137. </summary>
  18138. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_BLENDCURRENTALPHA']/*" />
  18139. <msdn-id>bb172513</msdn-id>
  18140. <unmanaged>D3DTEXOPCAPS_BLENDCURRENTALPHA</unmanaged>
  18141. <unmanaged-short>D3DTEXOPCAPS_BLENDCURRENTALPHA</unmanaged-short>
  18142. </member>
  18143. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.Premodulate">
  18144. <summary>
  18145. <dd> <p>Texture-filtering capabilities for a texture. Per-stage filtering capabilities reflect which filtering modes are supported for texture stages when performing multiple-texture blending. This member can be any combination of the per-stage texture-filtering flags defined in <see cref="T:SharpDX.Direct3D9.FilterCaps" />.</p> </dd>
  18146. </summary>
  18147. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_PREMODULATE']/*" />
  18148. <msdn-id>bb172513</msdn-id>
  18149. <unmanaged>D3DTEXOPCAPS_PREMODULATE</unmanaged>
  18150. <unmanaged-short>D3DTEXOPCAPS_PREMODULATE</unmanaged-short>
  18151. </member>
  18152. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.ModulateAlphaAddColor">
  18153. <summary>
  18154. <dd> <p>Texture-filtering capabilities for a cube texture. Per-stage filtering capabilities reflect which filtering modes are supported for texture stages when performing multiple-texture blending. This member can be any combination of the per-stage texture-filtering flags defined in <see cref="T:SharpDX.Direct3D9.FilterCaps" />. </p> </dd>
  18155. </summary>
  18156. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_MODULATEALPHA_ADDCOLOR']/*" />
  18157. <msdn-id>bb172513</msdn-id>
  18158. <unmanaged>D3DTEXOPCAPS_MODULATEALPHA_ADDCOLOR</unmanaged>
  18159. <unmanaged-short>D3DTEXOPCAPS_MODULATEALPHA_ADDCOLOR</unmanaged-short>
  18160. </member>
  18161. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.ModulateColorAddAlpha">
  18162. <summary>
  18163. <dd> <p>Texture-filtering capabilities for a volume texture. Per-stage filtering capabilities reflect which filtering modes are supported for texture stages when performing multiple-texture blending. This member can be any combination of the per-stage texture-filtering flags defined in <see cref="T:SharpDX.Direct3D9.FilterCaps" />.</p> </dd>
  18164. </summary>
  18165. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_MODULATECOLOR_ADDALPHA']/*" />
  18166. <msdn-id>bb172513</msdn-id>
  18167. <unmanaged>D3DTEXOPCAPS_MODULATECOLOR_ADDALPHA</unmanaged>
  18168. <unmanaged-short>D3DTEXOPCAPS_MODULATECOLOR_ADDALPHA</unmanaged-short>
  18169. </member>
  18170. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.ModulateInvAlphaAddColor">
  18171. <summary>
  18172. <dd> <p> </p><p>Texture-addressing capabilities for texture objects. This member can be one or more of the following flags.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Border" /></strong></dt> </dl> </td><td> <p>Device supports setting coordinates outside the range [0.0, 1.0] to the border color, as specified by the <see cref="F:SharpDX.Direct3D9.SamplerState.BorderColor" /> texture-stage state.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Clamp" /></strong></dt> </dl> </td><td> <p>Device can clamp textures to addresses.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.IndependentUV" /></strong></dt> </dl> </td><td> <p>Device can separate the texture-addressing modes of the u and v coordinates of the texture. This ability corresponds to the <see cref="F:SharpDX.Direct3D9.SamplerState.AddressU" /> and <see cref="F:SharpDX.Direct3D9.SamplerState.AddressV" /> render-state values.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Mirror" /></strong></dt> </dl> </td><td> <p>Device can mirror textures to addresses.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.MirrorOnce" /></strong></dt> </dl> </td><td> <p>Device can take the absolute value of the texture coordinate (thus, mirroring around 0) and then clamp to the maximum value.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.TextureAddressCaps.Wrap" /></strong></dt> </dl> </td><td> <p>Device can wrap textures to addresses.</p> </td></tr> </table> <p>?</p> </dd>
  18173. </summary>
  18174. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_MODULATEINVALPHA_ADDCOLOR']/*" />
  18175. <msdn-id>bb172513</msdn-id>
  18176. <unmanaged>D3DTEXOPCAPS_MODULATEINVALPHA_ADDCOLOR</unmanaged>
  18177. <unmanaged-short>D3DTEXOPCAPS_MODULATEINVALPHA_ADDCOLOR</unmanaged-short>
  18178. </member>
  18179. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.ModulateInvColorAddAlpha">
  18180. <summary>
  18181. <dd> <p>Texture-addressing capabilities for a volume texture. This member can be one or more of the flags defined for the TextureAddressCaps member. </p> </dd>
  18182. </summary>
  18183. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_MODULATEINVCOLOR_ADDALPHA']/*" />
  18184. <msdn-id>bb172513</msdn-id>
  18185. <unmanaged>D3DTEXOPCAPS_MODULATEINVCOLOR_ADDALPHA</unmanaged>
  18186. <unmanaged-short>D3DTEXOPCAPS_MODULATEINVCOLOR_ADDALPHA</unmanaged-short>
  18187. </member>
  18188. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.BumpEnvironmentMap">
  18189. <summary>
  18190. <dd> <p> </p><p>Defines the capabilities for line-drawing primitives.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.AlphaCompare" /></strong></dt> </dl> </td><td> <p>Supports alpha-test comparisons.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.Antialias" /></strong></dt> </dl> </td><td> <p>Antialiased lines are supported.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.Blend" /></strong></dt> </dl> </td><td> <p>Supports source-blending.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.Fog" /></strong></dt> </dl> </td><td> <p>Supports fog.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.Texture" /></strong></dt> </dl> </td><td> <p>Supports texture-mapping.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.LineCaps.DepthTest" /></strong></dt> </dl> </td><td> <p>Supports z-buffer comparisons.</p> </td></tr> </table> <p>?</p> </dd>
  18191. </summary>
  18192. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_BUMPENVMAP']/*" />
  18193. <msdn-id>bb172513</msdn-id>
  18194. <unmanaged>D3DTEXOPCAPS_BUMPENVMAP</unmanaged>
  18195. <unmanaged-short>D3DTEXOPCAPS_BUMPENVMAP</unmanaged-short>
  18196. </member>
  18197. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.BumpEnvironmentMapLuminance">
  18198. <summary>
  18199. <dd> <p>Maximum texture width for this device. </p> </dd>
  18200. </summary>
  18201. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_BUMPENVMAPLUMINANCE']/*" />
  18202. <msdn-id>bb172513</msdn-id>
  18203. <unmanaged>D3DTEXOPCAPS_BUMPENVMAPLUMINANCE</unmanaged>
  18204. <unmanaged-short>D3DTEXOPCAPS_BUMPENVMAPLUMINANCE</unmanaged-short>
  18205. </member>
  18206. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.DotProduct3">
  18207. <summary>
  18208. <dd> <p>Maximum texture height for this device. </p> </dd>
  18209. </summary>
  18210. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_DOTPRODUCT3']/*" />
  18211. <msdn-id>bb172513</msdn-id>
  18212. <unmanaged>D3DTEXOPCAPS_DOTPRODUCT3</unmanaged>
  18213. <unmanaged-short>D3DTEXOPCAPS_DOTPRODUCT3</unmanaged-short>
  18214. </member>
  18215. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.MultiplyAdd">
  18216. <summary>
  18217. <dd> <p>Maximum value for any of the three dimensions (width, height, and depth) of a volume texture. </p> </dd>
  18218. </summary>
  18219. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_MULTIPLYADD']/*" />
  18220. <msdn-id>bb172513</msdn-id>
  18221. <unmanaged>D3DTEXOPCAPS_MULTIPLYADD</unmanaged>
  18222. <unmanaged-short>D3DTEXOPCAPS_MULTIPLYADD</unmanaged-short>
  18223. </member>
  18224. <member name="F:SharpDX.Direct3D9.TextureOperationCaps.Lerp">
  18225. <summary>
  18226. <dd> <p>This number represents the maximum range of the integer bits of the post-normalized texture coordinates. A texture coordinate is stored as a 32-bit signed integer using 27 bits to store the integer part and 5 bits for the floating point fraction. The maximum integer index, 227, is used to determine the maximum texture coordinate, depending on how the hardware does texture-coordinate scaling.</p> <p>Some hardware reports the cap <see cref="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize" />. For this case, the device defers scaling texture coordinates by the texture size until after interpolation and application of the texture address mode, so the number of times a texture can be wrapped is given by the integer value in MaxTextureRepeat.</p> <p>Less desirably, on some hardware <see cref="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize" /> is not set and the device scales the texture coordinates by the texture size (using the highest level of detail) prior to interpolation. This limits the number of times a texture can be wrapped to MaxTextureRepeat / texture size.</p> <p>For example, assume that MaxTextureRepeat is equal to 32k and the size of the texture is 4k. If the hardware sets <see cref="F:SharpDX.Direct3D9.TextureCaps.TextureRepeatNotScaledBySize" />, then the number of times a texture can be wrapped is equal to MaxTextureRepeat, which is 32k in this example. Otherwise, the number of times a texture can be wrapped is equal to MaxTextureRepeat divided by texture size, which is 32k/4k in this example.</p> </dd>
  18227. </summary>
  18228. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXOPCAPS_LERP']/*" />
  18229. <msdn-id>bb172513</msdn-id>
  18230. <unmanaged>D3DTEXOPCAPS_LERP</unmanaged>
  18231. <unmanaged-short>D3DTEXOPCAPS_LERP</unmanaged-short>
  18232. </member>
  18233. <member name="T:SharpDX.Direct3D9.TextureStage">
  18234. <summary>
  18235. <p>Texture stage states define multi-blender texture operations. Some sampler states set up vertex processing, and some set up pixel processing. Texture stage states can be saved and restored using stateblocks (see State Blocks Save and Restore State (Direct3D 9)).</p>
  18236. </summary>
  18237. <remarks>
  18238. <p>Members of this enumerated type are used with the <strong><see cref="M:SharpDX.Direct3D9.Device.GetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,SharpDX.Direct3D9.TextureArgument)" /></strong> methods to retrieve and set texture state values.</p><p>The valid range of values for the <see cref="F:SharpDX.Direct3D9.TextureStage.BumpEnvironmentMat00" />, <see cref="F:SharpDX.Direct3D9.TextureStage.BumpEnvironmentMat01" />, <see cref="F:SharpDX.Direct3D9.TextureStage.BumpEnvironmentMat10" />, and <see cref="F:SharpDX.Direct3D9.TextureStage.BumpEnvironmentMat11" /> bump-mapping matrix coefficients is greater than or equal to -8.0 and less than 8.0. This range, expressed in mathematical notation is (-8.0,8.0).</p>
  18239. </remarks>
  18240. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXTURESTAGESTATETYPE']/*" />
  18241. <msdn-id>bb172617</msdn-id>
  18242. <unmanaged>D3DTEXTURESTAGESTATETYPE</unmanaged>
  18243. <unmanaged-short>D3DTEXTURESTAGESTATETYPE</unmanaged-short>
  18244. </member>
  18245. <member name="F:SharpDX.Direct3D9.TextureStage.ColorOperation">
  18246. <summary>
  18247. No documentation.
  18248. </summary>
  18249. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_COLOROP']/*" />
  18250. <msdn-id>bb172617</msdn-id>
  18251. <unmanaged>D3DTSS_COLOROP</unmanaged>
  18252. <unmanaged-short>D3DTSS_COLOROP</unmanaged-short>
  18253. </member>
  18254. <member name="F:SharpDX.Direct3D9.TextureStage.ColorArg1">
  18255. <summary>
  18256. No documentation.
  18257. </summary>
  18258. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_COLORARG1']/*" />
  18259. <msdn-id>bb172617</msdn-id>
  18260. <unmanaged>D3DTSS_COLORARG1</unmanaged>
  18261. <unmanaged-short>D3DTSS_COLORARG1</unmanaged-short>
  18262. </member>
  18263. <member name="F:SharpDX.Direct3D9.TextureStage.ColorArg2">
  18264. <summary>
  18265. No documentation.
  18266. </summary>
  18267. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_COLORARG2']/*" />
  18268. <msdn-id>bb172617</msdn-id>
  18269. <unmanaged>D3DTSS_COLORARG2</unmanaged>
  18270. <unmanaged-short>D3DTSS_COLORARG2</unmanaged-short>
  18271. </member>
  18272. <member name="F:SharpDX.Direct3D9.TextureStage.AlphaOperation">
  18273. <summary>
  18274. No documentation.
  18275. </summary>
  18276. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_ALPHAOP']/*" />
  18277. <msdn-id>bb172617</msdn-id>
  18278. <unmanaged>D3DTSS_ALPHAOP</unmanaged>
  18279. <unmanaged-short>D3DTSS_ALPHAOP</unmanaged-short>
  18280. </member>
  18281. <member name="F:SharpDX.Direct3D9.TextureStage.AlphaArg1">
  18282. <summary>
  18283. No documentation.
  18284. </summary>
  18285. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_ALPHAARG1']/*" />
  18286. <msdn-id>bb172617</msdn-id>
  18287. <unmanaged>D3DTSS_ALPHAARG1</unmanaged>
  18288. <unmanaged-short>D3DTSS_ALPHAARG1</unmanaged-short>
  18289. </member>
  18290. <member name="F:SharpDX.Direct3D9.TextureStage.AlphaArg2">
  18291. <summary>
  18292. No documentation.
  18293. </summary>
  18294. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_ALPHAARG2']/*" />
  18295. <msdn-id>bb172617</msdn-id>
  18296. <unmanaged>D3DTSS_ALPHAARG2</unmanaged>
  18297. <unmanaged-short>D3DTSS_ALPHAARG2</unmanaged-short>
  18298. </member>
  18299. <member name="F:SharpDX.Direct3D9.TextureStage.BumpEnvironmentMat00">
  18300. <summary>
  18301. No documentation.
  18302. </summary>
  18303. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_BUMPENVMAT00']/*" />
  18304. <msdn-id>bb172617</msdn-id>
  18305. <unmanaged>D3DTSS_BUMPENVMAT00</unmanaged>
  18306. <unmanaged-short>D3DTSS_BUMPENVMAT00</unmanaged-short>
  18307. </member>
  18308. <member name="F:SharpDX.Direct3D9.TextureStage.BumpEnvironmentMat01">
  18309. <summary>
  18310. No documentation.
  18311. </summary>
  18312. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_BUMPENVMAT01']/*" />
  18313. <msdn-id>bb172617</msdn-id>
  18314. <unmanaged>D3DTSS_BUMPENVMAT01</unmanaged>
  18315. <unmanaged-short>D3DTSS_BUMPENVMAT01</unmanaged-short>
  18316. </member>
  18317. <member name="F:SharpDX.Direct3D9.TextureStage.BumpEnvironmentMat10">
  18318. <summary>
  18319. No documentation.
  18320. </summary>
  18321. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_BUMPENVMAT10']/*" />
  18322. <msdn-id>bb172617</msdn-id>
  18323. <unmanaged>D3DTSS_BUMPENVMAT10</unmanaged>
  18324. <unmanaged-short>D3DTSS_BUMPENVMAT10</unmanaged-short>
  18325. </member>
  18326. <member name="F:SharpDX.Direct3D9.TextureStage.BumpEnvironmentMat11">
  18327. <summary>
  18328. No documentation.
  18329. </summary>
  18330. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_BUMPENVMAT11']/*" />
  18331. <msdn-id>bb172617</msdn-id>
  18332. <unmanaged>D3DTSS_BUMPENVMAT11</unmanaged>
  18333. <unmanaged-short>D3DTSS_BUMPENVMAT11</unmanaged-short>
  18334. </member>
  18335. <member name="F:SharpDX.Direct3D9.TextureStage.TexCoordIndex">
  18336. <summary>
  18337. No documentation.
  18338. </summary>
  18339. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_TEXCOORDINDEX']/*" />
  18340. <msdn-id>bb172617</msdn-id>
  18341. <unmanaged>D3DTSS_TEXCOORDINDEX</unmanaged>
  18342. <unmanaged-short>D3DTSS_TEXCOORDINDEX</unmanaged-short>
  18343. </member>
  18344. <member name="F:SharpDX.Direct3D9.TextureStage.BumpEnvironmentLScale">
  18345. <summary>
  18346. No documentation.
  18347. </summary>
  18348. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_BUMPENVLSCALE']/*" />
  18349. <msdn-id>bb172617</msdn-id>
  18350. <unmanaged>D3DTSS_BUMPENVLSCALE</unmanaged>
  18351. <unmanaged-short>D3DTSS_BUMPENVLSCALE</unmanaged-short>
  18352. </member>
  18353. <member name="F:SharpDX.Direct3D9.TextureStage.BumpEnvironmentLOffset">
  18354. <summary>
  18355. No documentation.
  18356. </summary>
  18357. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_BUMPENVLOFFSET']/*" />
  18358. <msdn-id>bb172617</msdn-id>
  18359. <unmanaged>D3DTSS_BUMPENVLOFFSET</unmanaged>
  18360. <unmanaged-short>D3DTSS_BUMPENVLOFFSET</unmanaged-short>
  18361. </member>
  18362. <member name="F:SharpDX.Direct3D9.TextureStage.TextureTransformFlags">
  18363. <summary>
  18364. No documentation.
  18365. </summary>
  18366. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_TEXTURETRANSFORMFLAGS']/*" />
  18367. <msdn-id>bb172617</msdn-id>
  18368. <unmanaged>D3DTSS_TEXTURETRANSFORMFLAGS</unmanaged>
  18369. <unmanaged-short>D3DTSS_TEXTURETRANSFORMFLAGS</unmanaged-short>
  18370. </member>
  18371. <member name="F:SharpDX.Direct3D9.TextureStage.ColorArg0">
  18372. <summary>
  18373. No documentation.
  18374. </summary>
  18375. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_COLORARG0']/*" />
  18376. <msdn-id>bb172617</msdn-id>
  18377. <unmanaged>D3DTSS_COLORARG0</unmanaged>
  18378. <unmanaged-short>D3DTSS_COLORARG0</unmanaged-short>
  18379. </member>
  18380. <member name="F:SharpDX.Direct3D9.TextureStage.AlphaArg0">
  18381. <summary>
  18382. No documentation.
  18383. </summary>
  18384. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_ALPHAARG0']/*" />
  18385. <msdn-id>bb172617</msdn-id>
  18386. <unmanaged>D3DTSS_ALPHAARG0</unmanaged>
  18387. <unmanaged-short>D3DTSS_ALPHAARG0</unmanaged-short>
  18388. </member>
  18389. <member name="F:SharpDX.Direct3D9.TextureStage.ResultArg">
  18390. <summary>
  18391. No documentation.
  18392. </summary>
  18393. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_RESULTARG']/*" />
  18394. <msdn-id>bb172617</msdn-id>
  18395. <unmanaged>D3DTSS_RESULTARG</unmanaged>
  18396. <unmanaged-short>D3DTSS_RESULTARG</unmanaged-short>
  18397. </member>
  18398. <member name="F:SharpDX.Direct3D9.TextureStage.Constant">
  18399. <summary>
  18400. No documentation.
  18401. </summary>
  18402. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTSS_CONSTANT']/*" />
  18403. <msdn-id>bb172617</msdn-id>
  18404. <unmanaged>D3DTSS_CONSTANT</unmanaged>
  18405. <unmanaged-short>D3DTSS_CONSTANT</unmanaged-short>
  18406. </member>
  18407. <member name="T:SharpDX.Direct3D9.TextureTransform">
  18408. <summary>
  18409. <p>Defines texture coordinate transformation values.</p>
  18410. </summary>
  18411. <remarks>
  18412. <p>Texture coordinates can be transformed using a 4 x 4 matrix before the results are passed to the rasterizer. The texture coordinate transforms are set by calling <strong><see cref="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,SharpDX.Direct3D9.TextureArgument)" /></strong>, and by passing in the <see cref="F:SharpDX.Direct3D9.TextureStage.TextureTransformFlags" /> texture stage state and one of the values from <strong><see cref="T:SharpDX.Direct3D9.TextureTransform" /></strong>. For more information about texture transforms, see Texture Coordinate Transformations (Direct3D 9).</p>
  18413. </remarks>
  18414. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTEXTURETRANSFORMFLAGS']/*" />
  18415. <msdn-id>bb172618</msdn-id>
  18416. <unmanaged>D3DTEXTURETRANSFORMFLAGS</unmanaged>
  18417. <unmanaged-short>D3DTEXTURETRANSFORMFLAGS</unmanaged-short>
  18418. </member>
  18419. <member name="F:SharpDX.Direct3D9.TextureTransform.Disable">
  18420. <summary>
  18421. <dd> <p>Texture coordinates are passed directly to the rasterizer. </p> </dd>
  18422. </summary>
  18423. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTTFF_DISABLE']/*" />
  18424. <msdn-id>bb172618</msdn-id>
  18425. <unmanaged>D3DTTFF_DISABLE</unmanaged>
  18426. <unmanaged-short>D3DTTFF_DISABLE</unmanaged-short>
  18427. </member>
  18428. <member name="F:SharpDX.Direct3D9.TextureTransform.Count1">
  18429. <summary>
  18430. <dd> <p>The rasterizer should expect 1D texture coordinates. This value is used by fixed function vertex processing; it should be set to 0 when using a programmable vertex shader.</p> </dd>
  18431. </summary>
  18432. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTTFF_COUNT1']/*" />
  18433. <msdn-id>bb172618</msdn-id>
  18434. <unmanaged>D3DTTFF_COUNT1</unmanaged>
  18435. <unmanaged-short>D3DTTFF_COUNT1</unmanaged-short>
  18436. </member>
  18437. <member name="F:SharpDX.Direct3D9.TextureTransform.Count2">
  18438. <summary>
  18439. <dd> <p>The rasterizer should expect 2D texture coordinates. This value is used by fixed function vertex processing; it should be set to 0 when using a programmable vertex shader.</p> </dd>
  18440. </summary>
  18441. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTTFF_COUNT2']/*" />
  18442. <msdn-id>bb172618</msdn-id>
  18443. <unmanaged>D3DTTFF_COUNT2</unmanaged>
  18444. <unmanaged-short>D3DTTFF_COUNT2</unmanaged-short>
  18445. </member>
  18446. <member name="F:SharpDX.Direct3D9.TextureTransform.Count3">
  18447. <summary>
  18448. <dd> <p>The rasterizer should expect 3D texture coordinates. This value is used by fixed function vertex processing; it should be set to 0 when using a programmable vertex shader.</p> </dd>
  18449. </summary>
  18450. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTTFF_COUNT3']/*" />
  18451. <msdn-id>bb172618</msdn-id>
  18452. <unmanaged>D3DTTFF_COUNT3</unmanaged>
  18453. <unmanaged-short>D3DTTFF_COUNT3</unmanaged-short>
  18454. </member>
  18455. <member name="F:SharpDX.Direct3D9.TextureTransform.Count4">
  18456. <summary>
  18457. <dd> <p>The rasterizer should expect 4D texture coordinates. This value is used by fixed function vertex processing; it should be set to 0 when using a programmable vertex shader.</p> </dd>
  18458. </summary>
  18459. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTTFF_COUNT4']/*" />
  18460. <msdn-id>bb172618</msdn-id>
  18461. <unmanaged>D3DTTFF_COUNT4</unmanaged>
  18462. <unmanaged-short>D3DTTFF_COUNT4</unmanaged-short>
  18463. </member>
  18464. <member name="F:SharpDX.Direct3D9.TextureTransform.Projected">
  18465. <summary>
  18466. <dd> <p>This flag is honored by the fixed function pixel pipeline, as well as the programmable pixel pipeline in versions ps_1_1 to ps_1_3. When texture projection is enabled for a texture stage, all four floating point values must be written to the corresponding texture register. Each texture coordinate is divided by the last element before being passed to the rasterizer. For example, if this flag is specified with the <see cref="F:SharpDX.Direct3D9.TextureTransform.Count3" /> flag, the first and second texture coordinates are divided by the third coordinate before being passed to the rasterizer. </p> </dd>
  18467. </summary>
  18468. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTTFF_PROJECTED']/*" />
  18469. <msdn-id>bb172618</msdn-id>
  18470. <unmanaged>D3DTTFF_PROJECTED</unmanaged>
  18471. <unmanaged-short>D3DTTFF_PROJECTED</unmanaged-short>
  18472. </member>
  18473. <member name="T:SharpDX.Direct3D9.TextureWrapping">
  18474. <summary>
  18475. <p>In short, texture wrapping changes the basic way that Direct3D rasterizes textured polygons using the texture coordinates specified for each vertex. While rasterizing a polygon, the system interpolates between the texture coordinates at each of the polygon's vertices to determine the texels that should be used for every pixel of the polygon. Normally, the system treats the texture as a 2D plane, interpolating new texels by taking the shortest route from point A within a texture to point B. If point A represents the u, v position (0.8, 0.1), and point B is at (0.1,0.1), the line of interpolation looks like the following diagram.</p><p /><p>Note that the shortest distance between A and B in this illustration runs roughly through the middle of the texture. Enabling u-texture or v-texture coordinate wrapping changes how Direct3D perceives the shortest route between texture coordinates in the u-direction and v-direction. By definition, texture wrapping causes the rasterizer to take the shortest route between texture coordinate sets, assuming that 0.0 and 1.0 are coincident. The last bit is the tricky part: You can imagine that enabling texture wrapping in one direction causes the system to treat a texture as though it were wrapped around a cylinder. For example, consider the following diagram.</p><p /><p>The preceding illustration shows how wrapping in the u - direction affects how the system interpolates texture coordinates. Using the same points as in the example for normal, or nonwrapped, textures, you can see that the shortest route between points A and B is no longer across the middle of the texture; it's now across the border where 0.0 and 1.0 exist together. Wrapping in the v-direction is similar, except that it wraps the texture around a cylinder that is lying on its side. Wrapping in both the u-direction and v-direction is more complex. In this situation, you can envision the texture as a torus, or doughnut.</p><p>The most common practical application for texture wrapping is to perform environment mapping. Usually, an object textured with an environment map appears very reflective, showing a mirrored image of the object's surroundings in the scene. For the sake of this discussion, picture a room with four walls, each one painted with a letter R, G, B, Y and the corresponding colors: red, green, blue, and yellow. The environment map for such a simple room might look like the following illustration.</p><p /><p>Imagine that the room's ceiling is held up by a perfectly reflective, four-sided, pillar. Mapping the environment map texture to the pillar is simple; making the pillar look as though it is reflecting the letters and colors is not as easy. The following diagram shows a wire frame of the pillar with the applicable texture coordinates listed near the top vertices. The seam where wrapping will cross the edges of the texture is shown with a dotted line.</p><p /><p>With wrapping enabled in the u-direction, the textured pillar shows the colors and symbols from the environment map appropriately and, at the seam in the front of the texture, the rasterizer properly chooses the shortest route between the texture coordinates, assuming that u-coordinates 0.0 and 1.0 share the same location. The textured pillar looks like the following illustration.</p><p /><p>If texture wrapping isn't enabled, the rasterizer does not interpolate in the direction needed to generate a believable, reflected image. Rather, the area at the front of the pillar contains a horizontally compressed version of the texels between u-coordinates 0.175 and 0.875, as they pass through the center of the texture. The wrap effect is ruined.</p>
  18476. </summary>
  18477. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DWRAPCOORD']/*" />
  18478. <msdn-id>bb206256</msdn-id>
  18479. <unmanaged>D3DWRAPCOORD</unmanaged>
  18480. <unmanaged-short>D3DWRAPCOORD</unmanaged-short>
  18481. </member>
  18482. <member name="F:SharpDX.Direct3D9.TextureWrapping.WrapCoordinate0">
  18483. <summary>
  18484. No documentation.
  18485. </summary>
  18486. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DWRAPCOORD_0']/*" />
  18487. <msdn-id>bb206256</msdn-id>
  18488. <unmanaged>D3DWRAPCOORD_0</unmanaged>
  18489. <unmanaged-short>D3DWRAPCOORD_0</unmanaged-short>
  18490. </member>
  18491. <member name="F:SharpDX.Direct3D9.TextureWrapping.WrapCoordinate1">
  18492. <summary>
  18493. No documentation.
  18494. </summary>
  18495. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DWRAPCOORD_1']/*" />
  18496. <msdn-id>bb206256</msdn-id>
  18497. <unmanaged>D3DWRAPCOORD_1</unmanaged>
  18498. <unmanaged-short>D3DWRAPCOORD_1</unmanaged-short>
  18499. </member>
  18500. <member name="F:SharpDX.Direct3D9.TextureWrapping.WrapCoordinate2">
  18501. <summary>
  18502. No documentation.
  18503. </summary>
  18504. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DWRAPCOORD_2']/*" />
  18505. <msdn-id>bb206256</msdn-id>
  18506. <unmanaged>D3DWRAPCOORD_2</unmanaged>
  18507. <unmanaged-short>D3DWRAPCOORD_2</unmanaged-short>
  18508. </member>
  18509. <member name="F:SharpDX.Direct3D9.TextureWrapping.WrapCoordinate3">
  18510. <summary>
  18511. No documentation.
  18512. </summary>
  18513. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DWRAPCOORD_3']/*" />
  18514. <msdn-id>bb206256</msdn-id>
  18515. <unmanaged>D3DWRAPCOORD_3</unmanaged>
  18516. <unmanaged-short>D3DWRAPCOORD_3</unmanaged-short>
  18517. </member>
  18518. <member name="F:SharpDX.Direct3D9.TextureWrapping.None">
  18519. <summary>
  18520. None.
  18521. </summary>
  18522. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  18523. <unmanaged>None</unmanaged>
  18524. <unmanaged-short>None</unmanaged-short>
  18525. </member>
  18526. <member name="T:SharpDX.Direct3D9.TrackPriority">
  18527. <summary>
  18528. <p>Defines the priority type to which an animation track is assigned.</p>
  18529. </summary>
  18530. <remarks>
  18531. <p>Tracks with the same priority are blended together, and the two resulting values are then blended using the priority blend factor.</p>
  18532. </remarks>
  18533. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPRIORITY_TYPE']/*" />
  18534. <msdn-id>bb205401</msdn-id>
  18535. <unmanaged>D3DXPRIORITY_TYPE</unmanaged>
  18536. <unmanaged-short>D3DXPRIORITY_TYPE</unmanaged-short>
  18537. </member>
  18538. <member name="F:SharpDX.Direct3D9.TrackPriority.Low">
  18539. <summary>
  18540. <dd> <p>Track should be blended with all the low-priority tracks before the low-priority blend is mixed with the high-priority blend.</p> </dd>
  18541. </summary>
  18542. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPRIORITY_LOW']/*" />
  18543. <msdn-id>bb205401</msdn-id>
  18544. <unmanaged>D3DXPRIORITY_LOW</unmanaged>
  18545. <unmanaged-short>D3DXPRIORITY_LOW</unmanaged-short>
  18546. </member>
  18547. <member name="F:SharpDX.Direct3D9.TrackPriority.High">
  18548. <summary>
  18549. <dd> <p>Track should be blended with all the high-priority tracks before the high-priority blend is mixed with the low-priority blend.</p> </dd>
  18550. </summary>
  18551. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPRIORITY_HIGH']/*" />
  18552. <msdn-id>bb205401</msdn-id>
  18553. <unmanaged>D3DXPRIORITY_HIGH</unmanaged>
  18554. <unmanaged-short>D3DXPRIORITY_HIGH</unmanaged-short>
  18555. </member>
  18556. <member name="T:SharpDX.Direct3D9.TransformState">
  18557. <summary>
  18558. No documentation.
  18559. </summary>
  18560. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTRANSFORMSTATETYPE2']/*" />
  18561. <unmanaged>D3DTRANSFORMSTATETYPE2</unmanaged>
  18562. <unmanaged-short>D3DTRANSFORMSTATETYPE2</unmanaged-short>
  18563. </member>
  18564. <member name="F:SharpDX.Direct3D9.TransformState.View">
  18565. <summary>
  18566. No documentation.
  18567. </summary>
  18568. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_VIEW']/*" />
  18569. <unmanaged>D3DTS2_VIEW</unmanaged>
  18570. <unmanaged-short>D3DTS2_VIEW</unmanaged-short>
  18571. </member>
  18572. <member name="F:SharpDX.Direct3D9.TransformState.Projection">
  18573. <summary>
  18574. No documentation.
  18575. </summary>
  18576. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_PROJECTION']/*" />
  18577. <unmanaged>D3DTS2_PROJECTION</unmanaged>
  18578. <unmanaged-short>D3DTS2_PROJECTION</unmanaged-short>
  18579. </member>
  18580. <member name="F:SharpDX.Direct3D9.TransformState.World">
  18581. <summary>
  18582. No documentation.
  18583. </summary>
  18584. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_WORLD']/*" />
  18585. <unmanaged>D3DTS2_WORLD</unmanaged>
  18586. <unmanaged-short>D3DTS2_WORLD</unmanaged-short>
  18587. </member>
  18588. <member name="F:SharpDX.Direct3D9.TransformState.World1">
  18589. <summary>
  18590. No documentation.
  18591. </summary>
  18592. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_WORLD1']/*" />
  18593. <unmanaged>D3DTS2_WORLD1</unmanaged>
  18594. <unmanaged-short>D3DTS2_WORLD1</unmanaged-short>
  18595. </member>
  18596. <member name="F:SharpDX.Direct3D9.TransformState.World2">
  18597. <summary>
  18598. No documentation.
  18599. </summary>
  18600. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_WORLD2']/*" />
  18601. <unmanaged>D3DTS2_WORLD2</unmanaged>
  18602. <unmanaged-short>D3DTS2_WORLD2</unmanaged-short>
  18603. </member>
  18604. <member name="F:SharpDX.Direct3D9.TransformState.World3">
  18605. <summary>
  18606. No documentation.
  18607. </summary>
  18608. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_WORLD3']/*" />
  18609. <unmanaged>D3DTS2_WORLD3</unmanaged>
  18610. <unmanaged-short>D3DTS2_WORLD3</unmanaged-short>
  18611. </member>
  18612. <member name="F:SharpDX.Direct3D9.TransformState.Texture0">
  18613. <summary>
  18614. No documentation.
  18615. </summary>
  18616. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_TEXTURE0']/*" />
  18617. <unmanaged>D3DTS2_TEXTURE0</unmanaged>
  18618. <unmanaged-short>D3DTS2_TEXTURE0</unmanaged-short>
  18619. </member>
  18620. <member name="F:SharpDX.Direct3D9.TransformState.Texture1">
  18621. <summary>
  18622. No documentation.
  18623. </summary>
  18624. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_TEXTURE1']/*" />
  18625. <unmanaged>D3DTS2_TEXTURE1</unmanaged>
  18626. <unmanaged-short>D3DTS2_TEXTURE1</unmanaged-short>
  18627. </member>
  18628. <member name="F:SharpDX.Direct3D9.TransformState.Texture2">
  18629. <summary>
  18630. No documentation.
  18631. </summary>
  18632. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_TEXTURE2']/*" />
  18633. <unmanaged>D3DTS2_TEXTURE2</unmanaged>
  18634. <unmanaged-short>D3DTS2_TEXTURE2</unmanaged-short>
  18635. </member>
  18636. <member name="F:SharpDX.Direct3D9.TransformState.Texture3">
  18637. <summary>
  18638. No documentation.
  18639. </summary>
  18640. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_TEXTURE3']/*" />
  18641. <unmanaged>D3DTS2_TEXTURE3</unmanaged>
  18642. <unmanaged-short>D3DTS2_TEXTURE3</unmanaged-short>
  18643. </member>
  18644. <member name="F:SharpDX.Direct3D9.TransformState.Texture4">
  18645. <summary>
  18646. No documentation.
  18647. </summary>
  18648. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_TEXTURE4']/*" />
  18649. <unmanaged>D3DTS2_TEXTURE4</unmanaged>
  18650. <unmanaged-short>D3DTS2_TEXTURE4</unmanaged-short>
  18651. </member>
  18652. <member name="F:SharpDX.Direct3D9.TransformState.Texture5">
  18653. <summary>
  18654. No documentation.
  18655. </summary>
  18656. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_TEXTURE5']/*" />
  18657. <unmanaged>D3DTS2_TEXTURE5</unmanaged>
  18658. <unmanaged-short>D3DTS2_TEXTURE5</unmanaged-short>
  18659. </member>
  18660. <member name="F:SharpDX.Direct3D9.TransformState.Texture6">
  18661. <summary>
  18662. No documentation.
  18663. </summary>
  18664. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_TEXTURE6']/*" />
  18665. <unmanaged>D3DTS2_TEXTURE6</unmanaged>
  18666. <unmanaged-short>D3DTS2_TEXTURE6</unmanaged-short>
  18667. </member>
  18668. <member name="F:SharpDX.Direct3D9.TransformState.Texture7">
  18669. <summary>
  18670. No documentation.
  18671. </summary>
  18672. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTS2_TEXTURE7']/*" />
  18673. <unmanaged>D3DTS2_TEXTURE7</unmanaged>
  18674. <unmanaged-short>D3DTS2_TEXTURE7</unmanaged-short>
  18675. </member>
  18676. <member name="T:SharpDX.Direct3D9.TransitionType">
  18677. <summary>
  18678. <p>Defines the transition style between values of a mesh animation.</p>
  18679. </summary>
  18680. <remarks>
  18681. <p>The calculation for the ramp from ease in to ease out is calculated as follows:</p><dl> <dd>Q(t) = 2(x - y)t3 + 3(y - x)t2 + x</dd> </dl><p>where the ramp is a function Q(t) with the following properties:</p><ul> <li>Q(t) is a cubic spline.</li> <li>Q(t) interpolates between x and y as t ranges from 0 to 1.</li> <li>Q(t) is horizontal when t = 0 and t = 1.</li> </ul><p>Mathematically, this translates into:</p><dl> <dd>Q(t) = At3 + Bt2 + Ct + D (and therefore, Q'(t) = 3At2 + 2Bt + C)</dd> <dd>2a) Q(0) = x</dd> <dd>2b) Q(1) = y</dd> <dd>3a) Q'(0) = 0</dd> <dd>3b) Q'(1) = 0</dd> </dl><p>Solving for A, B, C, D: </p><dl> <dd>D = x (from 2a)</dd> <dd>C = 0 (from 3a)</dd> <dd>3A + 2B = 0 (from 3b)</dd> <dd>A + B = y - x (from 2b and D = x)</dd> </dl><p>Therefore:</p><dl> <dd>A = 2(x - y), B = 3(y - x), C = 0, D = x</dd> </dl>
  18682. </remarks>
  18683. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTRANSITION_TYPE']/*" />
  18684. <msdn-id>bb205475</msdn-id>
  18685. <unmanaged>D3DXTRANSITION_TYPE</unmanaged>
  18686. <unmanaged-short>D3DXTRANSITION_TYPE</unmanaged-short>
  18687. </member>
  18688. <member name="F:SharpDX.Direct3D9.TransitionType.Linear">
  18689. <summary>
  18690. <dd> <p>Linear transition between values.</p> </dd>
  18691. </summary>
  18692. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTRANSITION_LINEAR']/*" />
  18693. <msdn-id>bb205475</msdn-id>
  18694. <unmanaged>D3DXTRANSITION_LINEAR</unmanaged>
  18695. <unmanaged-short>D3DXTRANSITION_LINEAR</unmanaged-short>
  18696. </member>
  18697. <member name="F:SharpDX.Direct3D9.TransitionType.EaseInEaseOut">
  18698. <summary>
  18699. <dd> <p>Ease-in, ease-out spline transition between values.</p> </dd>
  18700. </summary>
  18701. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTRANSITION_EASEINEASEOUT']/*" />
  18702. <msdn-id>bb205475</msdn-id>
  18703. <unmanaged>D3DXTRANSITION_EASEINEASEOUT</unmanaged>
  18704. <unmanaged-short>D3DXTRANSITION_EASEINEASEOUT</unmanaged-short>
  18705. </member>
  18706. <member name="T:SharpDX.Direct3D9.Usage">
  18707. <summary>
  18708. <p>Usage options that identify how resources are to be used.</p><p>The following table summarizes the available usage options.</p><p />
  18709. </summary>
  18710. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE']/*" />
  18711. <msdn-id>bb172625</msdn-id>
  18712. <unmanaged>D3DUSAGE</unmanaged>
  18713. <unmanaged-short>D3DUSAGE</unmanaged-short>
  18714. </member>
  18715. <member name="F:SharpDX.Direct3D9.Usage.RenderTarget">
  18716. <summary>
  18717. No documentation.
  18718. </summary>
  18719. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_RENDERTARGET']/*" />
  18720. <msdn-id>bb172625</msdn-id>
  18721. <unmanaged>D3DUSAGE_RENDERTARGET</unmanaged>
  18722. <unmanaged-short>D3DUSAGE_RENDERTARGET</unmanaged-short>
  18723. </member>
  18724. <member name="F:SharpDX.Direct3D9.Usage.DepthStencil">
  18725. <summary>
  18726. No documentation.
  18727. </summary>
  18728. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_DEPTHSTENCIL']/*" />
  18729. <msdn-id>bb172625</msdn-id>
  18730. <unmanaged>D3DUSAGE_DEPTHSTENCIL</unmanaged>
  18731. <unmanaged-short>D3DUSAGE_DEPTHSTENCIL</unmanaged-short>
  18732. </member>
  18733. <member name="F:SharpDX.Direct3D9.Usage.Dynamic">
  18734. <summary>
  18735. No documentation.
  18736. </summary>
  18737. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_DYNAMIC']/*" />
  18738. <msdn-id>bb172625</msdn-id>
  18739. <unmanaged>D3DUSAGE_DYNAMIC</unmanaged>
  18740. <unmanaged-short>D3DUSAGE_DYNAMIC</unmanaged-short>
  18741. </member>
  18742. <member name="F:SharpDX.Direct3D9.Usage.NonSecure">
  18743. <summary>
  18744. No documentation.
  18745. </summary>
  18746. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_NONSECURE']/*" />
  18747. <msdn-id>bb172625</msdn-id>
  18748. <unmanaged>D3DUSAGE_NONSECURE</unmanaged>
  18749. <unmanaged-short>D3DUSAGE_NONSECURE</unmanaged-short>
  18750. </member>
  18751. <member name="F:SharpDX.Direct3D9.Usage.AutoGenerateMipMap">
  18752. <summary>
  18753. No documentation.
  18754. </summary>
  18755. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_AUTOGENMIPMAP']/*" />
  18756. <msdn-id>bb172625</msdn-id>
  18757. <unmanaged>D3DUSAGE_AUTOGENMIPMAP</unmanaged>
  18758. <unmanaged-short>D3DUSAGE_AUTOGENMIPMAP</unmanaged-short>
  18759. </member>
  18760. <member name="F:SharpDX.Direct3D9.Usage.DisplacementMap">
  18761. <summary>
  18762. No documentation.
  18763. </summary>
  18764. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_DMAP']/*" />
  18765. <msdn-id>bb172625</msdn-id>
  18766. <unmanaged>D3DUSAGE_DMAP</unmanaged>
  18767. <unmanaged-short>D3DUSAGE_DMAP</unmanaged-short>
  18768. </member>
  18769. <member name="F:SharpDX.Direct3D9.Usage.QueryLegacyBumpMap">
  18770. <summary>
  18771. No documentation.
  18772. </summary>
  18773. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_QUERY_LEGACYBUMPMAP']/*" />
  18774. <msdn-id>bb172625</msdn-id>
  18775. <unmanaged>D3DUSAGE_QUERY_LEGACYBUMPMAP</unmanaged>
  18776. <unmanaged-short>D3DUSAGE_QUERY_LEGACYBUMPMAP</unmanaged-short>
  18777. </member>
  18778. <member name="F:SharpDX.Direct3D9.Usage.QuerySrgbRead">
  18779. <summary>
  18780. No documentation.
  18781. </summary>
  18782. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_QUERY_SRGBREAD']/*" />
  18783. <msdn-id>bb172625</msdn-id>
  18784. <unmanaged>D3DUSAGE_QUERY_SRGBREAD</unmanaged>
  18785. <unmanaged-short>D3DUSAGE_QUERY_SRGBREAD</unmanaged-short>
  18786. </member>
  18787. <member name="F:SharpDX.Direct3D9.Usage.QueryFilter">
  18788. <summary>
  18789. No documentation.
  18790. </summary>
  18791. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_QUERY_FILTER']/*" />
  18792. <msdn-id>bb172625</msdn-id>
  18793. <unmanaged>D3DUSAGE_QUERY_FILTER</unmanaged>
  18794. <unmanaged-short>D3DUSAGE_QUERY_FILTER</unmanaged-short>
  18795. </member>
  18796. <member name="F:SharpDX.Direct3D9.Usage.QuerySrgbWrite">
  18797. <summary>
  18798. No documentation.
  18799. </summary>
  18800. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_QUERY_SRGBWRITE']/*" />
  18801. <msdn-id>bb172625</msdn-id>
  18802. <unmanaged>D3DUSAGE_QUERY_SRGBWRITE</unmanaged>
  18803. <unmanaged-short>D3DUSAGE_QUERY_SRGBWRITE</unmanaged-short>
  18804. </member>
  18805. <member name="F:SharpDX.Direct3D9.Usage.QueryPostPixelShaderBlending">
  18806. <summary>
  18807. No documentation.
  18808. </summary>
  18809. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_QUERY_POSTPIXELSHADER_BLENDING']/*" />
  18810. <msdn-id>bb172625</msdn-id>
  18811. <unmanaged>D3DUSAGE_QUERY_POSTPIXELSHADER_BLENDING</unmanaged>
  18812. <unmanaged-short>D3DUSAGE_QUERY_POSTPIXELSHADER_BLENDING</unmanaged-short>
  18813. </member>
  18814. <member name="F:SharpDX.Direct3D9.Usage.QueryVertexTexture">
  18815. <summary>
  18816. No documentation.
  18817. </summary>
  18818. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_QUERY_VERTEXTEXTURE']/*" />
  18819. <msdn-id>bb172625</msdn-id>
  18820. <unmanaged>D3DUSAGE_QUERY_VERTEXTEXTURE</unmanaged>
  18821. <unmanaged-short>D3DUSAGE_QUERY_VERTEXTEXTURE</unmanaged-short>
  18822. </member>
  18823. <member name="F:SharpDX.Direct3D9.Usage.QueryWrapAndMip">
  18824. <summary>
  18825. No documentation.
  18826. </summary>
  18827. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_QUERY_WRAPANDMIP']/*" />
  18828. <msdn-id>bb172625</msdn-id>
  18829. <unmanaged>D3DUSAGE_QUERY_WRAPANDMIP</unmanaged>
  18830. <unmanaged-short>D3DUSAGE_QUERY_WRAPANDMIP</unmanaged-short>
  18831. </member>
  18832. <member name="F:SharpDX.Direct3D9.Usage.WriteOnly">
  18833. <summary>
  18834. No documentation.
  18835. </summary>
  18836. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_WRITEONLY']/*" />
  18837. <msdn-id>bb172625</msdn-id>
  18838. <unmanaged>D3DUSAGE_WRITEONLY</unmanaged>
  18839. <unmanaged-short>D3DUSAGE_WRITEONLY</unmanaged-short>
  18840. </member>
  18841. <member name="F:SharpDX.Direct3D9.Usage.SoftwareProcessing">
  18842. <summary>
  18843. No documentation.
  18844. </summary>
  18845. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_SOFTWAREPROCESSING']/*" />
  18846. <msdn-id>bb172625</msdn-id>
  18847. <unmanaged>D3DUSAGE_SOFTWAREPROCESSING</unmanaged>
  18848. <unmanaged-short>D3DUSAGE_SOFTWAREPROCESSING</unmanaged-short>
  18849. </member>
  18850. <member name="F:SharpDX.Direct3D9.Usage.DoNotClip">
  18851. <summary>
  18852. No documentation.
  18853. </summary>
  18854. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_DONOTCLIP']/*" />
  18855. <msdn-id>bb172625</msdn-id>
  18856. <unmanaged>D3DUSAGE_DONOTCLIP</unmanaged>
  18857. <unmanaged-short>D3DUSAGE_DONOTCLIP</unmanaged-short>
  18858. </member>
  18859. <member name="F:SharpDX.Direct3D9.Usage.Points">
  18860. <summary>
  18861. No documentation.
  18862. </summary>
  18863. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_POINTS']/*" />
  18864. <msdn-id>bb172625</msdn-id>
  18865. <unmanaged>D3DUSAGE_POINTS</unmanaged>
  18866. <unmanaged-short>D3DUSAGE_POINTS</unmanaged-short>
  18867. </member>
  18868. <member name="F:SharpDX.Direct3D9.Usage.RTPatches">
  18869. <summary>
  18870. No documentation.
  18871. </summary>
  18872. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_RTPATCHES']/*" />
  18873. <msdn-id>bb172625</msdn-id>
  18874. <unmanaged>D3DUSAGE_RTPATCHES</unmanaged>
  18875. <unmanaged-short>D3DUSAGE_RTPATCHES</unmanaged-short>
  18876. </member>
  18877. <member name="F:SharpDX.Direct3D9.Usage.NPatches">
  18878. <summary>
  18879. No documentation.
  18880. </summary>
  18881. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_NPATCHES']/*" />
  18882. <msdn-id>bb172625</msdn-id>
  18883. <unmanaged>D3DUSAGE_NPATCHES</unmanaged>
  18884. <unmanaged-short>D3DUSAGE_NPATCHES</unmanaged-short>
  18885. </member>
  18886. <member name="F:SharpDX.Direct3D9.Usage.TextApi">
  18887. <summary>
  18888. No documentation.
  18889. </summary>
  18890. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_TEXTAPI']/*" />
  18891. <msdn-id>bb172625</msdn-id>
  18892. <unmanaged>D3DUSAGE_TEXTAPI</unmanaged>
  18893. <unmanaged-short>D3DUSAGE_TEXTAPI</unmanaged-short>
  18894. </member>
  18895. <member name="F:SharpDX.Direct3D9.Usage.RestrictedContent">
  18896. <summary>
  18897. No documentation.
  18898. </summary>
  18899. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_RESTRICTED_CONTENT']/*" />
  18900. <msdn-id>bb172625</msdn-id>
  18901. <unmanaged>D3DUSAGE_RESTRICTED_CONTENT</unmanaged>
  18902. <unmanaged-short>D3DUSAGE_RESTRICTED_CONTENT</unmanaged-short>
  18903. </member>
  18904. <member name="F:SharpDX.Direct3D9.Usage.RestrictSharedResource">
  18905. <summary>
  18906. No documentation.
  18907. </summary>
  18908. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_RESTRICT_SHARED_RESOURCE']/*" />
  18909. <msdn-id>bb172625</msdn-id>
  18910. <unmanaged>D3DUSAGE_RESTRICT_SHARED_RESOURCE</unmanaged>
  18911. <unmanaged-short>D3DUSAGE_RESTRICT_SHARED_RESOURCE</unmanaged-short>
  18912. </member>
  18913. <member name="F:SharpDX.Direct3D9.Usage.RestrictSharedResourceDriver">
  18914. <summary>
  18915. No documentation.
  18916. </summary>
  18917. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DUSAGE_RESTRICT_SHARED_RESOURCE_DRIVER']/*" />
  18918. <msdn-id>bb172625</msdn-id>
  18919. <unmanaged>D3DUSAGE_RESTRICT_SHARED_RESOURCE_DRIVER</unmanaged>
  18920. <unmanaged-short>D3DUSAGE_RESTRICT_SHARED_RESOURCE_DRIVER</unmanaged-short>
  18921. </member>
  18922. <member name="F:SharpDX.Direct3D9.Usage.None">
  18923. <summary>
  18924. None.
  18925. </summary>
  18926. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  18927. <unmanaged>None</unmanaged>
  18928. <unmanaged-short>None</unmanaged-short>
  18929. </member>
  18930. <member name="T:SharpDX.Direct3D9.UVAtlasQuality">
  18931. <summary>
  18932. <p>Texture wrapping options for IMT computation APIs.</p>
  18933. </summary>
  18934. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMT']/*" />
  18935. <msdn-id>bb172880</msdn-id>
  18936. <unmanaged>D3DXIMT</unmanaged>
  18937. <unmanaged-short>D3DXIMT</unmanaged-short>
  18938. </member>
  18939. <member name="F:SharpDX.Direct3D9.UVAtlasQuality.WrapU">
  18940. <summary>
  18941. <dd> <p>The texture wraps in the U direction.</p> </dd>
  18942. </summary>
  18943. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMT_WRAP_U']/*" />
  18944. <msdn-id>bb172880</msdn-id>
  18945. <unmanaged>D3DXIMT_WRAP_U</unmanaged>
  18946. <unmanaged-short>D3DXIMT_WRAP_U</unmanaged-short>
  18947. </member>
  18948. <member name="F:SharpDX.Direct3D9.UVAtlasQuality.WrapV">
  18949. <summary>
  18950. <dd> <p>The texture wraps in the V direction.</p> </dd>
  18951. </summary>
  18952. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMT_WRAP_V']/*" />
  18953. <msdn-id>bb172880</msdn-id>
  18954. <unmanaged>D3DXIMT_WRAP_V</unmanaged>
  18955. <unmanaged-short>D3DXIMT_WRAP_V</unmanaged-short>
  18956. </member>
  18957. <member name="F:SharpDX.Direct3D9.UVAtlasQuality.WrapUv">
  18958. <summary>
  18959. <dd> <p>The texture wraps in both the U and V direction.</p> </dd>
  18960. </summary>
  18961. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMT_WRAP_UV']/*" />
  18962. <msdn-id>bb172880</msdn-id>
  18963. <unmanaged>D3DXIMT_WRAP_UV</unmanaged>
  18964. <unmanaged-short>D3DXIMT_WRAP_UV</unmanaged-short>
  18965. </member>
  18966. <member name="T:SharpDX.Direct3D9.VertexBlend">
  18967. <summary>
  18968. <p>Defines flags used to control the number or matrices that the system applies when performing multimatrix vertex blending.</p>
  18969. </summary>
  18970. <remarks>
  18971. <p>Members of this type are used with the <see cref="F:SharpDX.Direct3D9.RenderState.VertexBlend" /> render state.</p><p>Geometry blending (multimatrix vertex blending) requires that your application use a vertex format that has blending (beta) weights for each vertex.</p>
  18972. </remarks>
  18973. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXBLENDFLAGS']/*" />
  18974. <msdn-id>bb172628</msdn-id>
  18975. <unmanaged>D3DVERTEXBLENDFLAGS</unmanaged>
  18976. <unmanaged-short>D3DVERTEXBLENDFLAGS</unmanaged-short>
  18977. </member>
  18978. <member name="F:SharpDX.Direct3D9.VertexBlend.Disable">
  18979. <summary>
  18980. <dd> <p>Disable vertex blending; apply only the world matrix set by the <strong>D3DTS_WORLDMATRIX</strong> macro, where the index value for the transformation state is 0. </p> </dd>
  18981. </summary>
  18982. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVBF_DISABLE']/*" />
  18983. <msdn-id>bb172628</msdn-id>
  18984. <unmanaged>D3DVBF_DISABLE</unmanaged>
  18985. <unmanaged-short>D3DVBF_DISABLE</unmanaged-short>
  18986. </member>
  18987. <member name="F:SharpDX.Direct3D9.VertexBlend.Weights1">
  18988. <summary>
  18989. <dd> <p>Enable vertex blending between the two matrices set by the <strong>D3DTS_WORLDMATRIX</strong> macro, where the index value for the transformation states are 0 and 1. </p> </dd>
  18990. </summary>
  18991. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVBF_1WEIGHTS']/*" />
  18992. <msdn-id>bb172628</msdn-id>
  18993. <unmanaged>D3DVBF_1WEIGHTS</unmanaged>
  18994. <unmanaged-short>D3DVBF_1WEIGHTS</unmanaged-short>
  18995. </member>
  18996. <member name="F:SharpDX.Direct3D9.VertexBlend.Weights2">
  18997. <summary>
  18998. <dd> <p>Enable vertex blending between the three matrices set by the <strong>D3DTS_WORLDMATRIX</strong> macro, where the index value for the transformation states are 0, 1, and 2. </p> </dd>
  18999. </summary>
  19000. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVBF_2WEIGHTS']/*" />
  19001. <msdn-id>bb172628</msdn-id>
  19002. <unmanaged>D3DVBF_2WEIGHTS</unmanaged>
  19003. <unmanaged-short>D3DVBF_2WEIGHTS</unmanaged-short>
  19004. </member>
  19005. <member name="F:SharpDX.Direct3D9.VertexBlend.Weights3">
  19006. <summary>
  19007. <dd> <p>Enable vertex blending between the four matrices set by the <strong>D3DTS_WORLDMATRIX</strong> macro, where the index value for the transformation states are 0, 1, 2, and 3. </p> </dd>
  19008. </summary>
  19009. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVBF_3WEIGHTS']/*" />
  19010. <msdn-id>bb172628</msdn-id>
  19011. <unmanaged>D3DVBF_3WEIGHTS</unmanaged>
  19012. <unmanaged-short>D3DVBF_3WEIGHTS</unmanaged-short>
  19013. </member>
  19014. <member name="F:SharpDX.Direct3D9.VertexBlend.Tweening">
  19015. <summary>
  19016. <dd> <p>Vertex blending is done by using the value assigned to <see cref="F:SharpDX.Direct3D9.RenderState.TweenFactor" />. </p> </dd>
  19017. </summary>
  19018. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVBF_TWEENING']/*" />
  19019. <msdn-id>bb172628</msdn-id>
  19020. <unmanaged>D3DVBF_TWEENING</unmanaged>
  19021. <unmanaged-short>D3DVBF_TWEENING</unmanaged-short>
  19022. </member>
  19023. <member name="F:SharpDX.Direct3D9.VertexBlend.Weights0">
  19024. <summary>
  19025. <dd> <p>Use a single matrix with a weight of 1.0. </p> </dd>
  19026. </summary>
  19027. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVBF_0WEIGHTS']/*" />
  19028. <msdn-id>bb172628</msdn-id>
  19029. <unmanaged>D3DVBF_0WEIGHTS</unmanaged>
  19030. <unmanaged-short>D3DVBF_0WEIGHTS</unmanaged-short>
  19031. </member>
  19032. <member name="T:SharpDX.Direct3D9.VertexFormat">
  19033. <summary>
  19034. <p>Flexible Vertex Format Constants, or FVF codes, are used to describe the contents of vertices interleaved in a single data stream that will be processed by the fixed-function pipeline.</p>
  19035. </summary>
  19036. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF']/*" />
  19037. <msdn-id>bb172559</msdn-id>
  19038. <unmanaged>D3DFVF</unmanaged>
  19039. <unmanaged-short>D3DFVF</unmanaged-short>
  19040. </member>
  19041. <member name="F:SharpDX.Direct3D9.VertexFormat.Reserved0">
  19042. <summary>
  19043. No documentation.
  19044. </summary>
  19045. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_RESERVED0']/*" />
  19046. <msdn-id>bb172559</msdn-id>
  19047. <unmanaged>D3DFVF_RESERVED0</unmanaged>
  19048. <unmanaged-short>D3DFVF_RESERVED0</unmanaged-short>
  19049. </member>
  19050. <member name="F:SharpDX.Direct3D9.VertexFormat.PositionMask">
  19051. <summary>
  19052. No documentation.
  19053. </summary>
  19054. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_POSITION_MASK']/*" />
  19055. <msdn-id>bb172559</msdn-id>
  19056. <unmanaged>D3DFVF_POSITION_MASK</unmanaged>
  19057. <unmanaged-short>D3DFVF_POSITION_MASK</unmanaged-short>
  19058. </member>
  19059. <member name="F:SharpDX.Direct3D9.VertexFormat.Position">
  19060. <summary>
  19061. No documentation.
  19062. </summary>
  19063. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_XYZ']/*" />
  19064. <msdn-id>bb172559</msdn-id>
  19065. <unmanaged>D3DFVF_XYZ</unmanaged>
  19066. <unmanaged-short>D3DFVF_XYZ</unmanaged-short>
  19067. </member>
  19068. <member name="F:SharpDX.Direct3D9.VertexFormat.PositionRhw">
  19069. <summary>
  19070. No documentation.
  19071. </summary>
  19072. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_XYZRHW']/*" />
  19073. <msdn-id>bb172559</msdn-id>
  19074. <unmanaged>D3DFVF_XYZRHW</unmanaged>
  19075. <unmanaged-short>D3DFVF_XYZRHW</unmanaged-short>
  19076. </member>
  19077. <member name="F:SharpDX.Direct3D9.VertexFormat.PositionBlend1">
  19078. <summary>
  19079. No documentation.
  19080. </summary>
  19081. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_XYZB1']/*" />
  19082. <msdn-id>bb172559</msdn-id>
  19083. <unmanaged>D3DFVF_XYZB1</unmanaged>
  19084. <unmanaged-short>D3DFVF_XYZB1</unmanaged-short>
  19085. </member>
  19086. <member name="F:SharpDX.Direct3D9.VertexFormat.PositionBlend2">
  19087. <summary>
  19088. No documentation.
  19089. </summary>
  19090. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_XYZB2']/*" />
  19091. <msdn-id>bb172559</msdn-id>
  19092. <unmanaged>D3DFVF_XYZB2</unmanaged>
  19093. <unmanaged-short>D3DFVF_XYZB2</unmanaged-short>
  19094. </member>
  19095. <member name="F:SharpDX.Direct3D9.VertexFormat.PositionBlend3">
  19096. <summary>
  19097. No documentation.
  19098. </summary>
  19099. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_XYZB3']/*" />
  19100. <msdn-id>bb172559</msdn-id>
  19101. <unmanaged>D3DFVF_XYZB3</unmanaged>
  19102. <unmanaged-short>D3DFVF_XYZB3</unmanaged-short>
  19103. </member>
  19104. <member name="F:SharpDX.Direct3D9.VertexFormat.PositionBlend4">
  19105. <summary>
  19106. No documentation.
  19107. </summary>
  19108. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_XYZB4']/*" />
  19109. <msdn-id>bb172559</msdn-id>
  19110. <unmanaged>D3DFVF_XYZB4</unmanaged>
  19111. <unmanaged-short>D3DFVF_XYZB4</unmanaged-short>
  19112. </member>
  19113. <member name="F:SharpDX.Direct3D9.VertexFormat.PositionBlend5">
  19114. <summary>
  19115. No documentation.
  19116. </summary>
  19117. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_XYZB5']/*" />
  19118. <msdn-id>bb172559</msdn-id>
  19119. <unmanaged>D3DFVF_XYZB5</unmanaged>
  19120. <unmanaged-short>D3DFVF_XYZB5</unmanaged-short>
  19121. </member>
  19122. <member name="F:SharpDX.Direct3D9.VertexFormat.PositionW">
  19123. <summary>
  19124. No documentation.
  19125. </summary>
  19126. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_XYZW']/*" />
  19127. <msdn-id>bb172559</msdn-id>
  19128. <unmanaged>D3DFVF_XYZW</unmanaged>
  19129. <unmanaged-short>D3DFVF_XYZW</unmanaged-short>
  19130. </member>
  19131. <member name="F:SharpDX.Direct3D9.VertexFormat.Normal">
  19132. <summary>
  19133. No documentation.
  19134. </summary>
  19135. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_NORMAL']/*" />
  19136. <msdn-id>bb172559</msdn-id>
  19137. <unmanaged>D3DFVF_NORMAL</unmanaged>
  19138. <unmanaged-short>D3DFVF_NORMAL</unmanaged-short>
  19139. </member>
  19140. <member name="F:SharpDX.Direct3D9.VertexFormat.PointSize">
  19141. <summary>
  19142. No documentation.
  19143. </summary>
  19144. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_PSIZE']/*" />
  19145. <msdn-id>bb172559</msdn-id>
  19146. <unmanaged>D3DFVF_PSIZE</unmanaged>
  19147. <unmanaged-short>D3DFVF_PSIZE</unmanaged-short>
  19148. </member>
  19149. <member name="F:SharpDX.Direct3D9.VertexFormat.Diffuse">
  19150. <summary>
  19151. No documentation.
  19152. </summary>
  19153. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_DIFFUSE']/*" />
  19154. <msdn-id>bb172559</msdn-id>
  19155. <unmanaged>D3DFVF_DIFFUSE</unmanaged>
  19156. <unmanaged-short>D3DFVF_DIFFUSE</unmanaged-short>
  19157. </member>
  19158. <member name="F:SharpDX.Direct3D9.VertexFormat.Specular">
  19159. <summary>
  19160. No documentation.
  19161. </summary>
  19162. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_SPECULAR']/*" />
  19163. <msdn-id>bb172559</msdn-id>
  19164. <unmanaged>D3DFVF_SPECULAR</unmanaged>
  19165. <unmanaged-short>D3DFVF_SPECULAR</unmanaged-short>
  19166. </member>
  19167. <member name="F:SharpDX.Direct3D9.VertexFormat.TextureCountMask">
  19168. <summary>
  19169. No documentation.
  19170. </summary>
  19171. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEXCOUNT_MASK']/*" />
  19172. <msdn-id>bb172559</msdn-id>
  19173. <unmanaged>D3DFVF_TEXCOUNT_MASK</unmanaged>
  19174. <unmanaged-short>D3DFVF_TEXCOUNT_MASK</unmanaged-short>
  19175. </member>
  19176. <member name="F:SharpDX.Direct3D9.VertexFormat.TextureCountShift">
  19177. <summary>
  19178. No documentation.
  19179. </summary>
  19180. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEXCOUNT_SHIFT']/*" />
  19181. <msdn-id>bb172559</msdn-id>
  19182. <unmanaged>D3DFVF_TEXCOUNT_SHIFT</unmanaged>
  19183. <unmanaged-short>D3DFVF_TEXCOUNT_SHIFT</unmanaged-short>
  19184. </member>
  19185. <member name="F:SharpDX.Direct3D9.VertexFormat.Texture0">
  19186. <summary>
  19187. No documentation.
  19188. </summary>
  19189. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEX0']/*" />
  19190. <msdn-id>bb172559</msdn-id>
  19191. <unmanaged>D3DFVF_TEX0</unmanaged>
  19192. <unmanaged-short>D3DFVF_TEX0</unmanaged-short>
  19193. </member>
  19194. <member name="F:SharpDX.Direct3D9.VertexFormat.Texture1">
  19195. <summary>
  19196. No documentation.
  19197. </summary>
  19198. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEX1']/*" />
  19199. <msdn-id>bb172559</msdn-id>
  19200. <unmanaged>D3DFVF_TEX1</unmanaged>
  19201. <unmanaged-short>D3DFVF_TEX1</unmanaged-short>
  19202. </member>
  19203. <member name="F:SharpDX.Direct3D9.VertexFormat.Texture2">
  19204. <summary>
  19205. No documentation.
  19206. </summary>
  19207. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEX2']/*" />
  19208. <msdn-id>bb172559</msdn-id>
  19209. <unmanaged>D3DFVF_TEX2</unmanaged>
  19210. <unmanaged-short>D3DFVF_TEX2</unmanaged-short>
  19211. </member>
  19212. <member name="F:SharpDX.Direct3D9.VertexFormat.Texture3">
  19213. <summary>
  19214. No documentation.
  19215. </summary>
  19216. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEX3']/*" />
  19217. <msdn-id>bb172559</msdn-id>
  19218. <unmanaged>D3DFVF_TEX3</unmanaged>
  19219. <unmanaged-short>D3DFVF_TEX3</unmanaged-short>
  19220. </member>
  19221. <member name="F:SharpDX.Direct3D9.VertexFormat.Texture4">
  19222. <summary>
  19223. No documentation.
  19224. </summary>
  19225. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEX4']/*" />
  19226. <msdn-id>bb172559</msdn-id>
  19227. <unmanaged>D3DFVF_TEX4</unmanaged>
  19228. <unmanaged-short>D3DFVF_TEX4</unmanaged-short>
  19229. </member>
  19230. <member name="F:SharpDX.Direct3D9.VertexFormat.Texture5">
  19231. <summary>
  19232. No documentation.
  19233. </summary>
  19234. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEX5']/*" />
  19235. <msdn-id>bb172559</msdn-id>
  19236. <unmanaged>D3DFVF_TEX5</unmanaged>
  19237. <unmanaged-short>D3DFVF_TEX5</unmanaged-short>
  19238. </member>
  19239. <member name="F:SharpDX.Direct3D9.VertexFormat.Texture6">
  19240. <summary>
  19241. No documentation.
  19242. </summary>
  19243. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEX6']/*" />
  19244. <msdn-id>bb172559</msdn-id>
  19245. <unmanaged>D3DFVF_TEX6</unmanaged>
  19246. <unmanaged-short>D3DFVF_TEX6</unmanaged-short>
  19247. </member>
  19248. <member name="F:SharpDX.Direct3D9.VertexFormat.Texture7">
  19249. <summary>
  19250. No documentation.
  19251. </summary>
  19252. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEX7']/*" />
  19253. <msdn-id>bb172559</msdn-id>
  19254. <unmanaged>D3DFVF_TEX7</unmanaged>
  19255. <unmanaged-short>D3DFVF_TEX7</unmanaged-short>
  19256. </member>
  19257. <member name="F:SharpDX.Direct3D9.VertexFormat.Texture8">
  19258. <summary>
  19259. No documentation.
  19260. </summary>
  19261. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_TEX8']/*" />
  19262. <msdn-id>bb172559</msdn-id>
  19263. <unmanaged>D3DFVF_TEX8</unmanaged>
  19264. <unmanaged-short>D3DFVF_TEX8</unmanaged-short>
  19265. </member>
  19266. <member name="F:SharpDX.Direct3D9.VertexFormat.LastBetaUByte4">
  19267. <summary>
  19268. No documentation.
  19269. </summary>
  19270. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_LASTBETA_UBYTE4']/*" />
  19271. <msdn-id>bb172559</msdn-id>
  19272. <unmanaged>D3DFVF_LASTBETA_UBYTE4</unmanaged>
  19273. <unmanaged-short>D3DFVF_LASTBETA_UBYTE4</unmanaged-short>
  19274. </member>
  19275. <member name="F:SharpDX.Direct3D9.VertexFormat.LastBetaColor">
  19276. <summary>
  19277. No documentation.
  19278. </summary>
  19279. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVF_LASTBETA_D3DCOLOR']/*" />
  19280. <msdn-id>bb172559</msdn-id>
  19281. <unmanaged>D3DFVF_LASTBETA_D3DCOLOR</unmanaged>
  19282. <unmanaged-short>D3DFVF_LASTBETA_D3DCOLOR</unmanaged-short>
  19283. </member>
  19284. <member name="F:SharpDX.Direct3D9.VertexFormat.None">
  19285. <summary>
  19286. None.
  19287. </summary>
  19288. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  19289. <unmanaged>None</unmanaged>
  19290. <unmanaged-short>None</unmanaged-short>
  19291. </member>
  19292. <member name="T:SharpDX.Direct3D9.VertexFormatCaps">
  19293. <summary>
  19294. No documentation.
  19295. </summary>
  19296. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVFCAPS']/*" />
  19297. <msdn-id>ff569467</msdn-id>
  19298. <unmanaged>D3DFVFCAPS</unmanaged>
  19299. <unmanaged-short>D3DFVFCAPS</unmanaged-short>
  19300. </member>
  19301. <member name="F:SharpDX.Direct3D9.VertexFormatCaps.TextureCoordCountMask">
  19302. <summary>
  19303. No documentation.
  19304. </summary>
  19305. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVFCAPS_TEXCOORDCOUNTMASK']/*" />
  19306. <msdn-id>ff569467</msdn-id>
  19307. <unmanaged>D3DFVFCAPS_TEXCOORDCOUNTMASK</unmanaged>
  19308. <unmanaged-short>D3DFVFCAPS_TEXCOORDCOUNTMASK</unmanaged-short>
  19309. </member>
  19310. <member name="F:SharpDX.Direct3D9.VertexFormatCaps.DoNotStripElements">
  19311. <summary>
  19312. No documentation.
  19313. </summary>
  19314. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVFCAPS_DONOTSTRIPELEMENTS']/*" />
  19315. <msdn-id>ff569467</msdn-id>
  19316. <unmanaged>D3DFVFCAPS_DONOTSTRIPELEMENTS</unmanaged>
  19317. <unmanaged-short>D3DFVFCAPS_DONOTSTRIPELEMENTS</unmanaged-short>
  19318. </member>
  19319. <member name="F:SharpDX.Direct3D9.VertexFormatCaps.PointSize">
  19320. <summary>
  19321. No documentation.
  19322. </summary>
  19323. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DFVFCAPS_PSIZE']/*" />
  19324. <msdn-id>ff569467</msdn-id>
  19325. <unmanaged>D3DFVFCAPS_PSIZE</unmanaged>
  19326. <unmanaged-short>D3DFVFCAPS_PSIZE</unmanaged-short>
  19327. </member>
  19328. <member name="T:SharpDX.Direct3D9.VertexFormatDeclaratorCount">
  19329. <summary>
  19330. <p>This constant is the maximum number of vertex declarators for a mesh.</p>
  19331. </summary>
  19332. <remarks>
  19333. <p>MAXD3DDECLLENGTH is defined as a maximum of 64 (see d3d9types.h). This does not include the "end" marker vertex element.</p>
  19334. </remarks>
  19335. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='_MAX_FVF_DECL_SIZE']/*" />
  19336. <msdn-id>bb147183</msdn-id>
  19337. <unmanaged>_MAX_FVF_DECL_SIZE</unmanaged>
  19338. <unmanaged-short>_MAX_FVF_DECL_SIZE</unmanaged-short>
  19339. </member>
  19340. <member name="F:SharpDX.Direct3D9.VertexFormatDeclaratorCount.Max">
  19341. <summary>
  19342. <dd> <p>The maximum number of elements in the vertex declaration. The additional (+1) is for <strong>D3DDECL_END</strong>.</p> </dd>
  19343. </summary>
  19344. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='MAX_FVF_DECL_SIZE']/*" />
  19345. <msdn-id>bb147183</msdn-id>
  19346. <unmanaged>MAX_FVF_DECL_SIZE</unmanaged>
  19347. <unmanaged-short>MAX_FVF_DECL_SIZE</unmanaged-short>
  19348. </member>
  19349. <member name="T:SharpDX.Direct3D9.VertexProcessingCaps">
  19350. <summary>
  19351. <p>A combination of one or more flags that control the device create behavior.</p>
  19352. </summary>
  19353. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVTXPCAPS']/*" />
  19354. <msdn-id>bb172637</msdn-id>
  19355. <unmanaged>D3DVTXPCAPS</unmanaged>
  19356. <unmanaged-short>D3DVTXPCAPS</unmanaged-short>
  19357. </member>
  19358. <member name="F:SharpDX.Direct3D9.VertexProcessingCaps.TextureGen">
  19359. <summary>
  19360. No documentation.
  19361. </summary>
  19362. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVTXPCAPS_TEXGEN']/*" />
  19363. <msdn-id>bb172637</msdn-id>
  19364. <unmanaged>D3DVTXPCAPS_TEXGEN</unmanaged>
  19365. <unmanaged-short>D3DVTXPCAPS_TEXGEN</unmanaged-short>
  19366. </member>
  19367. <member name="F:SharpDX.Direct3D9.VertexProcessingCaps.MaterialSource7">
  19368. <summary>
  19369. No documentation.
  19370. </summary>
  19371. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVTXPCAPS_MATERIALSOURCE7']/*" />
  19372. <msdn-id>bb172637</msdn-id>
  19373. <unmanaged>D3DVTXPCAPS_MATERIALSOURCE7</unmanaged>
  19374. <unmanaged-short>D3DVTXPCAPS_MATERIALSOURCE7</unmanaged-short>
  19375. </member>
  19376. <member name="F:SharpDX.Direct3D9.VertexProcessingCaps.DirectionalLights">
  19377. <summary>
  19378. No documentation.
  19379. </summary>
  19380. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVTXPCAPS_DIRECTIONALLIGHTS']/*" />
  19381. <msdn-id>bb172637</msdn-id>
  19382. <unmanaged>D3DVTXPCAPS_DIRECTIONALLIGHTS</unmanaged>
  19383. <unmanaged-short>D3DVTXPCAPS_DIRECTIONALLIGHTS</unmanaged-short>
  19384. </member>
  19385. <member name="F:SharpDX.Direct3D9.VertexProcessingCaps.PositionalLights">
  19386. <summary>
  19387. No documentation.
  19388. </summary>
  19389. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVTXPCAPS_POSITIONALLIGHTS']/*" />
  19390. <msdn-id>bb172637</msdn-id>
  19391. <unmanaged>D3DVTXPCAPS_POSITIONALLIGHTS</unmanaged>
  19392. <unmanaged-short>D3DVTXPCAPS_POSITIONALLIGHTS</unmanaged-short>
  19393. </member>
  19394. <member name="F:SharpDX.Direct3D9.VertexProcessingCaps.LocalViewer">
  19395. <summary>
  19396. No documentation.
  19397. </summary>
  19398. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVTXPCAPS_LOCALVIEWER']/*" />
  19399. <msdn-id>bb172637</msdn-id>
  19400. <unmanaged>D3DVTXPCAPS_LOCALVIEWER</unmanaged>
  19401. <unmanaged-short>D3DVTXPCAPS_LOCALVIEWER</unmanaged-short>
  19402. </member>
  19403. <member name="F:SharpDX.Direct3D9.VertexProcessingCaps.Tweening">
  19404. <summary>
  19405. No documentation.
  19406. </summary>
  19407. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVTXPCAPS_TWEENING']/*" />
  19408. <msdn-id>bb172637</msdn-id>
  19409. <unmanaged>D3DVTXPCAPS_TWEENING</unmanaged>
  19410. <unmanaged-short>D3DVTXPCAPS_TWEENING</unmanaged-short>
  19411. </member>
  19412. <member name="F:SharpDX.Direct3D9.VertexProcessingCaps.TexGenSphereMap">
  19413. <summary>
  19414. No documentation.
  19415. </summary>
  19416. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVTXPCAPS_TEXGEN_SPHEREMAP']/*" />
  19417. <msdn-id>bb172637</msdn-id>
  19418. <unmanaged>D3DVTXPCAPS_TEXGEN_SPHEREMAP</unmanaged>
  19419. <unmanaged-short>D3DVTXPCAPS_TEXGEN_SPHEREMAP</unmanaged-short>
  19420. </member>
  19421. <member name="F:SharpDX.Direct3D9.VertexProcessingCaps.NoTexGenNonLocalViewer">
  19422. <summary>
  19423. No documentation.
  19424. </summary>
  19425. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVTXPCAPS_NO_TEXGEN_NONLOCALVIEWER']/*" />
  19426. <msdn-id>bb172637</msdn-id>
  19427. <unmanaged>D3DVTXPCAPS_NO_TEXGEN_NONLOCALVIEWER</unmanaged>
  19428. <unmanaged-short>D3DVTXPCAPS_NO_TEXGEN_NONLOCALVIEWER</unmanaged-short>
  19429. </member>
  19430. <member name="T:SharpDX.Direct3D9.VertexShaderCaps">
  19431. <summary>
  19432. <p>Vertex shader caps constants. These constants are used by the VS20Caps member of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p>
  19433. </summary>
  19434. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVS20CAPS']/*" />
  19435. <msdn-id>bb172634</msdn-id>
  19436. <unmanaged>D3DVS20CAPS</unmanaged>
  19437. <unmanaged-short>D3DVS20CAPS</unmanaged-short>
  19438. </member>
  19439. <member name="F:SharpDX.Direct3D9.VertexShaderCaps.Predication">
  19440. <summary>
  19441. No documentation.
  19442. </summary>
  19443. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVS20CAPS_PREDICATION']/*" />
  19444. <msdn-id>bb172634</msdn-id>
  19445. <unmanaged>D3DVS20CAPS_PREDICATION</unmanaged>
  19446. <unmanaged-short>D3DVS20CAPS_PREDICATION</unmanaged-short>
  19447. </member>
  19448. <member name="F:SharpDX.Direct3D9.VertexShaderCaps.None">
  19449. <summary>
  19450. None.
  19451. </summary>
  19452. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='']/*" />
  19453. <unmanaged>None</unmanaged>
  19454. <unmanaged-short>None</unmanaged-short>
  19455. </member>
  19456. <member name="T:SharpDX.Direct3D9.VertexTextureSampler">
  19457. <summary>
  19458. <p>Vertex texture sampler constants.</p><p>These constants identify the texture samplers used by vertex shaders.</p>
  19459. </summary>
  19460. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXTEXTURESAMPLER']/*" />
  19461. <msdn-id>bb172631</msdn-id>
  19462. <unmanaged>D3DVERTEXTEXTURESAMPLER</unmanaged>
  19463. <unmanaged-short>D3DVERTEXTEXTURESAMPLER</unmanaged-short>
  19464. </member>
  19465. <member name="F:SharpDX.Direct3D9.VertexTextureSampler.Sampler0">
  19466. <summary>
  19467. No documentation.
  19468. </summary>
  19469. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXTEXTURESAMPLER0']/*" />
  19470. <msdn-id>bb172631</msdn-id>
  19471. <unmanaged>D3DVERTEXTEXTURESAMPLER0</unmanaged>
  19472. <unmanaged-short>D3DVERTEXTEXTURESAMPLER0</unmanaged-short>
  19473. </member>
  19474. <member name="F:SharpDX.Direct3D9.VertexTextureSampler.Sampler1">
  19475. <summary>
  19476. No documentation.
  19477. </summary>
  19478. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXTEXTURESAMPLER1']/*" />
  19479. <msdn-id>bb172631</msdn-id>
  19480. <unmanaged>D3DVERTEXTEXTURESAMPLER1</unmanaged>
  19481. <unmanaged-short>D3DVERTEXTEXTURESAMPLER1</unmanaged-short>
  19482. </member>
  19483. <member name="F:SharpDX.Direct3D9.VertexTextureSampler.Sampler2">
  19484. <summary>
  19485. No documentation.
  19486. </summary>
  19487. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXTEXTURESAMPLER2']/*" />
  19488. <msdn-id>bb172631</msdn-id>
  19489. <unmanaged>D3DVERTEXTEXTURESAMPLER2</unmanaged>
  19490. <unmanaged-short>D3DVERTEXTEXTURESAMPLER2</unmanaged-short>
  19491. </member>
  19492. <member name="F:SharpDX.Direct3D9.VertexTextureSampler.Sampler3">
  19493. <summary>
  19494. No documentation.
  19495. </summary>
  19496. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXTEXTURESAMPLER3']/*" />
  19497. <msdn-id>bb172631</msdn-id>
  19498. <unmanaged>D3DVERTEXTEXTURESAMPLER3</unmanaged>
  19499. <unmanaged-short>D3DVERTEXTEXTURESAMPLER3</unmanaged-short>
  19500. </member>
  19501. <member name="F:SharpDX.Direct3D9.VertexTextureSampler.DisplacementMapSampler">
  19502. <summary>
  19503. No documentation.
  19504. </summary>
  19505. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXTEXTURESAMPLERMAPSAMPLER']/*" />
  19506. <msdn-id>bb172631</msdn-id>
  19507. <unmanaged>D3DVERTEXTEXTURESAMPLERMAPSAMPLER</unmanaged>
  19508. <unmanaged-short>D3DVERTEXTEXTURESAMPLERMAPSAMPLER</unmanaged-short>
  19509. </member>
  19510. <member name="T:SharpDX.Direct3D9.VideoSubType">
  19511. <summary>
  19512. <p>Specifies the type of I/O bus used by the graphics adapter.</p>
  19513. </summary>
  19514. <remarks>
  19515. <p>As many as three flags can be set. Flags in the range 0x00 through 0x04 (<strong>D3DBUSTYPE_Xxx</strong>) provide the basic bus type. Flags in the range 0x10000 through 0x50000 (<strong>D3DBUSIMPL_MODIFIER_Xxx</strong>) modify the basic description. The driver sets one bus-type flag, and can set zero or one modifier flag. If the driver sets a modifier flag, it also sets the <strong><see cref="F:SharpDX.Direct3D9.VideoSubType.NonStandard" /></strong> flag. Flags are combined with a bitwise <strong>OR</strong>. </p>
  19516. </remarks>
  19517. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSTYPE']/*" />
  19518. <msdn-id>dd318379</msdn-id>
  19519. <unmanaged>D3DBUSTYPE</unmanaged>
  19520. <unmanaged-short>D3DBUSTYPE</unmanaged-short>
  19521. </member>
  19522. <member name="F:SharpDX.Direct3D9.VideoSubType.Other">
  19523. <summary>
  19524. <dd> <p>Indicates a type of bus other than the types listed here.
  19525. </p> </dd>
  19526. </summary>
  19527. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSTYPE_OTHER']/*" />
  19528. <msdn-id>dd318379</msdn-id>
  19529. <unmanaged>D3DBUSTYPE_OTHER</unmanaged>
  19530. <unmanaged-short>D3DBUSTYPE_OTHER</unmanaged-short>
  19531. </member>
  19532. <member name="F:SharpDX.Direct3D9.VideoSubType.Pci">
  19533. <summary>
  19534. <dd> <p>PCI bus.
  19535. </p> </dd>
  19536. </summary>
  19537. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSTYPE_PCI']/*" />
  19538. <msdn-id>dd318379</msdn-id>
  19539. <unmanaged>D3DBUSTYPE_PCI</unmanaged>
  19540. <unmanaged-short>D3DBUSTYPE_PCI</unmanaged-short>
  19541. </member>
  19542. <member name="F:SharpDX.Direct3D9.VideoSubType.PciX">
  19543. <summary>
  19544. <dd> <p>PCI-X bus.
  19545. </p> </dd>
  19546. </summary>
  19547. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSTYPE_PCIX']/*" />
  19548. <msdn-id>dd318379</msdn-id>
  19549. <unmanaged>D3DBUSTYPE_PCIX</unmanaged>
  19550. <unmanaged-short>D3DBUSTYPE_PCIX</unmanaged-short>
  19551. </member>
  19552. <member name="F:SharpDX.Direct3D9.VideoSubType.PciExpress">
  19553. <summary>
  19554. <dd> <p>PCI Express bus.
  19555. </p> </dd>
  19556. </summary>
  19557. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSTYPE_PCIEXPRESS']/*" />
  19558. <msdn-id>dd318379</msdn-id>
  19559. <unmanaged>D3DBUSTYPE_PCIEXPRESS</unmanaged>
  19560. <unmanaged-short>D3DBUSTYPE_PCIEXPRESS</unmanaged-short>
  19561. </member>
  19562. <member name="F:SharpDX.Direct3D9.VideoSubType.Agp">
  19563. <summary>
  19564. <dd> <p>Accelerated Graphics Port (AGP) bus.
  19565. </p> </dd>
  19566. </summary>
  19567. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSTYPE_AGP']/*" />
  19568. <msdn-id>dd318379</msdn-id>
  19569. <unmanaged>D3DBUSTYPE_AGP</unmanaged>
  19570. <unmanaged-short>D3DBUSTYPE_AGP</unmanaged-short>
  19571. </member>
  19572. <member name="F:SharpDX.Direct3D9.VideoSubType.InsideOfChipset">
  19573. <summary>
  19574. <dd> <p>The implementation for the graphics adapter is in a motherboard chipset's north bridge. This flag implies that data never goes over an expansion bus (such as PCI or AGP) when it is transferred from main memory to the graphics adapter.</p> </dd>
  19575. </summary>
  19576. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSIMPL_MODIFIER_INSIDE_OF_CHIPSET']/*" />
  19577. <msdn-id>dd318379</msdn-id>
  19578. <unmanaged>D3DBUSIMPL_MODIFIER_INSIDE_OF_CHIPSET</unmanaged>
  19579. <unmanaged-short>D3DBUSIMPL_MODIFIER_INSIDE_OF_CHIPSET</unmanaged-short>
  19580. </member>
  19581. <member name="F:SharpDX.Direct3D9.VideoSubType.TracksOnMotherBoardToChip">
  19582. <summary>
  19583. <dd> <p>Indicates that the graphics adapter is connected to a motherboard chipset's north bridge by tracks on the motherboard and all of the graphics adapter's chips are soldered to the motherboard. This flag implies that data never goes over an expansion bus (such as PCI or AGP) when it is transferred from main memory to the graphics adapter.</p> </dd>
  19584. </summary>
  19585. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSIMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP']/*" />
  19586. <msdn-id>dd318379</msdn-id>
  19587. <unmanaged>D3DBUSIMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP</unmanaged>
  19588. <unmanaged-short>D3DBUSIMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP</unmanaged-short>
  19589. </member>
  19590. <member name="F:SharpDX.Direct3D9.VideoSubType.TracksOnMotherBoardToSocket">
  19591. <summary>
  19592. <dd> <p>The graphics adapter is connected to a motherboard chipset's north bridge by tracks on the motherboard, and all of the graphics adapter's chips are connected through sockets to the motherboard.
  19593. </p> </dd>
  19594. </summary>
  19595. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSIMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET']/*" />
  19596. <msdn-id>dd318379</msdn-id>
  19597. <unmanaged>D3DBUSIMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET</unmanaged>
  19598. <unmanaged-short>D3DBUSIMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET</unmanaged-short>
  19599. </member>
  19600. <member name="F:SharpDX.Direct3D9.VideoSubType.DaughterBoardConnector">
  19601. <summary>
  19602. <dd> <p>The graphics adapter is connected to the motherboard through a daughterboard connector.
  19603. </p> </dd>
  19604. </summary>
  19605. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSIMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR']/*" />
  19606. <msdn-id>dd318379</msdn-id>
  19607. <unmanaged>D3DBUSIMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR</unmanaged>
  19608. <unmanaged-short>D3DBUSIMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR</unmanaged-short>
  19609. </member>
  19610. <member name="F:SharpDX.Direct3D9.VideoSubType.DaughterBoardConnectorInsideOfNuae">
  19611. <summary>
  19612. <dd> <p>The graphics adapter is connected to the motherboard through a daughterboard connector, and the graphics adapter is inside an enclosure that is not user accessible.
  19613. </p> </dd>
  19614. </summary>
  19615. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSIMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE']/*" />
  19616. <msdn-id>dd318379</msdn-id>
  19617. <unmanaged>D3DBUSIMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE</unmanaged>
  19618. <unmanaged-short>D3DBUSIMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE</unmanaged-short>
  19619. </member>
  19620. <member name="F:SharpDX.Direct3D9.VideoSubType.NonStandard">
  19621. <summary>
  19622. <dd> <p>One of the D3DBUSIMPL_MODIFIER_MODIFIER_Xxx flags is set.
  19623. </p> </dd>
  19624. </summary>
  19625. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBUSIMPL_MODIFIER_NON_STANDARD']/*" />
  19626. <msdn-id>dd318379</msdn-id>
  19627. <unmanaged>D3DBUSIMPL_MODIFIER_NON_STANDARD</unmanaged>
  19628. <unmanaged-short>D3DBUSIMPL_MODIFIER_NON_STANDARD</unmanaged-short>
  19629. </member>
  19630. <member name="T:SharpDX.Direct3D9.WeldFlags">
  19631. <summary>
  19632. <p>Options for welding together vertices.</p>
  19633. </summary>
  19634. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='_D3DXWELDEPSILONSFLAGS']/*" />
  19635. <msdn-id>bb205561</msdn-id>
  19636. <unmanaged>_D3DXWELDEPSILONSFLAGS</unmanaged>
  19637. <unmanaged-short>_D3DXWELDEPSILONSFLAGS</unmanaged-short>
  19638. </member>
  19639. <member name="F:SharpDX.Direct3D9.WeldFlags.WeldAll">
  19640. <summary>
  19641. <dd> <p>Weld together all vertices that are at the same location. Using this flag avoids an epsilon comparison between vertex components.</p> </dd>
  19642. </summary>
  19643. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS_WELDALL']/*" />
  19644. <msdn-id>bb205561</msdn-id>
  19645. <unmanaged>D3DXWELDEPSILONS_WELDALL</unmanaged>
  19646. <unmanaged-short>D3DXWELDEPSILONS_WELDALL</unmanaged-short>
  19647. </member>
  19648. <member name="F:SharpDX.Direct3D9.WeldFlags.WeldPartialMatches">
  19649. <summary>
  19650. <dd> <p>If a given vertex component is within epsilon, modify partially matched vertices so that both components are identical. If all components are equal, remove one of the vertices.</p> </dd>
  19651. </summary>
  19652. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS_WELDPARTIALMATCHES']/*" />
  19653. <msdn-id>bb205561</msdn-id>
  19654. <unmanaged>D3DXWELDEPSILONS_WELDPARTIALMATCHES</unmanaged>
  19655. <unmanaged-short>D3DXWELDEPSILONS_WELDPARTIALMATCHES</unmanaged-short>
  19656. </member>
  19657. <member name="F:SharpDX.Direct3D9.WeldFlags.DoNotRemoveVertices">
  19658. <summary>
  19659. <dd> <p>Instructs the weld to allow only modifications to vertices and not removal. This flag is valid only if <see cref="F:SharpDX.Direct3D9.WeldFlags.WeldPartialMatches" /> is set. It is useful to modify vertices to be equal, but not to allow vertices to be removed.</p> </dd>
  19660. </summary>
  19661. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS_DONOTREMOVEVERTICES']/*" />
  19662. <msdn-id>bb205561</msdn-id>
  19663. <unmanaged>D3DXWELDEPSILONS_DONOTREMOVEVERTICES</unmanaged>
  19664. <unmanaged-short>D3DXWELDEPSILONS_DONOTREMOVEVERTICES</unmanaged-short>
  19665. </member>
  19666. <member name="F:SharpDX.Direct3D9.WeldFlags.DoNotSplit">
  19667. <summary>
  19668. <dd> <p>Instructs the weld not to split vertices that are in separate attribute groups. When the <strong><see cref="M:SharpDX.Direct3D9.Mesh.Optimize(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.Mesh@)" /></strong> method is called with the <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.AttributeSort" /> flag, then the <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.DoNotSplit" /> flag will also be set. Setting this flag can slow down software vertex processing.</p> </dd>
  19669. </summary>
  19670. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS_DONOTSPLIT']/*" />
  19671. <msdn-id>bb205561</msdn-id>
  19672. <unmanaged>D3DXWELDEPSILONS_DONOTSPLIT</unmanaged>
  19673. <unmanaged-short>D3DXWELDEPSILONS_DONOTSPLIT</unmanaged-short>
  19674. </member>
  19675. <member name="T:SharpDX.Direct3D9.XFileFormat">
  19676. <summary>
  19677. No documentation.
  19678. </summary>
  19679. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXF_FILEFORMAT2']/*" />
  19680. <unmanaged>D3DXF_FILEFORMAT2</unmanaged>
  19681. <unmanaged-short>D3DXF_FILEFORMAT2</unmanaged-short>
  19682. </member>
  19683. <member name="F:SharpDX.Direct3D9.XFileFormat.Binary">
  19684. <summary>
  19685. No documentation.
  19686. </summary>
  19687. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXF_FILEFORMAT_BINARY']/*" />
  19688. <unmanaged>D3DXF_FILEFORMAT_BINARY</unmanaged>
  19689. <unmanaged-short>D3DXF_FILEFORMAT_BINARY</unmanaged-short>
  19690. </member>
  19691. <member name="F:SharpDX.Direct3D9.XFileFormat.Text">
  19692. <summary>
  19693. No documentation.
  19694. </summary>
  19695. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXF_FILEFORMAT_TEXT']/*" />
  19696. <unmanaged>D3DXF_FILEFORMAT_TEXT</unmanaged>
  19697. <unmanaged-short>D3DXF_FILEFORMAT_TEXT</unmanaged-short>
  19698. </member>
  19699. <member name="F:SharpDX.Direct3D9.XFileFormat.Compressed">
  19700. <summary>
  19701. No documentation.
  19702. </summary>
  19703. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXF_FILEFORMAT_COMPRESSED']/*" />
  19704. <unmanaged>D3DXF_FILEFORMAT_COMPRESSED</unmanaged>
  19705. <unmanaged-short>D3DXF_FILEFORMAT_COMPRESSED</unmanaged-short>
  19706. </member>
  19707. <member name="T:SharpDX.Direct3D9.ZBufferType">
  19708. <summary>
  19709. No documentation.
  19710. </summary>
  19711. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DZBUFFERTYPE']/*" />
  19712. <unmanaged>D3DZBUFFERTYPE</unmanaged>
  19713. <unmanaged-short>D3DZBUFFERTYPE</unmanaged-short>
  19714. </member>
  19715. <member name="F:SharpDX.Direct3D9.ZBufferType.DontUseZBuffer">
  19716. <summary>
  19717. No documentation.
  19718. </summary>
  19719. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DZB_FALSE']/*" />
  19720. <unmanaged>D3DZB_FALSE</unmanaged>
  19721. <unmanaged-short>D3DZB_FALSE</unmanaged-short>
  19722. </member>
  19723. <member name="F:SharpDX.Direct3D9.ZBufferType.UseZBuffer">
  19724. <summary>
  19725. No documentation.
  19726. </summary>
  19727. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DZB_TRUE']/*" />
  19728. <unmanaged>D3DZB_TRUE</unmanaged>
  19729. <unmanaged-short>D3DZB_TRUE</unmanaged-short>
  19730. </member>
  19731. <member name="F:SharpDX.Direct3D9.ZBufferType.UseWBuffer">
  19732. <summary>
  19733. No documentation.
  19734. </summary>
  19735. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DZB_USEW']/*" />
  19736. <unmanaged>D3DZB_USEW</unmanaged>
  19737. <unmanaged-short>D3DZB_USEW</unmanaged-short>
  19738. </member>
  19739. <member name="T:SharpDX.Direct3D9.D3D9">
  19740. <summary>
  19741. Functions
  19742. </summary>
  19743. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SharpDX.Direct3D9.D3D9']/*" />
  19744. </member>
  19745. <member name="F:SharpDX.Direct3D9.D3D9.SdkVersion">
  19746. <summary>Constant SdkVersion.</summary>
  19747. <unmanaged>D3D_SDK_VERSION</unmanaged>
  19748. </member>
  19749. <member name="M:SharpDX.Direct3D9.D3D9.Create9Ex(System.Int32,SharpDX.Direct3D9.Direct3DEx)">
  19750. <summary>
  19751. <p>Creates an <strong><see cref="T:SharpDX.Direct3D9.Direct3DEx" /></strong> object and returns an interface to it.</p>
  19752. </summary>
  19753. <param name="sDKVersion">No documentation.</param>
  19754. <param name="arg1">No documentation.</param>
  19755. <returns><ul> <li> <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" /> if Direct3DEx features are not supported (no WDDM driver is installed) or if the <strong>SDKVersion</strong> does not match the version of the DLL. </li> <li> D3DERR_OUTOFMEMORY if out-of-memory conditions are detected when creating the enumerator object. </li> <li><see cref="F:SharpDX.Result.Ok" /> if the creation of the enumerator object is successful.</li> </ul></returns>
  19756. <remarks>
  19757. <p> The <strong><see cref="T:SharpDX.Direct3D9.Direct3DEx" /></strong> object is the first object that the application creates and the last object thta the application releases. Functions for enumerating and retrieving capabilities of a device are accessible through the <strong><see cref="T:SharpDX.Direct3D9.Direct3DEx" /></strong> object. This enables applications to select devices without creating them. </p><p> The <strong><see cref="T:SharpDX.Direct3D9.Direct3DEx" /></strong> interface supports enumeration of active display adapters and allows the creation of <strong><see cref="T:SharpDX.Direct3D9.Direct3DEx" /></strong> objects. If the user dynamically adds adapters (either by adding devices to the desktop, or by hot-docking a laptop), these devices are not included in the enumeration. Creating a new <strong><see cref="T:SharpDX.Direct3D9.Direct3DEx" /></strong> interface will expose the new devices. </p><p> Pass the <see cref="F:SharpDX.Direct3D9.D3D9.SdkVersion" /> flag to this function to ensure that header files used in the compiled application match the version of the installed runtime DLLs. <see cref="F:SharpDX.Direct3D9.D3D9.SdkVersion" /> is changed in the runtime only when a header or another code change would require rebuilding the application. If this function fails, it indicates that the versions of the header file and the runtime DLL do not match. </p><p><strong>Note</strong>??Direct3DCreate9Ex is supported only in Windows Vista, Windows Server 2008, and Windows 7. Earlier versions of the D3D9.dll library do not include Direct3D9Ex and Direct3DCreate9Ex. </p>
  19758. </remarks>
  19759. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='Direct3DCreate9Ex']/*" />
  19760. <msdn-id>bb219676</msdn-id>
  19761. <unmanaged>HRESULT Direct3DCreate9Ex([In] unsigned int SDKVersion,[Out, Fast] IDirect3D9Ex** arg1)</unmanaged>
  19762. <unmanaged-short>Direct3DCreate9Ex</unmanaged-short>
  19763. </member>
  19764. <member name="M:SharpDX.Direct3D9.D3D9.Create9(System.Int32)">
  19765. <summary>
  19766. <p>Create an <see cref="T:SharpDX.Direct3D9.Direct3D" /> object and return an interface to it.</p>
  19767. </summary>
  19768. <param name="sDKVersion"><dd> <p>The value of this parameter should be <see cref="F:SharpDX.Direct3D9.D3D9.SdkVersion" />. See Remarks.</p> </dd></param>
  19769. <returns><p>If successful, this function returns a reference to an <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> interface; otherwise, a <strong><c>null</c></strong> reference is returned.</p></returns>
  19770. <remarks>
  19771. <p>The Direct3D object is the first Direct3D COM object that your graphical application needs to create and the last object that your application needs to release. Functions for enumerating and retrieving capabilities of a device are accessible through the Direct3D object. This enables applications to select devices without creating them.</p><p>Create an <see cref="T:SharpDX.Direct3D9.Direct3D" /> object as shown here:</p><pre> LPDIRECT3D9 g_pD3D = <c>null</c>; if( <c>null</c> == (g_pD3D = Direct3DCreate9(<see cref="F:SharpDX.Direct3D9.D3D9.SdkVersion" />))) return E_FAIL;
  19772. </pre><p>The <see cref="T:SharpDX.Direct3D9.Direct3D" /> interface supports enumeration of active display adapters and allows the creation of <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> objects. If the user dynamically adds adapters (either by adding devices to the desktop, or by hot-docking a laptop), those devices will not be included in the enumeration. Creating a new <see cref="T:SharpDX.Direct3D9.Direct3D" /> interface will expose the new devices.</p><p><see cref="F:SharpDX.Direct3D9.D3D9.SdkVersion" /> is passed to this function to ensure that the header files against which an application is compiled match the version of the runtime DLL's that are installed on the machine. <see cref="F:SharpDX.Direct3D9.D3D9.SdkVersion" /> is only changed in the runtime when a header change (or other code change) would require an application to be rebuilt. If this function fails, it indicates that the header file version does not match the runtime DLL version.</p><p>For an example, see Creating a Device (Direct3D 9).</p>
  19773. </remarks>
  19774. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='Direct3DCreate9']/*" />
  19775. <msdn-id>bb219685</msdn-id>
  19776. <unmanaged>IDirect3D9* Direct3DCreate9([In] unsigned int SDKVersion)</unmanaged>
  19777. <unmanaged-short>Direct3DCreate9</unmanaged-short>
  19778. </member>
  19779. <member name="T:SharpDX.Direct3D9.D3DX9">
  19780. <summary>
  19781. Functions
  19782. </summary>
  19783. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SharpDX.Direct3D9.D3DX9']/*" />
  19784. </member>
  19785. <member name="F:SharpDX.Direct3D9.D3DX9.Version">
  19786. <summary>Constant Version.</summary>
  19787. <unmanaged>D3DX_VERSION</unmanaged>
  19788. </member>
  19789. <member name="F:SharpDX.Direct3D9.D3DX9.SdkVersion">
  19790. <summary>Constant SdkVersion.</summary>
  19791. <unmanaged>D3DX_SDK_VERSION</unmanaged>
  19792. </member>
  19793. <member name="M:SharpDX.Direct3D9.D3DX9.SetMarker(SharpDX.Mathematics.Interop.RawColorBGRA,System.String)">
  19794. <summary>
  19795. No documentation.
  19796. </summary>
  19797. <param name="col">No documentation.</param>
  19798. <param name="wszName">No documentation.</param>
  19799. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPERF_SetMarker']/*" />
  19800. <unmanaged>void D3DPERF_SetMarker([In] D3DCOLOR col,[In] const wchar_t* wszName)</unmanaged>
  19801. <unmanaged-short>D3DPERF_SetMarker</unmanaged-short>
  19802. </member>
  19803. <member name="M:SharpDX.Direct3D9.D3DX9.SetOptions(System.Int32)">
  19804. <summary>
  19805. No documentation.
  19806. </summary>
  19807. <param name="dwOptions">No documentation.</param>
  19808. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPERF_SetOptions']/*" />
  19809. <unmanaged>void D3DPERF_SetOptions([In] unsigned int dwOptions)</unmanaged>
  19810. <unmanaged-short>D3DPERF_SetOptions</unmanaged-short>
  19811. </member>
  19812. <member name="M:SharpDX.Direct3D9.D3DX9.GetStatus">
  19813. <summary>
  19814. No documentation.
  19815. </summary>
  19816. <returns>No documentation.</returns>
  19817. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPERF_GetStatus']/*" />
  19818. <unmanaged>unsigned int D3DPERF_GetStatus()</unmanaged>
  19819. <unmanaged-short>D3DPERF_GetStatus</unmanaged-short>
  19820. </member>
  19821. <member name="M:SharpDX.Direct3D9.D3DX9.SetRegion(SharpDX.Mathematics.Interop.RawColorBGRA,System.String)">
  19822. <summary>
  19823. No documentation.
  19824. </summary>
  19825. <param name="col">No documentation.</param>
  19826. <param name="wszName">No documentation.</param>
  19827. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPERF_SetRegion']/*" />
  19828. <unmanaged>void D3DPERF_SetRegion([In] D3DCOLOR col,[In] const wchar_t* wszName)</unmanaged>
  19829. <unmanaged-short>D3DPERF_SetRegion</unmanaged-short>
  19830. </member>
  19831. <member name="M:SharpDX.Direct3D9.D3DX9.EndEvent">
  19832. <summary>
  19833. No documentation.
  19834. </summary>
  19835. <returns>No documentation.</returns>
  19836. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPERF_EndEvent']/*" />
  19837. <unmanaged>int D3DPERF_EndEvent()</unmanaged>
  19838. <unmanaged-short>D3DPERF_EndEvent</unmanaged-short>
  19839. </member>
  19840. <member name="M:SharpDX.Direct3D9.D3DX9.BeginEvent(SharpDX.Mathematics.Interop.RawColorBGRA,System.String)">
  19841. <summary>
  19842. <p>Marks the beginning of a section of event code.</p>
  19843. </summary>
  19844. <param name="col"><dd> <p>A <strong><c>null</c></strong>-terminated <strong>UNICODE</strong> string that contains the name of the event. The name is not relevant to the operating system. You can choose a name that is meaningful when the calling application is running under the Direct3D profiling tool.A <strong><c>null</c></strong> reference produces undefined results.</p> </dd></param>
  19845. <param name="wszName">No documentation.</param>
  19846. <returns><p>Returns the number of previous calls to <strong>BeginEvent</strong> that have not yet been finalized by calls to the <strong>ID3DUserDefinedAnnotation::EndEvent</strong> method.</p><p>The return value is ?1 if the calling application is not running under a Direct3D profiling tool.</p></returns>
  19847. <remarks>
  19848. <p>You call the <strong>EndEvent</strong> method to mark the end of the section of event code.</p><p>A user can visualize the event when the calling application is running under an enabled Direct3D profiling tool such as Microsoft Visual Studio Ultimate?2012.</p><p><strong>BeginEvent</strong> has no effect if the calling application is not running under an enabled Direct3D profiling tool.</p>
  19849. </remarks>
  19850. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPERF_BeginEvent']/*" />
  19851. <msdn-id>hh446884</msdn-id>
  19852. <unmanaged>int D3DPERF_BeginEvent([In] D3DCOLOR col,[In] const wchar_t* wszName)</unmanaged>
  19853. <unmanaged-short>D3DPERF_BeginEvent</unmanaged-short>
  19854. </member>
  19855. <member name="M:SharpDX.Direct3D9.D3DX9.QueryRepeatFrame">
  19856. <summary>
  19857. No documentation.
  19858. </summary>
  19859. <returns>No documentation.</returns>
  19860. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPERF_QueryRepeatFrame']/*" />
  19861. <unmanaged>BOOL D3DPERF_QueryRepeatFrame()</unmanaged>
  19862. <unmanaged-short>D3DPERF_QueryRepeatFrame</unmanaged-short>
  19863. </member>
  19864. <member name="M:SharpDX.Direct3D9.D3DX9.FrameAppendChild(SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.Frame@)">
  19865. <summary>
  19866. <p>Adds a child frame to a frame.</p>
  19867. </summary>
  19868. <param name="frameParentRef"><dd> <p>Pointer to the parent node.</p> </dd></param>
  19869. <param name="frameChildRef"><dd> <p>Pointer to the child node.</p> </dd></param>
  19870. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  19871. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFrameAppendChild']/*" />
  19872. <msdn-id>bb172846</msdn-id>
  19873. <unmanaged>HRESULT D3DXFrameAppendChild([In] D3DXFRAME* pFrameParent,[In] const D3DXFRAME* pFrameChild)</unmanaged>
  19874. <unmanaged-short>D3DXFrameAppendChild</unmanaged-short>
  19875. </member>
  19876. <member name="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)">
  19877. <summary>
  19878. <p>Loads the first frame hierarchy from a .x file.</p>
  19879. </summary>
  19880. <param name="filename"><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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  19881. <param name="meshOptions"><dd> <p>Combination of one or more flags from the <strong>D3DXMESH</strong> enumeration that specify creation options for the mesh.</p> </dd></param>
  19882. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device object associated with the mesh.</p> </dd></param>
  19883. <param name="allocRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.IAllocateHierarchy" /></strong> interface.</p> </dd></param>
  19884. <param name="userDataLoaderRef"><dd> <p>Application provided interface that allows loading of user data. See <strong><see cref="T:SharpDX.Direct3D9.ILoadUserData" /></strong>.</p> </dd></param>
  19885. <param name="frameHierarchyOut"><dd> <p>Returns a reference to the loaded frame hierarchy. See <strong><see cref="T:SharpDX.Direct3D9.Frame" /></strong>.</p> </dd></param>
  19886. <param name="animControllerOut"><dd> <p>Returns a reference to the animation controller corresponding to animation in the .x file. This is created with default tracks and events. See <strong><see cref="T:SharpDX.Direct3D9.AnimationController" /></strong>.</p> </dd></param>
  19887. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  19888. <remarks>
  19889. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" />. Otherwise, the function call resolves to D3DXLoadMeshHierarchyFromXA.</p><p>All the meshes in the file will be collapsed into one output mesh. If the file contains a frame hierarchy, all the transformations will be applied to the mesh.</p><p><strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> loads the animation data and frame hierarchy from a .x file. It scans the .x file and builds a frame hierarchy and animation controller according to the <strong><see cref="T:SharpDX.Direct3D9.IAllocateHierarchy" /></strong>-derived object passed to it through pAlloc. Loading the data requires several steps as follows:</p><ol> <li>Derive <strong><see cref="T:SharpDX.Direct3D9.IAllocateHierarchy" /></strong>, implementing each method. This controls how frames and meshes are allocated and freed.</li> <li>Derive <strong><see cref="T:SharpDX.Direct3D9.ILoadUserData" /></strong>, implementing each method. If your .x file has no embedded user-defined data, or if you do not need it, you can skip this part.</li> <li>Create an object of your <strong><see cref="T:SharpDX.Direct3D9.IAllocateHierarchy" /></strong> class, and optionally of your LoadUserData class. You do not need to call any methods of these objects yourself.</li> <li>Call <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong>, passing in your <strong><see cref="T:SharpDX.Direct3D9.IAllocateHierarchy" /></strong> object and your <strong><see cref="T:SharpDX.Direct3D9.ILoadUserData" /></strong> object (or <strong><c>null</c></strong>) to create the frame hierarchy and animation controller. All the animation sets and frames are automatically registered to the animation controller.</li> </ol><p>During the load, <strong>CreateFrame</strong> and <strong>LoadFrameChildData</strong> are called back on each frame to control loading and allocation of the frame. The application defines these methods to control how frames are stored. <strong>CreateMeshContainer</strong> and <strong>LoadMeshChildData</strong> are called back on each mesh object to control loading and allocation of mesh objects. <strong>LoadTopLevelData</strong> is called back for each top level object that doesn't get loaded by the other methods.</p><p>To free this data, call ID3DXAnimationController::Release to free the animation sets, and <strong>D3DXFRAMEDestroy</strong>, passing in the root node of the frame hierarchy and an object of your derived <strong><see cref="T:SharpDX.Direct3D9.IAllocateHierarchy" /></strong> class. <strong>DestroyFrame</strong> and <strong>DestroyMeshContainer</strong> will each be called for every frame and mesh object in the frame hierarchy. Your implementation of <strong>DestroyFrame</strong> should release everything allocated by <strong>CreateFrame</strong>, and likewise for the mesh container methods.</p>
  19890. </remarks>
  19891. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadMeshHierarchyFromXW']/*" />
  19892. <msdn-id>bb172894</msdn-id>
  19893. <unmanaged>HRESULT D3DXLoadMeshHierarchyFromXW([In] const wchar_t* Filename,[In] unsigned int MeshOptions,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXAllocateHierarchy* pAlloc,[In] ID3DXLoadUserData* pUserDataLoader,[In] D3DXFRAME** ppFrameHierarchy,[In] ID3DXAnimationController** ppAnimController)</unmanaged>
  19894. <unmanaged-short>D3DXLoadMeshHierarchyFromXW</unmanaged-short>
  19895. </member>
  19896. <member name="M:SharpDX.Direct3D9.D3DX9.FrameRegisterNamedMatrices(SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController)">
  19897. <summary>
  19898. <p>Given a frame hierarchy, registers all the named matrices in the animation mixer.</p>
  19899. </summary>
  19900. <param name="frameRootRef"><dd> <p>The top level node in the frame hierarchy.</p> </dd></param>
  19901. <param name="animControllerRef"><dd> <p>Pointer to the animation controller object.</p> </dd></param>
  19902. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  19903. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFrameRegisterNamedMatrices']/*" />
  19904. <msdn-id>bb172851</msdn-id>
  19905. <unmanaged>HRESULT D3DXFrameRegisterNamedMatrices([In] D3DXFRAME* pFrameRoot,[In] ID3DXAnimationController* pAnimController)</unmanaged>
  19906. <unmanaged-short>D3DXFrameRegisterNamedMatrices</unmanaged-short>
  19907. </member>
  19908. <member name="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXInMemory(System.IntPtr,System.Int32,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)">
  19909. <summary>
  19910. <p>Loads the first frame hierarchy from a .x file.</p>
  19911. </summary>
  19912. <param name="memory"><dd> <p>Pointer to a buffer that contains the mesh hierarchy.</p> </dd></param>
  19913. <param name="sizeOfMemory"><dd> <p>Size of the pMemory buffer, in bytes.</p> </dd></param>
  19914. <param name="meshOptions"><dd> <p>Combination of one or more flags from the <strong>D3DXMESH</strong> enumeration that specify creation options for the mesh.</p> </dd></param>
  19915. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device object associated with the mesh.</p> </dd></param>
  19916. <param name="allocRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.IAllocateHierarchy" /></strong> interface.</p> </dd></param>
  19917. <param name="userDataLoaderRef"><dd> <p>Application provided interface that allows loading of user data. See <strong><see cref="T:SharpDX.Direct3D9.ILoadUserData" /></strong>.</p> </dd></param>
  19918. <param name="frameHierarchyOut"><dd> <p>Returns a reference to the loaded frame hierarchy. See <strong><see cref="T:SharpDX.Direct3D9.Frame" /></strong>.</p> </dd></param>
  19919. <param name="animControllerOut"><dd> <p>Returns a reference to the animation controller corresponding to animation in the .x file. This is created with default tracks and events. See <strong><see cref="T:SharpDX.Direct3D9.AnimationController" /></strong>.</p> </dd></param>
  19920. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  19921. <remarks>
  19922. <p>All the meshes in the file will be collapsed into one output mesh. If the file contains a frame hierarchy, all the transformations will be applied to the mesh.</p>
  19923. </remarks>
  19924. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadMeshHierarchyFromXInMemory']/*" />
  19925. <msdn-id>bb172895</msdn-id>
  19926. <unmanaged>HRESULT D3DXLoadMeshHierarchyFromXInMemory([In] const void* Memory,[In] unsigned int SizeOfMemory,[In] unsigned int MeshOptions,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXAllocateHierarchy* pAlloc,[In] ID3DXLoadUserData* pUserDataLoader,[In] D3DXFRAME** ppFrameHierarchy,[In] ID3DXAnimationController** ppAnimController)</unmanaged>
  19927. <unmanaged-short>D3DXLoadMeshHierarchyFromXInMemory</unmanaged-short>
  19928. </member>
  19929. <member name="M:SharpDX.Direct3D9.D3DX9.CreateCompressedAnimationSet(System.String,System.Double,SharpDX.Direct3D9.PlaybackType,SharpDX.Direct3D.Blob,System.Int32,SharpDX.Direct3D9.CallbackKey,SharpDX.Direct3D9.CompressedAnimationSet@)">
  19930. <summary>
  19931. <p>Creates a <strong><see cref="T:SharpDX.Direct3D9.CompressedAnimationSet" /></strong> key framed animation set interface that stores key frame data in a compressed format.</p>
  19932. </summary>
  19933. <param name="nameRef">No documentation.</param>
  19934. <param name="ticksPerSecond">No documentation.</param>
  19935. <param name="playback">No documentation.</param>
  19936. <param name="compressedDataRef">No documentation.</param>
  19937. <param name="numCallbackKeys">No documentation.</param>
  19938. <param name="callbackKeysRef">No documentation.</param>
  19939. <param name="animationSetOut">No documentation.</param>
  19940. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  19941. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateCompressedAnimationSet']/*" />
  19942. <msdn-id>bb172754</msdn-id>
  19943. <unmanaged>HRESULT D3DXCreateCompressedAnimationSet([In] const char* pName,[In] double TicksPerSecond,[In] D3DXPLAYBACK_TYPE Playback,[In] ID3DXBuffer* pCompressedData,[In] unsigned int NumCallbackKeys,[In] const D3DXKEY_CALLBACK* pCallbackKeys,[In] ID3DXCompressedAnimationSet** ppAnimationSet)</unmanaged>
  19944. <unmanaged-short>D3DXCreateCompressedAnimationSet</unmanaged-short>
  19945. </member>
  19946. <member name="M:SharpDX.Direct3D9.D3DX9.SaveMeshHierarchyToFileW(System.String,System.Int32,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController,SharpDX.Direct3D9.ISaveUserData)">
  19947. <summary>
  19948. <p>Creates a .x file and saves the mesh hierarchy and corresponding animations in it.</p>
  19949. </summary>
  19950. <param name="filename"><dd> <p>Pointer to a string that specifies the name of the .x file identifying the saved mesh. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  19951. <param name="xFormat"><dd> <p>Format of the .x file (text or binary, compressed or not). See <see cref="T:SharpDX.Direct3D9.XFileFormat" />. <see cref="F:SharpDX.Direct3D9.XFileFormat.Compressed" /> can be combined (using a logical OR) with either the <see cref="F:SharpDX.Direct3D9.XFileFormat.Binary" /> or <see cref="F:SharpDX.Direct3D9.XFileFormat.Text" /> flags to reduce the output file size.</p> </dd></param>
  19952. <param name="frameRootRef"><dd> <p>Root node of the hierarchy to be saved. See <strong><see cref="T:SharpDX.Direct3D9.Frame" /></strong>.</p> </dd></param>
  19953. <param name="animControllerRef"><dd> <p>Animation controller that has animation sets to be stored. See <strong><see cref="T:SharpDX.Direct3D9.AnimationController" /></strong>.</p> </dd></param>
  19954. <param name="userDataSaverRef"><dd> <p>Application-provided interface that allows saving of user data. See <strong><see cref="T:SharpDX.Direct3D9.ISaveUserData" /></strong>.</p> </dd></param>
  19955. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  19956. <remarks>
  19957. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.SaveMeshHierarchyToFileW(System.String,System.Int32,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController,SharpDX.Direct3D9.ISaveUserData)" />. Otherwise, the function call resolves to D3DXSaveMeshHierarchyToFileA.</p><p>This function does not save compressed animation sets.</p>
  19958. </remarks>
  19959. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSaveMeshHierarchyToFileW']/*" />
  19960. <msdn-id>bb205427</msdn-id>
  19961. <unmanaged>HRESULT D3DXSaveMeshHierarchyToFileW([In] const wchar_t* Filename,[In] unsigned int XFormat,[In] const D3DXFRAME* pFrameRoot,[In] ID3DXAnimationController* pAnimController,[In] ID3DXSaveUserData* pUserDataSaver)</unmanaged>
  19962. <unmanaged-short>D3DXSaveMeshHierarchyToFileW</unmanaged-short>
  19963. </member>
  19964. <member name="M:SharpDX.Direct3D9.D3DX9.FrameCalculateBoundingSphere(SharpDX.Direct3D9.Frame@,SharpDX.Mathematics.Interop.RawVector3,System.Single)">
  19965. <summary>
  19966. <p>Computes the bounding sphere of all the meshes in the frame hierarchy.</p>
  19967. </summary>
  19968. <param name="frameRootRef"><dd> <p>Pointer to the root node.</p> </dd></param>
  19969. <param name="objectCenterRef"><dd> <p>Returns the center of the bounding sphere.</p> </dd></param>
  19970. <param name="objectRadiusRef"><dd> <p>Returns the radius of the bounding sphere.</p> </dd></param>
  19971. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  19972. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFrameCalculateBoundingSphere']/*" />
  19973. <msdn-id>bb172847</msdn-id>
  19974. <unmanaged>HRESULT D3DXFrameCalculateBoundingSphere([In] const D3DXFRAME* pFrameRoot,[In] D3DXVECTOR3* pObjectCenter,[In] float* pObjectRadius)</unmanaged>
  19975. <unmanaged-short>D3DXFrameCalculateBoundingSphere</unmanaged-short>
  19976. </member>
  19977. <member name="M:SharpDX.Direct3D9.D3DX9.CreateAnimationController(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.AnimationController@)">
  19978. <summary>
  19979. <p>Creates an animation controller object.</p>
  19980. </summary>
  19981. <param name="maxNumMatrices"><dd> <p>Maximum number of animation outputs the controller can support.</p> </dd></param>
  19982. <param name="maxNumAnimationSets"><dd> <p>Maximum number of animation sets that can be mixed.</p> </dd></param>
  19983. <param name="maxNumTracks"><dd> <p>Maximum number of animation sets that can be mixed simultaneously.</p> </dd></param>
  19984. <param name="maxNumEvents"><dd> <p>Maximum number of outstanding events that the controller will support.</p> </dd></param>
  19985. <param name="animControllerOut"><dd> <p>Pointer to the animation controller object created. See <strong><see cref="T:SharpDX.Direct3D9.AnimationController" /></strong>.</p> </dd></param>
  19986. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  19987. <remarks>
  19988. <p>An animation controller controls an animation mixer. The controller adds methods to modify blending parameters over time to enable smooth transitions.</p>
  19989. </remarks>
  19990. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateAnimationController']/*" />
  19991. <msdn-id>bb172751</msdn-id>
  19992. <unmanaged>HRESULT D3DXCreateAnimationController([In] unsigned int MaxNumMatrices,[In] unsigned int MaxNumAnimationSets,[In] unsigned int MaxNumTracks,[In] unsigned int MaxNumEvents,[In] ID3DXAnimationController** ppAnimController)</unmanaged>
  19993. <unmanaged-short>D3DXCreateAnimationController</unmanaged-short>
  19994. </member>
  19995. <member name="M:SharpDX.Direct3D9.D3DX9.FrameFind(SharpDX.Direct3D9.Frame@,System.String)">
  19996. <summary>
  19997. <p>Finds the child frame of a root frame.</p>
  19998. </summary>
  19999. <param name="frameRootRef"><dd> <p>Pointer to the root frame. See <strong><see cref="T:SharpDX.Direct3D9.Frame" /></strong>.</p> </dd></param>
  20000. <param name="name"><dd> <p>Name of the child frame to find.</p> </dd></param>
  20001. <returns><p>Returns the child frame if it is found, or <strong><c>null</c></strong> otherwise. See <strong><see cref="T:SharpDX.Direct3D9.Frame" /></strong>.</p></returns>
  20002. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFrameFind']/*" />
  20003. <msdn-id>bb172849</msdn-id>
  20004. <unmanaged>D3DXFRAME* D3DXFrameFind([In] const D3DXFRAME* pFrameRoot,[In] const char* Name)</unmanaged>
  20005. <unmanaged-short>D3DXFrameFind</unmanaged-short>
  20006. </member>
  20007. <member name="M:SharpDX.Direct3D9.D3DX9.CreateKeyframedAnimationSet(System.String,System.Double,SharpDX.Direct3D9.PlaybackType,System.Int32,System.Int32,SharpDX.Direct3D9.CallbackKey,SharpDX.Direct3D9.KeyframedAnimationSet@)">
  20008. <summary>
  20009. <p>Creates a <strong><see cref="T:SharpDX.Direct3D9.KeyframedAnimationSet" /></strong> key framed animation set interface.</p>
  20010. </summary>
  20011. <param name="nameRef">No documentation.</param>
  20012. <param name="ticksPerSecond">No documentation.</param>
  20013. <param name="playback">No documentation.</param>
  20014. <param name="numAnimations">No documentation.</param>
  20015. <param name="numCallbackKeys">No documentation.</param>
  20016. <param name="callbackKeysRef">No documentation.</param>
  20017. <param name="animationSetOut">No documentation.</param>
  20018. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20019. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateKeyframedAnimationSet']/*" />
  20020. <msdn-id>bb172776</msdn-id>
  20021. <unmanaged>HRESULT D3DXCreateKeyframedAnimationSet([In] const char* pName,[In] double TicksPerSecond,[In] D3DXPLAYBACK_TYPE Playback,[In] unsigned int NumAnimations,[In] unsigned int NumCallbackKeys,[In] const D3DXKEY_CALLBACK* pCallbackKeys,[In] ID3DXKeyframedAnimationSet** ppAnimationSet)</unmanaged>
  20022. <unmanaged-short>D3DXCreateKeyframedAnimationSet</unmanaged-short>
  20023. </member>
  20024. <member name="M:SharpDX.Direct3D9.D3DX9.FrameDestroy(SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.IAllocateHierarchy)">
  20025. <summary>
  20026. <p>Destroys the subtree of frames under the root, including the root.</p>
  20027. </summary>
  20028. <param name="frameRootRef"><dd> <p>Pointer to the root node.</p> </dd></param>
  20029. <param name="allocRef"><dd> <p>Allocation interface used to deallocate nodes of the frame hierarchy.</p> </dd></param>
  20030. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20031. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFrameDestroy']/*" />
  20032. <msdn-id>bb172848</msdn-id>
  20033. <unmanaged>HRESULT D3DXFrameDestroy([In] D3DXFRAME* pFrameRoot,[In] ID3DXAllocateHierarchy* pAlloc)</unmanaged>
  20034. <unmanaged-short>D3DXFrameDestroy</unmanaged-short>
  20035. </member>
  20036. <member name="M:SharpDX.Direct3D9.D3DX9.FrameNumNamedMatrices(SharpDX.Direct3D9.Frame@)">
  20037. <summary>
  20038. <p>Counts number of frames in a subtree that have non-null names.</p>
  20039. </summary>
  20040. <param name="frameRootRef"><dd> <p>Pointer to the root node of the subtree.</p> </dd></param>
  20041. <returns><p>Returns the frame count.</p></returns>
  20042. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFrameNumNamedMatrices']/*" />
  20043. <msdn-id>bb172850</msdn-id>
  20044. <unmanaged>unsigned int D3DXFrameNumNamedMatrices([In] const D3DXFRAME* pFrameRoot)</unmanaged>
  20045. <unmanaged-short>D3DXFrameNumNamedMatrices</unmanaged-short>
  20046. </member>
  20047. <member name="M:SharpDX.Direct3D9.D3DX9.CreateRenderToEnvMap(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.RenderToEnvironmentMap@)">
  20048. <summary>
  20049. <p>Creates a render environment map.</p>
  20050. </summary>
  20051. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, which is the device to associate with the render surface.</p> </dd></param>
  20052. <param name="size"><dd> <p>Size of the render surface.</p> </dd></param>
  20053. <param name="mipLevels"><dd> <p>The number of mipmap levels.</p> </dd></param>
  20054. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type that describes the pixel format of the environment map.</p> </dd></param>
  20055. <param name="depthStencil"><dd> <p>If <strong>TRUE</strong>, the render surface supports a depth-stencil surface. Otherwise, this member is set to <strong><see cref="F:SharpDX.Result.False" /></strong>.</p> </dd></param>
  20056. <param name="depthStencilFormat"><dd> <p>If DepthStencil is set to <strong>TRUE</strong>, this parameter is a member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type that describes the depth-stencil format of the environment map.</p> </dd></param>
  20057. <param name="renderToEnvMapOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap" /></strong> interface that represents the created render environment map.</p> </dd></param>
  20058. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20059. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateRenderToEnvMap']/*" />
  20060. <msdn-id>bb172790</msdn-id>
  20061. <unmanaged>HRESULT D3DXCreateRenderToEnvMap([In] IDirect3DDevice9* pDevice,[In] unsigned int Size,[In] unsigned int MipLevels,[In] D3DFORMAT Format,[In] BOOL DepthStencil,[In] D3DFORMAT DepthStencilFormat,[In] ID3DXRenderToEnvMap** ppRenderToEnvMap)</unmanaged>
  20062. <unmanaged-short>D3DXCreateRenderToEnvMap</unmanaged-short>
  20063. </member>
  20064. <member name="M:SharpDX.Direct3D9.D3DX9.GetDriverLevel(SharpDX.Direct3D9.Device)">
  20065. <summary>
  20066. <p>Returns the driver level.</p>
  20067. </summary>
  20068. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface representing the device.</p> </dd></param>
  20069. <returns><p>The driver level. See remarks.</p></returns>
  20070. <remarks>
  20071. <p>This method returns the driver version, which is one of the following:</p><ul> <li>700 - Direct3D 7 level driver</li> <li>800 - Direct3D 8 level driver</li> <li>900 - Direct3D 9 level driver</li> </ul>
  20072. </remarks>
  20073. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetDriverLevel']/*" />
  20074. <msdn-id>bb172865</msdn-id>
  20075. <unmanaged>unsigned int D3DXGetDriverLevel([In] IDirect3DDevice9* pDevice)</unmanaged>
  20076. <unmanaged-short>D3DXGetDriverLevel</unmanaged-short>
  20077. </member>
  20078. <member name="M:SharpDX.Direct3D9.D3DX9.CreateFont(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32,System.Int32,System.Int32,System.Int32,System.String,SharpDX.Direct3D9.Font)">
  20079. <summary>
  20080. <p>Creates a font object for a device and font.</p>
  20081. </summary>
  20082. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device to be associated with the font object.</p> </dd></param>
  20083. <param name="height"><dd> <p>The height of the characters in logical units.</p> </dd></param>
  20084. <param name="width"><dd> <p>The width of the characters in logical units.</p> </dd></param>
  20085. <param name="weight"><dd> <p>Typeface weight. One example is bold.</p> </dd></param>
  20086. <param name="mipLevels"><dd> <p>The number of mipmap levels.</p> </dd></param>
  20087. <param name="italic"><dd> <p>True for italic font, false otherwise.</p> </dd></param>
  20088. <param name="charSet"><dd> <p>The character set of the font.</p> </dd></param>
  20089. <param name="outputPrecision"><dd> <p>Specifies how Windows should attempt to match the desired font sizes and characteristics with actual fonts. Use OUT_TT_ONLY_PRECIS for instance, to ensure that you always get a TrueType font.</p> </dd></param>
  20090. <param name="quality"><dd> <p>Specifies how Windows should match the desired font with a real font. It applies to raster fonts only and should not affect TrueType fonts.</p> </dd></param>
  20091. <param name="pitchAndFamily"><dd> <p>Pitch and family index.</p> </dd></param>
  20092. <param name="faceNameRef"><dd> <p>String containing the typeface name. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks. </p> </dd></param>
  20093. <param name="fontOut"><dd> <p>Returns a reference to an <strong><see cref="T:SharpDX.Direct3D9.Font" /></strong> interface, representing the created font object.</p> </dd></param>
  20094. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20095. <remarks>
  20096. <p>The creation of an <see cref="T:SharpDX.Direct3D9.Font" /> object requires that the device supports 32-bit color.</p><p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateFont(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32,System.Int32,System.Int32,System.Int32,System.String,SharpDX.Direct3D9.Font)" />. 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>
  20097. </remarks>
  20098. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateFontW']/*" />
  20099. <msdn-id>bb172773</msdn-id>
  20100. <unmanaged>HRESULT D3DXCreateFontW([In] IDirect3DDevice9* 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] ID3DXFont** ppFont)</unmanaged>
  20101. <unmanaged-short>D3DXCreateFontW</unmanaged-short>
  20102. </member>
  20103. <member name="M:SharpDX.Direct3D9.D3DX9.CreateRenderToSurface(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.RenderToSurface)">
  20104. <summary>
  20105. <p>Creates a render surface.</p>
  20106. </summary>
  20107. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device to be associated with the render surface.</p> </dd></param>
  20108. <param name="width"><dd> <p>Width of the render surface, in pixels.</p> </dd></param>
  20109. <param name="height"><dd> <p>Height of the render surface, in pixels.</p> </dd></param>
  20110. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the pixel format of the render surface.</p> </dd></param>
  20111. <param name="depthStencil"><dd> <p>If <strong>TRUE</strong>, the render surface supports a depth-stencil surface. Otherwise, this member is set to <strong><see cref="F:SharpDX.Result.False" /></strong>. This function will create a new depth buffer.</p> </dd></param>
  20112. <param name="depthStencilFormat"><dd> <p>If <em>DepthStencil</em> is set to <strong>TRUE</strong>, this parameter is a member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the depth-stencil format of the render surface.</p> </dd></param>
  20113. <param name="renderToSurfaceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.RenderToSurface" /></strong> interface, representing the created render surface.</p> </dd></param>
  20114. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20115. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateRenderToSurface']/*" />
  20116. <msdn-id>bb172791</msdn-id>
  20117. <unmanaged>HRESULT D3DXCreateRenderToSurface([In] IDirect3DDevice9* pDevice,[In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] BOOL DepthStencil,[In] D3DFORMAT DepthStencilFormat,[Out, Fast] ID3DXRenderToSurface** ppRenderToSurface)</unmanaged>
  20118. <unmanaged-short>D3DXCreateRenderToSurface</unmanaged-short>
  20119. </member>
  20120. <member name="M:SharpDX.Direct3D9.D3DX9.CreateSprite(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Sprite)">
  20121. <summary>
  20122. <p>Creates a sprite object which is associated with a particular device. Sprite objects are used to draw 2D images to the screen.</p>
  20123. </summary>
  20124. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device to be associated with the sprite.</p> </dd></param>
  20125. <param name="spriteOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Sprite" /></strong> interface. This interface allows the user to access sprite functions. </p> </dd></param>
  20126. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20127. <remarks>
  20128. <p>This interface can be used to draw two dimensional images in screen space of the associated device.</p>
  20129. </remarks>
  20130. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateSprite']/*" />
  20131. <msdn-id>bb172797</msdn-id>
  20132. <unmanaged>HRESULT D3DXCreateSprite([In] IDirect3DDevice9* pDevice,[Out, Fast] ID3DXSprite** ppSprite)</unmanaged>
  20133. <unmanaged-short>D3DXCreateSprite</unmanaged-short>
  20134. </member>
  20135. <member name="M:SharpDX.Direct3D9.D3DX9.CreateFontIndirect(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.FontDescription@,SharpDX.Direct3D9.Font)">
  20136. <summary>
  20137. <p>Creates a font object indirectly for both a device and a font.</p>
  20138. </summary>
  20139. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device to be associated with the font object.</p> </dd></param>
  20140. <param name="descRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.FontDescription" /></strong> structure, describing the attributes of the font object to create. If the compiler settings require Unicode, the data type <see cref="T:SharpDX.Direct3D9.FontDescription" /> resolves to <see cref="T:SharpDX.Direct3D9.FontDescription" />; otherwise, the data type resolves to D3DXFONT_DESCA. See Remarks.</p> </dd></param>
  20141. <param name="fontOut"><dd> <p>Returns a reference to an <strong><see cref="T:SharpDX.Direct3D9.Font" /></strong> interface, representing the created font object.</p> </dd></param>
  20142. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20143. <remarks>
  20144. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateFontIndirect(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.FontDescription@,SharpDX.Direct3D9.Font)" />. Otherwise, the function call resolves to D3DXCreateFontIndirectA because ANSI strings are being used.</p>
  20145. </remarks>
  20146. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateFontIndirectW']/*" />
  20147. <msdn-id>bb172774</msdn-id>
  20148. <unmanaged>HRESULT D3DXCreateFontIndirectW([In] IDirect3DDevice9* pDevice,[In] const D3DXFONT_DESCW* pDesc,[Out, Fast] ID3DXFont** ppFont)</unmanaged>
  20149. <unmanaged-short>D3DXCreateFontIndirectW</unmanaged-short>
  20150. </member>
  20151. <member name="M:SharpDX.Direct3D9.D3DX9.CreateLine(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Line)">
  20152. <summary>
  20153. <p>Uses a left-handed coordinate system to create a line.</p>
  20154. </summary>
  20155. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the created box mesh.</p> </dd></param>
  20156. <param name="lineOut"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Line" /></strong> interface.</p> </dd></param>
  20157. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20158. <remarks>
  20159. <p>This function creates a mesh with the <see cref="F:SharpDX.Direct3D9.MeshFlags.Managed" /> creation option and <see cref="F:SharpDX.Direct3D9.VertexFormat.Position" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal" /> Flexible Vertex Format (FVF).</p>
  20160. </remarks>
  20161. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateLine']/*" />
  20162. <msdn-id>bb172778</msdn-id>
  20163. <unmanaged>HRESULT D3DXCreateLine([In] IDirect3DDevice9* pDevice,[Out, Fast] ID3DXLine** ppLine)</unmanaged>
  20164. <unmanaged-short>D3DXCreateLine</unmanaged-short>
  20165. </member>
  20166. <member name="M:SharpDX.Direct3D9.D3DX9.DebugMute(SharpDX.Mathematics.Interop.RawBool)">
  20167. <summary>
  20168. <p>Turns on or off all D3DX debug output.</p>
  20169. </summary>
  20170. <param name="mute"><dd> <p>If <strong>TRUE</strong>, debugger output is halted; if <strong><see cref="F:SharpDX.Result.False" /></strong>, debug output is enabled.</p> </dd></param>
  20171. <returns><p>Returns the previous value of Mute.</p></returns>
  20172. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXDebugMute']/*" />
  20173. <msdn-id>bb172817</msdn-id>
  20174. <unmanaged>BOOL D3DXDebugMute([In] BOOL Mute)</unmanaged>
  20175. <unmanaged-short>D3DXDebugMute</unmanaged-short>
  20176. </member>
  20177. <member name="M:SharpDX.Direct3D9.D3DX9.CheckVersion(System.Int32,System.Int32)">
  20178. <summary>
  20179. <p>Verify that the version of D3DX you compiled with is the version that you are running.</p>
  20180. </summary>
  20181. <param name="d3DSdkVersion"><dd> <p>Use <see cref="F:SharpDX.Direct3D9.D3D9.SdkVersion" />. See remarks.</p> </dd></param>
  20182. <param name="d3DXSdkVersion"><dd> <p>Use <see cref="F:SharpDX.Direct3D9.D3DX9.SdkVersion" />. See remarks.</p> </dd></param>
  20183. <returns><p>Returns <strong>TRUE</strong> if the version of D3DX you compiled against is the version you are running with; otherwise, <strong><see cref="F:SharpDX.Result.False" /></strong> is returned.</p></returns>
  20184. <remarks>
  20185. <p>Use this function during the initialization of your application like this:</p><pre> <see cref="T:SharpDX.Result" /> CD3DXMyApplication::Initialize(<see cref="T:System.IntPtr" /> hInstance, LPCSTR szWindowName, LPCSTR szClassName, UINT uWidth, UINT uHeight)
  20186. { <see cref="T:SharpDX.Result" /> hr; if (!<see cref="M:SharpDX.Direct3D9.D3DX9.CheckVersion(System.Int32,System.Int32)" />(<see cref="F:SharpDX.Direct3D9.D3D9.SdkVersion" />, <see cref="F:SharpDX.Direct3D9.D3DX9.SdkVersion" />)) return E_FAIL; ...
  20187. }
  20188. </pre><p>Use <strong>Direct3DCreate9</strong> to verify that the correct runtime is installed.</p>
  20189. </remarks>
  20190. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCheckVersion']/*" />
  20191. <msdn-id>bb172717</msdn-id>
  20192. <unmanaged>BOOL D3DXCheckVersion([In] unsigned int D3DSdkVersion,[In] unsigned int D3DXSdkVersion)</unmanaged>
  20193. <unmanaged-short>D3DXCheckVersion</unmanaged-short>
  20194. </member>
  20195. <member name="M:SharpDX.Direct3D9.D3DX9.CreateEffect(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)">
  20196. <summary>
  20197. <p>Create an effect from an ASCII or binary effect description.</p>
  20198. </summary>
  20199. <param name="deviceRef"><dd> <p>Pointer to the device that will create the effect. See <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>.</p> </dd></param>
  20200. <param name="srcDataRef"><dd> <p>Pointer to a buffer containing an effect description.</p> </dd></param>
  20201. <param name="srcDataLen"><dd> <p>Length of the effect data, in bytes.</p> </dd></param>
  20202. <param name="definesRef"><dd> <p>An optional <strong><c>null</c></strong>-terminated array of <strong><see cref="T:SharpDX.Direct3D9.Macro" /></strong> structures that describe preprocessor definitions. This value can be <strong><c>null</c></strong>.</p> </dd></param>
  20203. <param name="includeRef"><dd> <p>Optional interface reference, <strong><see cref="T:SharpDX.Direct3D9.Include" /></strong>, to use for handling #include directives. If this value is <strong><c>null</c></strong>, #includes will either be honored when compiling from a file or will cause an error when compiled from a resource or memory. </p> </dd></param>
  20204. <param name="flags"><dd> <p>If <em>pSrcData</em> contains a text effect, flags can be a combination of <see cref="T:SharpDX.Direct3D9.ShaderFlags" /> Flags and <see cref="T:SharpDX.Direct3D9.FX" /> flags; otherwise, <em>pSrcData</em> contains a binary effect and the only flags honored are <see cref="T:SharpDX.Direct3D9.FX" /> flags. The Direct3D 10 HLSL compiler is now the default. See Effect-Compiler Tool for details.</p> </dd></param>
  20205. <param name="poolRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.EffectPool" /></strong> object to use for shared parameters. If this value is <strong><c>null</c></strong>, no parameters will be shared.</p> </dd></param>
  20206. <param name="effectOut"><dd> <p>Returns a reference to an <strong><see cref="T:SharpDX.Direct3D9.Effect" /></strong> interface.</p> </dd></param>
  20207. <param name="compilationErrorsOut"><dd> <p>Returns a buffer containing a listing of compile errors.</p> </dd></param>
  20208. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20209. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateEffect']/*" />
  20210. <msdn-id>bb172763</msdn-id>
  20211. <unmanaged>HRESULT D3DXCreateEffect([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  20212. <unmanaged-short>D3DXCreateEffect</unmanaged-short>
  20213. </member>
  20214. <member name="M:SharpDX.Direct3D9.D3DX9.DisassembleEffect(SharpDX.Direct3D9.Effect,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D.Blob@)">
  20215. <summary>
  20216. <p>Disassemble an effect.</p>
  20217. </summary>
  20218. <param name="effectRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Effect" /></strong> interface that contains the effect.</p> </dd></param>
  20219. <param name="enableColorCode"><dd> <p>Enable color coding to make the disassembly easier to read.</p> </dd></param>
  20220. <param name="disassemblyOut"><dd> <p>Returns a buffer containing the disassembled shader. See <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  20221. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20222. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXDisassembleEffect']/*" />
  20223. <msdn-id>bb172819</msdn-id>
  20224. <unmanaged>HRESULT D3DXDisassembleEffect([In] ID3DXEffect* pEffect,[In] BOOL EnableColorCode,[In] ID3DXBuffer** ppDisassembly)</unmanaged>
  20225. <unmanaged-short>D3DXDisassembleEffect</unmanaged-short>
  20226. </member>
  20227. <member name="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)">
  20228. <summary>
  20229. <p>Create an effect from an ASCII or binary effect description. This is an extended version of <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong> that allows an application to control which parameters are ignored by the effects system.</p>
  20230. </summary>
  20231. <param name="deviceRef">No documentation.</param>
  20232. <param name="hSrcModule">No documentation.</param>
  20233. <param name="srcResourceRef">No documentation.</param>
  20234. <param name="definesRef">No documentation.</param>
  20235. <param name="includeRef">No documentation.</param>
  20236. <param name="skipConstantsRef">No documentation.</param>
  20237. <param name="flags">No documentation.</param>
  20238. <param name="poolRef">No documentation.</param>
  20239. <param name="effectOut">No documentation.</param>
  20240. <param name="compilationErrorsOut">No documentation.</param>
  20241. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20242. <remarks>
  20243. <p>This function is an extended version of <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong> that allows an application to specify which effect constants will be managed by the application. A constant that is managed by the application is ignored by the effects system. That is, the application is responsible for initializing the constant as well as saving and restoring its state whenever appropriate.</p><p>This function checks each constant in pSkipConstants to see that:</p><ul> <li>It is bound to a constant register.</li> <li>It is only used in HLSL shader code.</li> </ul><p> If a constant is named in the string that is not present in the effect, it is ignored.</p><p>If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the LPCTSTR data type resolves to LPCSTR.</p><p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" />. Otherwise, the function call resolves to D3DXCreateEffectFromResourceA because ANSI strings are being used.</p><p><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /> loads data from a resource of type RT_RCDATA. See MSDN for more information about Windows resources.</p>
  20244. </remarks>
  20245. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateEffectFromResourceExW']/*" />
  20246. <msdn-id>bb172771</msdn-id>
  20247. <unmanaged>HRESULT D3DXCreateEffectFromResourceExW([In] IDirect3DDevice9* pDevice,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  20248. <unmanaged-short>D3DXCreateEffectFromResourceExW</unmanaged-short>
  20249. </member>
  20250. <member name="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)">
  20251. <summary>
  20252. <p>Create an effect from an ASCII or binary effect description.</p>
  20253. </summary>
  20254. <param name="deviceRef"><dd> <p>Pointer to the device.</p> </dd></param>
  20255. <param name="hSrcModule"><dd> <p>Handle to a module containing the effect description. If this parameter is <strong><c>null</c></strong>, the current module will be used.</p> </dd></param>
  20256. <param name="srcResourceRef"><dd> <p>Pointer to the resource. This parameter supports both Unicode and ANSI strings. See Remarks.</p> </dd></param>
  20257. <param name="definesRef"><dd> <p>An optional <strong><c>null</c></strong>-terminated array of <strong><see cref="T:SharpDX.Direct3D9.Macro" /></strong> structures that describe preprocessor definitions. This value can be <strong><c>null</c></strong>.</p> </dd></param>
  20258. <param name="includeRef"><dd> <p>Optional interface reference, <strong><see cref="T:SharpDX.Direct3D9.Include" /></strong>, to use for handling #include directives. If this value is <strong><c>null</c></strong>, #includes will either be honored when compiling from a file or will cause an error when compiled from a resource or memory. </p> </dd></param>
  20259. <param name="flags"><dd> <p>If <em>hSrcModule</em> contains a text effect, flags can be a combination of <see cref="T:SharpDX.Direct3D9.ShaderFlags" /> Flags and <see cref="T:SharpDX.Direct3D9.FX" /> flags; otherwise, <em>hSrcModule</em> contains a binary effect and the only flags honored are <see cref="T:SharpDX.Direct3D9.FX" /> flags. The Direct3D 10 HLSL compiler is now the default. See Effect-Compiler Tool for details.</p> </dd></param>
  20260. <param name="poolRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.EffectPool" /></strong> object to use for shared parameters. If this value is <strong><c>null</c></strong>, no parameters will be shared.</p> </dd></param>
  20261. <param name="effectOut"><dd> <p>Returns a buffer containing the compiled effect.</p> </dd></param>
  20262. <param name="compilationErrorsOut"><dd> <p>Returns a buffer containing a listing of compile errors.</p> </dd></param>
  20263. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20264. <remarks>
  20265. <p>If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the LPCTSTR data type resolves to LPCSTR.</p><p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" />. Otherwise, the function call resolves to D3DXCreateEffectFromResourceA because ANSI strings are being used.</p><p><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /> loads data from a resource of type RT_RCDATA. See MSDN for more information about Windows resources.</p>
  20266. </remarks>
  20267. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateEffectFromResourceW']/*" />
  20268. <msdn-id>bb172770</msdn-id>
  20269. <unmanaged>HRESULT D3DXCreateEffectFromResourceW([In] IDirect3DDevice9* pDevice,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  20270. <unmanaged-short>D3DXCreateEffectFromResourceW</unmanaged-short>
  20271. </member>
  20272. <member name="M:SharpDX.Direct3D9.D3DX9.CreateEffectCompiler(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectCompiler,SharpDX.Direct3D.Blob@)">
  20273. <summary>
  20274. <p>Creates an effect compiler from an ASCII effect description.</p>
  20275. </summary>
  20276. <param name="srcDataRef"><dd> <p>Pointer to a buffer containing an effect description.</p> </dd></param>
  20277. <param name="srcDataLen"><dd> <p>Length, in bytes, of the effect data.</p> </dd></param>
  20278. <param name="definesRef"><dd> <p>An optional <strong><c>null</c></strong>-terminated array of <strong><see cref="T:SharpDX.Direct3D9.Macro" /></strong> structures that describe preprocessor definitions. This value can be <strong><c>null</c></strong>.</p> </dd></param>
  20279. <param name="includeRef"><dd> <p>Optional interface reference, <strong><see cref="T:SharpDX.Direct3D9.Include" /></strong>, to use for handling #include directives. If this value is <strong><c>null</c></strong>, #includes will either be honored when compiling from a file or will cause an error when compiled from a resource or memory. </p> </dd></param>
  20280. <param name="flags"><dd> <p>Compile options identified by various flags (see <see cref="T:SharpDX.Direct3D9.ShaderFlags" /> Flags). The Direct3D 10 HLSL compiler is now the default. See Effect-Compiler Tool for details.</p> </dd></param>
  20281. <param name="compilerOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.EffectCompiler" /></strong> interface containing the effect compiler. </p> </dd></param>
  20282. <param name="parseErrorsOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface containing any error messages that occurred during compilation. This parameter can be set to <strong><c>null</c></strong> to ignore error messages. </p> </dd></param>
  20283. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20284. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateEffectCompiler']/*" />
  20285. <msdn-id>bb172764</msdn-id>
  20286. <unmanaged>HRESULT D3DXCreateEffectCompiler([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[Out, Fast] ID3DXEffectCompiler** ppCompiler,[In] ID3DXBuffer** ppParseErrors)</unmanaged>
  20287. <unmanaged-short>D3DXCreateEffectCompiler</unmanaged-short>
  20288. </member>
  20289. <member name="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromFileExW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)">
  20290. <summary>
  20291. <p>Create an effect from an ASCII or binary effect description. This function is an extended version of <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong> that allows an application to control which parameters are ignored by the effects system.</p>
  20292. </summary>
  20293. <param name="deviceRef">No documentation.</param>
  20294. <param name="srcFileRef">No documentation.</param>
  20295. <param name="definesRef">No documentation.</param>
  20296. <param name="includeRef">No documentation.</param>
  20297. <param name="skipConstantsRef">No documentation.</param>
  20298. <param name="flags">No documentation.</param>
  20299. <param name="poolRef">No documentation.</param>
  20300. <param name="effectOut">No documentation.</param>
  20301. <param name="compilationErrorsOut">No documentation.</param>
  20302. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20303. <remarks>
  20304. <p>This function is an extended version of <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong> that allows an application to specify which effect constants will be managed by the application. A constant that is managed by the application is ignored by the effects system. That is, the application is responsible for initializing the constant as well as saving and restoring its state whenever appropriate.</p><p>This function checks each constant in pSkipConstants to see that:</p><ul> <li>It is bound to a constant register.</li> <li>It is only used in HLSL shader code.</li> </ul><p> If a constant is named in the string that is not present in the effect, it is ignored.</p><p>If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the LPCTSTR data type resolves to LPCSTR.</p><p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" />. Otherwise, the function call resolves to D3DXCreateEffectFromFileA because ANSI strings are being used.</p>
  20305. </remarks>
  20306. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateEffectFromFileExW']/*" />
  20307. <msdn-id>bb172769</msdn-id>
  20308. <unmanaged>HRESULT D3DXCreateEffectFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  20309. <unmanaged-short>D3DXCreateEffectFromFileExW</unmanaged-short>
  20310. </member>
  20311. <member name="M:SharpDX.Direct3D9.D3DX9.CreateEffectCompilerFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectCompiler@,SharpDX.Direct3D.Blob@)">
  20312. <summary>
  20313. <p>Creates an effect compiler from an ASCII effect description.</p>
  20314. </summary>
  20315. <param name="srcFileRef"><dd> <p>Pointer to the filename. This parameter supports both Unicode and ANSI strings. See Remarks.</p> </dd></param>
  20316. <param name="definesRef"><dd> <p>An optional <strong><c>null</c></strong>-terminated array of <strong><see cref="T:SharpDX.Direct3D9.Macro" /></strong> structures that describe preprocessor definitions. This value can be <strong><c>null</c></strong>.</p> </dd></param>
  20317. <param name="includeRef"><dd> <p>Optional interface reference, <strong><see cref="T:SharpDX.Direct3D9.Include" /></strong>, to use for handling #include directives. If this value is <strong><c>null</c></strong>, #includes will either be honored when compiling from a file or will cause an error when compiled from a resource or memory. </p> </dd></param>
  20318. <param name="flags"><dd> <p>Compile options identified by various flags (see <see cref="T:SharpDX.Direct3D9.ShaderFlags" /> Flags). The Direct3D 10 HLSL compiler is now the default. See Effect-Compiler Tool for details.</p> </dd></param>
  20319. <param name="compilerOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.EffectCompiler" /></strong> interface, containing the effect compiler. </p> </dd></param>
  20320. <param name="parseErrorsOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface, containing any error messages that occurred during compilation. This parameter can be set to <strong><c>null</c></strong> to ignore error messages. </p> </dd></param>
  20321. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20322. <remarks>
  20323. <p>If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the LPCTSTR data type resolves to LPCSTR.</p><p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectCompilerFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectCompiler@,SharpDX.Direct3D.Blob@)" />. Otherwise, the function call resolves to D3DXCreateEffectCompilerFromFileA because ANSI strings are being used.</p>
  20324. </remarks>
  20325. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateEffectCompilerFromFileW']/*" />
  20326. <msdn-id>bb172765</msdn-id>
  20327. <unmanaged>HRESULT D3DXCreateEffectCompilerFromFileW([In] const wchar_t* pSrcFile,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXEffectCompiler** ppCompiler,[In] ID3DXBuffer** ppParseErrors)</unmanaged>
  20328. <unmanaged-short>D3DXCreateEffectCompilerFromFileW</unmanaged-short>
  20329. </member>
  20330. <member name="M:SharpDX.Direct3D9.D3DX9.CreateEffectCompilerFromResourceW(System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectCompiler@,SharpDX.Direct3D.Blob@)">
  20331. <summary>
  20332. <p>Creates an <strong><see cref="T:SharpDX.Direct3D9.EffectCompiler" /></strong> from an ASCII effect description.</p>
  20333. </summary>
  20334. <param name="hSrcModule">No documentation.</param>
  20335. <param name="srcResourceRef">No documentation.</param>
  20336. <param name="definesRef">No documentation.</param>
  20337. <param name="includeRef">No documentation.</param>
  20338. <param name="flags">No documentation.</param>
  20339. <param name="compilerOut">No documentation.</param>
  20340. <param name="parseErrorsOut">No documentation.</param>
  20341. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20342. <remarks>
  20343. <p>If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the LPCTSTR data type resolves to LPCSTR.</p><p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectCompilerFromResourceW(System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectCompiler@,SharpDX.Direct3D.Blob@)" />. Otherwise, the function call resolves to D3DXCreateEffectCompilerFromResourceA because ANSI strings are being used.</p>
  20344. </remarks>
  20345. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateEffectCompilerFromResourceW']/*" />
  20346. <msdn-id>bb172766</msdn-id>
  20347. <unmanaged>HRESULT D3DXCreateEffectCompilerFromResourceW([In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXEffectCompiler** ppCompiler,[In] ID3DXBuffer** ppParseErrors)</unmanaged>
  20348. <unmanaged-short>D3DXCreateEffectCompilerFromResourceW</unmanaged-short>
  20349. </member>
  20350. <member name="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)">
  20351. <summary>
  20352. <p>Create an effect from an ASCII or binary effect description.</p>
  20353. </summary>
  20354. <param name="deviceRef"><dd> <p>Pointer to the device that will create the effect. See <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>.</p> </dd></param>
  20355. <param name="srcFileRef"><dd> <p>Pointer to the filename. This parameter supports both Unicode and ANSI strings. See Remarks.</p> </dd></param>
  20356. <param name="definesRef"><dd> <p>Optional <c>null</c>-terminated array of preprocessor macro definitions. See <strong><see cref="T:SharpDX.Direct3D9.Macro" /></strong>.</p> </dd></param>
  20357. <param name="includeRef"><dd> <p>Optional interface reference, <strong><see cref="T:SharpDX.Direct3D9.Include" /></strong>, to use for handling #include directives. If this value is <strong><c>null</c></strong>, #includes will either be honored when compiling from a file or will cause an error when compiled from a resource or memory. </p> </dd></param>
  20358. <param name="flags"><dd> <p>If <em>pSrcFile</em> contains a text effect, flags can be a combination of <see cref="T:SharpDX.Direct3D9.ShaderFlags" /> Flags and <see cref="T:SharpDX.Direct3D9.FX" /> flags; otherwise, <em>pSrcFile</em> contains a binary effect and the only flags honored are <see cref="T:SharpDX.Direct3D9.FX" /> flags. The Direct3D 10 HLSL compiler is now the default. See Effect-Compiler Tool for details.</p> </dd></param>
  20359. <param name="poolRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.EffectPool" /></strong> object to use for shared parameters. If this value is <strong><c>null</c></strong>, no parameters will be shared.</p> </dd></param>
  20360. <param name="effectOut"><dd> <p>Returns a reference to a buffer containing the compiled effect. See <strong><see cref="T:SharpDX.Direct3D9.Effect" /></strong>.</p> </dd></param>
  20361. <param name="compilationErrorsOut"><dd> <p>Returns a reference to a buffer containing a listing of compile errors. See <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  20362. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20363. <remarks>
  20364. <p>If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the LPCTSTR data type resolves to LPCSTR.</p><p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" />. Otherwise, the function call resolves to D3DXCreateEffectFromFileA because ANSI strings are being used.</p>
  20365. </remarks>
  20366. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateEffectFromFileW']/*" />
  20367. <msdn-id>bb172768</msdn-id>
  20368. <unmanaged>HRESULT D3DXCreateEffectFromFileW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  20369. <unmanaged-short>D3DXCreateEffectFromFileW</unmanaged-short>
  20370. </member>
  20371. <member name="M:SharpDX.Direct3D9.D3DX9.CreateEffectPool(SharpDX.Direct3D9.EffectPool)">
  20372. <summary>
  20373. <p>Create an effect pool. A pool is used to share parameters between effects.</p>
  20374. </summary>
  20375. <param name="poolOut"><dd> <p>Returns a reference to the created pool.</p> </dd></param>
  20376. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />.</p><p>If the arguments are invalid, the method will return <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p><p>If the method fails, the return value will be E_FAIL.</p></returns>
  20377. <remarks>
  20378. <p>For effects within a pool, shared parameters with the same name share values. </p>
  20379. </remarks>
  20380. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateEffectPool']/*" />
  20381. <msdn-id>bb172772</msdn-id>
  20382. <unmanaged>HRESULT D3DXCreateEffectPool([Out, Fast] ID3DXEffectPool** ppPool)</unmanaged>
  20383. <unmanaged-short>D3DXCreateEffectPool</unmanaged-short>
  20384. </member>
  20385. <member name="M:SharpDX.Direct3D9.D3DX9.CreateEffectEx(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)">
  20386. <summary>
  20387. <p>Creates an effect from an ASCII or binary effect description. This function is an extended version of <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffect(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong> that allows an application to control which parameters are ignored by the effects system.</p>
  20388. </summary>
  20389. <param name="deviceRef">No documentation.</param>
  20390. <param name="srcDataRef">No documentation.</param>
  20391. <param name="srcDataLen">No documentation.</param>
  20392. <param name="definesRef">No documentation.</param>
  20393. <param name="includeRef">No documentation.</param>
  20394. <param name="skipConstantsRef">No documentation.</param>
  20395. <param name="flags">No documentation.</param>
  20396. <param name="poolRef">No documentation.</param>
  20397. <param name="effectOut">No documentation.</param>
  20398. <param name="compilationErrorsOut">No documentation.</param>
  20399. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20400. <remarks>
  20401. <p>This function is an extended version of <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffect(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" /></strong> that allows an application to specify which effect constants will be managed by the application. A constant that is managed by the application is ignored by the effects system. That is, the application is responsible for initializing the constant as well as saving and restoring its state whenever appropriate.</p><p>This function checks each constant in pSkipConstants to see that:</p><ul> <li>It is bound to a constant register.</li> <li>It is only used in HLSL shader code.</li> </ul><p> If a constant is named in the string that is not present in the effect, it is ignored.</p>
  20402. </remarks>
  20403. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateEffectEx']/*" />
  20404. <msdn-id>bb172767</msdn-id>
  20405. <unmanaged>HRESULT D3DXCreateEffectEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pSkipConstants,[In] unsigned int Flags,[In] ID3DXEffectPool* pPool,[In] ID3DXEffect** ppEffect,[In] ID3DXBuffer** ppCompilationErrors)</unmanaged>
  20406. <unmanaged-short>D3DXCreateEffectEx</unmanaged-short>
  20407. </member>
  20408. <member name="M:SharpDX.Direct3D9.D3DX9.SaveMeshToXW(System.String,SharpDX.Direct3D9.Mesh,System.Int32,SharpDX.Direct3D9.ExtendedMaterial@,SharpDX.Direct3D9.EffectInstance,System.Int32,System.Int32)">
  20409. <summary>
  20410. <p>Saves a mesh to a .x file.</p>
  20411. </summary>
  20412. <param name="filenameRef"><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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  20413. <param name="meshRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the mesh to save to a .x file.</p> </dd></param>
  20414. <param name="adjacencyRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the mesh. This parameter may be <strong><c>null</c></strong>.</p> </dd></param>
  20415. <param name="materialsRef"><dd> <p>Pointer to an array of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures, containing material information to be saved in the .x file.</p> </dd></param>
  20416. <param name="effectInstancesRef"><dd> <p>Pointer to an array of effect instances, one per attribute group in the mesh. This parameter may be <strong><c>null</c></strong>. An effect instance is a particular instance of state information used to initialize an effect. For more information, see <strong><see cref="T:SharpDX.Direct3D9.EffectInstance" /></strong>.</p> </dd></param>
  20417. <param name="numMaterials"><dd> <p>Number of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures in the <em>pMaterials</em> array.</p> </dd></param>
  20418. <param name="format"><dd> <p>A combination of file format and save options when saving an .x file. See D3DX X File Constants.</p> </dd></param>
  20419. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  20420. <remarks>
  20421. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.SaveMeshToXW(System.String,SharpDX.Direct3D9.Mesh,System.Int32,SharpDX.Direct3D9.ExtendedMaterial@,SharpDX.Direct3D9.EffectInstance,System.Int32,System.Int32)" />. Otherwise, the function call resolves to D3DXSaveMeshToXA because ANSI strings are being used.</p><p>The default file format is binary; however, if a file is specified as both a binary and a text file, it will be saved as a text file. Regardless of the file format, you may also use the compressed format to reduce the file size. </p><p>The following is a typical code example of how to use this function. </p><pre> <see cref="T:SharpDX.Direct3D9.Mesh" />* m_pMesh; // Mesh object to be saved to a .x file
  20422. <see cref="T:SharpDX.Direct3D9.ExtendedMaterial" />* m_pMaterials; // Array of material structs in the mesh
  20423. DWORD m_dwNumMaterials; // Number of material structs in the mesh DWORD dwFormat = <see cref="F:SharpDX.Direct3D9.XFileFormat.Binary" />; // Binary-format .x file (default)
  20424. // DWORD dwFormat = <see cref="F:SharpDX.Direct3D9.XFileFormat.Text" />; // Text-format .x file // Load mesh into m_pMesh and determine values of m_pMaterials and
  20425. // m_dwNumMaterials with calls to D3DXLoadMeshxxx or other D3DX functions // ... <see cref="M:SharpDX.Direct3D9.D3DX9.SaveMeshToXW(System.String,SharpDX.Direct3D9.Mesh,System.Int32,SharpDX.Direct3D9.ExtendedMaterial@,SharpDX.Direct3D9.EffectInstance,System.Int32,System.Int32)" />( L"outputxfilename.x", m_pMesh, <c>null</c>, m_pMaterials, <c>null</c>, m_dwNumMaterials, dwFormat );
  20426. </pre>
  20427. </remarks>
  20428. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSaveMeshToXW']/*" />
  20429. <msdn-id>bb205428</msdn-id>
  20430. <unmanaged>HRESULT D3DXSaveMeshToXW([In] const wchar_t* pFilename,[In] ID3DXMesh* pMesh,[In] const unsigned int* pAdjacency,[In] const D3DXMATERIAL* pMaterials,[In] const D3DXEFFECTINSTANCE* pEffectInstances,[In] unsigned int NumMaterials,[In] unsigned int Format)</unmanaged>
  20431. <unmanaged-short>D3DXSaveMeshToXW</unmanaged-short>
  20432. </member>
  20433. <member name="M:SharpDX.Direct3D9.D3DX9.CreateNPatchMesh(SharpDX.Direct3D9.Mesh,SharpDX.Direct3D9.PatchMesh@)">
  20434. <summary>
  20435. <p>Creates an N-patch mesh from a triangle mesh.</p>
  20436. </summary>
  20437. <param name="meshSysMemRef"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface that represents the triangle mesh object.</p> </dd></param>
  20438. <param name="patchMeshRef"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.PatchMesh" /></strong> interface that represents the created patch mesh object.</p> </dd></param>
  20439. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20440. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateNPatchMesh']/*" />
  20441. <msdn-id>bb172782</msdn-id>
  20442. <unmanaged>HRESULT D3DXCreateNPatchMesh([In] ID3DXMesh* pMeshSysMem,[In] ID3DXPatchMesh** pPatchMesh)</unmanaged>
  20443. <unmanaged-short>D3DXCreateNPatchMesh</unmanaged-short>
  20444. </member>
  20445. <member name="M:SharpDX.Direct3D9.D3DX9.DeclaratorFromFVF(SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.VertexElement[])">
  20446. <summary>
  20447. <p>Returns a declarator from a flexible vertex format (FVF) code.</p>
  20448. </summary>
  20449. <param name="fvf"><dd> <p>Combination of <see cref="T:SharpDX.Direct3D9.VertexFormat" /> that describes the FVF from which to generate the returned declarator array.</p> </dd></param>
  20450. <param name="declaratorRef"><dd> <p>An array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements describing the vertex format of the mesh vertices. The upper limit of this declarator array is <strong><see cref="F:SharpDX.Direct3D9.VertexFormatDeclaratorCount.Max" /></strong>.</p> </dd></param>
  20451. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: D3DXERR_INVALIDMESH.</p></returns>
  20452. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXDeclaratorFromFVF']/*" />
  20453. <msdn-id>bb172818</msdn-id>
  20454. <unmanaged>HRESULT D3DXDeclaratorFromFVF([In] D3DFVF FVF,[In, Buffer] D3DVERTEXELEMENT9* pDeclarator)</unmanaged>
  20455. <unmanaged-short>D3DXDeclaratorFromFVF</unmanaged-short>
  20456. </member>
  20457. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrame(SharpDX.Direct3D9.Mesh,System.Int32)">
  20458. <summary>
  20459. <p> Compute tangent, binormal, and normal vectors for a mesh.</p>
  20460. </summary>
  20461. <param name="meshRef"><dd> <p>Pointer to an input <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> mesh object.</p> </dd></param>
  20462. <param name="dwOptions"><dd> <p>Combination of one or more <strong><see cref="T:SharpDX.Direct3D9.TangentOptions" /></strong> flags. </p> <p>Use <strong><c>null</c></strong> to specify the following options:</p> <ul> <li>Weight the normal vector length by the angle, in radians, subtended by the two edges leaving the vertex.</li> <li>Compute orthogonal Cartesian coordinates from the UV texture coordinates.</li> <li>Textures are not wrapped in either U or V directions</li> <li>Partial derivatives with respect to texture coordinates are normalized.</li> <li>Vertices are ordered in a counterclockwise direction around each triangle.</li> <li>Use per-vertex normal vectors already present in the input mesh.</li> <li>The results will be stored in the original input mesh. The function will fail if new vertices need to be created.</li> </ul> </dd></param>
  20463. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20464. <remarks>
  20465. <p>This function simply calls <strong><see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrameEx(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)" /></strong> with the following input parameters:</p><pre> <see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrameEx(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)" />(pMesh, <see cref="F:SharpDX.Direct3D9.DeclarationUsage.TextureCoordinate" />, 0, <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Binormal" />, 0, <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Tangent" />, 0, <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Normal" />, 0, dwOptions | <see cref="F:SharpDX.Direct3D9.TangentOptions.GenerateInPlace" />, <c>null</c>, 0.01f, 0.25f, 0.01f, <c>null</c>, <c>null</c>);
  20466. </pre><p>Singularities are handled as required by grouping edges and splitting vertices. If any vertices need to be split, the function will fail. The computed normal vector at each vertex is always normalized to have unit length.</p><p>The most robust solution for computing orthogonal Cartesian coordinates is to not set flags <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromU" /> and <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromV" />, so that orthogonal coordinates are computed from both UV texture coordinates. However, in this case, if either U or V is zero, then the function will compute orthogonal coordinates using <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromV" /> or <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromU" /> respectively.</p>
  20467. </remarks>
  20468. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeTangentFrame']/*" />
  20469. <msdn-id>bb172744</msdn-id>
  20470. <unmanaged>HRESULT D3DXComputeTangentFrame([In] ID3DXMesh* pMesh,[In] unsigned int dwOptions)</unmanaged>
  20471. <unmanaged-short>D3DXComputeTangentFrame</unmanaged-short>
  20472. </member>
  20473. <member name="M:SharpDX.Direct3D9.D3DX9.OptimizeFaces(System.IntPtr,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32[])">
  20474. <summary>
  20475. <p>Generates an optimized face remapping for a triangle list.</p>
  20476. </summary>
  20477. <param name="bIndicesRef"><dd> <p>Pointer to triangle list indices to use for ordering vertices.</p> </dd></param>
  20478. <param name="cFaces"><dd> <p>Number of faces in the triangle list. For 16-bit meshes, this is limited to 2^16 - 1 (65535) or fewer faces.</p> </dd></param>
  20479. <param name="cVertices"><dd> <p>Number of vertices referenced by the triangle list.</p> </dd></param>
  20480. <param name="b32BitIndices"><dd> <p>Flag indicating index type: <strong>TRUE</strong> if indices are 32-bit (more than 65535 indices), <strong><see cref="F:SharpDX.Result.False" /></strong> if indices are 16-bit (65535 or fewer indices).</p> </dd></param>
  20481. <param name="faceRemapRef"><dd> <p>Pointer to the original mesh face that was split to generate the current face.</p> </dd></param>
  20482. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20483. <remarks>
  20484. <p>This function's optimization procedure is functionally equivalent to calling <strong><see cref="M:SharpDX.Direct3D9.Mesh.Optimize(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.Mesh@)" /></strong> with the <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.DeviceIndependent" /> flag, but this function makes more efficient use of vertex caches.</p>
  20485. </remarks>
  20486. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXOptimizeFaces']/*" />
  20487. <msdn-id>bb205376</msdn-id>
  20488. <unmanaged>HRESULT D3DXOptimizeFaces([In] const void* pbIndices,[In] unsigned int cFaces,[In] unsigned int cVertices,[In] BOOL b32BitIndices,[In, Buffer] int* pFaceRemap)</unmanaged>
  20489. <unmanaged-short>D3DXOptimizeFaces</unmanaged-short>
  20490. </member>
  20491. <member name="M:SharpDX.Direct3D9.D3DX9.WeldVertices(SharpDX.Direct3D9.Mesh,System.Int32,SharpDX.Direct3D9.WeldEpsilons@,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@)">
  20492. <summary>
  20493. <p>Welds together replicated vertices that have equal attributes. This method uses specified epsilon values for equality comparisons.</p>
  20494. </summary>
  20495. <param name="meshRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> object, the mesh from which to weld vertices.</p> </dd></param>
  20496. <param name="flags"><dd> <p>Combination of one or more flags from <strong>D3DXWELDEPSILONSFLAGS</strong>.</p> </dd></param>
  20497. <param name="epsilonsRef"><dd> <p>Pointer to a <strong>D3DXWeldEpsilons</strong> structure, specifying the epsilon values to be used for this method. Use <strong><c>null</c></strong> to initialize all structure members to a default value of 1.0e-6f.</p> </dd></param>
  20498. <param name="adjacencyInRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the source mesh. If the edge has no adjacent faces, the value is 0xffffffff. If this parameter is set to <strong><c>null</c></strong>, <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GenerateAdjacency(System.Single,System.Int32)" /></strong> will be called to create logical adjacency information.</p> </dd></param>
  20499. <param name="adjacencyOutRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the optimized mesh. If the edge has no adjacent faces, the value is 0xffffffff.</p> </dd></param>
  20500. <param name="faceRemapRef"><dd> <p>An array of DWORDs, one per face, that identifies the original mesh face that corresponds to each face in the welded mesh.</p> </dd></param>
  20501. <param name="vertexRemapOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface, 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>
  20502. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20503. <remarks>
  20504. <p>This function uses supplied adjacency information to determine the points that are replicated. Vertices are merged based on an epsilon comparison. Vertices with equal position must already have been calculated and represented by point-representative data.</p><p>This function combines logically-welded vertices that have similar components, such as normals or texture coordinates within pEpsilons.</p><p>The following example code calls this function with welding enabled. Vertices are compared using epsilon values for normal vector and vertex position. A reference is returned to a face remapping array (<em>pFaceRemap</em>).</p><pre> TCHAR strMediaPath[512]; // X-file path
  20505. LPD3DXBUFFER pAdjacencyBuffer = <c>null</c>; // adjacency data buffer
  20506. LPD3DXBUFFER pD3DXMtrlBuffer = <c>null</c>; // material buffer
  20507. LPD3DXMESH pMesh = <c>null</c>; // mesh object
  20508. DWORD m_dwNumMaterials; // number of materials
  20509. <see cref="T:SharpDX.Direct3D9.WeldEpsilons" /> Epsilons; // structure with epsilon values
  20510. DWORD *pFaceRemap[65536]; // face remapping array
  20511. DWORD i; // internal variable // Load the mesh from the specified file hr = <see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)" /> ( strMediaPath, <see cref="F:SharpDX.Direct3D9.MeshFlags.Managed" />, m_pd3dDevice, &amp;pAdjacencyBuffer, &amp;pD3DXMtrlBuffer, <c>null</c>, &amp;m_dwNumMaterials, &amp;pMesh ) ) if( FAILED( hr ) ) goto End; // Go to error handling // Set epsilon values Epsilons.Normal = 0.001; Epsilons.Position = 0.1; // Weld the vertices for( i=0; i &lt; 65536; i++ ) { pFaceRemap[i] = 0; } hr = <see cref="M:SharpDX.Direct3D9.D3DX9.WeldVertices(SharpDX.Direct3D9.Mesh,System.Int32,SharpDX.Direct3D9.WeldEpsilons@,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@)" /> ( pMesh, <see cref="F:SharpDX.Direct3D9.WeldFlags.WeldPartialMatches" />, &amp;Epsilons, (DWORD*)pAdjacencyBuffer-&gt;GetBufferPointer(), (DWORD*)pAdjacencyBuffer-&gt;GetBufferPointer(), (DWORD*)pFaceRemap, <c>null</c> ) if( FAILED( hr ) ) goto End; // Go to error handling
  20512. </pre>
  20513. </remarks>
  20514. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWeldVertices']/*" />
  20515. <msdn-id>bb205562</msdn-id>
  20516. <unmanaged>HRESULT D3DXWeldVertices([In] ID3DXMesh* pMesh,[In] unsigned int Flags,[In] const D3DXWELDEPSILONS* pEpsilons,[In] const unsigned int* pAdjacencyIn,[In] unsigned int* pAdjacencyOut,[In] unsigned int* pFaceRemap,[In] ID3DXBuffer** ppVertexRemap)</unmanaged>
  20517. <unmanaged-short>D3DXWeldVertices</unmanaged-short>
  20518. </member>
  20519. <member name="M:SharpDX.Direct3D9.D3DX9.GenerateOutputDecl(SharpDX.Direct3D9.VertexElement[],SharpDX.Direct3D9.VertexElement[])">
  20520. <summary>
  20521. <p>Generates an output vertex declaration from the input declaration. The output declaration is intended for use by the mesh tessellation functions.</p>
  20522. </summary>
  20523. <param name="outputRef"><dd> <p>Pointer to the output vertex declaration. See <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong>.</p> </dd></param>
  20524. <param name="inputRef"><dd> <p>Pointer to the input vertex declaration. See <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong>.</p> </dd></param>
  20525. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  20526. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGenerateOutputDecl']/*" />
  20527. <msdn-id>bb172861</msdn-id>
  20528. <unmanaged>HRESULT D3DXGenerateOutputDecl([In, Buffer] D3DVERTEXELEMENT9* pOutput,[In, Buffer] const D3DVERTEXELEMENT9* pInput)</unmanaged>
  20529. <unmanaged-short>D3DXGenerateOutputDecl</unmanaged-short>
  20530. </member>
  20531. <member name="M:SharpDX.Direct3D9.D3DX9.CreateBuffer(System.Int32,SharpDX.Direct3D.Blob@)">
  20532. <summary>
  20533. <p>Creates a buffer object.</p>
  20534. </summary>
  20535. <param name="numBytes"><dd> <p>Size of the buffer to create, in bytes.</p> </dd></param>
  20536. <param name="bufferOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface, representing the created buffer object.</p> </dd></param>
  20537. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: E_OUTOFMEMORY.</p></returns>
  20538. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateBuffer']/*" />
  20539. <msdn-id>bb172753</msdn-id>
  20540. <unmanaged>HRESULT D3DXCreateBuffer([In] unsigned int NumBytes,[In] ID3DXBuffer** ppBuffer)</unmanaged>
  20541. <unmanaged-short>D3DXCreateBuffer</unmanaged-short>
  20542. </member>
  20543. <member name="M:SharpDX.Direct3D9.D3DX9.LoadPatchMeshFromXof(SharpDX.Direct3D9.XFileData,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.PatchMesh@)">
  20544. <summary>
  20545. <p>Loads a patch mesh from an <strong><see cref="T:SharpDX.Direct3D9.XFileData" /></strong> object.</p>
  20546. </summary>
  20547. <param name="xofObjMeshRef">No documentation.</param>
  20548. <param name="options">No documentation.</param>
  20549. <param name="d3DDeviceRef">No documentation.</param>
  20550. <param name="materialsOut">No documentation.</param>
  20551. <param name="effectInstancesOut">No documentation.</param>
  20552. <param name="numMaterialsRef">No documentation.</param>
  20553. <param name="meshOut">No documentation.</param>
  20554. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20555. <remarks>
  20556. <p>For mesh files that do not contain effect instance information, default effect instances will be generated from the material information in the .x file. A default effect instance will have default values that correspond to the members of the <strong><see cref="T:SharpDX.Direct3D9.Material" /></strong> structure.</p><p>The default texture name is also filled in, but is handled differently. The name will be Texture0@Name, which corresponds to an effect variable by the name of "Texture0" with an annotation called "Name." This will contain the string file name for the texture.</p>
  20557. </remarks>
  20558. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadPatchMeshFromXof']/*" />
  20559. <msdn-id>bb172896</msdn-id>
  20560. <unmanaged>HRESULT D3DXLoadPatchMeshFromXof([In] ID3DXFileData* pXofObjMesh,[In] unsigned int Options,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXBuffer** ppMaterials,[In] ID3DXBuffer** ppEffectInstances,[In] unsigned int* pNumMaterials,[In] ID3DXPatchMesh** ppMesh)</unmanaged>
  20561. <unmanaged-short>D3DXLoadPatchMeshFromXof</unmanaged-short>
  20562. </member>
  20563. <member name="M:SharpDX.Direct3D9.D3DX9.TessellateNPatches(SharpDX.Direct3D9.Mesh,System.Int32,System.Single,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)">
  20564. <summary>
  20565. <p>Tessellates the given mesh using the N-patch tessellation scheme.</p>
  20566. </summary>
  20567. <param name="meshInRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the mesh to tessellate.</p> </dd></param>
  20568. <param name="adjacencyInRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the source mesh. This parameter may be <strong><c>null</c></strong>.</p> </dd></param>
  20569. <param name="numSegs"><dd> <p>Number of segments per edge to tessellate.</p> </dd></param>
  20570. <param name="quadraticInterpNormals"><dd> <p>Set to <strong>TRUE</strong> to use quadratic interpolation for normals; set to <strong><see cref="F:SharpDX.Result.False" /></strong> for linear interpolation.</p> </dd></param>
  20571. <param name="meshOutOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the returned tessellated mesh.</p> </dd></param>
  20572. <param name="adjacencyOutOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. If the value of this parameter is not set to <strong><c>null</c></strong>, this buffer will contain an array of three DWORDs per face that specify the three neighbors for each face in the output mesh. This parameter may be <strong><c>null</c></strong>.</p> </dd></param>
  20573. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20574. <remarks>
  20575. <p>This function tessellates by using the N-patch algorithm.</p>
  20576. </remarks>
  20577. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTessellateNPatches']/*" />
  20578. <msdn-id>bb205469</msdn-id>
  20579. <unmanaged>HRESULT D3DXTessellateNPatches([In] ID3DXMesh* pMeshIn,[In] const unsigned int* pAdjacencyIn,[In] float NumSegs,[In] BOOL QuadraticInterpNormals,[In] ID3DXMesh** ppMeshOut,[In] ID3DXBuffer** ppAdjacencyOut)</unmanaged>
  20580. <unmanaged-short>D3DXTessellateNPatches</unmanaged-short>
  20581. </member>
  20582. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeIMTFromSignal(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Single,System.Int32,SharpDX.FunctionCallback,System.IntPtr,SharpDX.FunctionCallback,System.IntPtr,SharpDX.Direct3D.Blob@)">
  20583. <summary>
  20584. <p>Calculates per-triangle IMT's from a custom application-specified signal that varies over the surface of the mesh (generally at a higher frequency than vertex data). The signal is evaluated via a user-specified callback function.</p>
  20585. </summary>
  20586. <param name="meshRef"><dd> <p>A reference to an input mesh (see <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>) which contains the object geometry for calculating the IMT.</p> </dd></param>
  20587. <param name="dwTextureIndex"><dd> <p>Zero-based texture coordinate index that identifies which set of texture coordinates to use.</p> </dd></param>
  20588. <param name="uSignalDimension"><dd> <p>The number of components in each data point in the signal.</p> </dd></param>
  20589. <param name="fMaxUVDistance"><dd> <p>The maximum distance between vertices; the algorithm continues subdividing until the distance between all vertices is less than or equal to fMaxUVDistance.</p> </dd></param>
  20590. <param name="dwOptions"><dd> <p>Texture wrap options. This is a combination of one or more <strong><see cref="T:SharpDX.Direct3D9.UVAtlasQuality" /> FLAGS</strong>.</p> </dd></param>
  20591. <param name="signalCallbackRef"><dd> <p>A reference to a user-provided evaluator function, which will be used to compute the signal value at arbitrary U,V coordinates. The function follows the prototype of LPD3DXIMTSIGNALCALLBACK.</p> </dd></param>
  20592. <param name="userDataRef"><dd> <p>A reference to a user-defined value which is passed to the signal callback function. Typically used by an application to pass a reference to a data structure that provides context information for the callback function.</p> </dd></param>
  20593. <param name="statusCallbackRef"><dd> <p>A reference to a callback function to monitor IMT computation progress.</p> </dd></param>
  20594. <param name="userContextRef"><dd> <p>A reference to a user-defined variable which is passed to the status callback function. Typically used by an application to pass a reference to a data structure that provides context information for the callback function.</p> </dd></param>
  20595. <param name="iMTDataOut"><dd> <p>A reference to the buffer (see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>) containing the returned IMT array. This array can be provided as input to the D3DX UVAtlas Functions to prioritize texture-space allocation in the texture parameterization.</p> </dd></param>
  20596. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />; otherwise, the value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  20597. <remarks>
  20598. <p>This function requires that the input mesh contain a signal-to-mesh texture mapping (ie. texture coordinates). It allows the user to define a signal arbitrarily over the surface of the mesh.</p>
  20599. </remarks>
  20600. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeIMTFromSignal']/*" />
  20601. <msdn-id>bb172739</msdn-id>
  20602. <unmanaged>HRESULT D3DXComputeIMTFromSignal([In] ID3DXMesh* pMesh,[In] unsigned int dwTextureIndex,[In] unsigned int uSignalDimension,[In] float fMaxUVDistance,[In] unsigned int dwOptions,[In] __function__stdcall* pSignalCallback,[In] void* pUserData,[In] __function__stdcall* pStatusCallback,[In] void* pUserContext,[In] ID3DXBuffer** ppIMTData)</unmanaged>
  20603. <unmanaged-short>D3DXComputeIMTFromSignal</unmanaged-short>
  20604. </member>
  20605. <member name="M:SharpDX.Direct3D9.D3DX9.ValidPatchMesh(SharpDX.Direct3D9.PatchMesh,System.Int32,System.Int32,SharpDX.Direct3D.Blob@)">
  20606. <summary>
  20607. <p>Validates a patch mesh, returning the number of degenerate vertices and patches.</p>
  20608. </summary>
  20609. <param name="meshRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.PatchMesh" /></strong> interface, representing the patch mesh to be tested.</p> </dd></param>
  20610. <param name="dwcDegenerateVertices"><dd> <p>Returns the number of degenerate vertices in the patch mesh.</p> </dd></param>
  20611. <param name="dwcDegeneratePatches"><dd> <p>Returns the number of degenerate patches in the patch mesh.</p> </dd></param>
  20612. <param name="errorsAndWarningsOut"><dd> <p>Returns a reference to a buffer containing a string of errors and warnings that explain the problems found in the patch mesh.</p> </dd></param>
  20613. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20614. <remarks>
  20615. <p>This method validates the mesh by checking for invalid indices. Error information is available from the debugger output.</p>
  20616. </remarks>
  20617. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXValidPatchMesh']/*" />
  20618. <msdn-id>bb205483</msdn-id>
  20619. <unmanaged>HRESULT D3DXValidPatchMesh([In] ID3DXPatchMesh* pMesh,[In] unsigned int* dwcDegenerateVertices,[In] unsigned int* dwcDegeneratePatches,[In] ID3DXBuffer** ppErrorsAndWarnings)</unmanaged>
  20620. <unmanaged-short>D3DXValidPatchMesh</unmanaged-short>
  20621. </member>
  20622. <member name="M:SharpDX.Direct3D9.D3DX9.ValidMesh(SharpDX.Direct3D9.Mesh,System.Int32,SharpDX.Direct3D.Blob@)">
  20623. <summary>
  20624. <p>Validates a mesh.</p>
  20625. </summary>
  20626. <param name="meshInRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the mesh to be tested.</p> </dd></param>
  20627. <param name="adjacencyRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the mesh to be tested.</p> </dd></param>
  20628. <param name="errorsAndWarningsOut"><dd> <p>Returns a buffer containing a string of errors and warnings, which explain the problems found in the mesh.</p> </dd></param>
  20629. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: D3DXERR_INVALIDMESH, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20630. <remarks>
  20631. <p>This method validates the mesh by checking for invalid indices. Error information is available from the debugger output.</p>
  20632. </remarks>
  20633. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXValidMesh']/*" />
  20634. <msdn-id>bb205482</msdn-id>
  20635. <unmanaged>HRESULT D3DXValidMesh([In] ID3DXMesh* pMeshIn,[In] const unsigned int* pAdjacency,[In] ID3DXBuffer** ppErrorsAndWarnings)</unmanaged>
  20636. <unmanaged-short>D3DXValidMesh</unmanaged-short>
  20637. </member>
  20638. <member name="M:SharpDX.Direct3D9.D3DX9.SplitMesh(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)">
  20639. <summary>
  20640. <p>Splits a mesh into meshes smaller than the specified size.</p>
  20641. </summary>
  20642. <param name="meshInRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the source mesh.</p> </dd></param>
  20643. <param name="adjacencyInRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the mesh to be simplified.</p> </dd></param>
  20644. <param name="maxSize"><dd> <p> Maximum number of vertices in the resulting mesh.</p> </dd></param>
  20645. <param name="options"><dd> <p>Option flags for the new meshes.</p> </dd></param>
  20646. <param name="meshesOutRef"><dd> <p>Number of meshes returned.</p> </dd></param>
  20647. <param name="meshArrayOutOut"><dd> <p>Buffer containing an array of <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interfaces for the new meshes. For a source mesh split into n meshes, <em>ppMeshArrayOut</em> is an array of n <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> references.</p> </dd></param>
  20648. <param name="adjacencyArrayOutOut"><dd> <p>Buffer containing an array of adjacency arrays (DWORDs) for the new meshes. See <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>. This parameter is optional.</p> </dd></param>
  20649. <param name="faceRemapArrayOutOut"><dd> <p>Buffer containing an array of face remap arrays (DWORDs) for the new meshes. See <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>. This parameter is optional.</p> </dd></param>
  20650. <param name="vertRemapArrayOutOut"><dd> <p>Buffer containing an array of vertex remap arrays for the new meshes. See <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>. This parameter is optional.</p> </dd></param>
  20651. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20652. <remarks>
  20653. <p>A common use of this function is to split a mesh with 32-bit indices (more than 65535 vertices) into more than one mesh, each of which has 16-bit indices.</p><p>The adjacency, vertex remap and face remap arrays are arrays are DWORDs where each array contains n DWORD references, followed by the DWORD data referenced by the references. For example, to obtain the face remap information for face 3 in mesh 2, the following code could be used, assuming the face remap data was returned in a variable named <em>ppFaceRemapArrayOut</em>.</p><pre> const DWORD **face_remaps = static_cast&lt;DWORD **&gt;(ppFaceRemapArrayOut-&gt;GetBufferPointer());
  20654. const DWORD remap = face_remaps[2][3];
  20655. </pre>
  20656. </remarks>
  20657. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSplitMesh']/*" />
  20658. <msdn-id>bb205465</msdn-id>
  20659. <unmanaged>HRESULT D3DXSplitMesh([In] ID3DXMesh* pMeshIn,[In] const unsigned int* pAdjacencyIn,[In] const unsigned int MaxSize,[In] const unsigned int Options,[In] unsigned int* pMeshesOut,[In] ID3DXBuffer** ppMeshArrayOut,[In] ID3DXBuffer** ppAdjacencyArrayOut,[In] ID3DXBuffer** ppFaceRemapArrayOut,[In] ID3DXBuffer** ppVertRemapArrayOut)</unmanaged>
  20660. <unmanaged-short>D3DXSplitMesh</unmanaged-short>
  20661. </member>
  20662. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeTangent(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  20663. <summary>
  20664. <p>Computes the tangent vectors for the texture coordinates given in the texture stage. Provided to support legacy applications. Use <strong><see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrameEx(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)" /></strong> for better results.</p>
  20665. </summary>
  20666. <param name="mesh">No documentation.</param>
  20667. <param name="texStage">No documentation.</param>
  20668. <param name="tangentIndex">No documentation.</param>
  20669. <param name="binormIndex">No documentation.</param>
  20670. <param name="wrap">No documentation.</param>
  20671. <param name="adjacencyRef">No documentation.</param>
  20672. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  20673. <remarks>
  20674. <p>If the mesh vertex declaration specifies tangent or binormal fields, <strong><see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangent(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" /></strong> will update any user-supplied tangent or binormal data. Alternatively, set TangentIndex to D3DX_DEFAULT to not update the user-supplied tangent data, or set BinormIndex to D3DX_DEFAULT to not update the user-supplied binormal data. TexStageIndex cannot be set to D3DX_DEFAULT.</p><p><strong><see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangent(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" /></strong> depends on the mesh vertex declaration containing either the binormal field (BinormIndex), the tangent field (TangentIndex), or both. If both are missing, this function will fail.</p><p>This function simply calls <strong><see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrameEx(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)" /></strong> with the following input parameters:</p><pre> <see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrameEx(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)" />( Mesh, <see cref="F:SharpDX.Direct3D9.DeclarationUsage.TextureCoordinate" />, TexStageIndex, ( BinormIndex == D3DX_DEFAULT ) ? D3DX_DEFAULT : <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Binormal" />, // provides backward function compatibility BinormIndex, ( TangentIndex == D3DX_DEFAULT ) ? D3DX_DEFAULT : <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Tangent" />, TangentIndex, D3DX_DEFAULT, // do not store normals 0, ( Wrap ? <see cref="F:SharpDX.Direct3D9.TangentOptions.WrapUV" /> : 0 ) | <see cref="F:SharpDX.Direct3D9.TangentOptions.GenerateInPlace" /> | <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromU" />, pAdjacency, -1.01f, -0.01f, -1.01f, <c>null</c>, <c>null</c>);
  20675. </pre>
  20676. </remarks>
  20677. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeTangent']/*" />
  20678. <msdn-id>bb172743</msdn-id>
  20679. <unmanaged>HRESULT D3DXComputeTangent([In] ID3DXMesh* Mesh,[In] unsigned int TexStage,[In] unsigned int TangentIndex,[In] unsigned int BinormIndex,[In] unsigned int Wrap,[In] const unsigned int* pAdjacency)</unmanaged>
  20680. <unmanaged-short>D3DXComputeTangent</unmanaged-short>
  20681. </member>
  20682. <member name="M:SharpDX.Direct3D9.D3DX9.Intersect(SharpDX.Direct3D9.BaseMesh,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawBool,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D.Blob@,System.Int32)">
  20683. <summary>
  20684. <p>Determines if a ray intersects with a mesh.</p>
  20685. </summary>
  20686. <param name="meshRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.BaseMesh" /></strong> interface, representing the mesh to be tested.</p> </dd></param>
  20687. <param name="rayPosRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, specifying the point where the ray begins.</p> </dd></param>
  20688. <param name="rayDirRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, specifying the direction of the ray.</p> </dd></param>
  20689. <param name="hitRef"><dd> <p>Pointer to a <see cref="T:SharpDX.Mathematics.Interop.RawBool" />. If the ray intersects a triangular face on the mesh, this value will be set to <strong>TRUE</strong>. Otherwise, this value is set to <strong><see cref="F:SharpDX.Result.False" /></strong>.</p> </dd></param>
  20690. <param name="faceIndexRef"><dd> <p>Pointer to an index value of the face closest to the ray origin, if pHit is <strong>TRUE</strong>.</p> </dd></param>
  20691. <param name="uRef"><dd> <p>Pointer to a barycentric hit coordinate, U.</p> </dd></param>
  20692. <param name="vRef"><dd> <p>Pointer to a barycentric hit coordinate, V.</p> </dd></param>
  20693. <param name="distRef"><dd> <p>Pointer to a ray intersection parameter distance.</p> </dd></param>
  20694. <param name="allHitsOut"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> object, containing an array of <strong>D3DXINTERSECTINFO</strong> structures.</p> </dd></param>
  20695. <param name="countOfHitsRef"><dd> <p>Pointer to a DWORD that contains the number of entries in the ppAllHits array.</p> </dd></param>
  20696. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be: E_OUTOFMEMORY.</p></returns>
  20697. <remarks>
  20698. <p>The <strong><see cref="M:SharpDX.Direct3D9.D3DX9.Intersect(SharpDX.Direct3D9.BaseMesh,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawBool,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D.Blob@,System.Int32)" /></strong> function provides a way to understand points in and around a triangle, independent of where the triangle is actually located. This function returns the resulting point by using the following equation: V1 + U(V2 - V1) + V(V3 - V1).</p><p>Any point in the plane V1V2V3 can be represented by the barycentric coordinate (U,V). The parameter U controls how much V2 gets weighted into the result, and the parameter V controls how much V3 gets weighted into the result. Lastly, the value of [1 - (U + V)] controls how much V1 gets weighted into the result.</p><p>Barycentric coordinates are a form of general coordinates. In this context, using barycentric coordinates represents a change in coordinate systems. What holds true for Cartesian coordinates holds true for barycentric coordinates.</p><p>Barycentric coordinates define a point inside a triangle in terms of the triangle's vertices. For a more in-depth description of barycentric coordinates, see Mathworld's Barycentric Coordinates Description.</p>
  20699. </remarks>
  20700. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIntersect']/*" />
  20701. <msdn-id>bb172882</msdn-id>
  20702. <unmanaged>HRESULT D3DXIntersect([In] ID3DXBaseMesh* pMesh,[In] const D3DXVECTOR3* pRayPos,[In] const D3DXVECTOR3* pRayDir,[In] BOOL* pHit,[In] unsigned int* pFaceIndex,[In] float* pU,[In] float* pV,[In] float* pDist,[In] ID3DXBuffer** ppAllHits,[In] unsigned int* pCountOfHits)</unmanaged>
  20703. <unmanaged-short>D3DXIntersect</unmanaged-short>
  20704. </member>
  20705. <member name="M:SharpDX.Direct3D9.D3DX9.UVAtlasPack(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Single,System.Int32,System.Int32,SharpDX.FunctionCallback,System.Single,System.IntPtr,System.Int32,SharpDX.Direct3D.Blob)">
  20706. <summary>
  20707. <p>Pack mesh partitioning data into an atlas.</p>
  20708. </summary>
  20709. <param name="meshRef"><dd> <p>Pointer to an input mesh (see <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>) which contains the object geometry for calculating the atlas. At a minimum, the mesh must contain position data and 2D texture coordinates.</p> </dd></param>
  20710. <param name="uWidth"><dd> <p>Texture width.</p> </dd></param>
  20711. <param name="uHeight"><dd> <p>Texture height.</p> </dd></param>
  20712. <param name="fGutter"><dd> <p>The minimum distance, in texels, between two charts on the atlas. The gutter is always scaled by the width; so, if a gutter of 2.5 is used on a 512x512 texture, then the minimum distance between two charts is 2.5 / 512.0 texels.</p> </dd></param>
  20713. <param name="dwTextureIndex"><dd> <p>Zero-based texture coordinate index that identifies which set of texture coordinates to use.</p> </dd></param>
  20714. <param name="dwPartitionResultAdjacencyRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the mesh. It should be derived from the ppPartitionResultAdjacency returned from <strong><see cref="M:SharpDX.Direct3D9.D3DX9.UVAtlasPartition(SharpDX.Direct3D9.Mesh,System.Int32,System.Single,System.Int32,System.Int32,System.Int32,System.Single,SharpDX.FunctionCallback,System.Single,System.IntPtr,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Single,System.Int32)" /></strong>. This value cannot be <strong><c>null</c></strong>, because Pack needs to know where charts were cut in the partition step in order to find the edges of each chart.</p> </dd></param>
  20715. <param name="statusCallbackRef"><dd> <p>A reference to a callback function (see LPD3DXUVATLASCB) that is useful for monitoring progress.</p> </dd></param>
  20716. <param name="fCallbackFrequency"><dd> <p>Specify how often D3DX will call the callback; a reasonable default value is 0.0001f.</p> </dd></param>
  20717. <param name="userContextRef"><dd> <p>A void reference to be passed back to the callback function.</p> </dd></param>
  20718. <param name="dwOptions"><dd> <p>This options parameter is currently reserved.</p> </dd></param>
  20719. <param name="facePartitioningRef"><dd> <p>A reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> containing the array of the final face-partitioning. Each element contains one DWORD per face.</p> </dd></param>
  20720. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />; otherwise, the value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  20721. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXUVAtlasPack']/*" />
  20722. <msdn-id>bb205480</msdn-id>
  20723. <unmanaged>HRESULT D3DXUVAtlasPack([In] ID3DXMesh* pMesh,[In] unsigned int uWidth,[In] unsigned int uHeight,[In] float fGutter,[In] unsigned int dwTextureIndex,[In] const unsigned int* pdwPartitionResultAdjacency,[In] __function__stdcall* pStatusCallback,[In] float fCallbackFrequency,[In] void* pUserContext,[In] unsigned int dwOptions,[In] ID3DXBuffer* pFacePartitioning)</unmanaged>
  20724. <unmanaged-short>D3DXUVAtlasPack</unmanaged-short>
  20725. </member>
  20726. <member name="M:SharpDX.Direct3D9.D3DX9.LoadSkinMeshFromXof(SharpDX.Direct3D9.XFileData,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.SkinInfo@,SharpDX.Direct3D9.Mesh@)">
  20727. <summary>
  20728. <p>Loads a skin mesh from a DirectX .x file data object.</p>
  20729. </summary>
  20730. <param name="xofMeshRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.XFileData" /></strong> interface, representing the file data object to load.</p> </dd></param>
  20731. <param name="options"><dd> <p>Combination of one or more flags, from the <strong>D3DXMESH</strong> enumeration, specifying creation options for the mesh.</p> </dd></param>
  20732. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device object associated with the mesh.</p> </dd></param>
  20733. <param name="adjacencyOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When this method returns, this parameter is filled with an array of three DWORDs per face that specify the three neighbors for each face in the mesh.</p> </dd></param>
  20734. <param name="materialsOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When the method returns, this parameter is filled with an array of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures.</p> </dd></param>
  20735. <param name="effectInstancesOut"><dd> <p>Pointer to a buffer containing an array of effect instances, one per attribute group in the returned mesh. An effect instance is a particular instance of state information used to initialize an effect. See <strong><see cref="T:SharpDX.Direct3D9.EffectInstance" /></strong>. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  20736. <param name="matOutRef"><dd> <p>Pointer to the number of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures in the <em>ppMaterials</em> array, when the method returns.</p> </dd></param>
  20737. <param name="skinInfoOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.SkinInfo" /></strong> interface, which represents the skinning information. </p> </dd></param>
  20738. <param name="meshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, which represents the loaded mesh. </p> </dd></param>
  20739. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY</p></returns>
  20740. <remarks>
  20741. <p>This method takes a reference to an internal object in the .x file, enabling you to load the frame hierarchy.</p><p>For mesh files that do not contain effect instance information, default effect instances will be generated from the material information in the .x file. A default effect instance will have default values that correspond to the members of the <strong><see cref="T:SharpDX.Direct3D9.Material" /></strong> structure.</p><p>The default texture name is also filled in, but is handled differently. The name will be Texture0@Name, which corresponds to an effect variable by the name of "Texture0" with an annotation called "Name." This will contain the string file name for the texture.</p>
  20742. </remarks>
  20743. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadSkinMeshFromXof']/*" />
  20744. <msdn-id>bb172899</msdn-id>
  20745. <unmanaged>HRESULT D3DXLoadSkinMeshFromXof([In] ID3DXFileData* pxofMesh,[In] unsigned int Options,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXBuffer** ppAdjacency,[In] ID3DXBuffer** ppMaterials,[In] ID3DXBuffer** ppEffectInstances,[In] unsigned int* pMatOut,[In] ID3DXSkinInfo** ppSkinInfo,[In] ID3DXMesh** ppMesh)</unmanaged>
  20746. <unmanaged-short>D3DXLoadSkinMeshFromXof</unmanaged-short>
  20747. </member>
  20748. <member name="M:SharpDX.Direct3D9.D3DX9.CreateMesh(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)">
  20749. <summary>
  20750. <p>Creates a mesh object using a declarator.</p>
  20751. </summary>
  20752. <param name="numFaces"><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>
  20753. <param name="numVertices"><dd> <p>Number of vertices for the mesh. This parameter must be greater than 0.</p> </dd></param>
  20754. <param name="options"><dd> <p>Combination of one or more flags from the <strong>D3DXMESH</strong> enumeration, specifying options for the mesh. </p> </dd></param>
  20755. <param name="declarationRef"><dd> <p>Array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements, describing the vertex format for the returned mesh. This parameter must map directly to a flexible vertex format (FVF).</p> </dd></param>
  20756. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device object to be associated with the mesh.</p> </dd></param>
  20757. <param name="meshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the created mesh object.</p> </dd></param>
  20758. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20759. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateMesh']/*" />
  20760. <msdn-id>bb172780</msdn-id>
  20761. <unmanaged>HRESULT D3DXCreateMesh([In] unsigned int NumFaces,[In] unsigned int NumVertices,[In] unsigned int Options,[In] const D3DVERTEXELEMENT9* pDeclaration,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXMesh** ppMesh)</unmanaged>
  20762. <unmanaged-short>D3DXCreateMesh</unmanaged-short>
  20763. </member>
  20764. <member name="M:SharpDX.Direct3D9.D3DX9.CreateSkinInfoFVF(System.Int32,SharpDX.Direct3D9.VertexFormat,System.Int32,SharpDX.Direct3D9.SkinInfo@)">
  20765. <summary>
  20766. <p>Creates an empty skin mesh object using a flexible vertex format (FVF) code.</p>
  20767. </summary>
  20768. <param name="numVertices"><dd> <p>Number of vertices for the skin mesh.</p> </dd></param>
  20769. <param name="fvf"><dd> <p>Combination of <see cref="T:SharpDX.Direct3D9.VertexFormat" /> that describes the vertex format for the returned skin mesh.</p> </dd></param>
  20770. <param name="numBones"><dd> <p>Number of bones for the skin mesh.</p> </dd></param>
  20771. <param name="skinInfoOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.SkinInfo" /></strong> interface, representing the created skin information object.</p> </dd></param>
  20772. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20773. <remarks>
  20774. <p>Use <strong>SetBoneInfluence</strong> to populate the empty skin mesh object returned by this method.</p>
  20775. </remarks>
  20776. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateSkinInfoFVF']/*" />
  20777. <msdn-id>bb172794</msdn-id>
  20778. <unmanaged>HRESULT D3DXCreateSkinInfoFVF([In] unsigned int NumVertices,[In] D3DFVF FVF,[In] unsigned int NumBones,[In] ID3DXSkinInfo** ppSkinInfo)</unmanaged>
  20779. <unmanaged-short>D3DXCreateSkinInfoFVF</unmanaged-short>
  20780. </member>
  20781. <member name="M:SharpDX.Direct3D9.D3DX9.IntersectSubset(SharpDX.Direct3D9.BaseMesh,System.Int32,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawBool,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D.Blob@,System.Int32)">
  20782. <summary>
  20783. <p>Intersects the specified ray with the given mesh subset. This provides similar functionality to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.Intersect(SharpDX.Direct3D9.BaseMesh,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawBool,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D.Blob@,System.Int32)" /></strong>.</p>
  20784. </summary>
  20785. <param name="meshRef">No documentation.</param>
  20786. <param name="attribId">No documentation.</param>
  20787. <param name="rayPosRef">No documentation.</param>
  20788. <param name="rayDirRef">No documentation.</param>
  20789. <param name="hitRef">No documentation.</param>
  20790. <param name="faceIndexRef">No documentation.</param>
  20791. <param name="uRef">No documentation.</param>
  20792. <param name="vRef">No documentation.</param>
  20793. <param name="distRef">No documentation.</param>
  20794. <param name="allHitsOut">No documentation.</param>
  20795. <param name="countOfHitsRef">No documentation.</param>
  20796. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be the following value: E_OUTOFMEMORY.</p></returns>
  20797. <remarks>
  20798. <p>The <strong><see cref="M:SharpDX.Direct3D9.D3DX9.IntersectSubset(SharpDX.Direct3D9.BaseMesh,System.Int32,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawBool,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D.Blob@,System.Int32)" /></strong> function provides a way to understand points in and around a triangle, independent of where the triangle is actually located. This function returns the resulting point by using the following equation: V1 + U(V2 - V1) + V(V3 - V1).</p><p>Any point in the plane V1V2V3 can be represented by the barycentric coordinate (U,V). The parameter U controls how much V2 gets weighted into the result and the parameter V controls how much V3 gets weighted into the result. Lastly, the value of [1 - (U + V)] controls how much V1 gets weighted into the result.</p><p>Barycentric coordinates are a form of general coordinates. In this context, using barycentric coordinates represents a change in coordinate systems. What holds true for Cartesian coordinates holds true for barycentric coordinates.</p><p>Barycentric coordinates define a point inside a triangle in terms of the triangle's vertices. For a more in-depth description of barycentric coordinates, see Mathworld's Barycentric Coordinates Description.</p>
  20799. </remarks>
  20800. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIntersectSubset']/*" />
  20801. <msdn-id>bb172884</msdn-id>
  20802. <unmanaged>HRESULT D3DXIntersectSubset([In] ID3DXBaseMesh* pMesh,[In] unsigned int AttribId,[In] const D3DXVECTOR3* pRayPos,[In] const D3DXVECTOR3* pRayDir,[In] BOOL* pHit,[In] unsigned int* pFaceIndex,[In] float* pU,[In] float* pV,[In] float* pDist,[In] ID3DXBuffer** ppAllHits,[In] unsigned int* pCountOfHits)</unmanaged>
  20803. <unmanaged-short>D3DXIntersectSubset</unmanaged-short>
  20804. </member>
  20805. <member name="M:SharpDX.Direct3D9.D3DX9.GetFVFVertexSize(SharpDX.Direct3D9.VertexFormat)">
  20806. <summary>
  20807. <p>Returns the size of a vertex for a flexible vertex format (FVF).</p>
  20808. </summary>
  20809. <param name="fvf"><dd> <p>FVF to be queried. A combination of <see cref="T:SharpDX.Direct3D9.VertexFormat" />.</p> </dd></param>
  20810. <returns><p>The FVF vertex size, in bytes.</p></returns>
  20811. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetFVFVertexSize']/*" />
  20812. <msdn-id>bb172866</msdn-id>
  20813. <unmanaged>unsigned int D3DXGetFVFVertexSize([In] D3DFVF FVF)</unmanaged>
  20814. <unmanaged-short>D3DXGetFVFVertexSize</unmanaged-short>
  20815. </member>
  20816. <member name="M:SharpDX.Direct3D9.D3DX9.GetDeclLength(SharpDX.Direct3D9.VertexElement[])">
  20817. <summary>
  20818. <p>Returns the number of elements in the vertex declaration.</p>
  20819. </summary>
  20820. <param name="declRef"><dd> <p>A reference to the vertex declaration. See <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong>.</p> </dd></param>
  20821. <returns><p>The number of elements in the vertex declaration.</p></returns>
  20822. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetDeclLength']/*" />
  20823. <msdn-id>bb172863</msdn-id>
  20824. <unmanaged>unsigned int D3DXGetDeclLength([In, Buffer] const D3DVERTEXELEMENT9* pDecl)</unmanaged>
  20825. <unmanaged-short>D3DXGetDeclLength</unmanaged-short>
  20826. </member>
  20827. <member name="M:SharpDX.Direct3D9.D3DX9.CleanMesh(SharpDX.Direct3D9.CleanType,SharpDX.Direct3D9.Mesh,System.Int32,SharpDX.Direct3D9.Mesh@,System.Int32,SharpDX.Direct3D.Blob@)">
  20828. <summary>
  20829. <p>Cleans a mesh, preparing it for simplification.</p>
  20830. </summary>
  20831. <param name="cleanType"><dd> <p>Vertex operations to perform in preparation for mesh cleaning. See <strong><see cref="T:SharpDX.Direct3D9.CleanType" /></strong>.</p> </dd></param>
  20832. <param name="meshInRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the mesh to be cleaned.</p> </dd></param>
  20833. <param name="adjacencyInRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the mesh to be cleaned.</p> </dd></param>
  20834. <param name="meshOutOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the returned cleaned mesh. The same mesh is returned that was passed in if no cleaning was necessary.</p> </dd></param>
  20835. <param name="adjacencyOutRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the output mesh.</p> </dd></param>
  20836. <param name="errorsAndWarningsOut"><dd> <p>Returns a buffer containing a string of errors and warnings, which explain the problems found in the mesh.</p> </dd></param>
  20837. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20838. <remarks>
  20839. <p>This function cleans a mesh using the cleaning method and options specified in the CleanType parameter. See the <strong><see cref="T:SharpDX.Direct3D9.CleanType" /></strong> enumeration for a description of the available options.</p>
  20840. </remarks>
  20841. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCleanMesh']/*" />
  20842. <msdn-id>bb172719</msdn-id>
  20843. <unmanaged>HRESULT D3DXCleanMesh([In] D3DXCLEANTYPE CleanType,[In] ID3DXMesh* pMeshIn,[In] const unsigned int* pAdjacencyIn,[In] ID3DXMesh** ppMeshOut,[In] unsigned int* pAdjacencyOut,[In] ID3DXBuffer** ppErrorsAndWarnings)</unmanaged>
  20844. <unmanaged-short>D3DXCleanMesh</unmanaged-short>
  20845. </member>
  20846. <member name="M:SharpDX.Direct3D9.D3DX9.IntersectTri(SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,System.Single,System.Single,System.Single)">
  20847. <summary>
  20848. <p>Computes the intersection of a ray and a triangle.</p>
  20849. </summary>
  20850. <param name="arg0Ref"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, describing the first triangle vertex position.</p> </dd></param>
  20851. <param name="arg1Ref"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, describing the second triangle vertex position.</p> </dd></param>
  20852. <param name="arg2Ref"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, describing the third triangle vertex position.</p> </dd></param>
  20853. <param name="rayPosRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, specifying the point where the ray begins.</p> </dd></param>
  20854. <param name="rayDirRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, specifying the direction of the ray.</p> </dd></param>
  20855. <param name="uRef"><dd> <p>Barycentric hit coordinates, U.</p> </dd></param>
  20856. <param name="vRef"><dd> <p>Barycentric hit coordinates, V.</p> </dd></param>
  20857. <param name="distRef"><dd> <p>Ray-intersection parameter distance.</p> </dd></param>
  20858. <returns><p>Returns <strong>TRUE</strong> if the ray intersects the area of the triangle. Otherwise, returns <strong><see cref="F:SharpDX.Result.False" /></strong>.</p></returns>
  20859. <remarks>
  20860. <p>Any point in the plane V1V2V3 can be represented by the barycentric coordinate (U,V). The parameter U controls how much V2 gets weighted into the result, and the parameter V controls how much V3 gets weighted into the result. Lastly, the value of [1 - (U + V)] controls how much V1 gets weighted into the result.</p><p>Barycentric coordinates are a form of general coordinates. In this context, using barycentric coordinates represents a change in coordinate systems. What holds true for Cartesian coordinates holds true for barycentric coordinates.</p><p>Barycentric coordinates define a point inside a triangle in terms of the triangle's vertices. For a more in-depth description of barycentric coordinates, see Mathworld's Barycentric Coordinates Description.</p>
  20861. </remarks>
  20862. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIntersectTri']/*" />
  20863. <msdn-id>bb204928</msdn-id>
  20864. <unmanaged>BOOL D3DXIntersectTri([In] const D3DXVECTOR3* p0,[In] const D3DXVECTOR3* p1,[In] const D3DXVECTOR3* p2,[In] const D3DXVECTOR3* pRayPos,[In] const D3DXVECTOR3* pRayDir,[In] float* pU,[In] float* pV,[In] float* pDist)</unmanaged>
  20865. <unmanaged-short>D3DXIntersectTri</unmanaged-short>
  20866. </member>
  20867. <member name="M:SharpDX.Direct3D9.D3DX9.ConvertMeshSubsetToSingleStrip(SharpDX.Direct3D9.BaseMesh,System.Int32,System.Int32,SharpDX.Direct3D9.IndexBuffer@,System.Int32)">
  20868. <summary>
  20869. <p>Converts the specified mesh subset into a single triangle strip.</p>
  20870. </summary>
  20871. <param name="meshIn"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.BaseMesh" /></strong> interface, representing the mesh to convert to a strip.</p> </dd></param>
  20872. <param name="attribId"><dd> <p>Attribute ID of the mesh subset to convert to strips.</p> </dd></param>
  20873. <param name="iBOptions"><dd> <p>Combination of one or more flags from the <strong>D3DXMESH</strong> enumeration, specifying options for creating the index buffer. Cannot be <see cref="F:SharpDX.Direct3D9.MeshFlags.Use32Bit" />. The index buffer will be created with 32-bit or 16-bit indices, depending on the format of the index buffer of the mesh specified by the <em>MeshIn</em> parameter.</p> </dd></param>
  20874. <param name="indexBufferOut"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface, representing the index buffer containing the strip.</p> </dd></param>
  20875. <param name="numIndicesRef"><dd> <p>Number of indices in the buffer returned in the <em>ppIndexBuffer</em> parameter.</p> </dd></param>
  20876. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20877. <remarks>
  20878. <p>Before running this function, call <strong>Optimize</strong> or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.OptimizeFaces(System.IntPtr,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32[])" /></strong>, with the <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.AttributeSort" /> flag set.</p>
  20879. </remarks>
  20880. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXConvertMeshSubsetToSingleStrip']/*" />
  20881. <msdn-id>bb172749</msdn-id>
  20882. <unmanaged>HRESULT D3DXConvertMeshSubsetToSingleStrip([In] ID3DXBaseMesh* MeshIn,[In] unsigned int AttribId,[In] unsigned int IBOptions,[In] IDirect3DIndexBuffer9** ppIndexBuffer,[In] unsigned int* pNumIndices)</unmanaged>
  20883. <unmanaged-short>D3DXConvertMeshSubsetToSingleStrip</unmanaged-short>
  20884. </member>
  20885. <member name="M:SharpDX.Direct3D9.D3DX9.CreateSkinInfo(System.Int32,SharpDX.Direct3D9.VertexElement,System.Int32,SharpDX.Direct3D9.SkinInfo@)">
  20886. <summary>
  20887. <p>Creates an empty skin mesh object using a declarator.</p>
  20888. </summary>
  20889. <param name="numVertices"><dd> <p>Number of vertices for the skin mesh.</p> </dd></param>
  20890. <param name="declarationRef"><dd> <p>Array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements, describing the vertex format for the returned mesh.</p> </dd></param>
  20891. <param name="numBones"><dd> <p>Number of bones for the skin mesh.</p> </dd></param>
  20892. <param name="skinInfoOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.SkinInfo" /></strong> interface, representing the created skin mesh object.</p> </dd></param>
  20893. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be: E_OUTOFMEMORY.</p></returns>
  20894. <remarks>
  20895. <p>Use <strong>SetBoneInfluence</strong> to populate the empty skin mesh object returned by this method.</p>
  20896. </remarks>
  20897. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateSkinInfo']/*" />
  20898. <msdn-id>bb172792</msdn-id>
  20899. <unmanaged>HRESULT D3DXCreateSkinInfo([In] unsigned int NumVertices,[In] const D3DVERTEXELEMENT9* pDeclaration,[In] unsigned int NumBones,[In] ID3DXSkinInfo** ppSkinInfo)</unmanaged>
  20900. <unmanaged-short>D3DXCreateSkinInfo</unmanaged-short>
  20901. </member>
  20902. <member name="M:SharpDX.Direct3D9.D3DX9.GetDeclVertexSize(SharpDX.Direct3D9.VertexElement[],System.Int32)">
  20903. <summary>
  20904. <p>Returns the size of a vertex from the vertex declaration.</p>
  20905. </summary>
  20906. <param name="declRef"><dd> <p>A reference to the vertex declaration. See <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong>.</p> </dd></param>
  20907. <param name="stream"><dd> <p>The zero-based stream index.</p> </dd></param>
  20908. <returns><p>The vertex declaration size, in bytes.</p></returns>
  20909. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetDeclVertexSize']/*" />
  20910. <msdn-id>bb172864</msdn-id>
  20911. <unmanaged>unsigned int D3DXGetDeclVertexSize([In, Buffer] const D3DVERTEXELEMENT9* pDecl,[In] unsigned int Stream)</unmanaged>
  20912. <unmanaged-short>D3DXGetDeclVertexSize</unmanaged-short>
  20913. </member>
  20914. <member name="M:SharpDX.Direct3D9.D3DX9.GeneratePMesh(SharpDX.Direct3D9.Mesh,System.Int32,SharpDX.Direct3D9.AttributeWeights@,System.Single,System.Int32,System.Int32,SharpDX.Direct3D9.ProgressiveMesh@)">
  20915. <summary>
  20916. No documentation.
  20917. </summary>
  20918. <param name="meshRef">No documentation.</param>
  20919. <param name="adjacencyRef">No documentation.</param>
  20920. <param name="vertexAttributeWeightsRef">No documentation.</param>
  20921. <param name="vertexWeightsRef">No documentation.</param>
  20922. <param name="minValue">No documentation.</param>
  20923. <param name="options">No documentation.</param>
  20924. <param name="pMeshOut">No documentation.</param>
  20925. <returns>No documentation.</returns>
  20926. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGeneratePMesh']/*" />
  20927. <unmanaged>HRESULT D3DXGeneratePMesh([In] ID3DXMesh* pMesh,[In] const unsigned int* pAdjacency,[In] const D3DXATTRIBUTEWEIGHTS* pVertexAttributeWeights,[In] const float* pVertexWeights,[In] unsigned int MinValue,[In] unsigned int Options,[In] ID3DXPMesh** ppPMesh)</unmanaged>
  20928. <unmanaged-short>D3DXGeneratePMesh</unmanaged-short>
  20929. </member>
  20930. <member name="M:SharpDX.Direct3D9.D3DX9.TessellateRectPatch(SharpDX.Direct3D9.VertexBuffer,System.Single,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.RectanglePatchInfo@,SharpDX.Direct3D9.Mesh)">
  20931. <summary>
  20932. <p>Tessellates a rectangular higher-order surface patch into a triangle mesh.</p>
  20933. </summary>
  20934. <param name="vBRef"><dd> <p>Vertex buffer containing the patch data.</p> </dd></param>
  20935. <param name="numSegsRef"><dd> <p>Pointer to an array of four floating-point values that identify the number of segments into which each edge of the rectangle patch should be divided when tessellated. See <strong><see cref="T:SharpDX.Direct3D9.RectanglePatchInfo" /></strong>.</p> </dd></param>
  20936. <param name="dwInDeclRef"><dd> <p>Vertex declaration structure that defines the vertex data. See <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong>.</p> </dd></param>
  20937. <param name="rectPatchInfoRef"><dd> <p>Describes a rectangular patch. See <strong><see cref="T:SharpDX.Direct3D9.RectanglePatchInfo" /></strong>.</p> </dd></param>
  20938. <param name="meshRef"><dd> <p>Pointer to the created mesh. See <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>.</p> </dd></param>
  20939. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  20940. <remarks>
  20941. <p>Use <strong><see cref="M:SharpDX.Direct3D9.D3DX9.RectPatchSize(System.Single,System.Int32@,System.Int32@)" /></strong> to get the number of output vertices and indices that the tessellation function needs.</p>
  20942. </remarks>
  20943. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTessellateRectPatch']/*" />
  20944. <msdn-id>bb205470</msdn-id>
  20945. <unmanaged>HRESULT D3DXTessellateRectPatch([In] IDirect3DVertexBuffer9* pVB,[In] const float* pNumSegs,[In] const D3DVERTEXELEMENT9* pdwInDecl,[In] const D3DRECTPATCH_INFO* pRectPatchInfo,[In] ID3DXMesh* pMesh)</unmanaged>
  20946. <unmanaged-short>D3DXTessellateRectPatch</unmanaged-short>
  20947. </member>
  20948. <member name="M:SharpDX.Direct3D9.D3DX9.FVFFromDeclarator(SharpDX.Direct3D9.VertexElement[])">
  20949. <summary>
  20950. <p>Returns a flexible vertex format (FVF) code from a declarator.</p>
  20951. </summary>
  20952. <param name="declaratorRef"><dd> <p>Array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements, describing the FVF code.</p> </dd></param>
  20953. <returns><dd> <p>Pointer to a DWORD value, representing the returned combination of <see cref="T:SharpDX.Direct3D9.VertexFormat" /> that describes the vertex format returned from the declarator.</p> </dd></returns>
  20954. <remarks>
  20955. <p>This function will fail for any declarator that does not map directly to an FVF.</p>
  20956. </remarks>
  20957. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFVFFromDeclarator']/*" />
  20958. <msdn-id>bb172854</msdn-id>
  20959. <unmanaged>HRESULT D3DXFVFFromDeclarator([In, Buffer] const D3DVERTEXELEMENT9* pDeclarator,[Out] D3DFVF* pFVF)</unmanaged>
  20960. <unmanaged-short>D3DXFVFFromDeclarator</unmanaged-short>
  20961. </member>
  20962. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeBoundingBox(SharpDX.Mathematics.Interop.RawVector3,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3)">
  20963. <summary>
  20964. <p>Computes a coordinate-axis oriented bounding box.</p>
  20965. </summary>
  20966. <param name="firstPositionRef"><dd> <p>Pointer to the first position.</p> </dd></param>
  20967. <param name="numVertices"><dd> <p>Number of vertices.</p> </dd></param>
  20968. <param name="dwStride"><dd> <p>Count or number of bytes between vertices.</p> </dd></param>
  20969. <param name="minRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, describing the returned lower-left corner of the bounding box.</p> </dd></param>
  20970. <param name="maxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, describing the returned upper-right corner of the bounding box.</p> <p /> </dd></param>
  20971. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  20972. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeBoundingBox']/*" />
  20973. <msdn-id>bb204920</msdn-id>
  20974. <unmanaged>HRESULT D3DXComputeBoundingBox([In] const D3DXVECTOR3* pFirstPosition,[In] unsigned int NumVertices,[In] unsigned int dwStride,[In] D3DXVECTOR3* pMin,[In] D3DXVECTOR3* pMax)</unmanaged>
  20975. <unmanaged-short>D3DXComputeBoundingBox</unmanaged-short>
  20976. </member>
  20977. <member name="M:SharpDX.Direct3D9.D3DX9.CreateSkinInfoFromBlendedMesh(SharpDX.Direct3D9.BaseMesh,System.Int32,SharpDX.Direct3D9.BoneCombination,SharpDX.Direct3D9.SkinInfo@)">
  20978. <summary>
  20979. <p>Creates a skin mesh from another mesh.</p>
  20980. </summary>
  20981. <param name="meshRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.BaseMesh" /></strong> object, the mesh from which to create the skin mesh.</p> </dd></param>
  20982. <param name="numBones"><dd> <p>The length of the array attached to the BoneId. See <strong><see cref="T:SharpDX.Direct3D9.BoneCombination" /></strong>.</p> </dd></param>
  20983. <param name="boneCombinationTableRef"><dd> <p>Pointer to an array of bone combinations. See <strong><see cref="T:SharpDX.Direct3D9.BoneCombination" /></strong>.</p> </dd></param>
  20984. <param name="skinInfoOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.SkinInfo" /></strong> interface representing the created skin mesh object.</p> </dd></param>
  20985. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be the following: E_OUTOFMEMORY.</p></returns>
  20986. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateSkinInfoFromBlendedMesh']/*" />
  20987. <msdn-id>bb172793</msdn-id>
  20988. <unmanaged>HRESULT D3DXCreateSkinInfoFromBlendedMesh([In] ID3DXBaseMesh* pMesh,[In] unsigned int NumBones,[In] const D3DXBONECOMBINATION* pBoneCombinationTable,[In] ID3DXSkinInfo** ppSkinInfo)</unmanaged>
  20989. <unmanaged-short>D3DXCreateSkinInfoFromBlendedMesh</unmanaged-short>
  20990. </member>
  20991. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrameEx(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)">
  20992. <summary>
  20993. <p>Performs tangent frame computations on a mesh. Tangent, binormal, and optionally normal vectors are generated. Singularities are handled as required by grouping edges and splitting vertices.</p>
  20994. </summary>
  20995. <param name="meshRef"><dd> <p>Pointer to an input <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> mesh object.</p> </dd></param>
  20996. <param name="dwTextureInSemantic"><dd> <p>Specifies the texture coordinate input semantic. If D3DX_DEFAULT, the function assumes that there are no texture coordinates, and the function will fail unless normal vector calculation is specified.</p> </dd></param>
  20997. <param name="dwTextureInIndex"><dd> <p>If a mesh has multiple texture coordinates, specifies the texture coordinate to use for the tangent frame computations. If zero, the mesh has only a single texture coordinate.</p> </dd></param>
  20998. <param name="dwUPartialOutSemantic"><dd> <p>Specifies the output semantic for the type, typically <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Tangent" />, that describes where the partial derivative with respect to the U texture coordinate will be stored. If D3DX_DEFAULT, then this partial derivative will not be stored.</p> </dd></param>
  20999. <param name="dwUPartialOutIndex"><dd> <p>Specifies the semantic index at which to store the partial derivative with respect to the U texture coordinate.</p> </dd></param>
  21000. <param name="dwVPartialOutSemantic"><dd> <p>Specifies the <strong><see cref="T:SharpDX.Direct3D9.DeclarationUsage" /></strong> type, typically <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Binormal" />, that describes where the partial derivative with respect to the V texture coordinate will be stored. If D3DX_DEFAULT, then this partial derivative will not be stored.</p> </dd></param>
  21001. <param name="dwVPartialOutIndex"><dd> <p>Specifies the semantic index at which to store the partial derivative with respect to the V texture coordinate.</p> </dd></param>
  21002. <param name="dwNormalOutSemantic"><dd> <p>Specifies the output normal semantic, typically <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Normal" />, that describes where the normal vector at each vertex will be stored. If D3DX_DEFAULT, then this normal vector will not be stored.</p> </dd></param>
  21003. <param name="dwNormalOutIndex"><dd> <p>Specifies the semantic index at which to store the normal vector at each vertex.</p> </dd></param>
  21004. <param name="dwOptions"><dd> <p>Combination of one or more <strong><see cref="T:SharpDX.Direct3D9.TangentOptions" /></strong> flags that specify tangent frame computation options. If <strong><c>null</c></strong>, the following options will be specified:</p> <table> <tr><th>Description</th><th> <strong><see cref="T:SharpDX.Direct3D9.TangentOptions" /></strong> Flag Value</th></tr> <tr><td>Weight the normal vector length by the angle, in radians, subtended by the two edges leaving the vertex.</td><td>&amp; !( <see cref="F:SharpDX.Direct3D9.TangentOptions.WeightByArea" /> | <see cref="F:SharpDX.Direct3D9.TangentOptions.WeightEqual" /> )</td></tr> <tr><td>Compute orthogonal Cartesian coordinates from texture coordinates (u, v). See Remarks.</td><td>&amp; !( <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromU" /> | <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromV" /> )</td></tr> <tr><td>Textures are not wrapped in either u or v directions</td><td>&amp; !( <see cref="F:SharpDX.Direct3D9.TangentOptions.WrapUV" /> )</td></tr> <tr><td>Partial derivatives with respect to texture coordinates are normalized.</td><td>&amp; !( <see cref="F:SharpDX.Direct3D9.TangentOptions.DontNormalizePartials" /> )</td></tr> <tr><td>Vertices are ordered in a counterclockwise direction around each triangle.</td><td>&amp; !( <see cref="F:SharpDX.Direct3D9.TangentOptions.WindCW" /> )</td></tr> <tr><td>Use per-vertex normal vectors already present in the input mesh.</td><td>&amp; !( <see cref="F:SharpDX.Direct3D9.TangentOptions.CalculateNormals" /> )</td></tr> </table> <p>?</p> <p>If <see cref="F:SharpDX.Direct3D9.TangentOptions.GenerateInPlace" /> is not set, the input mesh is cloned. The original mesh must therefore have sufficient space to store the computed normal vector and partial derivative data.</p> </dd></param>
  21005. <param name="dwAdjacencyRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the mesh. The number of bytes in this array must be at least 3 * <strong>GetNumFaces</strong> * sizeof(DWORD).</p> </dd></param>
  21006. <param name="fPartialEdgeThreshold"><dd> <p>Specifies the maximum cosine of the angle at which two partial derivatives are deemed to be incompatible with each other. If the dot product of the direction of the two partial derivatives in adjacent triangles is less than or equal to this threshold, then the vertices shared between these triangles will be split.</p> </dd></param>
  21007. <param name="fSingularPointThreshold"><dd> <p>Specifies the maximum magnitude of a partial derivative at which a vertex will be deemed singular. As multiple triangles are incident on a point that have nearby tangent frames, but altogether cancel each other out (such as at the top of a sphere), the magnitude of the partial derivative will decrease. If the magnitude is less than or equal to this threshold, then the vertex will be split for every triangle that contains it.</p> </dd></param>
  21008. <param name="fNormalEdgeThreshold"><dd> <p>Similar to fPartialEdgeThreshold, specifies the maximum cosine of the angle between two normals that is a threshold beyond which vertices shared between triangles will be split. If the dot product of the two normals is less than the threshold, the shared vertices will be split, forming a hard edge between neighboring triangles. If the dot product is more than the threshold, neighboring triangles will have their normals interpolated.</p> </dd></param>
  21009. <param name="meshOutOut"><dd> <p>Address of a reference to an output <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> mesh object that receives the computed tangent, binormal, and normal vector data.</p> </dd></param>
  21010. <param name="vertexMappingOut"><dd> <p>Address of a reference to an output <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> buffer object that receives a mapping of new vertices computed by this method to the original vertices. The buffer is an array of DWORDs, with the array size defined as the number of vertices in ppMeshOut.</p> </dd></param>
  21011. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21012. <remarks>
  21013. <p>A simplified version of this function is available as <strong><see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrame(SharpDX.Direct3D9.Mesh,System.Int32)" /></strong>.</p><p>The computed normal vector at each vertex is always normalized to have unit length.</p><p>The most robust solution for computing orthogonal Cartesian coordinates is to not set flags <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromU" /> and <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromV" />, so that orthogonal coordinates are computed from both texture coordinates u and v. However, in this case, if either u or v is zero, then the function will compute orthogonal coordinates using <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromV" /> or <see cref="F:SharpDX.Direct3D9.TangentOptions.OrthogonalizeFromU" />, respectively.</p>
  21014. </remarks>
  21015. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeTangentFrameEx']/*" />
  21016. <msdn-id>bb172745</msdn-id>
  21017. <unmanaged>HRESULT D3DXComputeTangentFrameEx([In] ID3DXMesh* pMesh,[In] unsigned int dwTextureInSemantic,[In] unsigned int dwTextureInIndex,[In] unsigned int dwUPartialOutSemantic,[In] unsigned int dwUPartialOutIndex,[In] unsigned int dwVPartialOutSemantic,[In] unsigned int dwVPartialOutIndex,[In] unsigned int dwNormalOutSemantic,[In] unsigned int dwNormalOutIndex,[In] unsigned int dwOptions,[In] const unsigned int* pdwAdjacency,[In] float fPartialEdgeThreshold,[In] float fSingularPointThreshold,[In] float fNormalEdgeThreshold,[In] ID3DXMesh** ppMeshOut,[In] ID3DXBuffer** ppVertexMapping)</unmanaged>
  21018. <unmanaged-short>D3DXComputeTangentFrameEx</unmanaged-short>
  21019. </member>
  21020. <member name="M:SharpDX.Direct3D9.D3DX9.SphereBoundProbe(SharpDX.Mathematics.Interop.RawVector3,System.Single,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3)">
  21021. <summary>
  21022. <p>Determines if a ray intersects the volume of a sphere's bounding box.</p>
  21023. </summary>
  21024. <param name="centerRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, specifying the center coordinate of the sphere.</p> </dd></param>
  21025. <param name="radius"><dd> <p>Radius of the sphere.</p> </dd></param>
  21026. <param name="rayPositionRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, specifying the origin coordinate of the ray.</p> </dd></param>
  21027. <param name="rayDirectionRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, specifying the direction of the ray. This vector should not be (0,0,0) but does not need to be normalized.</p> </dd></param>
  21028. <returns><p>Returns <strong>TRUE</strong> if the ray intersects the volume of the sphere's bounding box. Otherwise, returns <strong><see cref="F:SharpDX.Result.False" /></strong>.</p></returns>
  21029. <remarks>
  21030. <p><strong><see cref="M:SharpDX.Direct3D9.D3DX9.SphereBoundProbe(SharpDX.Mathematics.Interop.RawVector3,System.Single,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3)" /></strong> determines if the ray intersects the volume of the sphere's bounding box, not just the surface of the sphere.</p>
  21031. </remarks>
  21032. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSphereBoundProbe']/*" />
  21033. <msdn-id>bb204995</msdn-id>
  21034. <unmanaged>BOOL D3DXSphereBoundProbe([In] const D3DXVECTOR3* pCenter,[In] float Radius,[In] const D3DXVECTOR3* pRayPosition,[In] const D3DXVECTOR3* pRayDirection)</unmanaged>
  21035. <unmanaged-short>D3DXSphereBoundProbe</unmanaged-short>
  21036. </member>
  21037. <member name="M:SharpDX.Direct3D9.D3DX9.UVAtlasCreate(SharpDX.Direct3D9.Mesh,System.Int32,System.Single,System.Int32,System.Int32,System.Single,System.Int32,System.Int32,System.Int32,System.Single,SharpDX.FunctionCallback,System.Single,System.IntPtr,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Single,System.Int32)">
  21038. <summary>
  21039. <p>Create a UV atlas for a mesh.</p>
  21040. </summary>
  21041. <param name="meshRef"><dd> <p>Pointer to an input mesh (see <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>) which contains the object geometry for calculating the atlas. At a minimum, the mesh must contain position data and 2D texture coordinates.</p> </dd></param>
  21042. <param name="uMaxChartNumber"><dd> <p>The maximum number of charts to partition the mesh into. See remarks about the partitioning modes. Use 0 to tell D3DX that the atlas should be parameterized based on stretch.</p> </dd></param>
  21043. <param name="fMaxStretch"><dd> <p>The amount of stretching allowed. 0 means no stretching is allowed, 1 means any amount of stretching can be used.</p> </dd></param>
  21044. <param name="uWidth"><dd> <p>Texture width.</p> </dd></param>
  21045. <param name="uHeight"><dd> <p>Texture height.</p> </dd></param>
  21046. <param name="fGutter"><dd> <p>The minimum distance, in texels, between two charts on the atlas. The gutter is always scaled by the width; so, if a gutter of 2.5 is used on a 512x512 texture, then the minimum distance between two charts is 2.5 / 512.0 texels.</p> </dd></param>
  21047. <param name="dwTextureIndex"><dd> <p>Zero-based texture coordinate index that identifies which set of texture coordinates to use.</p> </dd></param>
  21048. <param name="dwAdjacencyRef"><dd> <p>A reference to an array of adjacency data. with 3 DWORDs per face, indicating which triangles are adjacent to each other (see <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GenerateAdjacency(System.Single,System.Int32)" /></strong>).</p> </dd></param>
  21049. <param name="dwFalseEdgeAdjacencyRef"><dd> <p>An array with 3 DWORDS per face. Each face indicates if an edge is false or not. A non-false edge is indicated by -1, a false edge is indicated by any other value. This enables the parameterization of a mesh of quads where the edges down the middle of each quad will not be cut.</p> </dd></param>
  21050. <param name="fIMTArrayRef"><dd> <p>A reference to an array of integrated metric tensors that describes how to stretch a triangle (see IntegratedMetricTensor).</p> </dd></param>
  21051. <param name="statusCallbackRef"><dd> <p>A reference to a callback function (see LPD3DXUVATLASCB) that is useful for monitoring progress.</p> </dd></param>
  21052. <param name="fCallbackFrequency"><dd> <p>Specify how often D3DX will call the callback; a reasonable default value is 0.0001f.</p> </dd></param>
  21053. <param name="userContextRef"><dd> <p>Pointer to a user-defined value which is passed to the callback function; typically used by an application to pass a reference to a data structure that provides context information for the callback function.</p> </dd></param>
  21054. <param name="dwOptions"><dd> <p>Specify the quality of the charts generated. See <strong>D3DXUVATLAS</strong>.</p> </dd></param>
  21055. <param name="meshOutOut"><dd> <p>Pointer to the created mesh with the atlas (see <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>).</p> </dd></param>
  21056. <param name="facePartitioningOut"><dd> <p>A reference to an array of the final face-partitioning data. Each element contains one DWORD per face (see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>).</p> </dd></param>
  21057. <param name="vertexRemapArrayOut"><dd> <p>A reference to an array of remapped vertices. Each array element identifies the original vertex that each final vertex came from (if the vertex was split during remapping). Each array element contains one DWORD per vertex.</p> </dd></param>
  21058. <param name="fMaxStretchOutRef"><dd> <p>A reference to the maximum stretch value generated by the atlas algorithm. The range is between 0.0 and 1.0.</p> </dd></param>
  21059. <param name="uNumChartsOutRef"><dd> <p>A reference to the number of charts created by the atlas algorithm. If dwMaxChartNumber is too low, this parameter will return the minimum number of charts required to create an atlas.</p> </dd></param>
  21060. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />; otherwise, the value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  21061. <remarks>
  21062. <p><see cref="M:SharpDX.Direct3D9.D3DX9.UVAtlasCreate(SharpDX.Direct3D9.Mesh,System.Int32,System.Single,System.Int32,System.Int32,System.Single,System.Int32,System.Int32,System.Int32,System.Single,SharpDX.FunctionCallback,System.Single,System.IntPtr,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Single,System.Int32)" /> can partition mesh geometry two ways:</p><ul> <li>Based on the number of charts</li> <li>Based on the maximum allowed stretch. If the maximum allowed stretch is 0, each triangle will likely be in its own chart.</li> </ul>
  21063. </remarks>
  21064. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXUVAtlasCreate']/*" />
  21065. <msdn-id>bb205479</msdn-id>
  21066. <unmanaged>HRESULT D3DXUVAtlasCreate([In] ID3DXMesh* pMesh,[In] unsigned int uMaxChartNumber,[In] float fMaxStretch,[In] unsigned int uWidth,[In] unsigned int uHeight,[In] float fGutter,[In] unsigned int dwTextureIndex,[In] const unsigned int* pdwAdjacency,[In] const unsigned int* pdwFalseEdgeAdjacency,[In] const float* pfIMTArray,[In] __function__stdcall* pStatusCallback,[In] float fCallbackFrequency,[In] void* pUserContext,[In] unsigned int dwOptions,[In] ID3DXMesh** ppMeshOut,[In] ID3DXBuffer** ppFacePartitioning,[In] ID3DXBuffer** ppVertexRemapArray,[In] float* pfMaxStretchOut,[In] unsigned int* puNumChartsOut)</unmanaged>
  21067. <unmanaged-short>D3DXUVAtlasCreate</unmanaged-short>
  21068. </member>
  21069. <member name="M:SharpDX.Direct3D9.D3DX9.UVAtlasPartition(SharpDX.Direct3D9.Mesh,System.Int32,System.Single,System.Int32,System.Int32,System.Int32,System.Single,SharpDX.FunctionCallback,System.Single,System.IntPtr,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Single,System.Int32)">
  21070. <summary>
  21071. <p>Create a UV atlas for a mesh.</p>
  21072. </summary>
  21073. <param name="meshRef"><dd> <p>Pointer to an input mesh (see <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>) that contains the object geometry for calculating the atlas. At a minimum, the mesh must contain position data and 2D texture coordinates.</p> </dd></param>
  21074. <param name="uMaxChartNumber"><dd> <p>The maximum number of charts to partition the mesh into. See remarks about the partitioning modes. Use 0 to tell D3DX that the atlas should be parameterized based on stretch.</p> </dd></param>
  21075. <param name="fMaxStretch"><dd> <p>The amount of stretching allowed. 0 means no stretching is allowed, 1 means any amount of stretching can be used.</p> </dd></param>
  21076. <param name="dwTextureIndex"><dd> <p>Zero-based texture coordinate index that identifies which set of texture coordinates to use.</p> </dd></param>
  21077. <param name="dwAdjacencyRef"><dd> <p>A reference to an array of adjacency data with 3 DWORDs per face, indicating which triangles are adjacent to each other (see <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GenerateAdjacency(System.Single,System.Int32)" /></strong>).</p> </dd></param>
  21078. <param name="dwFalseEdgeAdjacencyRef"><dd> <p>An array with 3 DWORDS per face. Each face indicates if an edge is false or not. A non-false edge is indicated by -1, a false edge is indicated by any other value. This enables the parameterization of a mesh of quads where the edges down the middle of each quad will not be cut.</p> </dd></param>
  21079. <param name="fIMTArrayRef"><dd> <p>A reference to an array of integrated metric tensors that describes how to stretch a triangle (see IntegratedMetricTensor).</p> </dd></param>
  21080. <param name="statusCallbackRef"><dd> <p>A reference to a callback function (see LPD3DXUVATLASCB) that is useful for monitoring progress.</p> </dd></param>
  21081. <param name="fCallbackFrequency"><dd> <p>Specify how often D3DX will call the callback; a reasonable default value is 0.0001f.</p> </dd></param>
  21082. <param name="userContextRef"><dd> <p>Pointer to a user-defined value that is passed to the callback function; typically used by an application to pass a reference to a data structure that provides context information for the callback function.</p> </dd></param>
  21083. <param name="dwOptions"><dd> <p>Specify the quality of the charts generated by combining one or more <strong>D3DXUVATLAS</strong> flags.</p> </dd></param>
  21084. <param name="meshOutOut"><dd> <p>Pointer to the created mesh with the atlas (see <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>).</p> </dd></param>
  21085. <param name="facePartitioningOut"><dd> <p>A reference to an array of the final face-partitioning data. Each element contains one DWORD per face (see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>).</p> </dd></param>
  21086. <param name="vertexRemapArrayOut"><dd> <p>A reference to an array of remapped vertices. Each array element identifies the original vertex each final vertex came from (if the vertex was split during remapping). Each array element contains one DWORD per vertex.</p> </dd></param>
  21087. <param name="partitionResultAdjacencyOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. This buffer will contain an array of three DWORDs per face that specify the three neighbors for each face in the output mesh. This parameter must not be <strong><c>null</c></strong>, because the subsequent call to <see cref="M:SharpDX.Direct3D9.D3DX9.UVAtlasPack(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Single,System.Int32,System.Int32,SharpDX.FunctionCallback,System.Single,System.IntPtr,System.Int32,SharpDX.Direct3D.Blob)" />() requires it.</p> </dd></param>
  21088. <param name="fMaxStretchOutRef"><dd> <p>A reference to the maximum stretch value generated by the atlas algorithm. The range is between 0.0 and 1.0.</p> </dd></param>
  21089. <param name="uNumChartsOutRef"><dd> <p>A reference to the number of charts created by the atlas algorithm. If dwMaxChartNumber is too low, this parameter will return the minimum number of charts required to create an atlas.</p> </dd></param>
  21090. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />; otherwise, the value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  21091. <remarks>
  21092. <p><see cref="M:SharpDX.Direct3D9.D3DX9.UVAtlasPartition(SharpDX.Direct3D9.Mesh,System.Int32,System.Single,System.Int32,System.Int32,System.Int32,System.Single,SharpDX.FunctionCallback,System.Single,System.IntPtr,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Single,System.Int32)" /> is similar to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.UVAtlasCreate(SharpDX.Direct3D9.Mesh,System.Int32,System.Single,System.Int32,System.Int32,System.Single,System.Int32,System.Int32,System.Int32,System.Single,SharpDX.FunctionCallback,System.Single,System.IntPtr,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Single,System.Int32)" /></strong>, except that <see cref="M:SharpDX.Direct3D9.D3DX9.UVAtlasPartition(SharpDX.Direct3D9.Mesh,System.Int32,System.Single,System.Int32,System.Int32,System.Int32,System.Single,SharpDX.FunctionCallback,System.Single,System.IntPtr,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Single,System.Int32)" /> does not performing the final packing step.</p>
  21093. </remarks>
  21094. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXUVAtlasPartition']/*" />
  21095. <msdn-id>bb205481</msdn-id>
  21096. <unmanaged>HRESULT D3DXUVAtlasPartition([In] ID3DXMesh* pMesh,[In] unsigned int uMaxChartNumber,[In] float fMaxStretch,[In] unsigned int dwTextureIndex,[In] const unsigned int* pdwAdjacency,[In] const unsigned int* pdwFalseEdgeAdjacency,[In] const float* pfIMTArray,[In] __function__stdcall* pStatusCallback,[In] float fCallbackFrequency,[In] void* pUserContext,[In] unsigned int dwOptions,[In] ID3DXMesh** ppMeshOut,[In] ID3DXBuffer** ppFacePartitioning,[In] ID3DXBuffer** ppVertexRemapArray,[In] ID3DXBuffer** ppPartitionResultAdjacency,[In] float* pfMaxStretchOut,[In] unsigned int* puNumChartsOut)</unmanaged>
  21097. <unmanaged-short>D3DXUVAtlasPartition</unmanaged-short>
  21098. </member>
  21099. <member name="M:SharpDX.Direct3D9.D3DX9.CreatePMeshFromStream(System.IntPtr,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.ProgressiveMesh@)">
  21100. <summary>
  21101. No documentation.
  21102. </summary>
  21103. <param name="streamRef">No documentation.</param>
  21104. <param name="options">No documentation.</param>
  21105. <param name="d3DDeviceRef">No documentation.</param>
  21106. <param name="materialsOut">No documentation.</param>
  21107. <param name="effectInstancesOut">No documentation.</param>
  21108. <param name="numMaterialsRef">No documentation.</param>
  21109. <param name="pMeshOut">No documentation.</param>
  21110. <returns>No documentation.</returns>
  21111. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreatePMeshFromStream']/*" />
  21112. <unmanaged>HRESULT D3DXCreatePMeshFromStream([In] IStream* pStream,[In] unsigned int Options,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXBuffer** ppMaterials,[In] ID3DXBuffer** ppEffectInstances,[In] unsigned int* pNumMaterials,[In] ID3DXPMesh** ppPMesh)</unmanaged>
  21113. <unmanaged-short>D3DXCreatePMeshFromStream</unmanaged-short>
  21114. </member>
  21115. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeIMTFromTexture(SharpDX.Direct3D9.Mesh,SharpDX.Direct3D9.Texture,System.Int32,System.Int32,SharpDX.FunctionCallback,System.IntPtr,SharpDX.Direct3D.Blob@)">
  21116. <summary>
  21117. <p>Calculates per-triangle IMT's from a texture mapped onto a mesh, to be used optionally as input to the D3DX UVAtlas Functions.</p>
  21118. </summary>
  21119. <param name="meshRef">No documentation.</param>
  21120. <param name="textureRef">No documentation.</param>
  21121. <param name="dwTextureIndex">No documentation.</param>
  21122. <param name="dwOptions">No documentation.</param>
  21123. <param name="statusCallbackRef">No documentation.</param>
  21124. <param name="userContextRef">No documentation.</param>
  21125. <param name="iMTDataOut">No documentation.</param>
  21126. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />; otherwise, the value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  21127. <remarks>
  21128. <p>Given a texture that maps over the surface of the mesh, the algorithm computes the IMT for each face. This will cause triangles containing lower-frequency signal data to take up less space in the final texture atlas when parameterized with the UVAtlas functions. The texture is assumed to be interpolated over the mesh bilinearly.</p>
  21129. </remarks>
  21130. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeIMTFromTexture']/*" />
  21131. <msdn-id>bb172740</msdn-id>
  21132. <unmanaged>HRESULT D3DXComputeIMTFromTexture([In] ID3DXMesh* pMesh,[In] IDirect3DTexture9* pTexture,[In] unsigned int dwTextureIndex,[In] unsigned int dwOptions,[In] __function__stdcall* pStatusCallback,[In] void* pUserContext,[In] ID3DXBuffer** ppIMTData)</unmanaged>
  21133. <unmanaged-short>D3DXComputeIMTFromTexture</unmanaged-short>
  21134. </member>
  21135. <member name="M:SharpDX.Direct3D9.D3DX9.CreateSPMesh(SharpDX.Direct3D9.Mesh,System.Int32,SharpDX.Direct3D9.AttributeWeights@,System.Single,SharpDX.Direct3D9.SimplificationMesh@)">
  21136. <summary>
  21137. No documentation.
  21138. </summary>
  21139. <param name="meshRef">No documentation.</param>
  21140. <param name="adjacencyRef">No documentation.</param>
  21141. <param name="vertexAttributeWeightsRef">No documentation.</param>
  21142. <param name="vertexWeightsRef">No documentation.</param>
  21143. <param name="sMeshOut">No documentation.</param>
  21144. <returns>No documentation.</returns>
  21145. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateSPMesh']/*" />
  21146. <unmanaged>HRESULT D3DXCreateSPMesh([In] ID3DXMesh* pMesh,[In] const unsigned int* pAdjacency,[In] const D3DXATTRIBUTEWEIGHTS* pVertexAttributeWeights,[In] const float* pVertexWeights,[In] ID3DXSPMesh** ppSMesh)</unmanaged>
  21147. <unmanaged-short>D3DXCreateSPMesh</unmanaged-short>
  21148. </member>
  21149. <member name="M:SharpDX.Direct3D9.D3DX9.ConcatenateMeshes(SharpDX.Direct3D9.Mesh@,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawMatrix@,SharpDX.Mathematics.Interop.RawMatrix@,SharpDX.Direct3D9.VertexElement[],SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)">
  21150. <summary>
  21151. <p>Concatenates a group of meshes into one common mesh. This method can optionally apply a matrix transformation to each input mesh and its texture coordinates.</p>
  21152. </summary>
  21153. <param name="meshesOut"><dd> <p>Array of input mesh references (see <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>). The number of elements in the array is NumMeshes.</p> </dd></param>
  21154. <param name="numMeshes"><dd> <p>Number of input meshes to concatenate.</p> </dd></param>
  21155. <param name="options"><dd> <p>Mesh creation options; this is a combination of one or more <strong>D3DXMESH</strong> flags. The mesh creation options are equivalent to the options parameter required by <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateMesh(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)" /></strong>.</p> </dd></param>
  21156. <param name="geomXFormsRef"><dd> <p>Optional array of geometry transforms. The number of elements in the array is NumMeshes; each element is a transformation matrix (see <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>). May be <strong><c>null</c></strong>.</p> </dd></param>
  21157. <param name="textureXFormsRef"><dd> <p>Optional array of texture transforms. The number of elements in the array is NumMeshes; each element is a transformation matrix (see <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>). This parameter may be <strong><c>null</c></strong>.</p> </dd></param>
  21158. <param name="declRef"><dd> <p>Optional reference to a vertex declaration (see <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong>). This parameter may be <strong><c>null</c></strong>.</p> </dd></param>
  21159. <param name="d3DDeviceRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> device that is used to create the new mesh.</p> </dd></param>
  21160. <param name="meshOutOut"><dd> <p>Address of a reference to the mesh created (see <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>).</p> </dd></param>
  21161. <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 these: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21162. <remarks>
  21163. <p>If no vertex declaration is given as part of the Options mesh creation parameter, the method will generate a union of all of the vertex declarations of the submeshes, promoting channels and types if necessary. The method will create an attribute table from attribute tables of the input meshes. To ensure creation of an attribute table, call <strong>Optimize</strong> with Flags set to <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.Compact" /> and <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.AttributeSort" /> (see <strong>D3DXMESHOPT</strong>).</p>
  21164. </remarks>
  21165. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXConcatenateMeshes']/*" />
  21166. <msdn-id>bb172746</msdn-id>
  21167. <unmanaged>HRESULT D3DXConcatenateMeshes([In] ID3DXMesh** ppMeshes,[In] unsigned int NumMeshes,[In] unsigned int Options,[In] const D3DXMATRIX* pGeomXForms,[In] const D3DXMATRIX* pTextureXForms,[In, Buffer] const D3DVERTEXELEMENT9* pDecl,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXMesh** ppMeshOut)</unmanaged>
  21168. <unmanaged-short>D3DXConcatenateMeshes</unmanaged-short>
  21169. </member>
  21170. <member name="M:SharpDX.Direct3D9.D3DX9.BoxBoundProbe(SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3)">
  21171. <summary>
  21172. <p>Determines whether a ray intersects the volume of a box's bounding box.</p>
  21173. </summary>
  21174. <param name="minRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong>, describing the lower-left corner of the bounding box. See Remarks.</p> </dd></param>
  21175. <param name="maxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, describing the upper-right corner of the bounding box. See Remarks.</p> </dd></param>
  21176. <param name="rayPositionRef"><dd> <p>Pointer to a <see cref="T:SharpDX.Mathematics.Interop.RawVector3" /> structure, specifying the origin coordinate of the ray.</p> </dd></param>
  21177. <param name="rayDirectionRef"><dd> <p>Pointer to a <see cref="T:SharpDX.Mathematics.Interop.RawVector3" /> structure, specifying the direction of the ray. This vector should not be (0,0,0) but does not need to be normalized.</p> </dd></param>
  21178. <returns><p>Returns <strong>TRUE</strong> if the ray intersects the volume of the box's bounding box. Otherwise, returns <strong><see cref="F:SharpDX.Result.False" /></strong>.</p></returns>
  21179. <remarks>
  21180. <p><strong><see cref="M:SharpDX.Direct3D9.D3DX9.BoxBoundProbe(SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3)" /></strong> determines if the ray intersects the volume of the box's bounding box, not just the surface of the box.</p><p>The values passed to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.BoxBoundProbe(SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawVector3)" /></strong> are xmin, xmax, ymin, ymax, zmin, and zmax. Thus, the following defines the corners of the bounding box.</p><pre> xmax, ymax, zmax
  21181. xmax, ymax, zmin
  21182. xmax, ymin, zmax
  21183. xmax, ymin, zmin
  21184. xmin, ymax, zmax
  21185. xmin, ymax, zmin
  21186. xmin, ymin, zmax
  21187. xmin, ymin, zmin
  21188. </pre><p>The depth of the bounding box in the z direction is zmax - zmin, in the y direction is ymax - ymin, and in the x direction is xmax - xmin. For example, with the following minimum and maximum vectors, min (-1, -1, -1) and max (1, 1, 1), the bounding box is defined in the following manner.</p><pre> 1, 1, 1 1, 1, -1 1, -1, 1 1, -1, -1
  21189. -1, 1, 1
  21190. -1, 1, -1
  21191. -1, -1, 1
  21192. -1, -1, -l
  21193. </pre>
  21194. </remarks>
  21195. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXBoxBoundProbe']/*" />
  21196. <msdn-id>bb204916</msdn-id>
  21197. <unmanaged>BOOL D3DXBoxBoundProbe([In] const D3DXVECTOR3* pMin,[In] const D3DXVECTOR3* pMax,[In] const D3DXVECTOR3* pRayPosition,[In] const D3DXVECTOR3* pRayDirection)</unmanaged>
  21198. <unmanaged-short>D3DXBoxBoundProbe</unmanaged-short>
  21199. </member>
  21200. <member name="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXResource(System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)">
  21201. <summary>
  21202. <p>Loads a mesh from a resource.</p>
  21203. </summary>
  21204. <param name="module"><dd> <p>Handle to the module where the resource is located, or <strong><c>null</c></strong> for the module associated with the image the operating system used to create the current process. See remarks.</p> </dd></param>
  21205. <param name="name"><dd> <p>Pointer to a string that specifies the resource to create the mesh from. See remarks.</p> </dd></param>
  21206. <param name="type"><dd> <p>Pointer to a string that specifies the resource type. See remarks.</p> </dd></param>
  21207. <param name="options"><dd> <p>Combination of one or more flags from the <strong>D3DXMESH</strong> enumeration that specify creation options for the mesh.</p> </dd></param>
  21208. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device object associated with the mesh.</p> </dd></param>
  21209. <param name="adjacencyOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When the method returns, this parameter is filled with an array of three DWORDs per face that specify the three neighbors for each face in the mesh.</p> </dd></param>
  21210. <param name="materialsOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When this method returns, this parameter is filled with an array of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures, containing information saved in the DirectX file.</p> </dd></param>
  21211. <param name="effectInstancesOut"><dd> <p>Pointer to a buffer containing an array of effect instances, one per attribute group in the returned mesh. An effect instance is a particular instance of state information used to initialize an effect. See <strong><see cref="T:SharpDX.Direct3D9.EffectInstance" /></strong>. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  21212. <param name="numMaterialsRef"><dd> <p>Pointer to the number of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures in the <em>ppMaterials</em> array, when the method returns.</p> </dd></param>
  21213. <param name="meshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the loaded mesh.</p> </dd></param>
  21214. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21215. <remarks>
  21216. <p>See <strong>FindResource</strong> to find out more about the Module, Name and Type parameters.</p><p>All the meshes in the file will be collapsed into one output mesh. If the file contains a frame hierarchy, all the transformations will be applied to the mesh.</p><p>For mesh files that do not contain effect instance information, default effect instances will be generated from the material information in the .x file. A default effect instance will have default values that correspond to the members of the <strong><see cref="T:SharpDX.Direct3D9.Material" /></strong> structure.</p><p>The default texture name is also filled in, but is handled differently. The name will be Texture0@Name, which corresponds to an effect variable by the name of "Texture0" with an annotation called "Name." This will contain the string file name for the texture.</p>
  21217. </remarks>
  21218. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadMeshFromXResource']/*" />
  21219. <msdn-id>bb172893</msdn-id>
  21220. <unmanaged>HRESULT D3DXLoadMeshFromXResource([In] HINSTANCE Module,[In] const char* Name,[In] const char* Type,[In] unsigned int Options,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXBuffer** ppAdjacency,[In] ID3DXBuffer** ppMaterials,[In] ID3DXBuffer** ppEffectInstances,[In] unsigned int* pNumMaterials,[In] ID3DXMesh** ppMesh)</unmanaged>
  21221. <unmanaged-short>D3DXLoadMeshFromXResource</unmanaged-short>
  21222. </member>
  21223. <member name="M:SharpDX.Direct3D9.D3DX9.SimplifyMesh(SharpDX.Direct3D9.Mesh,System.Int32,SharpDX.Direct3D9.AttributeWeights@,System.Single,System.Int32,System.Int32,SharpDX.Direct3D9.Mesh@)">
  21224. <summary>
  21225. <p>Generates a simplified mesh using the provided weights that come as close as possible to the given MinValue.</p>
  21226. </summary>
  21227. <param name="meshRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the source mesh.</p> </dd></param>
  21228. <param name="adjacencyRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the mesh to be simplified.</p> </dd></param>
  21229. <param name="vertexAttributeWeightsRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.AttributeWeights" /></strong> structure, containing the weight for each vertex component. If this parameter is set to <strong><c>null</c></strong>, a default structure is used. See Remarks.</p> </dd></param>
  21230. <param name="vertexWeightsRef"><dd> <p>Pointer to an array of vertex weights. If this parameter is set to <strong><c>null</c></strong>, all vertex weights are set to 1.0.</p> </dd></param>
  21231. <param name="minValue"><dd> <p>Number of vertices or faces, depending on the flag set in the <em>Options</em> parameter, by which to simplify the source mesh.</p> </dd></param>
  21232. <param name="options"><dd> <p>Specifies simplification options for the mesh. One of the flags in <strong>D3DXMESHSIMP</strong> can be set.</p> </dd></param>
  21233. <param name="meshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the returned simplification mesh.</p> </dd></param>
  21234. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21235. <remarks>
  21236. <p>This function generates a mesh that has <em>MinValue</em> vertices or faces.</p><p>If the simplification process cannot reduce the mesh to <em>MinValue</em>, the call still succeeds because <em>MinValue</em> is a desired minimum, not an absolute minimum.</p><p>If <em>pVertexAttributeWeights</em> is set to <strong><c>null</c></strong>, the following values are assigned to the default <strong><see cref="T:SharpDX.Direct3D9.AttributeWeights" /></strong> structure.</p><pre> <see cref="T:SharpDX.Direct3D9.AttributeWeights" /> AttributeWeights; AttributeWeights.Position = 1.0;
  21237. AttributeWeights.Boundary = 1.0;
  21238. AttributeWeights.Normal = 1.0;
  21239. AttributeWeights.Diffuse = 0.0;
  21240. AttributeWeights.Specular = 0.0;
  21241. AttributeWeights.Tex[8] = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0};
  21242. </pre><p>This default structure is what most applications should use because it considers only geometric and normal adjustment. Only in special cases will the other member fields need to be modified. </p>
  21243. </remarks>
  21244. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSimplifyMesh']/*" />
  21245. <msdn-id>bb205463</msdn-id>
  21246. <unmanaged>HRESULT D3DXSimplifyMesh([In] ID3DXMesh* pMesh,[In] const unsigned int* pAdjacency,[In] const D3DXATTRIBUTEWEIGHTS* pVertexAttributeWeights,[In] const float* pVertexWeights,[In] unsigned int MinValue,[In] unsigned int Options,[In] ID3DXMesh** ppMesh)</unmanaged>
  21247. <unmanaged-short>D3DXSimplifyMesh</unmanaged-short>
  21248. </member>
  21249. <member name="M:SharpDX.Direct3D9.D3DX9.CreateMeshFVF(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)">
  21250. <summary>
  21251. <p>Creates a mesh object using a flexible vertex format (FVF) code.</p>
  21252. </summary>
  21253. <param name="numFaces"><dd> <p>Number of faces for the mesh. The valid range for this number is greater than 0, and one less than the max DWORD value, typically 232 - 1, because the last index is reserved.</p> </dd></param>
  21254. <param name="numVertices"><dd> <p>Number of vertices for the mesh. This parameter must be greater than 0.</p> </dd></param>
  21255. <param name="options"><dd> <p>Combination of one or more flags from the <strong>D3DXMESH</strong> enumeration, specifying creation options for the mesh. </p> </dd></param>
  21256. <param name="fvf"><dd> <p>Combination of <see cref="T:SharpDX.Direct3D9.VertexFormat" /> that describes the vertex format for the returned mesh. This function does not support <see cref="F:SharpDX.Direct3D9.VertexFormat.PositionRhw" />.</p> </dd></param>
  21257. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device object to be associated with the mesh.</p> </dd></param>
  21258. <param name="meshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the created mesh object.</p> </dd></param>
  21259. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21260. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateMeshFVF']/*" />
  21261. <msdn-id>bb172781</msdn-id>
  21262. <unmanaged>HRESULT D3DXCreateMeshFVF([In] unsigned int NumFaces,[In] unsigned int NumVertices,[In] unsigned int Options,[In] D3DFVF FVF,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXMesh** ppMesh)</unmanaged>
  21263. <unmanaged-short>D3DXCreateMeshFVF</unmanaged-short>
  21264. </member>
  21265. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeIMTFromPerVertexSignal(SharpDX.Direct3D9.Mesh,System.Single,System.Int32,System.Int32,System.Int32,SharpDX.FunctionCallback,System.IntPtr,SharpDX.Direct3D.Blob@)">
  21266. <summary>
  21267. <p>Calculate per-triangle IMT's from from per-vertex data. This function allows you to calculate the IMT based off of any value in a mesh (color, normal, etc).</p>
  21268. </summary>
  21269. <param name="meshRef"><dd> <p>A reference to an input mesh (see <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>) which contains the object geometry for calculating the IMT.</p> </dd></param>
  21270. <param name="fVertexSignalRef"><dd> <p>A reference to an array of per-vertex data from which IMT will be computed. The array size is uSignalStride * v, where v is the number of vertices in the mesh.</p> </dd></param>
  21271. <param name="uSignalDimension"><dd> <p>The number of floats per vertex.</p> </dd></param>
  21272. <param name="uSignalStride"><dd> <p>The number of bytes per vertex in the array. This must be a multiple of sizeof(float)</p> </dd></param>
  21273. <param name="dwOptions"><dd> <p>Texture wrap options. This is a combination of one or more <strong><see cref="T:SharpDX.Direct3D9.UVAtlasQuality" /> FLAGS</strong>.</p> </dd></param>
  21274. <param name="statusCallbackRef"><dd> <p>A reference to a callback function to monitor IMT computation progress.</p> </dd></param>
  21275. <param name="userContextRef"><dd> <p>A reference to a user-defined variable which is passed to the status callback function. Typically used by an application to pass a reference to a data structure that provides context information for the callback function.</p> </dd></param>
  21276. <param name="iMTDataOut"><dd> <p>A reference to the buffer (see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>) containing the returned IMT array. This array can be provided as input to the D3DX UVAtlas Functions to prioritize texture-space allocation in the texture parameterization.</p> </dd></param>
  21277. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />; otherwise, the value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  21278. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeIMTFromPerVertexSignal']/*" />
  21279. <msdn-id>bb172738</msdn-id>
  21280. <unmanaged>HRESULT D3DXComputeIMTFromPerVertexSignal([In] ID3DXMesh* pMesh,[In] const float* pfVertexSignal,[In] unsigned int uSignalDimension,[In] unsigned int uSignalStride,[In] unsigned int dwOptions,[In] __function__stdcall* pStatusCallback,[In] void* pUserContext,[In] ID3DXBuffer** ppIMTData)</unmanaged>
  21281. <unmanaged-short>D3DXComputeIMTFromPerVertexSignal</unmanaged-short>
  21282. </member>
  21283. <member name="M:SharpDX.Direct3D9.D3DX9.OptimizeVertices(System.IntPtr,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32[])">
  21284. <summary>
  21285. <p>Generates an optimized vertex remapping for a triangle list. This function is commonly used after applying the face remapping generated by <strong><see cref="M:SharpDX.Direct3D9.D3DX9.OptimizeFaces(System.IntPtr,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32[])" /></strong>.</p>
  21286. </summary>
  21287. <param name="bIndicesRef">No documentation.</param>
  21288. <param name="cFaces">No documentation.</param>
  21289. <param name="cVertices">No documentation.</param>
  21290. <param name="b32BitIndices">No documentation.</param>
  21291. <param name="vertexRemapRef">No documentation.</param>
  21292. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21293. <remarks>
  21294. <p>By default, a mesh uses 16 bit indices when it is created unless the application specifies otherwise. To check whether an existing mesh uses 16-bit or 32-bit indices, call <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GetOptions" /></strong> and check for the <see cref="F:SharpDX.Direct3D9.MeshFlags.Use32Bit" /> flag.</p>
  21295. </remarks>
  21296. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXOptimizeVertices']/*" />
  21297. <msdn-id>bb205377</msdn-id>
  21298. <unmanaged>HRESULT D3DXOptimizeVertices([In] const void* pbIndices,[In] unsigned int cFaces,[In] unsigned int cVertices,[In] BOOL b32BitIndices,[In, Buffer] int* pVertexRemap)</unmanaged>
  21299. <unmanaged-short>D3DXOptimizeVertices</unmanaged-short>
  21300. </member>
  21301. <member name="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXof(SharpDX.Direct3D9.XFileData,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)">
  21302. <summary>
  21303. <p>Loads a mesh from a DirectX .x file.</p>
  21304. </summary>
  21305. <param name="xofMeshRef"><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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  21306. <param name="options"><dd> <p>Combination of one or more flags from the <strong>D3DXMESH</strong> enumeration, which specifies creation options for the mesh.</p> </dd></param>
  21307. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device object associated with the mesh.</p> </dd></param>
  21308. <param name="adjacencyOut"><dd> <p>Pointer to a buffer that contains adjacency data. The adjacency data contains an array of three DWORDs per face that specify the three neighbors for each face in the mesh. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  21309. <param name="materialsOut"><dd> <p>Pointer to a buffer containing materials data. The buffer contains an array of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures, containing information from the DirectX file. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  21310. <param name="effectInstancesOut"><dd> <p>Pointer to a buffer containing an array of effect instances, one per attribute group in the returned mesh. An effect instance is a particular instance of state information used to initialize an effect. See <strong><see cref="T:SharpDX.Direct3D9.EffectInstance" /></strong>. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  21311. <param name="numMaterialsRef"><dd> <p>Pointer to the number of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures in the <em>ppMaterials</em> array, when the method returns.</p> </dd></param>
  21312. <param name="meshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the loaded mesh.</p> </dd></param>
  21313. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21314. <remarks>
  21315. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)" />. Otherwise, the function call resolves to D3DXLoadMeshFromXA because ANSI strings are being used.</p><p>All the meshes in the file will be collapsed into one output mesh. If the file contains a frame hierarchy, all the transformations will be applied to the mesh.</p><p>For mesh files that do not contain effect instance information, default effect instances will be generated from the material information in the .x file. A default effect instance will have default values that correspond to the members of the <strong><see cref="T:SharpDX.Direct3D9.Material" /></strong> structure.</p><p>The default texture name is also filled in, but is handled differently. The name will be Texture0@Name, which corresponds to an effect variable by the name of "Texture0" with an annotation called "Name." This will contain the string file name for the texture.</p>
  21316. </remarks>
  21317. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadMeshFromXof']/*" />
  21318. <msdn-id>bb172890</msdn-id>
  21319. <unmanaged>HRESULT D3DXLoadMeshFromXof([In] ID3DXFileData* pxofMesh,[In] unsigned int Options,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXBuffer** ppAdjacency,[In] ID3DXBuffer** ppMaterials,[In] ID3DXBuffer** ppEffectInstances,[In] unsigned int* pNumMaterials,[In] ID3DXMesh** ppMesh)</unmanaged>
  21320. <unmanaged-short>D3DXLoadMeshFromXof</unmanaged-short>
  21321. </member>
  21322. <member name="M:SharpDX.Direct3D9.D3DX9.CreatePatchMesh(SharpDX.Direct3D9.PatchInfo,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexElement[],SharpDX.Direct3D9.Device,SharpDX.Direct3D9.PatchMesh@)">
  21323. <summary>
  21324. <p>Creates a mesh from a control-patch mesh.</p>
  21325. </summary>
  21326. <param name="infoRef"><dd> <p>Patch information structure. For more information, see <strong><see cref="T:SharpDX.Direct3D9.PatchInfo" /></strong>.</p> </dd></param>
  21327. <param name="dwNumPatches"><dd> <p>Number of patches.</p> </dd></param>
  21328. <param name="dwNumVertices"><dd> <p>Number of control vertices in the patch.</p> </dd></param>
  21329. <param name="dwOptions"><dd> <p>Unused. Reserved for later use.</p> </dd></param>
  21330. <param name="declRef"><dd> <p>Array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements, describing the vertex format for the returned mesh.</p> </dd></param>
  21331. <param name="d3DDeviceRef"><dd> <p>Pointer the device that creates the patch mesh. See <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>.</p> </dd></param>
  21332. <param name="patchMeshRef"><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Direct3D9.PatchMesh" /></strong> object that is created.</p> </dd></param>
  21333. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21334. <remarks>
  21335. <p>This method takes an input patch mesh and converts it to a tessellated mesh. Patch meshes use 16-bit index buffers. Therefore, indices to <strong>LockIndexBuffer</strong> are 16 bits.</p>
  21336. </remarks>
  21337. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreatePatchMesh']/*" />
  21338. <msdn-id>bb172783</msdn-id>
  21339. <unmanaged>HRESULT D3DXCreatePatchMesh([In] const D3DXPATCHINFO* pInfo,[In] unsigned int dwNumPatches,[In] unsigned int dwNumVertices,[In] unsigned int dwOptions,[In, Buffer] const D3DVERTEXELEMENT9* pDecl,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXPatchMesh** pPatchMesh)</unmanaged>
  21340. <unmanaged-short>D3DXCreatePatchMesh</unmanaged-short>
  21341. </member>
  21342. <member name="M:SharpDX.Direct3D9.D3DX9.RectPatchSize(System.Single,System.Int32@,System.Int32@)">
  21343. <summary>
  21344. <p>Gets the size of the rectangle patch.</p>
  21345. </summary>
  21346. <param name="fNumSegsRef"><dd> <p>Number of segments per edge to tessellate.</p> </dd></param>
  21347. <param name="dwTrianglesRef"><dd> <p>Pointer to a DWORD that contains the number of triangles in the patch.</p> </dd></param>
  21348. <param name="dwVerticesRef"><dd> <p>Pointer to a DWORD that contains the number of vertices in the patch.</p> </dd></param>
  21349. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21350. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRectPatchSize']/*" />
  21351. <msdn-id>bb205423</msdn-id>
  21352. <unmanaged>HRESULT D3DXRectPatchSize([In] const float* pfNumSegs,[Out] unsigned int* pdwTriangles,[Out] unsigned int* pdwVertices)</unmanaged>
  21353. <unmanaged-short>D3DXRectPatchSize</unmanaged-short>
  21354. </member>
  21355. <member name="M:SharpDX.Direct3D9.D3DX9.TessellateTriPatch(SharpDX.Direct3D9.VertexBuffer,System.Single,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.TrianglePatchInfo,SharpDX.Direct3D9.Mesh)">
  21356. <summary>
  21357. <p>Tessellates a triangular higher-order surface patch into a triangle mesh.</p>
  21358. </summary>
  21359. <param name="vBRef"><dd> <p>Vertex buffer containing the patch data.</p> </dd></param>
  21360. <param name="numSegsRef"><dd> <p>Pointer to an array of three floating-point values that identify the number of segments into which each edge of the triangle patch should be divided when tessellated. See <strong><see cref="T:SharpDX.Direct3D9.TrianglePatchInfo" /></strong>.</p> </dd></param>
  21361. <param name="inDeclRef"><dd> <p>Vertex declaration structure that defines the vertex data. See <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong>.</p> </dd></param>
  21362. <param name="triPatchInfoRef"><dd> <p>Describes a triangle patch. See <strong><see cref="T:SharpDX.Direct3D9.TrianglePatchInfo" /></strong>.</p> </dd></param>
  21363. <param name="meshRef"><dd> <p>Pointer to the created mesh. See <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>.</p> </dd></param>
  21364. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21365. <remarks>
  21366. <p>Use <strong><see cref="M:SharpDX.Direct3D9.D3DX9.TriPatchSize(System.Single,System.Int32@,System.Int32@)" /></strong> to get the number of output vertices and indices that the tessellation function needs.</p>
  21367. </remarks>
  21368. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTessellateTriPatch']/*" />
  21369. <msdn-id>bb205471</msdn-id>
  21370. <unmanaged>HRESULT D3DXTessellateTriPatch([In] IDirect3DVertexBuffer9* pVB,[In] const float* pNumSegs,[In] const D3DVERTEXELEMENT9* pInDecl,[In] const D3DTRIPATCH_INFO* pTriPatchInfo,[In] ID3DXMesh* pMesh)</unmanaged>
  21371. <unmanaged-short>D3DXTessellateTriPatch</unmanaged-short>
  21372. </member>
  21373. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeBoundingSphere(SharpDX.Mathematics.Interop.RawVector3,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawVector3,System.Single)">
  21374. <summary>
  21375. <p>Computes a bounding sphere for the mesh.</p>
  21376. </summary>
  21377. <param name="firstPositionRef"><dd> <p>Pointer to first position.</p> </dd></param>
  21378. <param name="numVertices"><dd> <p>Number of vertices.</p> </dd></param>
  21379. <param name="dwStride"><dd> <p>Number of bytes between position vectors. Use <strong>GetNumBytesPerVertex</strong>, <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetFVFVertexSize(SharpDX.Direct3D9.VertexFormat)" /></strong>, or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetDeclVertexSize(SharpDX.Direct3D9.VertexElement[],System.Int32)" /></strong> to get the vertex stride.</p> </dd></param>
  21380. <param name="centerRef"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure, defining the coordinate center of the returned bounding sphere.</p> </dd></param>
  21381. <param name="radiusRef"><dd> <p>Radius of the returned bounding sphere.</p> </dd></param>
  21382. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  21383. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeBoundingSphere']/*" />
  21384. <msdn-id>bb172736</msdn-id>
  21385. <unmanaged>HRESULT D3DXComputeBoundingSphere([In] const D3DXVECTOR3* pFirstPosition,[In] unsigned int NumVertices,[In] unsigned int dwStride,[In] D3DXVECTOR3* pCenter,[In] float* pRadius)</unmanaged>
  21386. <unmanaged-short>D3DXComputeBoundingSphere</unmanaged-short>
  21387. </member>
  21388. <member name="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)">
  21389. <summary>
  21390. <p>Loads a mesh from a DirectX .x file.</p>
  21391. </summary>
  21392. <param name="filenameRef"><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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  21393. <param name="options"><dd> <p>Combination of one or more flags from the <strong>D3DXMESH</strong> enumeration, which specifies creation options for the mesh.</p> </dd></param>
  21394. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device object associated with the mesh.</p> </dd></param>
  21395. <param name="adjacencyOut"><dd> <p>Pointer to a buffer that contains adjacency data. The adjacency data contains an array of three DWORDs per face that specify the three neighbors for each face in the mesh. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  21396. <param name="materialsOut"><dd> <p>Pointer to a buffer containing materials data. The buffer contains an array of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures, containing information from the DirectX file. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  21397. <param name="effectInstancesOut"><dd> <p>Pointer to a buffer containing an array of effect instances, one per attribute group in the returned mesh. An effect instance is a particular instance of state information used to initialize an effect. See <strong><see cref="T:SharpDX.Direct3D9.EffectInstance" /></strong>. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  21398. <param name="numMaterialsRef"><dd> <p>Pointer to the number of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures in the <em>ppMaterials</em> array, when the method returns.</p> </dd></param>
  21399. <param name="meshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the loaded mesh.</p> </dd></param>
  21400. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21401. <remarks>
  21402. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)" />. Otherwise, the function call resolves to D3DXLoadMeshFromXA because ANSI strings are being used.</p><p>All the meshes in the file will be collapsed into one output mesh. If the file contains a frame hierarchy, all the transformations will be applied to the mesh.</p><p>For mesh files that do not contain effect instance information, default effect instances will be generated from the material information in the .x file. A default effect instance will have default values that correspond to the members of the <strong><see cref="T:SharpDX.Direct3D9.Material" /></strong> structure.</p><p>The default texture name is also filled in, but is handled differently. The name will be Texture0@Name, which corresponds to an effect variable by the name of "Texture0" with an annotation called "Name." This will contain the string file name for the texture.</p>
  21403. </remarks>
  21404. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadMeshFromXW']/*" />
  21405. <msdn-id>bb172890</msdn-id>
  21406. <unmanaged>HRESULT D3DXLoadMeshFromXW([In] const wchar_t* pFilename,[In] unsigned int Options,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXBuffer** ppAdjacency,[In] ID3DXBuffer** ppMaterials,[In] ID3DXBuffer** ppEffectInstances,[In] unsigned int* pNumMaterials,[In] ID3DXMesh** ppMesh)</unmanaged>
  21407. <unmanaged-short>D3DXLoadMeshFromXW</unmanaged-short>
  21408. </member>
  21409. <member name="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXInMemory(System.IntPtr,System.Int32,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)">
  21410. <summary>
  21411. <p>Loads a mesh from memory.</p>
  21412. </summary>
  21413. <param name="memory"><dd> <p>Pointer to the memory buffer which contains the mesh data.</p> </dd></param>
  21414. <param name="sizeOfMemory"><dd> <p>Size of the file in memory, in bytes.</p> </dd></param>
  21415. <param name="options"><dd> <p>Combination of one or more flags from the <strong>D3DXMESH</strong> enumeration, specifying creation options for the mesh.</p> </dd></param>
  21416. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, the device object associated with the mesh.</p> </dd></param>
  21417. <param name="adjacencyOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When the method returns, this parameter is filled with an array of three DWORDs per face that specify the three neighbors for each face in the mesh.</p> </dd></param>
  21418. <param name="materialsOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When this method returns, this parameter is filled with an array of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures, containing information saved in the DirectX file.</p> </dd></param>
  21419. <param name="effectInstancesOut"><dd> <p>Pointer to a buffer containing an array of effect instances, one per attribute group in the returned mesh. An effect instance is a particular instance of state information used to initialize an effect. See <strong><see cref="T:SharpDX.Direct3D9.EffectInstance" /></strong>. For more information about accessing the buffer, see <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  21420. <param name="numMaterialsRef"><dd> <p>Pointer to the number of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures in the <em>ppMaterials</em> array, when the method returns.</p> </dd></param>
  21421. <param name="meshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the loaded mesh.</p> </dd></param>
  21422. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21423. <remarks>
  21424. <p>All the meshes in the file will be collapsed into one output mesh. If the file contains a frame hierarchy, all the transformations will be applied to the mesh.</p><p>For mesh files that do not contain effect instance information, default effect instances will be generated from the material information in the .x file. A default effect instance will have default values that correspond to the members of the <strong><see cref="T:SharpDX.Direct3D9.Material" /></strong> structure.</p><p>The default texture name is also filled in, but is handled differently. The name will be Texture0@Name, which corresponds to an effect variable by the name of "Texture0" with an annotation called "Name." This will contain the string file name for the texture.</p>
  21425. </remarks>
  21426. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadMeshFromXInMemory']/*" />
  21427. <msdn-id>bb172891</msdn-id>
  21428. <unmanaged>HRESULT D3DXLoadMeshFromXInMemory([In] const void* Memory,[In] unsigned int SizeOfMemory,[In] unsigned int Options,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXBuffer** ppAdjacency,[In] ID3DXBuffer** ppMaterials,[In] ID3DXBuffer** ppEffectInstances,[In] unsigned int* pNumMaterials,[In] ID3DXMesh** ppMesh)</unmanaged>
  21429. <unmanaged-short>D3DXLoadMeshFromXInMemory</unmanaged-short>
  21430. </member>
  21431. <member name="M:SharpDX.Direct3D9.D3DX9.ConvertMeshSubsetToStrips(SharpDX.Direct3D9.BaseMesh,System.Int32,System.Int32,SharpDX.Direct3D9.IndexBuffer@,System.Int32,SharpDX.Direct3D.Blob@,System.Int32)">
  21432. <summary>
  21433. <p>Convert the specified mesh subset into a series of strips.</p>
  21434. </summary>
  21435. <param name="meshIn"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.BaseMesh" /></strong> interface, representing the mesh to convert to a strip.</p> </dd></param>
  21436. <param name="attribId"><dd> <p>Attribute ID of the mesh subset to convert to strips.</p> </dd></param>
  21437. <param name="iBOptions"><dd> <p>Combination of one or more flags from the <strong>D3DXMESH</strong> enumeration, specifying options for creating the index buffer. Cannot be <see cref="F:SharpDX.Direct3D9.MeshFlags.Use32Bit" />. The index buffer will be created with 32-bit or 16-bit indices depending on the format of the index buffer of the mesh specified by the <em>MeshIn</em> parameter.</p> </dd></param>
  21438. <param name="indexBufferOut"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface, representing index buffer containing the strip.</p> </dd></param>
  21439. <param name="numIndicesRef"><dd> <p>Number of indices in the buffer returned in the <em>ppIndexBuffer</em> parameter.</p> </dd></param>
  21440. <param name="stripLengthsOut"><dd> <p>Buffer containing an array of one DWORD per strip, which specifies the number of triangles in the that strip.</p> </dd></param>
  21441. <param name="numStripsRef"><dd> <p>Number of individual strips in the index buffer and corresponding strip length array.</p> </dd></param>
  21442. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21443. <remarks>
  21444. <p>Before running this function, call <strong>Optimize</strong> or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.OptimizeFaces(System.IntPtr,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32[])" /></strong>, with the <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.AttributeSort" /> flag set.</p>
  21445. </remarks>
  21446. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXConvertMeshSubsetToStrips']/*" />
  21447. <msdn-id>bb172750</msdn-id>
  21448. <unmanaged>HRESULT D3DXConvertMeshSubsetToStrips([In] ID3DXBaseMesh* MeshIn,[In] unsigned int AttribId,[In] unsigned int IBOptions,[In] IDirect3DIndexBuffer9** ppIndexBuffer,[In] unsigned int* pNumIndices,[In] ID3DXBuffer** ppStripLengths,[In] unsigned int* pNumStrips)</unmanaged>
  21449. <unmanaged-short>D3DXConvertMeshSubsetToStrips</unmanaged-short>
  21450. </member>
  21451. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeIMTFromPerTexelSignal(SharpDX.Direct3D9.Mesh,System.Int32,System.Single,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.FunctionCallback,System.IntPtr,SharpDX.Direct3D.Blob@)">
  21452. <summary>
  21453. <p>Calculate per-triangle IMT's from per-texel data. This function is similar to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.ComputeIMTFromTexture(SharpDX.Direct3D9.Mesh,SharpDX.Direct3D9.Texture,System.Int32,System.Int32,SharpDX.FunctionCallback,System.IntPtr,SharpDX.Direct3D.Blob@)" /></strong>, but it uses a float array to pass in the data, and it can calculate higher dimensional values than 4.</p>
  21454. </summary>
  21455. <param name="meshRef">No documentation.</param>
  21456. <param name="dwTextureIndex">No documentation.</param>
  21457. <param name="fTexelSignalRef">No documentation.</param>
  21458. <param name="uWidth">No documentation.</param>
  21459. <param name="uHeight">No documentation.</param>
  21460. <param name="uSignalDimension">No documentation.</param>
  21461. <param name="uComponents">No documentation.</param>
  21462. <param name="dwOptions">No documentation.</param>
  21463. <param name="statusCallbackRef">No documentation.</param>
  21464. <param name="userContextRef">No documentation.</param>
  21465. <param name="iMTDataOut">No documentation.</param>
  21466. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />; otherwise, the value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  21467. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeIMTFromPerTexelSignal']/*" />
  21468. <msdn-id>bb172737</msdn-id>
  21469. <unmanaged>HRESULT D3DXComputeIMTFromPerTexelSignal([In] ID3DXMesh* pMesh,[In] unsigned int dwTextureIndex,[In] float* pfTexelSignal,[In] unsigned int uWidth,[In] unsigned int uHeight,[In] unsigned int uSignalDimension,[In] unsigned int uComponents,[In] unsigned int dwOptions,[In] __function__stdcall* pStatusCallback,[In] void* pUserContext,[In] ID3DXBuffer** ppIMTData)</unmanaged>
  21470. <unmanaged-short>D3DXComputeIMTFromPerTexelSignal</unmanaged-short>
  21471. </member>
  21472. <member name="M:SharpDX.Direct3D9.D3DX9.TriPatchSize(System.Single,System.Int32@,System.Int32@)">
  21473. <summary>
  21474. <p>Gets the size of the triangle patch.</p>
  21475. </summary>
  21476. <param name="fNumSegsRef"><dd> <p>Number of segments per edge to tessellate.</p> </dd></param>
  21477. <param name="dwTrianglesRef"><dd> <p>Pointer to a DWORD that contains the number of triangles in the patch.</p> </dd></param>
  21478. <param name="dwVerticesRef"><dd> <p>Pointer to a DWORD that contains the number of vertices in the triangle patch.</p> </dd></param>
  21479. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  21480. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTriPatchSize']/*" />
  21481. <msdn-id>bb205476</msdn-id>
  21482. <unmanaged>HRESULT D3DXTriPatchSize([In] const float* pfNumSegs,[Out] unsigned int* pdwTriangles,[Out] unsigned int* pdwVertices)</unmanaged>
  21483. <unmanaged-short>D3DXTriPatchSize</unmanaged-short>
  21484. </member>
  21485. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeNormals(SharpDX.Direct3D9.BaseMesh,System.Int32)">
  21486. <summary>
  21487. <p>Computes unit normals for each vertex in a mesh. Provided to support legacy applications. Use <strong><see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrameEx(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)" /></strong> for better results.</p>
  21488. </summary>
  21489. <param name="meshRef">No documentation.</param>
  21490. <param name="adjacencyRef">No documentation.</param>
  21491. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21492. <remarks>
  21493. <p>The input mesh must have the <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal" /> flag specified in its flexible vertex format (FVF).</p><p>A normal for a vertex is generated by averaging the normals of all faces that share that vertex.</p><p>If adjacency is provided, replicated vertices are ignored and "smoothed" over. If adjacency is not provided, replicated vertices will have normals averaged in from only the faces explicitly referencing them.</p><p>This function simply calls <strong><see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrameEx(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)" /></strong> with the following input parameters:</p><pre> <see cref="M:SharpDX.Direct3D9.D3DX9.ComputeTangentFrameEx(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Single,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)" />( pMesh, D3DX_DEFAULT, 0, D3DX_DEFAULT, 0, D3DX_DEFAULT, 0, <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Normal" />, 0, <see cref="F:SharpDX.Direct3D9.TangentOptions.GenerateInPlace" /> | <see cref="F:SharpDX.Direct3D9.TangentOptions.CalculateNormals" />, pAdjacency, -1.01f, -0.01f, -1.01f, <c>null</c>, <c>null</c>);
  21494. </pre>
  21495. </remarks>
  21496. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeNormals']/*" />
  21497. <msdn-id>bb172742</msdn-id>
  21498. <unmanaged>HRESULT D3DXComputeNormals([In] ID3DXBaseMesh* pMesh,[In] const unsigned int* pAdjacency)</unmanaged>
  21499. <unmanaged-short>D3DXComputeNormals</unmanaged-short>
  21500. </member>
  21501. <member name="M:SharpDX.Direct3D9.D3DX9.DisassembleShader(System.IntPtr,SharpDX.Mathematics.Interop.RawBool,System.String,SharpDX.Direct3D.Blob@)">
  21502. <summary>
  21503. <p>Disassemble a shader.</p><p><strong>Note</strong>??Instead of using this legacy function, we recommend that you use the <strong><see cref="!:SharpDX.D3DCompiler.D3D.Disassemble" /></strong> API.</p>
  21504. </summary>
  21505. <param name="shaderRef">No documentation.</param>
  21506. <param name="enableColorCode">No documentation.</param>
  21507. <param name="commentsRef">No documentation.</param>
  21508. <param name="disassemblyOut">No documentation.</param>
  21509. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21510. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXDisassembleShader']/*" />
  21511. <msdn-id>bb172820</msdn-id>
  21512. <unmanaged>HRESULT D3DXDisassembleShader([In] const void* pShader,[In] BOOL EnableColorCode,[In] const char* pComments,[In] ID3DXBuffer** ppDisassembly)</unmanaged>
  21513. <unmanaged-short>D3DXDisassembleShader</unmanaged-short>
  21514. </member>
  21515. <member name="M:SharpDX.Direct3D9.D3DX9.PreprocessShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)">
  21516. <summary>
  21517. <p>Preprocesses a shader without performing compilation. This resolves all #defines and #includes, providing a self-contained shader for subsequent compilation. </p><p><strong>Note</strong>??Instead of using this legacy function, we recommend that you use the <strong><see cref="!:SharpDX.D3DCompiler.D3D.Preprocess" /></strong> API.</p>
  21518. </summary>
  21519. <param name="srcDataRef">No documentation.</param>
  21520. <param name="srcDataSize">No documentation.</param>
  21521. <param name="definesRef">No documentation.</param>
  21522. <param name="includeRef">No documentation.</param>
  21523. <param name="shaderTextOut">No documentation.</param>
  21524. <param name="errorMsgsOut">No documentation.</param>
  21525. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21526. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPreprocessShader']/*" />
  21527. <msdn-id>bb205398</msdn-id>
  21528. <unmanaged>HRESULT D3DXPreprocessShader([In] const void* pSrcData,[In] unsigned int SrcDataSize,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  21529. <unmanaged-short>D3DXPreprocessShader</unmanaged-short>
  21530. </member>
  21531. <member name="M:SharpDX.Direct3D9.D3DX9.CompileShaderFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)">
  21532. <summary>
  21533. <p>Compile a shader file.</p><p><strong>Note</strong>??Instead of using this legacy function, we recommend that you compile offline by using the Fxc.exe command-line compiler or use the <strong><see cref="!:SharpDX.D3DCompiler.D3D.Compile" /></strong> API.</p>
  21534. </summary>
  21535. <param name="srcFileRef">No documentation.</param>
  21536. <param name="definesRef">No documentation.</param>
  21537. <param name="includeRef">No documentation.</param>
  21538. <param name="functionNameRef">No documentation.</param>
  21539. <param name="profileRef">No documentation.</param>
  21540. <param name="flags">No documentation.</param>
  21541. <param name="shaderOut">No documentation.</param>
  21542. <param name="errorMsgsOut">No documentation.</param>
  21543. <param name="constantTableOut">No documentation.</param>
  21544. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_NOTIMPL, E_OUTOFMEMORY. </p><p>E_NOTIMPL is returned if you're using 1.1 shaders (vs_1_1and ps_1_1).</p></returns>
  21545. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCompileShaderFromFileW']/*" />
  21546. <msdn-id>bb172732</msdn-id>
  21547. <unmanaged>HRESULT D3DXCompileShaderFromFileW([In] const wchar_t* pSrcFile,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  21548. <unmanaged-short>D3DXCompileShaderFromFileW</unmanaged-short>
  21549. </member>
  21550. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTextureShader(System.Int32,SharpDX.Direct3D9.TextureShader@)">
  21551. <summary>
  21552. <p>Creates a texture shader object from the compiled shader.</p>
  21553. </summary>
  21554. <param name="functionRef"><dd> <p>Pointer to the function DWORD stream.</p> </dd></param>
  21555. <param name="textureShaderOut"><dd> <p>Returns an <strong><see cref="T:SharpDX.Direct3D9.TextureShader" /></strong> object which can be used to procedurally fill the contents of a texture using the <strong><see cref="M:SharpDX.Direct3D9.D3DX9.FillTextureTX(SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.TextureShader)" /></strong> functions.</p> </dd></param>
  21556. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21557. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTextureShader']/*" />
  21558. <msdn-id>bb172808</msdn-id>
  21559. <unmanaged>HRESULT D3DXCreateTextureShader([In] const unsigned int* pFunction,[In] ID3DXTextureShader** ppTextureShader)</unmanaged>
  21560. <unmanaged-short>D3DXCreateTextureShader</unmanaged-short>
  21561. </member>
  21562. <member name="M:SharpDX.Direct3D9.D3DX9.GetShaderOutputSemantics(System.IntPtr,SharpDX.Direct3D9.ShaderSemantic[],System.Int32@)">
  21563. <summary>
  21564. <p>Get the semantics for all shader output elements.</p>
  21565. </summary>
  21566. <param name="functionRef"><dd> <p>Pointer to the shader function DWORD stream.</p> </dd></param>
  21567. <param name="semanticsRef"><dd> <p>Pointer to an array of <strong><see cref="T:SharpDX.Direct3D9.ShaderSemantic" /></strong> structures. The function will fill this array with the semantics for each output element referenced by the shader. This array is assumed to contain at least MAXD3DDECLLENGTH elements. However, calling <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetShaderOutputSemantics(System.IntPtr,SharpDX.Direct3D9.ShaderSemantic[],System.Int32@)" /></strong> with pSemantics = <strong><c>null</c></strong> will return the number of elements needed for pCount.</p> </dd></param>
  21568. <param name="countRef"><dd> <p>Returns the number of elements in pSemantics.</p> </dd></param>
  21569. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21570. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetShaderOutputSemantics']/*" />
  21571. <msdn-id>bb172873</msdn-id>
  21572. <unmanaged>HRESULT D3DXGetShaderOutputSemantics([In] const void* pFunction,[In, Out, Buffer] D3DXSEMANTIC* pSemantics,[InOut] unsigned int* pCount)</unmanaged>
  21573. <unmanaged-short>D3DXGetShaderOutputSemantics</unmanaged-short>
  21574. </member>
  21575. <member name="M:SharpDX.Direct3D9.D3DX9.GetShaderInputSemantics(System.IntPtr,SharpDX.Direct3D9.ShaderSemantic[],System.Int32@)">
  21576. <summary>
  21577. <p>Gets the semantics for the shader inputs. Use this method to determine the input vertex format.</p>
  21578. </summary>
  21579. <param name="functionRef"><dd> <p>Pointer to the shader function DWORD stream.</p> </dd></param>
  21580. <param name="semanticsRef"><dd> <p>Pointer to an array of <strong><see cref="T:SharpDX.Direct3D9.ShaderSemantic" /></strong> structures. The function will fill this array with the semantics for each input element referenced by the shader. This array is assumed to contain at least MAXD3DDECLLENGTH elements. However, calling <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetShaderInputSemantics(System.IntPtr,SharpDX.Direct3D9.ShaderSemantic[],System.Int32@)" /></strong> with pSemantics = <strong><c>null</c></strong> will return the number of elements needed for pCount.</p> </dd></param>
  21581. <param name="countRef"><dd> <p>Returns the number of elements in pSemantics.</p> </dd></param>
  21582. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21583. <remarks>
  21584. <p>Use <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetShaderInputSemantics(System.IntPtr,SharpDX.Direct3D9.ShaderSemantic[],System.Int32@)" /></strong> to return a list of input semantics required by the shader. This is the way to find out what the input vertex format is for a high-level shader language (HLSL) shader. If the shader has additional inputs that your vertex declaration is missing, you could create an extra vertex stream that has a stride of 0 that has the missing components with default values. For instance, this technique could be used to provide default vertex color for models that do not specify it.</p>
  21585. </remarks>
  21586. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetShaderInputSemantics']/*" />
  21587. <msdn-id>bb172872</msdn-id>
  21588. <unmanaged>HRESULT D3DXGetShaderInputSemantics([In] const void* pFunction,[In, Out, Buffer] D3DXSEMANTIC* pSemantics,[InOut] unsigned int* pCount)</unmanaged>
  21589. <unmanaged-short>D3DXGetShaderInputSemantics</unmanaged-short>
  21590. </member>
  21591. <member name="M:SharpDX.Direct3D9.D3DX9.GetPixelShaderProfile(SharpDX.Direct3D9.Device)">
  21592. <summary>
  21593. <p>Returns the name of the highest high-level shader language (HLSL) profile supported by a given device.</p>
  21594. </summary>
  21595. <param name="deviceRef"><dd> <p>Pointer to the device. See <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>.</p> </dd></param>
  21596. <returns><p>The HLSL profile name.</p><p>If the device does not support pixel shaders then the function returns <strong><c>null</c></strong>.</p></returns>
  21597. <remarks>
  21598. <p>A shader profile specifies the assembly shader version to use and the capabilities available to the HLSL compiler when compiling a shader. The following table lists the pixel shader profiles that are supported.</p><table> <tr><th>Shader Profile</th><th>Description</th></tr> <tr><td>ps_1_1</td><td>Compile to ps_1_1 version.</td></tr> <tr><td>ps_1_2</td><td>Compile to ps_1_2 version.</td></tr> <tr><td>ps_1_3</td><td>Compile to ps_1_3 version.</td></tr> <tr><td>ps_1_4</td><td>Compile to ps_1_4 version.</td></tr> <tr><td>ps_2_0</td><td>Compile to ps_2_0 version.</td></tr> <tr><td>ps_2_a</td><td>Same as the ps_2_0 profile, with the following additional capabilities available for the compiler to target: <ul> <li>Number of Temporary Registers (r#) is greater than or equal to 22.</li> <li>Arbitrary source swizzle.</li> <li>Gradient instructions: dsx, dsy.</li> <li>Predication.</li> <li>No dependent texture read limit.</li> <li>No limit for the number of texture instructions.</li> </ul> </td></tr> <tr><td>ps_2_b</td><td>Same as the ps_2_0 profile, with the following additional capabilities available for the compiler to target: <ul> <li>Number of Temporary Registers (r#) is greater than or equal to 32.</li> <li>No limit for the number of texture instructions.</li> </ul> </td></tr> <tr><td>ps_3_0</td><td>Compile to ps_3_0 version.</td></tr> </table><p>?</p><p>For more information about the differences between shader versions, see Pixel Shader Differences.</p>
  21599. </remarks>
  21600. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetPixelShaderProfile']/*" />
  21601. <msdn-id>bb172870</msdn-id>
  21602. <unmanaged>const char* D3DXGetPixelShaderProfile([In] IDirect3DDevice9* pDevice)</unmanaged>
  21603. <unmanaged-short>D3DXGetPixelShaderProfile</unmanaged-short>
  21604. </member>
  21605. <member name="M:SharpDX.Direct3D9.D3DX9.FindShaderComment(System.IntPtr,System.Int32,System.IntPtr@,System.Int32@)">
  21606. <summary>
  21607. <p>Searches through a shader for a particular comment. The comment is identified by a four-character code (FOURCC) in the first DWORD of the comment.</p>
  21608. </summary>
  21609. <param name="functionRef"><dd> <p>Pointer to the shader function DWORD stream.</p> </dd></param>
  21610. <param name="fourCC"><dd> <p>FOURCC code that identifies the comment block. See FourCC Formats.</p> </dd></param>
  21611. <param name="dataOut"><dd> <p>Returns a reference to the comment data (not including the comment token and FOURCC code). This value can be <strong><c>null</c></strong>.</p> </dd></param>
  21612. <param name="sizeInBytesRef"><dd> <p>Returns the size of the comment data in bytes. This value can be <strong><c>null</c></strong>.</p> </dd></param>
  21613. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the comment is not found, and no other error has occurred, S_FALSE is returned.</p></returns>
  21614. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFindShaderComment']/*" />
  21615. <msdn-id>bb172838</msdn-id>
  21616. <unmanaged>HRESULT D3DXFindShaderComment([In] const void* pFunction,[In] unsigned int FourCC,[Out] const void** ppData,[Out] unsigned int* pSizeInBytes)</unmanaged>
  21617. <unmanaged-short>D3DXFindShaderComment</unmanaged-short>
  21618. </member>
  21619. <member name="M:SharpDX.Direct3D9.D3DX9.AssembleShaderFromResourceW(System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)">
  21620. <summary>
  21621. <p>Assemble a shader.</p>
  21622. </summary>
  21623. <param name="hSrcModule"><dd> <p>Handle to a module containing the effect description. If this parameter is <strong><c>null</c></strong>, the current module will be used.</p> </dd></param>
  21624. <param name="srcResourceRef"><dd> <p>Pointer to a string that specifies the resource name. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  21625. <param name="definesRef"><dd> <p>An optional <strong><c>null</c></strong> terminated array of <strong><see cref="T:SharpDX.Direct3D9.Macro" /></strong> structures. This value may be <strong><c>null</c></strong>.</p> </dd></param>
  21626. <param name="includeRef"><dd> <p>Optional interface reference, <strong><see cref="T:SharpDX.Direct3D9.Include" /></strong>, to use for handling #include directives. If this value is <strong><c>null</c></strong>, #includes will either be honored when compiling from a file or will cause an error when compiled from a resource or memory.</p> </dd></param>
  21627. <param name="flags"><dd> <p>Compile options identified by various flags. The Direct3D 10 HLSL compiler is now the default. See <see cref="T:SharpDX.Direct3D9.ShaderFlags" /> Flags for details.</p> </dd></param>
  21628. <param name="shaderOut"><dd> <p>Returns a buffer containing the created shader. This buffer contains the compiled shader code, as well as any embedded debug and symbol table information. </p> </dd></param>
  21629. <param name="errorMsgsOut"><dd> <p>Returns a buffer containing a listing of errors and warnings that were encountered during the compile. These are the same messages the debugger displays when running in debug mode. This value may be <strong><c>null</c></strong>.</p> </dd></param>
  21630. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21631. <remarks>
  21632. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.AssembleShaderFromResourceW(System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)" />. Otherwise, the function call resolves to D3DXAssembleShaderFromResourceA because ANSI strings are being used.</p>
  21633. </remarks>
  21634. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXAssembleShaderFromResourceW']/*" />
  21635. <msdn-id>bb172709</msdn-id>
  21636. <unmanaged>HRESULT D3DXAssembleShaderFromResourceW([In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  21637. <unmanaged-short>D3DXAssembleShaderFromResourceW</unmanaged-short>
  21638. </member>
  21639. <member name="M:SharpDX.Direct3D9.D3DX9.AssembleShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)">
  21640. <summary>
  21641. <p>Assemble a shader.</p>
  21642. </summary>
  21643. <param name="srcDataRef"><dd> <p>Pointer to a memory buffer that contains the shader data.</p> </dd></param>
  21644. <param name="srcDataLen"><dd> <p>Length of the effect data, in bytes.</p> </dd></param>
  21645. <param name="definesRef"><dd> <p>An optional <strong><c>null</c></strong> terminated array of <strong><see cref="T:SharpDX.Direct3D9.Macro" /></strong> structures. This value may be <strong><c>null</c></strong>.</p> </dd></param>
  21646. <param name="includeRef"><dd> <p>Optional interface reference, <strong><see cref="T:SharpDX.Direct3D9.Include" /></strong>, to use for handling #include directives. If this value is <strong><c>null</c></strong>, #includes will either be honored when compiling from a file or will cause an error when compiled from a resource or memory.</p> </dd></param>
  21647. <param name="flags"><dd> <p>Compile options identified by various flags. The Direct3D 10 HLSL compiler is now the default. See <see cref="T:SharpDX.Direct3D9.ShaderFlags" /> Flags for details.</p> </dd></param>
  21648. <param name="shaderOut"><dd> <p>Returns a buffer containing the created shader. This buffer contains the compiled shader code, as well as any embedded debug and symbol table information.</p> </dd></param>
  21649. <param name="errorMsgsOut"><dd> <p>Returns a buffer containing a listing of errors and warnings that were encountered during the compile. These are the same messages the debugger displays when running in debug mode. This value may be <strong><c>null</c></strong>.</p> </dd></param>
  21650. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21651. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXAssembleShader']/*" />
  21652. <msdn-id>bb172707</msdn-id>
  21653. <unmanaged>HRESULT D3DXAssembleShader([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  21654. <unmanaged-short>D3DXAssembleShader</unmanaged-short>
  21655. </member>
  21656. <member name="M:SharpDX.Direct3D9.D3DX9.CompileShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)">
  21657. <summary>
  21658. <p>Compile a shader file.</p><p><strong>Note</strong>??Instead of using this legacy function, we recommend that you compile offline by using the Fxc.exe command-line compiler or use the <strong><see cref="!:SharpDX.D3DCompiler.D3D.Compile" /></strong> API.</p>
  21659. </summary>
  21660. <param name="srcDataRef">No documentation.</param>
  21661. <param name="srcDataLen">No documentation.</param>
  21662. <param name="definesRef">No documentation.</param>
  21663. <param name="includeRef">No documentation.</param>
  21664. <param name="functionNameRef">No documentation.</param>
  21665. <param name="profileRef">No documentation.</param>
  21666. <param name="flags">No documentation.</param>
  21667. <param name="shaderOut">No documentation.</param>
  21668. <param name="errorMsgsOut">No documentation.</param>
  21669. <param name="constantTableOut">No documentation.</param>
  21670. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21671. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCompileShader']/*" />
  21672. <msdn-id>bb172731</msdn-id>
  21673. <unmanaged>HRESULT D3DXCompileShader([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  21674. <unmanaged-short>D3DXCompileShader</unmanaged-short>
  21675. </member>
  21676. <member name="M:SharpDX.Direct3D9.D3DX9.GetShaderSamplers(System.IntPtr,System.IntPtr,System.Int32@)">
  21677. <summary>
  21678. <p>Get the sampler names referenced in a shader.</p>
  21679. </summary>
  21680. <param name="functionRef"><dd> <p>Pointer to the shader function DWORD stream.</p> </dd></param>
  21681. <param name="samplersRef"><dd> <p>Pointer to an array of LPCSTRs. The function will fill this array with references to the sampler names contained within <em>pFunction</em>. The maximum array size is the maximum number of sampler registers (16 for vs_3_0 and ps_3_0).</p> <p>To find the number of samplers used, check <em>pCount</em> after calling <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetShaderSamplers(System.IntPtr,System.IntPtr,System.Int32@)" /></strong> with pSamplers = <strong><c>null</c></strong>.</p> </dd></param>
  21682. <param name="countRef"><dd> <p>Returns the number of samplers referenced by the shader.</p> </dd></param>
  21683. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21684. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetShaderSamplers']/*" />
  21685. <msdn-id>bb172874</msdn-id>
  21686. <unmanaged>HRESULT D3DXGetShaderSamplers([In] const void* pFunction,[In, Out, Buffer] const void** pSamplers,[InOut] unsigned int* pCount)</unmanaged>
  21687. <unmanaged-short>D3DXGetShaderSamplers</unmanaged-short>
  21688. </member>
  21689. <member name="M:SharpDX.Direct3D9.D3DX9.GetShaderConstantTable(System.IntPtr)">
  21690. <summary>
  21691. <p>Gets the shader-constant table embedded inside a shader.</p>
  21692. </summary>
  21693. <param name="functionRef"><dd> <p>Pointer to the function DWORD stream.</p> </dd></param>
  21694. <returns><dd> <p>Returns the constant table interface (see <strong><see cref="T:SharpDX.Direct3D9.ConstantTable" /></strong>) that manages the constant table.</p> </dd></returns>
  21695. <remarks>
  21696. <p>A constant table is generated by <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CompileShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" /></strong> and embedded in the shader body. If you need additional virtual address space, see <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetShaderConstantTableEx(System.IntPtr,System.Int32,SharpDX.Direct3D9.ConstantTable@)" /></strong>.</p>
  21697. </remarks>
  21698. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetShaderConstantTable']/*" />
  21699. <msdn-id>bb172871</msdn-id>
  21700. <unmanaged>HRESULT D3DXGetShaderConstantTable([In] const void* pFunction,[Out] ID3DXConstantTable** ppConstantTable)</unmanaged>
  21701. <unmanaged-short>D3DXGetShaderConstantTable</unmanaged-short>
  21702. </member>
  21703. <member name="M:SharpDX.Direct3D9.D3DX9.AssembleShaderFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)">
  21704. <summary>
  21705. <p>Assemble a shader.</p>
  21706. </summary>
  21707. <param name="srcFileRef"><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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  21708. <param name="definesRef"><dd> <p>An optional <strong><c>null</c></strong> terminated array of <strong><see cref="T:SharpDX.Direct3D9.Macro" /></strong> structures. This value may be <strong><c>null</c></strong>.</p> </dd></param>
  21709. <param name="includeRef"><dd> <p>Optional interface reference, <strong><see cref="T:SharpDX.Direct3D9.Include" /></strong>, to use for handling #include directives. If this value is <strong><c>null</c></strong>, #includes will either be honored when compiling from a file or will cause an error when compiled from a resource or memory.</p> </dd></param>
  21710. <param name="flags"><dd> <p>Compile options identified by various flags. The Direct3D 10 HLSL compiler is now the default. See <see cref="T:SharpDX.Direct3D9.ShaderFlags" /> Flags for details.</p> </dd></param>
  21711. <param name="shaderOut"><dd> <p>Returns a buffer containing the created shader. This buffer contains the compiled shader code, as well as any embedded debug and symbol table information. </p> </dd></param>
  21712. <param name="errorMsgsOut"><dd> <p>Returns a buffer containing a listing of errors and warnings that were encountered during the compile. These are the same messages the debugger displays when running in debug mode. This value may be <strong><c>null</c></strong>.</p> </dd></param>
  21713. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21714. <remarks>
  21715. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.AssembleShaderFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)" />. Otherwise, the function call resolves to D3DXAssembleShaderFromFileA because ANSI strings are being used.</p>
  21716. </remarks>
  21717. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXAssembleShaderFromFileW']/*" />
  21718. <msdn-id>bb172708</msdn-id>
  21719. <unmanaged>HRESULT D3DXAssembleShaderFromFileW([In] const wchar_t* pSrcFile,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  21720. <unmanaged-short>D3DXAssembleShaderFromFileW</unmanaged-short>
  21721. </member>
  21722. <member name="M:SharpDX.Direct3D9.D3DX9.GetShaderConstantTableEx(System.IntPtr,System.Int32,SharpDX.Direct3D9.ConstantTable@)">
  21723. <summary>
  21724. <p>Gets the shader-constant table embedded inside a shader.</p>
  21725. </summary>
  21726. <param name="functionRef"><dd> <p>Pointer to the function DWORD stream.</p> </dd></param>
  21727. <param name="flags"><dd> <p>Use the D3DXCONSTTABLE_LARGEADDRESSAWARE flag to access up to 4 GB of virtual address space (instead of the default of 2 GB). If you do not need the additional virtual address space, use <strong><see cref="M:SharpDX.Direct3D9.D3DX9.GetShaderConstantTable(System.IntPtr)" /></strong>.</p> </dd></param>
  21728. <param name="constantTableOut"><dd> <p>Returns the constant table interface (see <strong><see cref="T:SharpDX.Direct3D9.ConstantTable" /></strong>) that manages the constant table.</p> </dd></param>
  21729. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21730. <remarks>
  21731. <p>A constant table is generated by <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CompileShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" /></strong> and embedded in the shader body.</p>
  21732. </remarks>
  21733. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetShaderConstantTableEx']/*" />
  21734. <msdn-id>bb943959</msdn-id>
  21735. <unmanaged>HRESULT D3DXGetShaderConstantTableEx([In] const void* pFunction,[In] unsigned int Flags,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  21736. <unmanaged-short>D3DXGetShaderConstantTableEx</unmanaged-short>
  21737. </member>
  21738. <member name="M:SharpDX.Direct3D9.D3DX9.GetVertexShaderProfile(SharpDX.Direct3D9.Device)">
  21739. <summary>
  21740. <p>Returns the name of the highest high-level shader language (HLSL) profile supported by a given device.</p>
  21741. </summary>
  21742. <param name="deviceRef"><dd> <p>Pointer to the device. See <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>.</p> </dd></param>
  21743. <returns><p>The HLSL profile name.</p><p>If the device does not support vertex shaders then the function returns <strong><c>null</c></strong>.</p></returns>
  21744. <remarks>
  21745. <p>A shader profile specifies the assembly shader version to use and the capabilities available to the HLSL compiler when compiling a shader. The following table lists the vertex shader profiles that are supported.</p><table> <tr><th>Shader Profile</th><th>Description</th></tr> <tr><td>vs_1_1</td><td>Compile to vs_1_1 version.</td></tr> <tr><td>vs_2_0</td><td>Compile to vs_2_0 version.</td></tr> <tr><td>vs_2_a</td><td>Same as the vs_2_0 profile, with the following additional capabilities available for the compiler to target: <ul> <li>Number of Temporary Registers (r#) is greater than or equal to 13.</li> <li>Dynamic flow control instruction.</li> <li>Predication.</li> </ul> </td></tr> <tr><td>vs_3_0</td><td>Compile to vs_3_0 version.</td></tr> </table><p>?</p><p>For more information about the differences between shader versions, see Vertex Shader Differences.</p>
  21746. </remarks>
  21747. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetVertexShaderProfile']/*" />
  21748. <msdn-id>bb172877</msdn-id>
  21749. <unmanaged>const char* D3DXGetVertexShaderProfile([In] IDirect3DDevice9* pDevice)</unmanaged>
  21750. <unmanaged-short>D3DXGetVertexShaderProfile</unmanaged-short>
  21751. </member>
  21752. <member name="M:SharpDX.Direct3D9.D3DX9.PreprocessShaderFromResourceW(System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)">
  21753. <summary>
  21754. <p>Preprocesses a shader resource without performing compilation. This resolves all #defines and #includes, providing a self-contained shader for subsequent compilation. </p><p><strong>Note</strong>??Instead of using this legacy function, we recommend that you use the <strong><see cref="!:SharpDX.D3DCompiler.D3D.Preprocess" /></strong> API.</p>
  21755. </summary>
  21756. <param name="hSrcModule">No documentation.</param>
  21757. <param name="srcResourceRef">No documentation.</param>
  21758. <param name="definesRef">No documentation.</param>
  21759. <param name="includeRef">No documentation.</param>
  21760. <param name="shaderTextOut">No documentation.</param>
  21761. <param name="errorMsgsOut">No documentation.</param>
  21762. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21763. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPreprocessShaderFromResourceW']/*" />
  21764. <msdn-id>bb205400</msdn-id>
  21765. <unmanaged>HRESULT D3DXPreprocessShaderFromResourceW([In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  21766. <unmanaged-short>D3DXPreprocessShaderFromResourceW</unmanaged-short>
  21767. </member>
  21768. <member name="M:SharpDX.Direct3D9.D3DX9.CompileShaderFromResourceW(System.IntPtr,System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)">
  21769. <summary>
  21770. <p>Compile a shader file.</p><p><strong>Note</strong>??Instead of using this legacy function, we recommend that you compile offline by using the Fxc.exe command-line compiler or use the <strong><see cref="!:SharpDX.D3DCompiler.D3D.Compile" /></strong> API.</p>
  21771. </summary>
  21772. <param name="hSrcModule">No documentation.</param>
  21773. <param name="srcResourceRef">No documentation.</param>
  21774. <param name="definesRef">No documentation.</param>
  21775. <param name="includeRef">No documentation.</param>
  21776. <param name="functionNameRef">No documentation.</param>
  21777. <param name="profileRef">No documentation.</param>
  21778. <param name="flags">No documentation.</param>
  21779. <param name="shaderOut">No documentation.</param>
  21780. <param name="errorMsgsOut">No documentation.</param>
  21781. <param name="constantTableOut">No documentation.</param>
  21782. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21783. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCompileShaderFromResourceW']/*" />
  21784. <msdn-id>bb172733</msdn-id>
  21785. <unmanaged>HRESULT D3DXCompileShaderFromResourceW([In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  21786. <unmanaged-short>D3DXCompileShaderFromResourceW</unmanaged-short>
  21787. </member>
  21788. <member name="M:SharpDX.Direct3D9.D3DX9.PreprocessShaderFromFileW(System.String,SharpDX.Direct3D9.Macro[],System.IntPtr,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)">
  21789. <summary>
  21790. <p>Preprocesses a shader file without performing compilation. This resolves all #defines and #includes, providing a self-contained shader for subsequent compilation.</p><p><strong>Note</strong>??Instead of using this legacy function, we recommend that you use the <strong><see cref="!:SharpDX.D3DCompiler.D3D.Preprocess" /></strong> API.</p>
  21791. </summary>
  21792. <param name="srcFileRef">No documentation.</param>
  21793. <param name="definesRef">No documentation.</param>
  21794. <param name="includeRef">No documentation.</param>
  21795. <param name="shaderTextOut">No documentation.</param>
  21796. <param name="errorMsgsOut">No documentation.</param>
  21797. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21798. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPreprocessShaderFromFileW']/*" />
  21799. <msdn-id>bb205399</msdn-id>
  21800. <unmanaged>HRESULT D3DXPreprocessShaderFromFileW([In] const wchar_t* pSrcFile,[In, Buffer, Optional] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  21801. <unmanaged-short>D3DXPreprocessShaderFromFileW</unmanaged-short>
  21802. </member>
  21803. <member name="M:SharpDX.Direct3D9.D3DX9.GetShaderSize(System.IntPtr)">
  21804. <summary>
  21805. <p>Returns the size of the shader byte code, in bytes.</p>
  21806. </summary>
  21807. <param name="functionRef"><dd> <p>Pointer to the function DWORD stream.</p> </dd></param>
  21808. <returns><p>Returns the size of the shader byte code, in bytes.</p></returns>
  21809. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetShaderSize']/*" />
  21810. <msdn-id>bb172875</msdn-id>
  21811. <unmanaged>unsigned int D3DXGetShaderSize([In] const void* pFunction)</unmanaged>
  21812. <unmanaged-short>D3DXGetShaderSize</unmanaged-short>
  21813. </member>
  21814. <member name="M:SharpDX.Direct3D9.D3DX9.GetShaderVersion(System.IntPtr)">
  21815. <summary>
  21816. <p>Returns the shader version of the compiled shader.</p>
  21817. </summary>
  21818. <param name="functionRef"><dd> <p>Pointer to the function DWORD stream.</p> </dd></param>
  21819. <returns><p>Returns the shader version of the given shader, or zero if the shader function is <strong><c>null</c></strong>.</p></returns>
  21820. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetShaderVersion']/*" />
  21821. <msdn-id>bb172876</msdn-id>
  21822. <unmanaged>unsigned int D3DXGetShaderVersion([In] const void* pFunction)</unmanaged>
  21823. <unmanaged-short>D3DXGetShaderVersion</unmanaged-short>
  21824. </member>
  21825. <member name="M:SharpDX.Direct3D9.D3DX9.CreateCylinder(SharpDX.Direct3D9.Device,System.Single,System.Single,System.Single,System.Int32,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)">
  21826. <summary>
  21827. <p>Uses a left-handed coordinate system to create a mesh containing a cylinder.</p>
  21828. </summary>
  21829. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the created cylinder mesh.</p> </dd></param>
  21830. <param name="radius1"><dd> <p>Radius at the negative Z end. Value should be greater than or equal to 0.0f.</p> </dd></param>
  21831. <param name="radius2"><dd> <p>Radius at the positive Z end. Value should be greater than or equal to 0.0f.</p> </dd></param>
  21832. <param name="length"><dd> <p>Length of the cylinder along the z-axis.</p> </dd></param>
  21833. <param name="slices"><dd> <p>Number of slices about the main axis.</p> </dd></param>
  21834. <param name="stacks"><dd> <p>Number of stacks along the main axis.</p> </dd></param>
  21835. <param name="meshOut"><dd> <p>Address of a reference to the output shape, an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface.</p> </dd></param>
  21836. <param name="adjacencyOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When the method returns, this parameter is filled with an array of three DWORDs per face that specify the three neighbors for each face in the mesh. <strong><c>null</c></strong> can be specified.</p> </dd></param>
  21837. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21838. <remarks>
  21839. <p>The created cylinder is centered at the origin, and its axis is aligned with the z-axis.</p><p>This function creates a mesh with the <see cref="F:SharpDX.Direct3D9.MeshFlags.Managed" /> creation option and <see cref="F:SharpDX.Direct3D9.VertexFormat.Position" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal" /> flexible vertex format (FVF).</p>
  21840. </remarks>
  21841. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateCylinder']/*" />
  21842. <msdn-id>bb172762</msdn-id>
  21843. <unmanaged>HRESULT D3DXCreateCylinder([In] IDirect3DDevice9* pDevice,[In] float Radius1,[In] float Radius2,[In] float Length,[In] unsigned int Slices,[In] unsigned int Stacks,[In] ID3DXMesh** ppMesh,[In] ID3DXBuffer** ppAdjacency)</unmanaged>
  21844. <unmanaged-short>D3DXCreateCylinder</unmanaged-short>
  21845. </member>
  21846. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTorus(SharpDX.Direct3D9.Device,System.Single,System.Single,System.Int32,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)">
  21847. <summary>
  21848. <p>Uses a left-handed coordinate system to create a mesh containing a torus.</p>
  21849. </summary>
  21850. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the created torus mesh.</p> </dd></param>
  21851. <param name="innerRadius"><dd> <p>Inner-radius of the torus. Value should be greater than or equal to 0.0f.</p> </dd></param>
  21852. <param name="outerRadius"><dd> <p>Outer-radius of the torus. Value should be greater than or equal to 0.0f.</p> </dd></param>
  21853. <param name="sides"><dd> <p>Number of sides in a cross-section. Value must be greater than or equal to 3.</p> </dd></param>
  21854. <param name="rings"><dd> <p>Number of rings making up the torus. Value must be greater than or equal to 3.</p> </dd></param>
  21855. <param name="meshOut"><dd> <p>Address of a reference to the output shape, an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface.</p> </dd></param>
  21856. <param name="adjacencyOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When the method returns, this parameter is filled with an array of three DWORDs per face that specify the three neighbors for each face in the mesh. <strong><c>null</c></strong> can be specified.</p> </dd></param>
  21857. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21858. <remarks>
  21859. <p>The created torus is centered at the origin, and its axis is aligned with the z-axis. The inner radius of the torus is the radius of the cross-section (the minor radius), and the outer radius of the torus is the radius of the central hole. </p><p>This function returns a mesh that can be used later for drawing or manipulation by the application.</p><p>This function creates a mesh with the <see cref="F:SharpDX.Direct3D9.MeshFlags.Managed" /> creation option and <see cref="F:SharpDX.Direct3D9.VertexFormat.Position" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal" /> flexible vertex format (FVF).</p>
  21860. </remarks>
  21861. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTorus']/*" />
  21862. <msdn-id>bb172809</msdn-id>
  21863. <unmanaged>HRESULT D3DXCreateTorus([In] IDirect3DDevice9* pDevice,[In] float InnerRadius,[In] float OuterRadius,[In] unsigned int Sides,[In] unsigned int Rings,[In] ID3DXMesh** ppMesh,[In] ID3DXBuffer** ppAdjacency)</unmanaged>
  21864. <unmanaged-short>D3DXCreateTorus</unmanaged-short>
  21865. </member>
  21866. <member name="M:SharpDX.Direct3D9.D3DX9.CreateSphere(SharpDX.Direct3D9.Device,System.Single,System.Int32,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)">
  21867. <summary>
  21868. <p>Uses a left-handed coordinate system to create a mesh containing a sphere.</p>
  21869. </summary>
  21870. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the created sphere mesh.</p> </dd></param>
  21871. <param name="radius"><dd> <p>Radius of the sphere. This value should be greater than or equal to 0.0f.</p> </dd></param>
  21872. <param name="slices"><dd> <p>Number of slices about the main axis.</p> </dd></param>
  21873. <param name="stacks"><dd> <p>Number of stacks along the main axis.</p> </dd></param>
  21874. <param name="meshOut"><dd> <p>Address of a reference to the output shape, an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface.</p> </dd></param>
  21875. <param name="adjacencyOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When the method returns, this parameter is filled with an array of three DWORDs per face that specify the three neighbors for each face in the mesh. <strong><c>null</c></strong> can be specified.</p> </dd></param>
  21876. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21877. <remarks>
  21878. <p>The created sphere is centered at the origin, and its axis is aligned with the z-axis.</p><p>This function creates a mesh with the <see cref="F:SharpDX.Direct3D9.MeshFlags.Managed" /> creation option and <see cref="F:SharpDX.Direct3D9.VertexFormat.Position" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal" /> flexible vertex format (FVF).</p>
  21879. </remarks>
  21880. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateSphere']/*" />
  21881. <msdn-id>bb172795</msdn-id>
  21882. <unmanaged>HRESULT D3DXCreateSphere([In] IDirect3DDevice9* pDevice,[In] float Radius,[In] unsigned int Slices,[In] unsigned int Stacks,[In] ID3DXMesh** ppMesh,[In] ID3DXBuffer** ppAdjacency)</unmanaged>
  21883. <unmanaged-short>D3DXCreateSphere</unmanaged-short>
  21884. </member>
  21885. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTeapot(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)">
  21886. <summary>
  21887. <p>Uses a left-handed coordinate system to create a mesh containing a teapot.</p>
  21888. </summary>
  21889. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the created teapot mesh.</p> </dd></param>
  21890. <param name="meshOut"><dd> <p>Address of a reference to the output shape, an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface.</p> </dd></param>
  21891. <param name="adjacencyOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When the method returns, this parameter is filled with an array of three DWORDs per face that specify the three neighbors for each face in the mesh. <strong><c>null</c></strong> can be specified.</p> </dd></param>
  21892. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21893. <remarks>
  21894. <p>This function creates a mesh with the <see cref="F:SharpDX.Direct3D9.MeshFlags.Managed" /> creation option and <see cref="F:SharpDX.Direct3D9.VertexFormat.Position" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal" /> flexible vertex format (FVF).</p>
  21895. </remarks>
  21896. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTeapot']/*" />
  21897. <msdn-id>bb172798</msdn-id>
  21898. <unmanaged>HRESULT D3DXCreateTeapot([In] IDirect3DDevice9* pDevice,[In] ID3DXMesh** ppMesh,[In] ID3DXBuffer** ppAdjacency)</unmanaged>
  21899. <unmanaged-short>D3DXCreateTeapot</unmanaged-short>
  21900. </member>
  21901. <member name="M:SharpDX.Direct3D9.D3DX9.CreateBox(SharpDX.Direct3D9.Device,System.Single,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)">
  21902. <summary>
  21903. <p>Uses a left-handed coordinate system to create a mesh containing an axis-aligned box.</p>
  21904. </summary>
  21905. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the created box mesh.</p> </dd></param>
  21906. <param name="width"><dd> <p>Width of the box, along the x-axis.</p> </dd></param>
  21907. <param name="height"><dd> <p>Height of the box, along the y-axis.</p> </dd></param>
  21908. <param name="depth"><dd> <p>Depth of the box, along the z-axis.</p> </dd></param>
  21909. <param name="meshOut"><dd> <p>Address of a reference to the output shape, an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface.</p> </dd></param>
  21910. <param name="adjacencyOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When the method returns, this parameter is filled with an array of three DWORDs per face that specify the three neighbors for each face in the mesh. <strong><c>null</c></strong> can be specified.</p> </dd></param>
  21911. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21912. <remarks>
  21913. <p>The created box is centered at the origin.</p><p>This function creates a mesh with the <see cref="F:SharpDX.Direct3D9.MeshFlags.Managed" /> creation option and <see cref="F:SharpDX.Direct3D9.VertexFormat.Position" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal" /> flexible vertex format (FVF).</p>
  21914. </remarks>
  21915. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateBox']/*" />
  21916. <msdn-id>bb172752</msdn-id>
  21917. <unmanaged>HRESULT D3DXCreateBox([In] IDirect3DDevice9* pDevice,[In] float Width,[In] float Height,[In] float Depth,[In] ID3DXMesh** ppMesh,[In] ID3DXBuffer** ppAdjacency)</unmanaged>
  21918. <unmanaged-short>D3DXCreateBox</unmanaged-short>
  21919. </member>
  21920. <member name="M:SharpDX.Direct3D9.D3DX9.CreatePolygon(SharpDX.Direct3D9.Device,System.Single,System.Int32,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@)">
  21921. <summary>
  21922. <p>Uses a left-handed coordinate system to create a mesh containing an
  21923. n-sided polygon.</p>
  21924. </summary>
  21925. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device associated with the created polygon mesh.</p> </dd></param>
  21926. <param name="length"><dd> <p>Length of each side.</p> </dd></param>
  21927. <param name="sides"><dd> <p>Number of sides for the polygon. Value must be greater than or equal to 3.</p> </dd></param>
  21928. <param name="meshOut"><dd> <p>Address of a reference to the output shape, an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface.</p> </dd></param>
  21929. <param name="adjacencyOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface. When the method returns, this parameter is filled with an array of three DWORDs per face that specify the three neighbors for each face in the mesh. <strong><c>null</c></strong> can be specified.</p> </dd></param>
  21930. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21931. <remarks>
  21932. <p>The created polygon is centered at the origin.</p><p>This function creates a mesh with the <see cref="F:SharpDX.Direct3D9.MeshFlags.Managed" /> creation option and <see cref="F:SharpDX.Direct3D9.VertexFormat.Position" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal" /> flexible vertex format (FVF).</p>
  21933. </remarks>
  21934. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreatePolygon']/*" />
  21935. <msdn-id>bb172785</msdn-id>
  21936. <unmanaged>HRESULT D3DXCreatePolygon([In] IDirect3DDevice9* pDevice,[In] float Length,[In] unsigned int Sides,[In] ID3DXMesh** ppMesh,[In] ID3DXBuffer** ppAdjacency)</unmanaged>
  21937. <unmanaged-short>D3DXCreatePolygon</unmanaged-short>
  21938. </member>
  21939. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTextW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@,System.IntPtr)">
  21940. <summary>
  21941. <p>Creates a mesh containing the specified text, using the font associated with the device context.</p>
  21942. </summary>
  21943. <param name="deviceRef"><dd> <p>Pointer to the device that created the mesh.</p> </dd></param>
  21944. <param name="hDC"><dd> <p>Device context, containing the font for output. The font selected by the device context must be a TrueType font.</p> </dd></param>
  21945. <param name="textRef"><dd> <p>Pointer to a string that specifies the text to generate. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  21946. <param name="deviation"><dd> <p>Maximum chordal deviation from TrueType font outlines.</p> </dd></param>
  21947. <param name="extrusion"><dd> <p>Amount to extrude text in the negative z-direction.</p> </dd></param>
  21948. <param name="meshOut"><dd> <p>Pointer to the returned mesh.</p> </dd></param>
  21949. <param name="adjacencyOut"><dd> <p>Pointer to a buffer containing adjacency information. May be <strong><c>null</c></strong>.</p> </dd></param>
  21950. <param name="pGlyphMetrics"><dd> <p>Pointer to an array of <strong>GLYPHMETRICSFLOAT</strong> structures that contain the glyph metric data. Each element contains information about the position and orientation of the corresponding glyph in the string. The number of elements in the array should be equal to the number of characters in the string. Note that the origin in each structure is not relative to the entire string, but rather is relative to that character cell. To compute the entire bounding box, add the increment for each glyph while traversing the string. If you are not concerned with the glyph sizes, set this parameter to <strong><c>null</c></strong>.</p> </dd></param>
  21951. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  21952. <remarks>
  21953. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Single,System.Single,SharpDX.Direct3D9.Mesh@,SharpDX.Direct3D.Blob@,System.IntPtr)" />. Otherwise, the function call resolves to D3DXCreateTextA because ANSI strings are being used.</p><p>This function creates a mesh with the <see cref="F:SharpDX.Direct3D9.MeshFlags.Managed" /> creation option and <see cref="F:SharpDX.Direct3D9.VertexFormat.Position" /> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal" /> flexible vertex format (FVF).</p>
  21954. </remarks>
  21955. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTextW']/*" />
  21956. <msdn-id>bb172799</msdn-id>
  21957. <unmanaged>HRESULT D3DXCreateTextW([In] IDirect3DDevice9* pDevice,[In] HDC hDC,[In] const wchar_t* pText,[In] float Deviation,[In] float Extrusion,[In] ID3DXMesh** ppMesh,[In] ID3DXBuffer** ppAdjacency,[In] LPGLYPHMETRICSFLOAT pGlyphMetrics)</unmanaged>
  21958. <unmanaged-short>D3DXCreateTextW</unmanaged-short>
  21959. </member>
  21960. <member name="M:SharpDX.Direct3D9.D3DX9.GetImageInfoFromFileInMemory(System.IntPtr,System.Int32)">
  21961. <summary>
  21962. <p>Retrieves information about a given image file in memory.</p>
  21963. </summary>
  21964. <param name="srcDataRef"><dd> <p>VOID reference to the source file in memory.</p> </dd></param>
  21965. <param name="srcDataSize"><dd> <p>Size of file in memory, in bytes. .</p> </dd></param>
  21966. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.ImageInformation" /></strong> structure to be filled with the description of the data in the source file.</p> </dd></returns>
  21967. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetImageInfoFromFileInMemory']/*" />
  21968. <msdn-id>bb172868</msdn-id>
  21969. <unmanaged>HRESULT D3DXGetImageInfoFromFileInMemory([In] const void* pSrcData,[In] unsigned int SrcDataSize,[Out] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  21970. <unmanaged-short>D3DXGetImageInfoFromFileInMemory</unmanaged-short>
  21971. </member>
  21972. <member name="M:SharpDX.Direct3D9.D3DX9.FillVolumeTextureTX(SharpDX.Direct3D9.VolumeTexture,SharpDX.Direct3D9.TextureShader)">
  21973. <summary>
  21974. <p>Uses a compiled high-level shader language (HLSL) function to fill each texel of each mipmap level of a texture.</p>
  21975. </summary>
  21976. <param name="volumeTextureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> object, representing the texture to be filled.</p> </dd></param>
  21977. <param name="textureShaderRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.TextureShader" /></strong> texture shader object.</p> </dd></param>
  21978. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following:D3DERR_NOTAVAILABLE, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  21979. <remarks>
  21980. <p>The texture target must be an HLSL function that takes contains the following semantics:</p><ul> <li>One input parameter must use a POSITION semantic.</li> <li>One input parameter must use a PSIZE semantic.</li> <li>The function must return a parameter that uses the COLOR semantic.</li> </ul><p>The input parameters can be in any order. For an example, see <strong><see cref="M:SharpDX.Direct3D9.D3DX9.FillTextureTX(SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.TextureShader)" /></strong> </p>
  21981. </remarks>
  21982. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFillVolumeTextureTX']/*" />
  21983. <msdn-id>bb172836</msdn-id>
  21984. <unmanaged>HRESULT D3DXFillVolumeTextureTX([In] IDirect3DVolumeTexture9* pVolumeTexture,[In] ID3DXTextureShader* pTextureShader)</unmanaged>
  21985. <unmanaged-short>D3DXFillVolumeTextureTX</unmanaged-short>
  21986. </member>
  21987. <member name="M:SharpDX.Direct3D9.D3DX9.CreateCubeTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.CubeTexture@)">
  21988. <summary>
  21989. <p>Creates an empty cube texture, adjusting the calling parameters as needed.</p>
  21990. </summary>
  21991. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the texture.</p> </dd></param>
  21992. <param name="size"><dd> <p>Width and height of the cube texture, in pixels. For example, if the cube texture is an 8-pixel by 8-pixel cube, the value for this parameter should be 8.</p> </dd></param>
  21993. <param name="mipLevels"><dd> <p>Number of mip levels requested. If this value is zero or D3DX_DEFAULT, a complete mipmap chain is created.</p> </dd></param>
  21994. <param name="usage"><dd> <p>0, <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" />, or <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" />. Setting this flag to <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /> indicates that the surface is to be used as a render target. The resource can then be passed to the <em>pNewRenderTarget</em> parameter of the <strong>SetRenderTarget</strong> method. If <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /> is specified, the application should check that the device supports this operation by calling <strong>CheckDeviceFormat</strong>. For more information about using dynamic textures, see Using Dynamic Textures.</p> </dd></param>
  21995. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the requested pixel format for the cube texture. The returned cube texture might have a different format from that specified by <em>Format</em>. Applications should check the format of the returned cube texture.</p> </dd></param>
  21996. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing the memory class into which the cube texture should be placed.</p> </dd></param>
  21997. <param name="cubeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> interface, representing the created cube texture object.</p> </dd></param>
  21998. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  21999. <remarks>
  22000. <p>Cube textures differ from other surfaces in that they are collections of surfaces. </p><p>Internally, <see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.CubeTexture@)" /> uses <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CheckCubeTextureRequirements(SharpDX.Direct3D9.Device,System.Int32@,System.Int32@,System.Int32,SharpDX.Direct3D9.Format@,SharpDX.Direct3D9.Pool)" /></strong> to adjust the calling parameters. Therefore, calls to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.CubeTexture@)" /> will often succeed where calls to <strong>CreateCubeTexture</strong> would fail.</p>
  22001. </remarks>
  22002. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateCubeTexture']/*" />
  22003. <msdn-id>bb172755</msdn-id>
  22004. <unmanaged>HRESULT D3DXCreateCubeTexture([In] IDirect3DDevice9* pDevice,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  22005. <unmanaged-short>D3DXCreateCubeTexture</unmanaged-short>
  22006. </member>
  22007. <member name="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromFileInMemoryEx(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.VolumeTexture@)">
  22008. <summary>
  22009. <p>Creates a volume texture from a file. This is a more advanced function than <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromFileInMemory(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.VolumeTexture@)" /></strong>.</p>
  22010. </summary>
  22011. <param name="deviceRef">No documentation.</param>
  22012. <param name="srcDataRef">No documentation.</param>
  22013. <param name="srcDataSize">No documentation.</param>
  22014. <param name="width">No documentation.</param>
  22015. <param name="height">No documentation.</param>
  22016. <param name="depth">No documentation.</param>
  22017. <param name="mipLevels">No documentation.</param>
  22018. <param name="usage">No documentation.</param>
  22019. <param name="format">No documentation.</param>
  22020. <param name="pool">No documentation.</param>
  22021. <param name="filter">No documentation.</param>
  22022. <param name="mipFilter">No documentation.</param>
  22023. <param name="colorKey">No documentation.</param>
  22024. <param name="srcInfoRef">No documentation.</param>
  22025. <param name="paletteRef">No documentation.</param>
  22026. <param name="volumeTextureOut">No documentation.</param>
  22027. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22028. <remarks>
  22029. <p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>When skipping mipmap levels while loading a .dds file, use the D3DX_SKIP_DDS_MIP_LEVELS macro to generate the <em>MipFilter</em> value. This macro takes the number of levels to skip and the filter type and returns the filter value, which would then be passed into the <em>MipFilter</em> parameter.</p>
  22030. </remarks>
  22031. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateVolumeTextureFromFileInMemoryEx']/*" />
  22032. <msdn-id>bb172814</msdn-id>
  22033. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Width,[In] unsigned int Height,[In] unsigned int Depth,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  22034. <unmanaged-short>D3DXCreateVolumeTextureFromFileInMemoryEx</unmanaged-short>
  22035. </member>
  22036. <member name="M:SharpDX.Direct3D9.D3DX9.FillTextureTX(SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.TextureShader)">
  22037. <summary>
  22038. <p>Uses a compiled high-level shader language (HLSL) function to fill each texel of each mipmap level of a texture.</p>
  22039. </summary>
  22040. <param name="textureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> object, representing the texture to be filled.</p> </dd></param>
  22041. <param name="textureShaderRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.TextureShader" /></strong> texture shader object.</p> </dd></param>
  22042. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  22043. <remarks>
  22044. <p>The texture target must be an HLSL function that takes contains the following semantics:</p><ul> <li>One input parameter must use a POSITION semantic.</li> <li>One input parameter must use a PSIZE semantic.</li> <li>The function must return a parameter that uses the COLOR semantic.</li> </ul><p>The following is an example of such an HLSL function:</p><pre> float4 TextureGradientFill( float2 vTexCoord : POSITION, float2 vTexelSize : PSIZE) : COLOR { float r,g, b, xSq,ySq, a; xSq = 2.f*vTexCoord.x-1.f; xSq *= xSq; ySq = 2.f*vTexCoord.y-1.f; ySq *= ySq; a = sqrt(xSq+ySq); if (a &gt; 1.0f) { a = 1.0f-(a-1.0f); } else if (a &lt; 0.2f) { a = 0.2f; } r = 1-vTexCoord.x; g = 1-vTexCoord.y; b = vTexCoord.x; return float4(r, g, b, a); };
  22045. </pre><p>Note that the input parameters can be in any order, but both input semantics must be represented.</p>
  22046. </remarks>
  22047. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFillTextureTX']/*" />
  22048. <msdn-id>bb172834</msdn-id>
  22049. <unmanaged>HRESULT D3DXFillTextureTX([In] IDirect3DTexture9* pTexture,[In] ID3DXTextureShader* pTextureShader)</unmanaged>
  22050. <unmanaged-short>D3DXFillTextureTX</unmanaged-short>
  22051. </member>
  22052. <member name="M:SharpDX.Direct3D9.D3DX9.CheckCubeTextureRequirements(SharpDX.Direct3D9.Device,System.Int32@,System.Int32@,System.Int32,SharpDX.Direct3D9.Format@,SharpDX.Direct3D9.Pool)">
  22053. <summary>
  22054. <p>Checks cube-texture-creation parameters.</p>
  22055. </summary>
  22056. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the cube texture.</p> </dd></param>
  22057. <param name="sizeRef"><dd> <p>Pointer to the requested width and height in pixels, or <strong><c>null</c></strong>. Returns the corrected size.</p> </dd></param>
  22058. <param name="numMipLevelsRef"><dd> <p>Pointer to the number of requested mipmap levels, or <strong><c>null</c></strong>. Returns the corrected number of mipmap levels.</p> </dd></param>
  22059. <param name="usage"><dd> <p>0 or <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" />. Setting this flag to <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /> indicates that the surface is to be used as a render target. The resource can then be passed to the pNewRenderTarget parameter of the <strong>SetRenderTarget</strong> method. If <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /> is specified, the application should check that the device supports this operation by calling <strong>CheckDeviceFormat</strong>.</p> </dd></param>
  22060. <param name="formatRef"><dd> <p>Pointer to a member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type. Specifies the desired pixel format, or <strong><c>null</c></strong>. Returns the corrected format.</p> </dd></param>
  22061. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing the memory class into which the texture should be placed.</p> </dd></param>
  22062. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  22063. <remarks>
  22064. <p>If parameters to this function are invalid, this function returns corrected parameters.</p><p>Cube textures differ from other surfaces in that they are collections of surfaces. To call <strong>SetRenderTarget</strong> with a cube texture, you must select an individual face using <strong>GetCubeMapSurface</strong> and pass the resulting surface to <strong>SetRenderTarget</strong>.</p>
  22065. </remarks>
  22066. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCheckCubeTextureRequirements']/*" />
  22067. <msdn-id>bb172715</msdn-id>
  22068. <unmanaged>HRESULT D3DXCheckCubeTextureRequirements([In] IDirect3DDevice9* pDevice,[InOut] unsigned int* pSize,[InOut] unsigned int* pNumMipLevels,[In] unsigned int Usage,[InOut] D3DFORMAT* pFormat,[In] D3DPOOL Pool)</unmanaged>
  22069. <unmanaged-short>D3DXCheckCubeTextureRequirements</unmanaged-short>
  22070. </member>
  22071. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Texture@)">
  22072. <summary>
  22073. <p>Creates a texture from a file.</p>
  22074. </summary>
  22075. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the texture.</p> </dd></param>
  22076. <param name="srcFileRef"><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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22077. <param name="textureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface, representing the created texture object.</p> </dd></param>
  22078. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22079. <remarks>
  22080. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Texture@)" />. Otherwise, the function call resolves to D3DXCreateTextureFromFileA because ANSI strings are being used.</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>The function is equivalent to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.Texture@)" />(pDevice, pSrcFile, D3DX_DEFAULT, D3DX_DEFAULT, D3DX_DEFAULT, 0, <see cref="F:SharpDX.Direct3D9.Format.Unknown" />, <see cref="F:SharpDX.Direct3D9.Pool.Managed" />, D3DX_DEFAULT, D3DX_DEFAULT, 0, <strong><c>null</c></strong>, <strong><c>null</c></strong>, ppTexture).</p><p>Mipmapped textures automatically have each level filled with the loaded texture.</p><p>When loading images into mipmapped textures, some devices are unable to go to a 1x1 image and this function will fail. If this happens, the images need to be loaded manually.</p><p>Note that a resource created with this function will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Managed" />.</p><p>Filtering is automatically applied to a texture created using this method. The filtering is equivalent to <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" /> in <see cref="T:SharpDX.Direct3D9.Filter" />.</p><p>For the best performance when using <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Texture@)" /></strong>:</p><ol> <li>Doing image scaling and format conversion at load time can be slow. Store images in the format and resolution they will be used. If the target hardware requires power of two dimensions, create and store images using power of two dimensions.</li> <li>Consider using DirectDraw surface (DDS) files. Because DDS files can be used to represent any Direct3D 9 texture format, they are very easy for D3DX to read. Also, they can store mipmaps, so any mipmap-generation algorithms can be used to author the images.</li> </ol>
  22081. </remarks>
  22082. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTextureFromFileW']/*" />
  22083. <msdn-id>bb172801</msdn-id>
  22084. <unmanaged>HRESULT D3DXCreateTextureFromFileW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  22085. <unmanaged-short>D3DXCreateTextureFromFileW</unmanaged-short>
  22086. </member>
  22087. <member name="M:SharpDX.Direct3D9.D3DX9.LoadSurfaceFromFileW(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)">
  22088. <summary>
  22089. <p>Loads a surface from a file.</p>
  22090. </summary>
  22091. <param name="destSurfaceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Specifies the destination surface, which receives the image.</p> </dd></param>
  22092. <param name="destPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the destination palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22093. <param name="destRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure. Specifies the destination rectangle. Set this parameter to <strong><c>null</c></strong> to specify the entire surface.</p> </dd></param>
  22094. <param name="srcFileRef"><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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22095. <param name="srcRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure. Specifies the source rectangle. Set this parameter to <strong><c>null</c></strong> to specify the entire image.</p> </dd></param>
  22096. <param name="filter"><dd> <p>Combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" /> controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" />.</p> </dd></param>
  22097. <param name="colorKey"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> value to replace with transparent black, or 0 to disable the colorkey. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys Thus, for opaque black, the value would be equal to 0xFF000000.</p> </dd></param>
  22098. <param name="srcInfoRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.ImageInformation" /></strong> structure to be filled with a description of the data in the source image file, or <strong><c>null</c></strong>.</p> </dd></param>
  22099. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  22100. <remarks>
  22101. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.LoadSurfaceFromFileW(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)" />. Otherwise, the function call resolves to D3DXLoadSurfaceFromFileA because ANSI strings are being used.</p><p>This function handles conversion to and from compressed texture formats and supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Writing to a non-level-zero surface will not cause the dirty rectangle to be updated. If <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadSurfaceFromFileW(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)" /></strong> is called and the surface was not already dirty (this is unlikely under normal usage scenarios), the application needs to explicitly call <strong>AddDirtyRect</strong> on the surface.</p>
  22102. </remarks>
  22103. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadSurfaceFromFileW']/*" />
  22104. <msdn-id>bb172900</msdn-id>
  22105. <unmanaged>HRESULT D3DXLoadSurfaceFromFileW([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const wchar_t* pSrcFile,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  22106. <unmanaged-short>D3DXLoadSurfaceFromFileW</unmanaged-short>
  22107. </member>
  22108. <member name="M:SharpDX.Direct3D9.D3DX9.FillCubeTexture(SharpDX.Direct3D9.CubeTexture,SharpDX.FunctionCallback,System.IntPtr)">
  22109. <summary>
  22110. <p>Uses a user-provided function to fill each texel of each mip level of a given cube texture.</p>
  22111. </summary>
  22112. <param name="cubeTextureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> interface, representing the filled texture.</p> </dd></param>
  22113. <param name="functionRef"><dd> <p>Pointer to a user-provided evaluator function, which will be used to compute the value of each texel. The function follows the prototype of LPD3DXFILL3D.</p> </dd></param>
  22114. <param name="dataRef"><dd> <p>Pointer to an arbitrary block of user-defined data. This reference will be passed to the function provided in <em>pFunction</em>.</p> </dd></param>
  22115. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  22116. <remarks>
  22117. <p>Here is an example that creates a function called ColorCubeFill, which relies on <see cref="M:SharpDX.Direct3D9.D3DX9.FillCubeTexture(SharpDX.Direct3D9.CubeTexture,SharpDX.FunctionCallback,System.IntPtr)" />.</p><pre> // Define a function that matches the prototype of LPD3DXFILL3D
  22118. VOID WINAPI ColorCubeFill (<see cref="T:SharpDX.Mathematics.Interop.RawVector4" />* pOut, const <see cref="T:SharpDX.Mathematics.Interop.RawVector3" />* pTexCoord,
  22119. const <see cref="T:SharpDX.Mathematics.Interop.RawVector3" />* pTexelSize, LPVOID pData)
  22120. { *pOut = <see cref="T:SharpDX.Mathematics.Interop.RawVector4" />(pTexCoord-&gt;x, pTexCoord-&gt;y, pTexCoord-&gt;z, 0.0f);
  22121. } // Fill the texture using <see cref="M:SharpDX.Direct3D9.D3DX9.FillCubeTexture(SharpDX.Direct3D9.CubeTexture,SharpDX.FunctionCallback,System.IntPtr)" />
  22122. if (FAILED (hr = <see cref="M:SharpDX.Direct3D9.D3DX9.FillCubeTexture(SharpDX.Direct3D9.CubeTexture,SharpDX.FunctionCallback,System.IntPtr)" /> (m_pTexture, ColorCubeFill, <c>null</c>)))
  22123. { return hr;
  22124. }
  22125. </pre>
  22126. </remarks>
  22127. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFillCubeTexture']/*" />
  22128. <msdn-id>bb172831</msdn-id>
  22129. <unmanaged>HRESULT D3DXFillCubeTexture([In] IDirect3DCubeTexture9* pCubeTexture,[In] __function__stdcall* pFunction,[In] void* pData)</unmanaged>
  22130. <unmanaged-short>D3DXFillCubeTexture</unmanaged-short>
  22131. </member>
  22132. <member name="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VolumeTexture@)">
  22133. <summary>
  22134. <p>Creates an empty volume texture, adjusting the calling parameters as needed.</p>
  22135. </summary>
  22136. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the volume texture.</p> </dd></param>
  22137. <param name="width"><dd> <p>Width in pixels. This value must be nonzero. The maximum dimension that a driver supports (for width, height, and depth) can be found in MaxVolumeExtent in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd></param>
  22138. <param name="height"><dd> <p>Height in pixels. This value must be nonzero. The maximum dimension that a driver supports (for width, height, and depth) can be found in MaxVolumeExtent in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd></param>
  22139. <param name="depth"><dd> <p>Depth in pixels. This value must be nonzero. The maximum dimension that a driver supports (for width, height, and depth) can be found in MaxVolumeExtent in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd></param>
  22140. <param name="mipLevels"><dd> <p>Number of mip levels requested. If this value is zero or D3DX_DEFAULT, a complete mipmap chain is created.</p> </dd></param>
  22141. <param name="usage"><dd> <p>0 or <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" />. For more information about using dynamic textures, see Using Dynamic Textures.</p> </dd></param>
  22142. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the requested pixel format for the volume texture. The returned volume texture might have a different format from that specified by Format. Applications should check the format of the returned volume texture.</p> </dd></param>
  22143. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing the memory class into which the volume texture should be placed.</p> </dd></param>
  22144. <param name="volumeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> interface, representing the created volume texture object.</p> </dd></param>
  22145. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY .</p></returns>
  22146. <remarks>
  22147. <p>Internally, <see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VolumeTexture@)" /> uses <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CheckVolumeTextureRequirements(SharpDX.Direct3D9.Device,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32,SharpDX.Direct3D9.Format@,SharpDX.Direct3D9.Pool)" /></strong> to adjust the calling parameters. Therefore, calls to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VolumeTexture@)" /> will often succeed where calls to <strong>CreateVolumeTexture</strong> would fail.</p>
  22148. </remarks>
  22149. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateVolumeTexture']/*" />
  22150. <msdn-id>bb172810</msdn-id>
  22151. <unmanaged>HRESULT D3DXCreateVolumeTexture([In] IDirect3DDevice9* pDevice,[In] unsigned int Width,[In] unsigned int Height,[In] unsigned int Depth,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  22152. <unmanaged-short>D3DXCreateVolumeTexture</unmanaged-short>
  22153. </member>
  22154. <member name="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromFileW(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)">
  22155. <summary>
  22156. <p>Loads a volume from a file.</p>
  22157. </summary>
  22158. <param name="destVolumeRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface. Specifies the destination volume.</p> </dd></param>
  22159. <param name="destPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the destination palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22160. <param name="destBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the destination box. Set this parameter to <strong><c>null</c></strong> to specify the entire volume.</p> </dd></param>
  22161. <param name="srcFileRef"><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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22162. <param name="srcBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the source box. Set this parameter to <strong><c>null</c></strong> to specify the entire volume.</p> </dd></param>
  22163. <param name="filter"><dd> <p>Combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" />, controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" />.</p> </dd></param>
  22164. <param name="colorKey"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> value to replace with transparent black, or 0 to disable the colorkey. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys. Thus, for opaque black, the value would be equal to 0xFF000000.</p> </dd></param>
  22165. <param name="srcInfoRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.ImageInformation" /></strong> structure to be filled with a description of the data in the source image file, or <strong><c>null</c></strong>.</p> </dd></param>
  22166. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  22167. <remarks>
  22168. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromFileW(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)" />. Otherwise, the function call resolves to D3DXLoadVolumeFromFileA because ANSI strings are being used.</p><p>This function handles conversion to and from compressed texture formats and supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Writing to a non-level-zero surface of the volume texture will not cause the dirty rectangle to be updated. If <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromFileW(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)" /></strong> is called and the texture was not already dirty (this is unlikely under normal usage scenarios), the application needs to explicitly call <strong><see cref="M:SharpDX.Direct3D9.VolumeTexture.AddDirtyBox(System.IntPtr)" /></strong> on the volume texture.</p>
  22169. </remarks>
  22170. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadVolumeFromFileW']/*" />
  22171. <msdn-id>bb172905</msdn-id>
  22172. <unmanaged>HRESULT D3DXLoadVolumeFromFileW([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const wchar_t* pSrcFile,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  22173. <unmanaged-short>D3DXLoadVolumeFromFileW</unmanaged-short>
  22174. </member>
  22175. <member name="M:SharpDX.Direct3D9.D3DX9.LoadSurfaceFromResourceW(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)">
  22176. <summary>
  22177. No documentation.
  22178. </summary>
  22179. <param name="destSurfaceRef">No documentation.</param>
  22180. <param name="destPaletteRef">No documentation.</param>
  22181. <param name="destRectRef">No documentation.</param>
  22182. <param name="hSrcModule">No documentation.</param>
  22183. <param name="srcResourceRef">No documentation.</param>
  22184. <param name="srcRectRef">No documentation.</param>
  22185. <param name="filter">No documentation.</param>
  22186. <param name="colorKey">No documentation.</param>
  22187. <param name="srcInfoRef">No documentation.</param>
  22188. <returns>No documentation.</returns>
  22189. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadSurfaceFromResourceW']/*" />
  22190. <unmanaged>HRESULT D3DXLoadSurfaceFromResourceW([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  22191. <unmanaged-short>D3DXLoadSurfaceFromResourceW</unmanaged-short>
  22192. </member>
  22193. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.Texture@)">
  22194. <summary>
  22195. <p>Creates a texture from a file. This is a more advanced function than <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Texture@)" /></strong>.</p>
  22196. </summary>
  22197. <param name="deviceRef">No documentation.</param>
  22198. <param name="srcFileRef">No documentation.</param>
  22199. <param name="width">No documentation.</param>
  22200. <param name="height">No documentation.</param>
  22201. <param name="mipLevels">No documentation.</param>
  22202. <param name="usage">No documentation.</param>
  22203. <param name="format">No documentation.</param>
  22204. <param name="pool">No documentation.</param>
  22205. <param name="filter">No documentation.</param>
  22206. <param name="mipFilter">No documentation.</param>
  22207. <param name="colorKey">No documentation.</param>
  22208. <param name="srcInfoRef">No documentation.</param>
  22209. <param name="paletteRef">No documentation.</param>
  22210. <param name="textureOut">No documentation.</param>
  22211. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22212. <remarks>
  22213. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.Texture@)" />. Otherwise, the function call resolves to D3DXCreateTextureFromFileExA because ANSI strings are being used.</p><p>Use <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CheckTextureRequirements(SharpDX.Direct3D9.Device,System.Int32@,System.Int32@,System.Int32@,System.Int32,SharpDX.Direct3D9.Format@,SharpDX.Direct3D9.Pool)" /></strong> to determine if your device can support the texture given the current state.</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Mipmapped textures automatically have each level filled with the loaded texture. When loading images into mipmapped textures, some devices are unable to go to a 1x1 image and this function will fail. If this happens, then the images need to be loaded manually.</p><p>For the best performance when using <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.Texture@)" /></strong>:</p><ol> <li>Doing image scaling and format conversion at load time can be slow. Store images in the format and resolution they will be used. If the target hardware requires power of 2 dimensions, then create and store images using power of 2 dimensions.</li> <li>For mipmap image creation at load time, filter using <see cref="F:SharpDX.Direct3D9.Filter.Box" />. A box filter is much faster than other filter types such as <see cref="F:SharpDX.Direct3D9.Filter.Triangle" />.</li> <li>Consider using DDS files. Since DDS files can be used to represent any Direct3D 9 texture format, they are very easy for D3DX to read. Also, they can store mipmaps, so any mipmap-generation algorithms can be used to author the images.</li> </ol><p>When skipping mipmap levels while loading a .dds file, use the D3DX_SKIP_DDS_MIP_LEVELS macro to generate the MipFilter value. This macro takes the number of levels to skip and the filter type and returns the filter value, which would then be passed into the MipFilter parameter.</p>
  22214. </remarks>
  22215. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTextureFromFileExW']/*" />
  22216. <msdn-id>bb172802</msdn-id>
  22217. <unmanaged>HRESULT D3DXCreateTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Width,[In] unsigned int Height,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  22218. <unmanaged-short>D3DXCreateTextureFromFileExW</unmanaged-short>
  22219. </member>
  22220. <member name="M:SharpDX.Direct3D9.D3DX9.ComputeNormalMap(SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.PaletteEntry[],System.Int32,System.Int32,System.Single)">
  22221. <summary>
  22222. <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>
  22223. </summary>
  22224. <param name="textureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface, representing the destination texture.</p> </dd></param>
  22225. <param name="srcTextureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface, representing the source height-map texture.</p> </dd></param>
  22226. <param name="srcPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> type that contains the source palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22227. <param name="flags"><dd> <p>One or more <see cref="T:SharpDX.Direct3D9.NormalMapFlags" /> flags that control generation of normal maps.</p> </dd></param>
  22228. <param name="channel"><dd> <p>One <see cref="T:SharpDX.Direct3D9.Channel" /> flag specifying the source of height information.</p> </dd></param>
  22229. <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>
  22230. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be the following value: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  22231. <remarks>
  22232. <p>This method computes the normal by using the central difference with a kernel size of 3x3. The central differencing denominator used is 2.0. RGB channels in the destination contain biased (x,y,z) components of the normal.</p>
  22233. </remarks>
  22234. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXComputeNormalMap']/*" />
  22235. <msdn-id>bb172741</msdn-id>
  22236. <unmanaged>HRESULT D3DXComputeNormalMap([In] IDirect3DTexture9* pTexture,[In] IDirect3DTexture9* pSrcTexture,[Out, Buffer] const PALETTEENTRY* pSrcPalette,[In] unsigned int Flags,[In] unsigned int Channel,[In] float Amplitude)</unmanaged>
  22237. <unmanaged-short>D3DXComputeNormalMap</unmanaged-short>
  22238. </member>
  22239. <member name="M:SharpDX.Direct3D9.D3DX9.CheckVolumeTextureRequirements(SharpDX.Direct3D9.Device,System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Int32,SharpDX.Direct3D9.Format@,SharpDX.Direct3D9.Pool)">
  22240. <summary>
  22241. <p>Checks volume-texture-creation parameters.</p>
  22242. </summary>
  22243. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the volume texture.</p> </dd></param>
  22244. <param name="widthRef"><dd> <p>Pointer to the requested width in pixels, or <strong><c>null</c></strong>. Returns the corrected size.</p> </dd></param>
  22245. <param name="heightRef"><dd> <p>Pointer to the requested height in pixels, or <strong><c>null</c></strong>. Returns the corrected size.</p> </dd></param>
  22246. <param name="depthRef"><dd> <p>Pointer to the requested depth in pixels, or <strong><c>null</c></strong>. Returns the corrected size.</p> </dd></param>
  22247. <param name="numMipLevelsRef"><dd> <p>Pointer to the number of requested mipmap levels, or <strong><c>null</c></strong>. Returns the corrected number of mipmap levels.</p> </dd></param>
  22248. <param name="usage"><dd> <p>Currently not used, set to 0.</p> </dd></param>
  22249. <param name="formatRef"><dd> <p>Pointer to a member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type. Specifies the desired pixel format, or <strong><c>null</c></strong>. Returns the corrected format.</p> </dd></param>
  22250. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing the memory class into which the volume texture should be placed.</p> </dd></param>
  22251. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  22252. <remarks>
  22253. <p>If parameters to this function are invalid, this function returns corrected parameters.</p>
  22254. </remarks>
  22255. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCheckVolumeTextureRequirements']/*" />
  22256. <msdn-id>bb172718</msdn-id>
  22257. <unmanaged>HRESULT D3DXCheckVolumeTextureRequirements([In] IDirect3DDevice9* pDevice,[InOut] unsigned int* pWidth,[InOut] unsigned int* pHeight,[InOut] unsigned int* pDepth,[InOut] unsigned int* pNumMipLevels,[In] unsigned int Usage,[InOut] D3DFORMAT* pFormat,[In] D3DPOOL Pool)</unmanaged>
  22258. <unmanaged-short>D3DXCheckVolumeTextureRequirements</unmanaged-short>
  22259. </member>
  22260. <member name="M:SharpDX.Direct3D9.D3DX9.LoadSurfaceFromFileInMemory(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)">
  22261. <summary>
  22262. No documentation.
  22263. </summary>
  22264. <param name="destSurfaceRef">No documentation.</param>
  22265. <param name="destPaletteRef">No documentation.</param>
  22266. <param name="destRectRef">No documentation.</param>
  22267. <param name="srcDataRef">No documentation.</param>
  22268. <param name="srcDataSize">No documentation.</param>
  22269. <param name="srcRectRef">No documentation.</param>
  22270. <param name="filter">No documentation.</param>
  22271. <param name="colorKey">No documentation.</param>
  22272. <param name="srcInfoRef">No documentation.</param>
  22273. <returns>No documentation.</returns>
  22274. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadSurfaceFromFileInMemory']/*" />
  22275. <unmanaged>HRESULT D3DXLoadSurfaceFromFileInMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  22276. <unmanaged-short>D3DXLoadSurfaceFromFileInMemory</unmanaged-short>
  22277. </member>
  22278. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileInMemory(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.Texture@)">
  22279. <summary>
  22280. <p>Creates a texture from a file in memory.</p>
  22281. </summary>
  22282. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface representing the device to be associated with the texture.</p> </dd></param>
  22283. <param name="srcDataRef"><dd> <p>Pointer to the file in memory from which to create the texture.</p> </dd></param>
  22284. <param name="srcDataSize"><dd> <p>Size in bytes of the file in memory.</p> </dd></param>
  22285. <param name="textureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface representing the created texture object.</p> </dd></param>
  22286. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22287. <remarks>
  22288. <p>The function is equivalent to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileInMemoryEx(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.Texture@)" />(pDevice, pSrcData, SrcDataSize, D3DX_DEFAULT, D3DX_DEFAULT, D3DX_DEFAULT, 0, <see cref="F:SharpDX.Direct3D9.Format.Unknown" />, <see cref="F:SharpDX.Direct3D9.Pool.Managed" />, D3DX_DEFAULT, D3DX_DEFAULT, 0, <strong><c>null</c></strong>, <strong><c>null</c></strong>, ppTexture).</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Note that a resource created with this function when called from a <see cref="T:SharpDX.Direct3D9.Device" /> object will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Managed" />. When this method is called from a <see cref="T:SharpDX.Direct3D9.DeviceEx" /> object the resource will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</p><p>Filtering is automatically applied to a texture created using this method. The filtering is equivalent to <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" /> in <see cref="T:SharpDX.Direct3D9.Filter" />.</p>
  22289. </remarks>
  22290. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTextureFromFileInMemory']/*" />
  22291. <msdn-id>bb172803</msdn-id>
  22292. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemory([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  22293. <unmanaged-short>D3DXCreateTextureFromFileInMemory</unmanaged-short>
  22294. </member>
  22295. <member name="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry,SharpDX.Direct3D9.CubeTexture@)">
  22296. <summary>
  22297. <p>Creates a cube texture from a resource specified by a string. This is a more advanced function than <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.CubeTexture@)" /></strong>.</p>
  22298. </summary>
  22299. <param name="deviceRef">No documentation.</param>
  22300. <param name="hSrcModule">No documentation.</param>
  22301. <param name="srcResourceRef">No documentation.</param>
  22302. <param name="size">No documentation.</param>
  22303. <param name="mipLevels">No documentation.</param>
  22304. <param name="usage">No documentation.</param>
  22305. <param name="format">No documentation.</param>
  22306. <param name="pool">No documentation.</param>
  22307. <param name="filter">No documentation.</param>
  22308. <param name="mipFilter">No documentation.</param>
  22309. <param name="colorKey">No documentation.</param>
  22310. <param name="srcInfoRef">No documentation.</param>
  22311. <param name="paletteRef">No documentation.</param>
  22312. <param name="cubeTextureOut">No documentation.</param>
  22313. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22314. <remarks>
  22315. <p>The compiler setting determines the function version. If Unicode is defined, the function call resolves to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry,SharpDX.Direct3D9.CubeTexture@)" /></strong>. Otherwise, the function call resolves to <strong>D3DXCreateCubeTextureFromResourceExA</strong> because ANSI strings are being used.</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Cube textures differ from other surfaces in that they are collections of surfaces. To call <strong>SetRenderTarget</strong> with a cube texture, you must select an individual face using <strong>GetCubeMapSurface</strong> and pass the resulting surface to <strong>SetRenderTarget</strong>.</p><p><strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry,SharpDX.Direct3D9.CubeTexture@)" /></strong> uses the DirectDraw surface (DDS) file format. The DirectX Texture Editor (Dxtex.exe) enables you to generate a cube map from other file formats and save it in the DDS file format.</p>
  22316. </remarks>
  22317. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateCubeTextureFromResourceExW']/*" />
  22318. <msdn-id>bb172761</msdn-id>
  22319. <unmanaged>HRESULT D3DXCreateCubeTextureFromResourceExW([In] IDirect3DDevice9* pDevice,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] D3DXIMAGE_INFO* pSrcInfo,[In] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  22320. <unmanaged-short>D3DXCreateCubeTextureFromResourceExW</unmanaged-short>
  22321. </member>
  22322. <member name="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromFileInMemory(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.VolumeTexture@)">
  22323. <summary>
  22324. <p>Creates a volume texture from a file in memory.</p>
  22325. </summary>
  22326. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the volume texture.</p> </dd></param>
  22327. <param name="srcDataRef"><dd> <p>Pointer to the file in memory from which to create the volume texture.</p> </dd></param>
  22328. <param name="srcDataSize"><dd> <p>Size of the file in memory, in bytes.</p> </dd></param>
  22329. <param name="volumeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> interface, representing the created texture object.</p> </dd></param>
  22330. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22331. <remarks>
  22332. <p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>The function is equivalent to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromFileInMemoryEx(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.VolumeTexture@)" />(pDevice, pSrcFile, SrcData, D3DX_DEFAULT, D3DX_DEFAULT, D3DX_DEFAULT, D3DX_DEFAULT, 0, <see cref="F:SharpDX.Direct3D9.Format.Unknown" />, <see cref="F:SharpDX.Direct3D9.Pool.Managed" />, D3DX_DEFAULT, D3DX_DEFAULT, 0, <strong><c>null</c></strong>, <strong><c>null</c></strong>, ppVolumeTexture).</p><p>Note that a resource created with this function when called from a <see cref="T:SharpDX.Direct3D9.Device" /> object will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Managed" />. When this method is called from a <see cref="T:SharpDX.Direct3D9.DeviceEx" /> object the resource will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</p><p>Filtering is automatically applied to a texture created using this method. The filtering is equivalent to <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" /> in <see cref="T:SharpDX.Direct3D9.Filter" />.</p>
  22333. </remarks>
  22334. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateVolumeTextureFromFileInMemory']/*" />
  22335. <msdn-id>bb172813</msdn-id>
  22336. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemory([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  22337. <unmanaged-short>D3DXCreateVolumeTextureFromFileInMemory</unmanaged-short>
  22338. </member>
  22339. <member name="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromVolume(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32)">
  22340. <summary>
  22341. <p>Loads a volume from another volume.</p>
  22342. </summary>
  22343. <param name="destVolumeRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface. Specifies the destination volume, which receives the image.</p> </dd></param>
  22344. <param name="destPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the destination palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22345. <param name="destBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the destination box. Set this parameter to <strong><c>null</c></strong> to specify the entire volume.</p> </dd></param>
  22346. <param name="srcVolumeRef"><dd> <p>A Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface. Specifies the source volume.</p> </dd></param>
  22347. <param name="srcPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the source palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22348. <param name="srcBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the source box. Set this parameter to <strong><c>null</c></strong> to specify the entire volume.</p> </dd></param>
  22349. <param name="filter"><dd> <p>A combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" />, controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" />.</p> </dd></param>
  22350. <param name="colorKey"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> value to replace with transparent black, or 0 to disable the colorkey. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys. Thus, for opaque black, the value would be equal to 0xFF000000.</p> </dd></param>
  22351. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  22352. <remarks>
  22353. <p>Writing to a non-level-zero surface of the volume texture will not cause the dirty rectangle to be updated. If <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromVolume(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32)" /></strong> is called and the surface was not already dirty (this is unlikely under normal usage scenarios), the application needs to explicitly call <strong><see cref="M:SharpDX.Direct3D9.VolumeTexture.AddDirtyBox(System.IntPtr)" /></strong> on the surface.</p>
  22354. </remarks>
  22355. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadVolumeFromVolume']/*" />
  22356. <msdn-id>bb172909</msdn-id>
  22357. <unmanaged>HRESULT D3DXLoadVolumeFromVolume([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] IDirect3DVolume9* pSrcVolume,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  22358. <unmanaged-short>D3DXLoadVolumeFromVolume</unmanaged-short>
  22359. </member>
  22360. <member name="M:SharpDX.Direct3D9.D3DX9.SaveTextureToFileW(System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.PaletteEntry[])">
  22361. <summary>
  22362. <p>Saves a texture to a file.</p>
  22363. </summary>
  22364. <param name="destFileRef"><dd> <p>Pointer to a string that specifies the file name of the destination image. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22365. <param name="destFormat"><dd> <p> <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong> specifying the file format to use when saving. This function supports saving to all <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong> formats except Portable Pixmap (.ppm) and Targa/Truevision Graphics Adapter (.tga).</p> </dd></param>
  22366. <param name="srcTextureRef"><dd> <p>Pointer to <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface, containing the texture to be saved.</p> </dd></param>
  22367. <param name="srcPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure containing a palette of 256 colors. This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  22368. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  22369. <remarks>
  22370. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.SaveTextureToFileW(System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.PaletteEntry[])" />. Otherwise, the function call resolves to D3DXSaveTextureToFileA because ANSI strings are being used.</p><p>This function handles conversion to and from compressed texture formats.</p><p>If the volume is nondynamic (because of a usage parameter set to 0 at the creation) and located in video memory (the memory pool set to <see cref="F:SharpDX.Direct3D9.Pool.Default" />), <strong><see cref="M:SharpDX.Direct3D9.D3DX9.SaveTextureToFileW(System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.PaletteEntry[])" /></strong> will fail because D3DX cannot lock nondynamic volumes located in video memory.</p>
  22371. </remarks>
  22372. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSaveTextureToFileW']/*" />
  22373. <msdn-id>bb205433</msdn-id>
  22374. <unmanaged>HRESULT D3DXSaveTextureToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DBaseTexture9* pSrcTexture,[In, Buffer] const PALETTEENTRY* pSrcPalette)</unmanaged>
  22375. <unmanaged-short>D3DXSaveTextureToFileW</unmanaged-short>
  22376. </member>
  22377. <member name="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.CubeTexture@)">
  22378. <summary>
  22379. <p>Creates a texture from a file.</p>
  22380. </summary>
  22381. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the texture.</p> </dd></param>
  22382. <param name="srcFileRef"><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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22383. <param name="cubeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface, representing the created texture object.</p> </dd></param>
  22384. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22385. <remarks>
  22386. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Texture@)" />. Otherwise, the function call resolves to D3DXCreateTextureFromFileA because ANSI strings are being used.</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>The function is equivalent to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.Texture@)" />(pDevice, pSrcFile, D3DX_DEFAULT, D3DX_DEFAULT, D3DX_DEFAULT, 0, <see cref="F:SharpDX.Direct3D9.Format.Unknown" />, <see cref="F:SharpDX.Direct3D9.Pool.Managed" />, D3DX_DEFAULT, D3DX_DEFAULT, 0, <strong><c>null</c></strong>, <strong><c>null</c></strong>, ppTexture).</p><p>Mipmapped textures automatically have each level filled with the loaded texture.</p><p>When loading images into mipmapped textures, some devices are unable to go to a 1x1 image and this function will fail. If this happens, the images need to be loaded manually.</p><p>Note that a resource created with this function will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Managed" />.</p><p>Filtering is automatically applied to a texture created using this method. The filtering is equivalent to <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" /> in <see cref="T:SharpDX.Direct3D9.Filter" />.</p><p>For the best performance when using <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Texture@)" /></strong>:</p><ol> <li>Doing image scaling and format conversion at load time can be slow. Store images in the format and resolution they will be used. If the target hardware requires power of two dimensions, create and store images using power of two dimensions.</li> <li>Consider using DirectDraw surface (DDS) files. Because DDS files can be used to represent any Direct3D 9 texture format, they are very easy for D3DX to read. Also, they can store mipmaps, so any mipmap-generation algorithms can be used to author the images.</li> </ol>
  22387. </remarks>
  22388. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateCubeTextureFromFileW']/*" />
  22389. <msdn-id>bb172801</msdn-id>
  22390. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  22391. <unmanaged-short>D3DXCreateCubeTextureFromFileW</unmanaged-short>
  22392. </member>
  22393. <member name="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileInMemoryEx(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.CubeTexture@)">
  22394. <summary>
  22395. <p>Creates a cube texture from a file in memory. This is a more advanced function than <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileInMemory(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.CubeTexture@)" /></strong>.</p>
  22396. </summary>
  22397. <param name="deviceRef">No documentation.</param>
  22398. <param name="srcDataRef">No documentation.</param>
  22399. <param name="srcDataSize">No documentation.</param>
  22400. <param name="size">No documentation.</param>
  22401. <param name="mipLevels">No documentation.</param>
  22402. <param name="usage">No documentation.</param>
  22403. <param name="format">No documentation.</param>
  22404. <param name="pool">No documentation.</param>
  22405. <param name="filter">No documentation.</param>
  22406. <param name="mipFilter">No documentation.</param>
  22407. <param name="colorKey">No documentation.</param>
  22408. <param name="srcInfoRef">No documentation.</param>
  22409. <param name="paletteRef">No documentation.</param>
  22410. <param name="cubeTextureOut">No documentation.</param>
  22411. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22412. <remarks>
  22413. <p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Cube textures differ from other surfaces in that they are collections of surfaces. To call <strong>SetRenderTarget</strong> with a cube texture, you must select an individual face using <strong>GetCubeMapSurface</strong> and pass the resulting surface to <strong>SetRenderTarget</strong> .</p><p>This method is designed to be used for loading image files stored as RT_RCDATA, which is an application-defined resource (raw data). Otherwise this method will fail.</p><p>For details on <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong>, see the Platform SDK. Note that as of DirectX 8.0, the peFlags member of the <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure does not function as documented in the Platform SDK. The peFlags member is now the alpha channel for 8-bit palettized formats.</p><p><strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileInMemoryEx(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.CubeTexture@)" /></strong> uses the DirectDraw surface (DDS) file format. The DirectX Texture Editor (Dxtex.exe) enables you to generate a cube map from other file formats and save it in the DDS file format</p><p>When skipping mipmap levels while loading a .dds file, use the D3DX_SKIP_DDS_MIP_LEVELS macro to generate the MipFilter value. This macro takes the number of levels to skip and the filter type and returns the filter value, which would then be passed into the MipFilter parameter.</p>
  22414. </remarks>
  22415. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateCubeTextureFromFileInMemoryEx']/*" />
  22416. <msdn-id>bb172759</msdn-id>
  22417. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  22418. <unmanaged-short>D3DXCreateCubeTextureFromFileInMemoryEx</unmanaged-short>
  22419. </member>
  22420. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry,SharpDX.Direct3D9.Texture@)">
  22421. <summary>
  22422. <p>Creates a texture from a resource. This is a more advanced function than <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Texture@)" /></strong>.</p>
  22423. </summary>
  22424. <param name="deviceRef">No documentation.</param>
  22425. <param name="hSrcModule">No documentation.</param>
  22426. <param name="srcResourceRef">No documentation.</param>
  22427. <param name="width">No documentation.</param>
  22428. <param name="height">No documentation.</param>
  22429. <param name="mipLevels">No documentation.</param>
  22430. <param name="usage">No documentation.</param>
  22431. <param name="format">No documentation.</param>
  22432. <param name="pool">No documentation.</param>
  22433. <param name="filter">No documentation.</param>
  22434. <param name="mipFilter">No documentation.</param>
  22435. <param name="colorKey">No documentation.</param>
  22436. <param name="srcInfoRef">No documentation.</param>
  22437. <param name="paletteRef">No documentation.</param>
  22438. <param name="textureOut">No documentation.</param>
  22439. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22440. <remarks>
  22441. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry,SharpDX.Direct3D9.Texture@)" />. Otherwise, the function call resolves to D3DXCreateTextureFromResourceExA because ANSI strings are being used.</p><p>The resource being loaded must be of type RT_BITMAP or RT_RCDATA. Resource type RT_RCDATA is used to load formats other than bitmaps (such as .tga, .jpg, and .dds).</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p>
  22442. </remarks>
  22443. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTextureFromResourceExW']/*" />
  22444. <msdn-id>bb172806</msdn-id>
  22445. <unmanaged>HRESULT D3DXCreateTextureFromResourceExW([In] IDirect3DDevice9* pDevice,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In] unsigned int Width,[In] unsigned int Height,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] D3DXIMAGE_INFO* pSrcInfo,[In] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  22446. <unmanaged-short>D3DXCreateTextureFromResourceExW</unmanaged-short>
  22447. </member>
  22448. <member name="M:SharpDX.Direct3D9.D3DX9.GetImageInfoFromFileW(System.String)">
  22449. <summary>
  22450. <p>Retrieves information about a given image file.</p>
  22451. </summary>
  22452. <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>
  22453. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.ImageInformation" /></strong> structure to be filled with the description of the data in the source file.</p> </dd></returns>
  22454. <remarks>
  22455. <p>This function supports both Unicode and ANSI strings.</p>
  22456. </remarks>
  22457. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetImageInfoFromFileW']/*" />
  22458. <msdn-id>bb172867</msdn-id>
  22459. <unmanaged>HRESULT D3DXGetImageInfoFromFileW([In] const wchar_t* pSrcFile,[Out] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  22460. <unmanaged-short>D3DXGetImageInfoFromFileW</unmanaged-short>
  22461. </member>
  22462. <member name="M:SharpDX.Direct3D9.D3DX9.FilterTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.PaletteEntry[],System.Int32,SharpDX.Direct3D9.Filter)">
  22463. <summary>
  22464. No documentation.
  22465. </summary>
  22466. <param name="baseTextureRef">No documentation.</param>
  22467. <param name="paletteRef">No documentation.</param>
  22468. <param name="srcLevel">No documentation.</param>
  22469. <param name="filter">No documentation.</param>
  22470. <returns>No documentation.</returns>
  22471. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFilterTexture']/*" />
  22472. <unmanaged>HRESULT D3DXFilterTexture([In] IDirect3DBaseTexture9* pBaseTexture,[In, Buffer] const PALETTEENTRY* pPalette,[In] unsigned int SrcLevel,[In] D3DX_FILTER Filter)</unmanaged>
  22473. <unmanaged-short>D3DXFilterTexture</unmanaged-short>
  22474. </member>
  22475. <member name="M:SharpDX.Direct3D9.D3DX9.LoadSurfaceFromMemory(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.IntPtr,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32)">
  22476. <summary>
  22477. <p>Loads a surface from memory.</p>
  22478. </summary>
  22479. <param name="destSurfaceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Specifies the destination surface, which receives the image.</p> </dd></param>
  22480. <param name="destPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the destination palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22481. <param name="destRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure. Specifies the destination rectangle. Set this parameter to <strong><c>null</c></strong> to specify the entire surface.</p> </dd></param>
  22482. <param name="srcMemoryRef"><dd> <p>Pointer to the upper left corner of the source image in memory.</p> </dd></param>
  22483. <param name="srcFormat"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, the pixel format of the source image.</p> </dd></param>
  22484. <param name="srcPitch"><dd> <p>Pitch of source image, in bytes. For DXT formats, this number should represent the width of one row of cells, in bytes.</p> </dd></param>
  22485. <param name="srcPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the source palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22486. <param name="srcRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure. Specifies the dimensions of the source image in memory. This value cannot be <strong><c>null</c></strong>.</p> </dd></param>
  22487. <param name="filter"><dd> <p>Combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" /> controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" />.</p> </dd></param>
  22488. <param name="colorKey"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> value to replace with transparent black, or 0 to disable the colorkey. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys. Thus, for opaque black, the value would be equal to 0xFF000000.</p> </dd></param>
  22489. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  22490. <remarks>
  22491. <p>This function handles conversion to and from compressed texture formats.</p><p>Writing to a non-level-zero surface will not cause the dirty rectangle to be updated. If <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadSurfaceFromMemory(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.IntPtr,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32)" /></strong> is called and the surface was not already dirty (this is unlikely under normal usage scenarios), the application needs to explicitly call <strong>AddDirtyRect</strong> on the surface.</p>
  22492. </remarks>
  22493. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadSurfaceFromMemory']/*" />
  22494. <msdn-id>bb172902</msdn-id>
  22495. <unmanaged>HRESULT D3DXLoadSurfaceFromMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcPitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  22496. <unmanaged-short>D3DXLoadSurfaceFromMemory</unmanaged-short>
  22497. </member>
  22498. <member name="M:SharpDX.Direct3D9.D3DX9.SaveTextureToFileInMemory(SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.PaletteEntry[])">
  22499. <summary>
  22500. <p>Saves a texture to an image file.</p>
  22501. </summary>
  22502. <param name="destFormat"><dd> <p> <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong> specifying the file format to use when saving. This function supports saving to all <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong> formats except Portable Pixmap (.ppm) and Targa/Truevision Graphics Adapter (.tga).</p> </dd></param>
  22503. <param name="srcTextureRef"><dd> <p>Pointer to <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface containing the image to be saved.</p> </dd></param>
  22504. <param name="srcPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure containing a palette of 256 colors. This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  22505. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> that will store the image.</p> </dd></returns>
  22506. <remarks>
  22507. <p>This function handles conversion to and from compressed texture formats.</p>
  22508. </remarks>
  22509. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSaveTextureToFileInMemory']/*" />
  22510. <msdn-id>bb205434</msdn-id>
  22511. <unmanaged>HRESULT D3DXSaveTextureToFileInMemory([Out] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DBaseTexture9* pSrcTexture,[In, Buffer] const PALETTEENTRY* pSrcPalette)</unmanaged>
  22512. <unmanaged-short>D3DXSaveTextureToFileInMemory</unmanaged-short>
  22513. </member>
  22514. <member name="M:SharpDX.Direct3D9.D3DX9.CheckTextureRequirements(SharpDX.Direct3D9.Device,System.Int32@,System.Int32@,System.Int32@,System.Int32,SharpDX.Direct3D9.Format@,SharpDX.Direct3D9.Pool)">
  22515. <summary>
  22516. <p>Checks texture-creation parameters.</p>
  22517. </summary>
  22518. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the texture.</p> </dd></param>
  22519. <param name="widthRef"><dd> <p>Pointer to the requested width in pixels, or <strong><c>null</c></strong>. Returns the corrected size.</p> </dd></param>
  22520. <param name="heightRef"><dd> <p>Pointer to the requested height in pixels, or <strong><c>null</c></strong>. Returns the corrected size.</p> </dd></param>
  22521. <param name="numMipLevelsRef"><dd> <p>Pointer to number of requested mipmap levels, or <strong><c>null</c></strong>. Returns the corrected number of mipmap levels.</p> </dd></param>
  22522. <param name="usage"><dd> <p>0 or <strong><see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /></strong>. Setting this flag to <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /> indicates that the surface is to be used as a render target. The resource can then be passed to the pNewRenderTarget parameter of the <strong>SetRenderTarget</strong> method. If <strong><see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /></strong> is specified, the application should check that the device supports this operation by calling <strong>CheckDeviceFormat</strong>.</p> </dd></param>
  22523. <param name="formatRef"><dd> <p>Pointer to a member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type. Specifies the desired pixel format, or <strong><c>null</c></strong>. Returns the corrected format.</p> </dd></param>
  22524. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing the memory class into which the texture should be placed.</p> </dd></param>
  22525. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />.</p></returns>
  22526. <remarks>
  22527. <p>If parameters to this function are invalid, this function returns corrected parameters.</p><p>This function uses the following heuristics when comparing the requested requirements against available formats:</p><ul> <li>Do not choose a format that has fewer channels.</li> <li>Avoid FOURCC And 24-bit formats unless explicitly requested.</li> <li>Try not to add new channels.</li> <li>Try not to change the number of bits per channel.</li> <li>Try to avoid converting between types of formats. For instance, avoid converting an ARGB format to a depth format.</li> </ul>
  22528. </remarks>
  22529. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCheckTextureRequirements']/*" />
  22530. <msdn-id>bb172716</msdn-id>
  22531. <unmanaged>HRESULT D3DXCheckTextureRequirements([In] IDirect3DDevice9* pDevice,[InOut] unsigned int* pWidth,[InOut] unsigned int* pHeight,[InOut] unsigned int* pNumMipLevels,[In] unsigned int Usage,[InOut] D3DFORMAT* pFormat,[In] D3DPOOL Pool)</unmanaged>
  22532. <unmanaged-short>D3DXCheckTextureRequirements</unmanaged-short>
  22533. </member>
  22534. <member name="M:SharpDX.Direct3D9.D3DX9.SaveVolumeToFileW(System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr)">
  22535. <summary>
  22536. <p>Saves a volume to a file on disk.</p>
  22537. </summary>
  22538. <param name="destFileRef"><dd> <p>Pointer to a string that specifies the file name of the destination image. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22539. <param name="destFormat"><dd> <p> <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong> specifying the file format to use when saving. This function supports saving to all <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong> formats except Portable Pixmap (.ppm) and Targa/Truevision Graphics Adapter (.tga).</p> </dd></param>
  22540. <param name="srcVolumeRef"><dd> <p>Pointer to <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface containing the image to be saved.</p> </dd></param>
  22541. <param name="srcPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure containing a palette of 256 colors. This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  22542. <param name="srcBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the source box. Set this parameter to <strong><c>null</c></strong> to specify the entire volume.</p> </dd></param>
  22543. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  22544. <remarks>
  22545. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.SaveVolumeToFileW(System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr)" />. Otherwise, the function call resolves to &gt;D3DXSaveVolumeToFileA because ANSI strings are being used.</p><p>This function handles conversion to and from compressed texture formats.</p><p>If the volume is nondynamic (because of a usage parameter set to 0 at the creation) and located in video memory (the memory pool set to <see cref="F:SharpDX.Direct3D9.Pool.Default" />), <strong><see cref="M:SharpDX.Direct3D9.D3DX9.SaveTextureToFileW(System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.PaletteEntry[])" /></strong> will fail because D3DX cannot lock nondynamic volumes located in video memory.</p>
  22546. </remarks>
  22547. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSaveVolumeToFileW']/*" />
  22548. <msdn-id>bb205435</msdn-id>
  22549. <unmanaged>HRESULT D3DXSaveVolumeToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DVolume9* pSrcVolume,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcBox)</unmanaged>
  22550. <unmanaged-short>D3DXSaveVolumeToFileW</unmanaged-short>
  22551. </member>
  22552. <member name="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromResourceW(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)">
  22553. <summary>
  22554. <p>Loads a volume from a resource.</p>
  22555. </summary>
  22556. <param name="destVolumeRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface. Specifies the destination volume.</p> </dd></param>
  22557. <param name="destPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the destination palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22558. <param name="destBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the destination box. Set this parameter to <strong><c>null</c></strong> to specify the entire volume.</p> </dd></param>
  22559. <param name="hSrcModule"><dd> <p>Handle to the module where the resource is located, or <strong><c>null</c></strong> for module associated with the image the operating system used to create the current process.</p> </dd></param>
  22560. <param name="srcResourceRef"><dd> <p>Pointer to a string that specifies the file name of the source image. If UNICODE or _UNICODE are defined, this parameter type is LPCWSTR, otherwise, the type is LPCSTR.</p> </dd></param>
  22561. <param name="srcBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the source box. Set this parameter to <strong><c>null</c></strong> to specify the entire volume.</p> </dd></param>
  22562. <param name="filter"><dd> <p>Combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" />, controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" />.</p> </dd></param>
  22563. <param name="colorKey"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> value to replace with transparent black, or 0 to disable the colorkey. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys. Thus, for opaque black, the value would be equal to 0xFF000000.</p> </dd></param>
  22564. <param name="srcInfoRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.ImageInformation" /></strong> structure to be filled with a description of the data in the source image file, or <strong><c>null</c></strong>.</p> </dd></param>
  22565. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  22566. <remarks>
  22567. <p>The resource being loaded must be a bitmap resource(RT_BITMAP).</p><p>This function handles conversion to and from compressed texture formats.</p><p>Writing to a non-level-zero surface of the volume texture will not cause the dirty rectangle to be updated. If <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromFileW(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.String,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)" /></strong> is called and the texture was not already dirty (this is unlikely under normal usage scenarios), the application needs to explicitly call <strong><see cref="M:SharpDX.Direct3D9.VolumeTexture.AddDirtyBox(System.IntPtr)" /></strong> on the volume texture.</p><p>This function supports both Unicode and ANSI strings.</p>
  22568. </remarks>
  22569. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadVolumeFromResourceW']/*" />
  22570. <msdn-id>bb172908</msdn-id>
  22571. <unmanaged>HRESULT D3DXLoadVolumeFromResourceW([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  22572. <unmanaged-short>D3DXLoadVolumeFromResourceW</unmanaged-short>
  22573. </member>
  22574. <member name="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry,SharpDX.Direct3D9.VolumeTexture@)">
  22575. <summary>
  22576. <p>Creates a volume texture from a resource specified by a string. This is a more advanced function than <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.VolumeTexture@)" /></strong>.</p>
  22577. </summary>
  22578. <param name="deviceRef">No documentation.</param>
  22579. <param name="hSrcModule">No documentation.</param>
  22580. <param name="srcResourceRef">No documentation.</param>
  22581. <param name="width">No documentation.</param>
  22582. <param name="height">No documentation.</param>
  22583. <param name="depth">No documentation.</param>
  22584. <param name="mipLevels">No documentation.</param>
  22585. <param name="usage">No documentation.</param>
  22586. <param name="format">No documentation.</param>
  22587. <param name="pool">No documentation.</param>
  22588. <param name="filter">No documentation.</param>
  22589. <param name="mipFilter">No documentation.</param>
  22590. <param name="colorKey">No documentation.</param>
  22591. <param name="srcInfoRef">No documentation.</param>
  22592. <param name="paletteRef">No documentation.</param>
  22593. <param name="volumeTextureOut">No documentation.</param>
  22594. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22595. <remarks>
  22596. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry,SharpDX.Direct3D9.VolumeTexture@)" />. Otherwise, the function call resolves to D3DXCreateVolumeTextureFromResourceExA because ANSI strings are being used.</p><p>The resource being loaded must be an application-defined resource (RT_RCDATA).</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p>
  22597. </remarks>
  22598. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateVolumeTextureFromResourceExW']/*" />
  22599. <msdn-id>bb172816</msdn-id>
  22600. <unmanaged>HRESULT D3DXCreateVolumeTextureFromResourceExW([In] IDirect3DDevice9* pDevice,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In] unsigned int Width,[In] unsigned int Height,[In] unsigned int Depth,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] D3DXIMAGE_INFO* pSrcInfo,[In] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  22601. <unmanaged-short>D3DXCreateVolumeTextureFromResourceExW</unmanaged-short>
  22602. </member>
  22603. <member name="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.CubeTexture@)">
  22604. <summary>
  22605. <p>Creates a cube texture from a resource.</p>
  22606. </summary>
  22607. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the cube texture.</p> </dd></param>
  22608. <param name="hSrcModule"><dd> <p>Handle to the module where the resource is located, or <strong><c>null</c></strong> for the module associated with the image the operating system used to create the current process.</p> </dd></param>
  22609. <param name="srcResourceRef"><dd> <p>Pointer to a string that specifies the resource name. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22610. <param name="cubeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> interface, representing the created cube texture object.</p> </dd></param>
  22611. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22612. <remarks>
  22613. <p>The compiler setting determines the function version. If Unicode is defined, the function call resolves to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.CubeTexture@)" /></strong>. Otherwise, the function call resolves to <strong>D3DXCreateCubeTextureFromResourceA</strong> because ANSI strings are being used.</p><p>The function is equivalent to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry,SharpDX.Direct3D9.CubeTexture@)" />(pDevice, hSrcModule, pSrcResource, D3DX_DEFAULT, D3DX_DEFAULT, 0, <see cref="F:SharpDX.Direct3D9.Format.Unknown" />, <see cref="F:SharpDX.Direct3D9.Pool.Managed" />, D3DX_DEFAULT, D3DX_DEFAULT, 0, <strong><c>null</c></strong>, <strong><c>null</c></strong>, ppCubeTexture).</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Note that a resource created with this function when called from a <see cref="T:SharpDX.Direct3D9.Device" /> object will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Managed" />. When this method is called from a <see cref="T:SharpDX.Direct3D9.DeviceEx" /> object the resource will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</p><p>Filtering is automatically applied to a texture created using this method. The filtering is equivalent to <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" /> in <see cref="T:SharpDX.Direct3D9.Filter" />.</p><p><strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.CubeTexture@)" /></strong> uses the DirectDraw surface (DDS) file format. The DirectX Texture Editor (Dxtex.exe) enables you to generate a cube map from other file formats and save it in the DDS file format.</p>
  22614. </remarks>
  22615. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateCubeTextureFromResourceW']/*" />
  22616. <msdn-id>bb172760</msdn-id>
  22617. <unmanaged>HRESULT D3DXCreateCubeTextureFromResourceW([In] IDirect3DDevice9* pDevice,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  22618. <unmanaged-short>D3DXCreateCubeTextureFromResourceW</unmanaged-short>
  22619. </member>
  22620. <member name="M:SharpDX.Direct3D9.D3DX9.SaveSurfaceToFileW(System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr)">
  22621. <summary>
  22622. <p>Saves a surface to a file.</p>
  22623. </summary>
  22624. <param name="destFileRef"><dd> <p>Pointer to a string that specifies the file name of the destination image. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22625. <param name="destFormat"><dd> <p> <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong> specifying the file format to use when saving. This function supports saving to all <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong> formats except Portable Pixmap (.ppm) and Targa/Truevision Graphics Adapter (.tga).</p> </dd></param>
  22626. <param name="srcSurfaceRef"><dd> <p>Pointer to <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, containing the image to be saved.</p> </dd></param>
  22627. <param name="srcPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure containing a palette of 256 colors. This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  22628. <param name="srcRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure. Specifies the source rectangle. Set this parameter to <strong><c>null</c></strong> to specify the entire image.</p> </dd></param>
  22629. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  22630. <remarks>
  22631. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.SaveSurfaceToFileW(System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr)" />. Otherwise, the function call resolves to D3DXSaveSurfaceToFileA because ANSI strings are being used.</p><p>This function handles conversion to and from compressed texture formats.</p>
  22632. </remarks>
  22633. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSaveSurfaceToFileW']/*" />
  22634. <msdn-id>bb205431</msdn-id>
  22635. <unmanaged>HRESULT D3DXSaveSurfaceToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect)</unmanaged>
  22636. <unmanaged-short>D3DXSaveSurfaceToFileW</unmanaged-short>
  22637. </member>
  22638. <member name="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileInMemory(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.CubeTexture@)">
  22639. <summary>
  22640. <p>Creates a cube texture from a file in memory.</p>
  22641. </summary>
  22642. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the cube texture.</p> </dd></param>
  22643. <param name="srcDataRef"><dd> <p>Pointer to the file in memory from which to create the cubemap. See Remarks.</p> </dd></param>
  22644. <param name="srcDataSize"><dd> <p>Size of the file in memory, in bytes.</p> </dd></param>
  22645. <param name="cubeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> interface, representing the created cube texture object.</p> </dd></param>
  22646. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22647. <remarks>
  22648. <p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>The function is equivalent to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileInMemoryEx(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.CubeTexture@)" />(pDevice, pSrcData, SrcDataSize, D3DX_DEFAULT, D3DX_DEFAULT, 0, <see cref="F:SharpDX.Direct3D9.Format.Unknown" />, <see cref="F:SharpDX.Direct3D9.Pool.Managed" />, D3DX_DEFAULT, D3DX_DEFAULT, 0, <strong><c>null</c></strong>, <strong><c>null</c></strong>, ppCubeTexture).</p><p>Note that a resource created with this function when called from a <see cref="T:SharpDX.Direct3D9.Device" /> object will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Managed" />. When this method is called from a <see cref="T:SharpDX.Direct3D9.DeviceEx" /> object the resource will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</p><p>This method is designed to be used for loading image files stored as RT_RCDATA, which is an application-defined resource (raw data). Otherwise this method will fail.</p><p>Filtering is automatically applied to a texture created using this method. The filtering is equivalent to <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" /> in <see cref="T:SharpDX.Direct3D9.Filter" />.</p><p><strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileInMemory(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.CubeTexture@)" /></strong> uses the DirectDraw surface (DDS) file format. The DirectX Texture Editor (Dxtex.exe) enables you to generate a cube map from other file formats and save it in the DDS file format.</p>
  22649. </remarks>
  22650. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateCubeTextureFromFileInMemory']/*" />
  22651. <msdn-id>bb172758</msdn-id>
  22652. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileInMemory([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  22653. <unmanaged-short>D3DXCreateCubeTextureFromFileInMemory</unmanaged-short>
  22654. </member>
  22655. <member name="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.CubeTexture@)">
  22656. <summary>
  22657. <p>Creates a cube texture from a file. This is a more advanced function than <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.CubeTexture@)" /></strong>.</p>
  22658. </summary>
  22659. <param name="deviceRef">No documentation.</param>
  22660. <param name="srcFileRef">No documentation.</param>
  22661. <param name="size">No documentation.</param>
  22662. <param name="mipLevels">No documentation.</param>
  22663. <param name="usage">No documentation.</param>
  22664. <param name="format">No documentation.</param>
  22665. <param name="pool">No documentation.</param>
  22666. <param name="filter">No documentation.</param>
  22667. <param name="mipFilter">No documentation.</param>
  22668. <param name="colorKey">No documentation.</param>
  22669. <param name="srcInfoRef">No documentation.</param>
  22670. <param name="paletteRef">No documentation.</param>
  22671. <param name="cubeTextureOut">No documentation.</param>
  22672. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22673. <remarks>
  22674. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.CubeTexture@)" /></strong>. Otherwise, the function call resolves to <strong>D3DXCreateCubeTextureFromFileExA</strong> because ANSI strings are being used.</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Cube textures differ from other surfaces in that they are collections of surfaces. To call <strong>SetRenderTarget</strong> with a cube texture, you must select an individual face using <strong>GetCubeMapSurface</strong> and pass the resulting surface to <strong>SetRenderTarget</strong>.</p><p><strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCubeTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.CubeTexture@)" /></strong> uses the DirectDraw surface (DDS) file format. The DirectX Texture Editor (Dxtex.exe) enables you to generate a cube map from other file formats and save it in the DDS file format.</p><p>When skipping mipmap levels while loading a .dds file, use the D3DX_SKIP_DDS_MIP_LEVELS macro to generate the MipFilter value. This macro takes the number of levels to skip and the filter type and returns the filter value, which would then be passed into the MipFilter parameter.</p>
  22675. </remarks>
  22676. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateCubeTextureFromFileExW']/*" />
  22677. <msdn-id>bb172757</msdn-id>
  22678. <unmanaged>HRESULT D3DXCreateCubeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DCubeTexture9** ppCubeTexture)</unmanaged>
  22679. <unmanaged-short>D3DXCreateCubeTextureFromFileExW</unmanaged-short>
  22680. </member>
  22681. <member name="M:SharpDX.Direct3D9.D3DX9.GetImageInfoFromResourceW(System.IntPtr,System.String)">
  22682. <summary>
  22683. <p>Retrieves information about a given image in a resource.</p>
  22684. </summary>
  22685. <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>
  22686. <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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22687. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.ImageInformation" /></strong> structure to be filled with the description of the data in the source file.</p> </dd></returns>
  22688. <remarks>
  22689. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.GetImageInfoFromResourceW(System.IntPtr,System.String)" />. Otherwise, the function call resolves to D3DXGetImageInfoFromResourceA because ANSI strings are being used.</p>
  22690. </remarks>
  22691. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXGetImageInfoFromResourceW']/*" />
  22692. <msdn-id>bb172869</msdn-id>
  22693. <unmanaged>HRESULT D3DXGetImageInfoFromResourceW([In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[Out] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  22694. <unmanaged-short>D3DXGetImageInfoFromResourceW</unmanaged-short>
  22695. </member>
  22696. <member name="M:SharpDX.Direct3D9.D3DX9.FillCubeTextureTX(SharpDX.Direct3D9.CubeTexture,SharpDX.Direct3D9.TextureShader)">
  22697. <summary>
  22698. <p>Uses a compiled high-level shader language (HLSL) function to fill each texel of each mipmap level of a texture.</p>
  22699. </summary>
  22700. <param name="cubeTextureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> object, representing the texture to be filled.</p> </dd></param>
  22701. <param name="textureShaderRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.TextureShader" /></strong> texture shader object.</p> </dd></param>
  22702. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  22703. <remarks>
  22704. <p>The texture target must be an HLSL function that takes contains the following semantics:</p><ul> <li>One input parameter must use a POSITION semantic.</li> <li>One input parameter must use a PSIZE semantic.</li> <li>The function must return a parameter that uses the COLOR semantic.</li> </ul><p>The input parameters can be in any order. For an example, see <strong><see cref="M:SharpDX.Direct3D9.D3DX9.FillTextureTX(SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.TextureShader)" /></strong> </p>
  22705. </remarks>
  22706. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFillCubeTextureTX']/*" />
  22707. <msdn-id>bb172832</msdn-id>
  22708. <unmanaged>HRESULT D3DXFillCubeTextureTX([In] IDirect3DCubeTexture9* pCubeTexture,[In] ID3DXTextureShader* pTextureShader)</unmanaged>
  22709. <unmanaged-short>D3DXFillCubeTextureTX</unmanaged-short>
  22710. </member>
  22711. <member name="M:SharpDX.Direct3D9.D3DX9.FillTexture(SharpDX.Direct3D9.Texture,SharpDX.FunctionCallback,System.IntPtr)">
  22712. <summary>
  22713. <p>Uses a user-provided function to fill each texel of each mip level of a given texture.</p>
  22714. </summary>
  22715. <param name="textureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface, representing the filled texture.</p> </dd></param>
  22716. <param name="functionRef"><dd> <p>Pointer to a user-provided evaluator function, which will be used to compute the value of each texel. The function follows the prototype of LPD3DXFILL2D.</p> </dd></param>
  22717. <param name="dataRef"><dd> <p>Pointer to an arbitrary block of user-defined data. This reference will be passed to the function provided in <em>pFunction</em>.</p> </dd></param>
  22718. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  22719. <remarks>
  22720. <p>Here is an example that creates a function called ColorFill, which relies on <see cref="M:SharpDX.Direct3D9.D3DX9.FillTexture(SharpDX.Direct3D9.Texture,SharpDX.FunctionCallback,System.IntPtr)" />.</p><pre> // Define a function that matches the prototype of LPD3DXFILL3D
  22721. VOID WINAPI ColorFill (<see cref="T:SharpDX.Mathematics.Interop.RawVector4" />* pOut, const <see cref="T:SharpDX.Mathematics.Interop.RawVector2" />* pTexCoord,
  22722. const <see cref="T:SharpDX.Mathematics.Interop.RawVector2" />* pTexelSize, LPVOID pData)
  22723. { *pOut = <see cref="T:SharpDX.Mathematics.Interop.RawVector4" />(pTexCoord-&gt;x, pTexCoord-&gt;y, 0.0f, 0.0f);
  22724. } // Fill the texture using <see cref="M:SharpDX.Direct3D9.D3DX9.FillTexture(SharpDX.Direct3D9.Texture,SharpDX.FunctionCallback,System.IntPtr)" />
  22725. if (FAILED (hr = <see cref="M:SharpDX.Direct3D9.D3DX9.FillTexture(SharpDX.Direct3D9.Texture,SharpDX.FunctionCallback,System.IntPtr)" /> (m_pTexture, ColorFill, <c>null</c>)))
  22726. { return hr;
  22727. }
  22728. </pre>
  22729. </remarks>
  22730. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFillTexture']/*" />
  22731. <msdn-id>bb172833</msdn-id>
  22732. <unmanaged>HRESULT D3DXFillTexture([In] IDirect3DTexture9* pTexture,[In] __function__stdcall* pFunction,[In] void* pData)</unmanaged>
  22733. <unmanaged-short>D3DXFillTexture</unmanaged-short>
  22734. </member>
  22735. <member name="M:SharpDX.Direct3D9.D3DX9.SaveSurfaceToFileInMemory(SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr)">
  22736. <summary>
  22737. <p>Saves a surface to an image file.</p>
  22738. </summary>
  22739. <param name="destBufOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> that will store the image.</p> </dd></param>
  22740. <param name="destFormat"><dd> <p> <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong> specifying the file format to use when saving. This function supports saving to all <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong> formats except Portable Pixmap (.ppm) and Targa/Truevision Graphics Adapter (.tga).</p> </dd></param>
  22741. <param name="srcSurfaceRef"><dd> <p>Pointer to <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface containing the image to be saved.</p> </dd></param>
  22742. <param name="srcPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure containing a palette of 256 colors. This parameter can be <strong><c>null</c></strong>.</p> </dd></param>
  22743. <param name="srcRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure. Specifies the source rectangle. Set this parameter to <strong><c>null</c></strong> to specify the entire image.</p> </dd></param>
  22744. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  22745. <remarks>
  22746. <p>This function handles conversion to and from compressed texture formats.</p>
  22747. </remarks>
  22748. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSaveSurfaceToFileInMemory']/*" />
  22749. <msdn-id>bb205432</msdn-id>
  22750. <unmanaged>HRESULT D3DXSaveSurfaceToFileInMemory([In] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect)</unmanaged>
  22751. <unmanaged-short>D3DXSaveSurfaceToFileInMemory</unmanaged-short>
  22752. </member>
  22753. <member name="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.VolumeTexture@)">
  22754. <summary>
  22755. <p>Creates a volume texture from a file.</p>
  22756. </summary>
  22757. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the volume texture.</p> </dd></param>
  22758. <param name="srcFileRef"><dd> <p>Pointer to a string that specifies the file name. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22759. <param name="volumeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> interface representing the created texture object.</p> </dd></param>
  22760. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22761. <remarks>
  22762. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromFileW(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.VolumeTexture@)" />. Otherwise, the function call resolves to D3DXCreateVolumeTextureFromFileA because ANSI strings are being used.</p><p>The function is equivalent to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.VolumeTexture@)" />(pDevice, pSrcFile, D3DX_DEFAULT, D3DX_DEFAULT, D3DX_DEFAULT, D3DX_DEFAULT, 0, <see cref="F:SharpDX.Direct3D9.Format.Unknown" />, <see cref="F:SharpDX.Direct3D9.Pool.Managed" />, D3DX_DEFAULT, D3DX_DEFAULT, 0, <strong><c>null</c></strong>, <strong><c>null</c></strong>, ppVolumeTexture).</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Mipmapped textures automatically have each level filled with the loaded texture.</p><p>When loading images into mipmapped textures, some devices are unable to go to a 1x1 image and this function will fail. If this happens, then the images need to be loaded manually.</p><p>Note that a resource created with this function when called from a <see cref="T:SharpDX.Direct3D9.Device" /> object will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Managed" />. When this method is called from a <see cref="T:SharpDX.Direct3D9.DeviceEx" /> object the resource will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</p><p>Filtering is automatically applied to a texture created using this method. The filtering is equivalent to <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" /> in <see cref="T:SharpDX.Direct3D9.Filter" />.</p>
  22763. </remarks>
  22764. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateVolumeTextureFromFileW']/*" />
  22765. <msdn-id>bb172811</msdn-id>
  22766. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  22767. <unmanaged-short>D3DXCreateVolumeTextureFromFileW</unmanaged-short>
  22768. </member>
  22769. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Texture@)">
  22770. <summary>
  22771. <p>Creates a texture from a resource.</p>
  22772. </summary>
  22773. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the texture.</p> </dd></param>
  22774. <param name="hSrcModule"><dd> <p>Handle to the module where the resource is located, or <strong><c>null</c></strong> for module associated with the image the operating system used to create the current process.</p> </dd></param>
  22775. <param name="srcResourceRef"><dd> <p>Pointer to a string that specifies the resource name. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22776. <param name="textureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface, representing the created texture object.</p> </dd></param>
  22777. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22778. <remarks>
  22779. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.Texture@)" />. Otherwise, the function call resolves to D3DXCreateTextureFromResourceA because ANSI strings are being used.</p><p>The function is equivalent to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry,SharpDX.Direct3D9.Texture@)" />(pDevice, hSrcModule, pSrcResource, D3DX_DEFAULT, D3DX_DEFAULT, D3DX_DEFAULT, 0, <see cref="F:SharpDX.Direct3D9.Format.Unknown" />, <see cref="F:SharpDX.Direct3D9.Pool.Managed" />, D3DX_DEFAULT, D3DX_DEFAULT, 0, <strong><c>null</c></strong>, <strong><c>null</c></strong>, ppTexture).</p><p>The resource being loaded must be of type RT_BITMAP or RT_RCDATA. Resource type RT_RCDATA is used to load formats other than bitmaps (such as .tga, .jpg, and .dds).</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Note that a resource created with this function when called from a <see cref="T:SharpDX.Direct3D9.Device" /> object will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Managed" />. When this method is called from a <see cref="T:SharpDX.Direct3D9.DeviceEx" /> object the resource will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</p><p>Filtering is automatically applied to a texture created using this method. The filtering is equivalent to <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" /> in <see cref="T:SharpDX.Direct3D9.Filter" />.</p>
  22780. </remarks>
  22781. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTextureFromResourceW']/*" />
  22782. <msdn-id>bb172805</msdn-id>
  22783. <unmanaged>HRESULT D3DXCreateTextureFromResourceW([In] IDirect3DDevice9* pDevice,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  22784. <unmanaged-short>D3DXCreateTextureFromResourceW</unmanaged-short>
  22785. </member>
  22786. <member name="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromMemory(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.IntPtr,SharpDX.Direct3D9.Format,System.Int32,System.Int32,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32)">
  22787. <summary>
  22788. <p>Loads a volume from memory.</p>
  22789. </summary>
  22790. <param name="destVolumeRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface. Specifies the destination volume, which receives the image.</p> </dd></param>
  22791. <param name="destPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the destination palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22792. <param name="destBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the destination box. Set this parameter to <strong><c>null</c></strong> to specify the entire volume.</p> </dd></param>
  22793. <param name="srcMemoryRef"><dd> <p>Pointer to the top-left corner of the source volume in memory.</p> </dd></param>
  22794. <param name="srcFormat"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, the pixel format of the source volume.</p> </dd></param>
  22795. <param name="srcRowPitch"><dd> <p>Pitch of source image, in bytes. For DXT formats (compressed texture formats), this number should represent the size of one row of cells, in bytes.</p> </dd></param>
  22796. <param name="srcSlicePitch"><dd> <p>Pitch of source image, in bytes. For DXT formats (compressed texture formats), this number should represent the size of one slice of cells, in bytes.</p> </dd></param>
  22797. <param name="srcPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the source palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22798. <param name="srcBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the source box. <strong><c>null</c></strong> is not a valid value for this parameter.</p> </dd></param>
  22799. <param name="filter"><dd> <p>A combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" /> controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" />.</p> </dd></param>
  22800. <param name="colorKey"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> value to replace with transparent black, or 0 to disable the colorkey. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys. Thus, for opaque black, the value would be equal to 0xFF000000.</p> </dd></param>
  22801. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  22802. <remarks>
  22803. <p>Writing to a non-level-zero surface of the volume texture will not cause the dirty rectangle to be updated. If <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromMemory(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.IntPtr,SharpDX.Direct3D9.Format,System.Int32,System.Int32,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32)" /></strong> is called and the texture was not already dirty (this is unlikely under normal usage scenarios), the application needs to explicitly call <strong><see cref="M:SharpDX.Direct3D9.VolumeTexture.AddDirtyBox(System.IntPtr)" /></strong> on the volume texture.</p>
  22804. </remarks>
  22805. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadVolumeFromMemory']/*" />
  22806. <msdn-id>bb172907</msdn-id>
  22807. <unmanaged>HRESULT D3DXLoadVolumeFromMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcRowPitch,[In] unsigned int SrcSlicePitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  22808. <unmanaged-short>D3DXLoadVolumeFromMemory</unmanaged-short>
  22809. </member>
  22810. <member name="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.VolumeTexture@)">
  22811. <summary>
  22812. <p>Creates a volume texture from a file.</p>
  22813. </summary>
  22814. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the texture.</p> </dd></param>
  22815. <param name="srcFileRef"><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 string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22816. <param name="width"><dd> <p>Width in pixels. If this value is zero or D3DX_DEFAULT, the dimensions are taken from the file. The maximum dimension that a driver supports (for width, height, and depth) can be found in MaxVolumeExtent in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd></param>
  22817. <param name="height"><dd> <p>Height, in pixels. If this value is zero or D3DX_DEFAULT, the dimensions are taken from the file. The maximum dimension that a driver supports (for width, height, and depth) can be found in MaxVolumeExtent in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd></param>
  22818. <param name="depth"><dd> <p>Depth, in pixels. If this value is zero or D3DX_DEFAULT, the dimensions are taken from the file. The maximum dimension that a driver supports (for width, height, and depth) can be found in MaxVolumeExtent in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p> </dd></param>
  22819. <param name="mipLevels"><dd> <p>Number of mip levels requested. If this value is zero or D3DX_DEFAULT, a complete mipmap chain is created.</p> </dd></param>
  22820. <param name="usage"><dd> <p>0, <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" />, or <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" />. Setting this flag to <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /> indicates that the surface is to be used as a render target. The resource can then be passed to the <em>pNewRenderTarget</em> parameter of the <strong>SetRenderTarget</strong> method. If either <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /> or <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /> is specified, <em>Pool</em> must be set to <see cref="F:SharpDX.Direct3D9.Pool.Default" />, and the application should check that the device supports this operation by calling <strong>CheckDeviceFormat</strong>. <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /> indicates that the surface should be handled dynamically. For more information about using dynamic textures, see Using Dynamic Textures.</p> </dd></param>
  22821. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the requested pixel format for the texture. The returned texture might have a different format from that specified by <em>Format</em>. Applications should check the format of the returned texture. If <see cref="F:SharpDX.Direct3D9.Format.Unknown" />, the format is taken from the file. If D3DFMT_FROM_FILE, the format is taken exactly as it is in the file, and the call will fail if this violates device capabilities.</p> </dd></param>
  22822. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing the memory class into which the texture should be placed.</p> </dd></param>
  22823. <param name="filter"><dd> <p>A combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" /> controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" />.</p> </dd></param>
  22824. <param name="mipFilter"><dd> <p>A combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" /> controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Box" />. In addition, use bits 27-31 to specify the number of mip levels to be skipped (from the top of the mipmap chain) when a .dds texture is loaded into memory; this allows you to skip up to 32 levels.</p> </dd></param>
  22825. <param name="colorKey"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> value to replace with transparent black, or 0 to disable the colorkey. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys. Thus, for opaque black, the value would be equal to 0xFF000000.</p> </dd></param>
  22826. <param name="srcInfoRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.ImageInformation" /></strong> structure to be filled in with a description of the data in the source image file, or <strong><c>null</c></strong>.</p> </dd></param>
  22827. <param name="paletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, representing a 256-color palette to fill in, or <strong><c>null</c></strong>.</p> </dd></param>
  22828. <param name="volumeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> interface, representing the created texture object.</p> </dd></param>
  22829. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22830. <remarks>
  22831. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromFileExW(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.VolumeTexture@)" />. Otherwise, the function call resolves to D3DXCreateVolumeTextureFromFileExA because ANSI strings are being used.</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Mipmapped textures automatically have each level filled with the loaded volume texture. When loading images into mipmapped textures, some devices are unable to go to a 1x1 image and this function will fail. If this happens, then the images need to be loaded manually.</p><p>When skipping mipmap levels while loading a .dds file, use the D3DX_SKIP_DDS_MIP_LEVELS macro to generate the <em>MipFilter</em> value. This macro takes the number of levels to skip and the filter type and returns the filter value, which would then be passed into the <em>MipFilter</em> parameter.</p>
  22832. </remarks>
  22833. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateVolumeTextureFromFileExW']/*" />
  22834. <msdn-id>bb172812</msdn-id>
  22835. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Width,[In] unsigned int Height,[In] unsigned int Depth,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  22836. <unmanaged-short>D3DXCreateVolumeTextureFromFileExW</unmanaged-short>
  22837. </member>
  22838. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileInMemoryEx(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.Texture@)">
  22839. <summary>
  22840. <p>Creates a texture from a file in memory. This is a more advanced function than <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureFromFileInMemory(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.Texture@)" /></strong>.</p>
  22841. </summary>
  22842. <param name="deviceRef">No documentation.</param>
  22843. <param name="srcDataRef">No documentation.</param>
  22844. <param name="srcDataSize">No documentation.</param>
  22845. <param name="width">No documentation.</param>
  22846. <param name="height">No documentation.</param>
  22847. <param name="mipLevels">No documentation.</param>
  22848. <param name="usage">No documentation.</param>
  22849. <param name="format">No documentation.</param>
  22850. <param name="pool">No documentation.</param>
  22851. <param name="filter">No documentation.</param>
  22852. <param name="mipFilter">No documentation.</param>
  22853. <param name="colorKey">No documentation.</param>
  22854. <param name="srcInfoRef">No documentation.</param>
  22855. <param name="paletteRef">No documentation.</param>
  22856. <param name="textureOut">No documentation.</param>
  22857. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22858. <remarks>
  22859. <p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>For details about <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong>, see the Platform SDK. Note that as of DirectX 8.0, the peFlags member of the <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure does not function as documented in the Platform SDK. The peFlags member is now the alpha channel for 8-bit palettized formats.</p><p>When skipping mipmap levels while loading a .dds file, use the D3DX_SKIP_DDS_MIP_LEVELS macro to generate the MipFilter value. This macro takes the number of levels to skip and the filter type and returns the filter value, which would then be passed into the MipFilter parameter.</p>
  22860. </remarks>
  22861. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTextureFromFileInMemoryEx']/*" />
  22862. <msdn-id>bb172804</msdn-id>
  22863. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Width,[In] unsigned int Height,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  22864. <unmanaged-short>D3DXCreateTextureFromFileInMemoryEx</unmanaged-short>
  22865. </member>
  22866. <member name="M:SharpDX.Direct3D9.D3DX9.SaveVolumeToFileInMemory(SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr)">
  22867. <summary>
  22868. <p>Saves a volume to a buffer. The method creates an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> buffer to store the data, and returns that object.</p>
  22869. </summary>
  22870. <param name="destBufOut">No documentation.</param>
  22871. <param name="destFormat">No documentation.</param>
  22872. <param name="srcVolumeRef">No documentation.</param>
  22873. <param name="srcPaletteRef">No documentation.</param>
  22874. <param name="srcBoxRef">No documentation.</param>
  22875. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  22876. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSaveVolumeToFileInMemory']/*" />
  22877. <msdn-id>bb205436</msdn-id>
  22878. <unmanaged>HRESULT D3DXSaveVolumeToFileInMemory([In] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DVolume9* pSrcVolume,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcBox)</unmanaged>
  22879. <unmanaged-short>D3DXSaveVolumeToFileInMemory</unmanaged-short>
  22880. </member>
  22881. <member name="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.VolumeTexture@)">
  22882. <summary>
  22883. <p>Creates a volume texture from a resource.</p>
  22884. </summary>
  22885. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the volume texture.</p> </dd></param>
  22886. <param name="hSrcModule"><dd> <p>Handle to the module where the resource is located, or <strong><c>null</c></strong> for the module associated with the image the operating system used to create the current process.</p> </dd></param>
  22887. <param name="srcResourceRef"><dd> <p>Pointer to a string that specifies the resource name. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.</p> </dd></param>
  22888. <param name="volumeTextureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> interface representing the created texture object.</p> </dd></param>
  22889. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  22890. <remarks>
  22891. <p>The compiler setting also determines the function version. If Unicode is defined, the function call resolves to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromResourceW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,SharpDX.Direct3D9.VolumeTexture@)" />. Otherwise, the function call resolves to D3DXCreateVolumeTextureFromResourceA because ANSI strings are being used.</p><p>The function is equivalent to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTextureFromResourceExW(SharpDX.Direct3D9.Device,System.IntPtr,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry,SharpDX.Direct3D9.VolumeTexture@)" />(pDevice, hSrcModule, pSrcResource, D3DX_DEFAULT, D3DX_DEFAULT, D3DX_DEFAULT, D3DX_DEFAULT, 0, <see cref="F:SharpDX.Direct3D9.Format.Unknown" />, <see cref="F:SharpDX.Direct3D9.Pool.Managed" />, D3DX_DEFAULT, D3DX_DEFAULT, 0, <strong><c>null</c></strong>, <strong><c>null</c></strong>, ppVolumeTexture).</p><p>The resource being loaded must be an application-defined resource (RT_RCDATA).</p><p>This function supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Note that a resource created with this function when called from a <see cref="T:SharpDX.Direct3D9.Device" /> object will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Managed" />. When this method is called from a <see cref="T:SharpDX.Direct3D9.DeviceEx" /> object the resource will be placed in the memory class denoted by <see cref="F:SharpDX.Direct3D9.Pool.Default" />.</p><p>Filtering is automatically applied to a texture created using this method. The filtering is equivalent to <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" /> in <see cref="T:SharpDX.Direct3D9.Filter" />.</p>
  22892. </remarks>
  22893. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateVolumeTextureFromResourceW']/*" />
  22894. <msdn-id>bb172815</msdn-id>
  22895. <unmanaged>HRESULT D3DXCreateVolumeTextureFromResourceW([In] IDirect3DDevice9* pDevice,[In] HINSTANCE hSrcModule,[In] const wchar_t* pSrcResource,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  22896. <unmanaged-short>D3DXCreateVolumeTextureFromResourceW</unmanaged-short>
  22897. </member>
  22898. <member name="M:SharpDX.Direct3D9.D3DX9.CreateTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Texture@)">
  22899. <summary>
  22900. <p>Creates an empty texture, adjusting the calling parameters as needed.</p>
  22901. </summary>
  22902. <param name="deviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device to be associated with the texture.</p> </dd></param>
  22903. <param name="width"><dd> <p>Width in pixels. If this value is 0, a value of 1 is used. See Remarks.</p> </dd></param>
  22904. <param name="height"><dd> <p>Height in pixels. If this value is 0, a value of 1 is used. See Remarks.</p> </dd></param>
  22905. <param name="mipLevels"><dd> <p>Number of mip levels requested. If this value is zero or D3DX_DEFAULT, a complete mipmap chain is created.</p> </dd></param>
  22906. <param name="usage"><dd> <p>0, <strong><see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /></strong>, or <strong><see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /></strong>. Setting this flag to <strong><see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /></strong> indicates that the surface is to be used as a render target by calling the <strong>SetRenderTarget</strong> method. If either <strong><see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /></strong> or <strong><see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /></strong> is specified, the application should check that the device supports this operation by calling <strong>CheckDeviceFormat</strong>. For more information about using dynamic textures, see Using Dynamic Textures.</p> </dd></param>
  22907. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the requested pixel format for the texture. The returned texture may be of a different format from that specified, if the device does not support the requested format. Applications should check the format of the returned texture to see if it matches the format requested.</p> </dd></param>
  22908. <param name="pool"><dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, describing the memory class into which the texture should be placed.</p> </dd></param>
  22909. <param name="textureOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface, representing the created texture object.</p> </dd></param>
  22910. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotAvailable" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  22911. <remarks>
  22912. <p>Internally, <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Texture@)" /> uses <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CheckTextureRequirements(SharpDX.Direct3D9.Device,System.Int32@,System.Int32@,System.Int32@,System.Int32,SharpDX.Direct3D9.Format@,SharpDX.Direct3D9.Pool)" /></strong> to adjust the calling parameters. Therefore, calls to <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Texture@)" /> will often succeed where calls to <strong>CreateTexture</strong> would fail.</p><p>If both Height and Width are set to D3DX_DEFAULT, a value of 256 is used for both parameters. If either Height or Width is set to D3DX_DEFAULT And the other parameter is set to a numeric value, the texture will be square with both the height and width equal to the numeric value.</p>
  22913. </remarks>
  22914. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCreateTexture']/*" />
  22915. <msdn-id>bb172800</msdn-id>
  22916. <unmanaged>HRESULT D3DXCreateTexture([In] IDirect3DDevice9* pDevice,[In] unsigned int Width,[In] unsigned int Height,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  22917. <unmanaged-short>D3DXCreateTexture</unmanaged-short>
  22918. </member>
  22919. <member name="M:SharpDX.Direct3D9.D3DX9.FillVolumeTexture(SharpDX.Direct3D9.VolumeTexture,SharpDX.FunctionCallback,System.IntPtr)">
  22920. <summary>
  22921. <p>Uses a user-provided function to fill each texel of each mip level of a given volume texture.</p>
  22922. </summary>
  22923. <param name="volumeTextureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> interface, representing the filled texture.</p> </dd></param>
  22924. <param name="functionRef"><dd> <p>Pointer to a user-provided evaluator function, which will be used to compute the value of each texel. The function follows the prototype of LPD3DXFILL3D.</p> </dd></param>
  22925. <param name="dataRef"><dd> <p>Pointer to an arbitrary block of user-defined data. This reference will be passed to the function provided in <em>pFunction</em>.</p> </dd></param>
  22926. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  22927. <remarks>
  22928. <p>If the volume is non-dynamic (because usage is set to 0 when it is created), and located in video memory (the memory pool set to <see cref="F:SharpDX.Direct3D9.Pool.Default" />), <strong><see cref="M:SharpDX.Direct3D9.D3DX9.FillVolumeTexture(SharpDX.Direct3D9.VolumeTexture,SharpDX.FunctionCallback,System.IntPtr)" /></strong> will fail because the volume cannot be locked.</p><p>This example creates a function called ColorVolumeFill, which relies on <see cref="M:SharpDX.Direct3D9.D3DX9.FillVolumeTexture(SharpDX.Direct3D9.VolumeTexture,SharpDX.FunctionCallback,System.IntPtr)" />.</p><pre> // Define a function that matches the prototype of LPD3DXFILL3D
  22929. VOID WINAPI ColorVolumeFill (<see cref="T:SharpDX.Mathematics.Interop.RawVector4" />* pOut, const <see cref="T:SharpDX.Mathematics.Interop.RawVector3" />* pTexCoord,
  22930. const <see cref="T:SharpDX.Mathematics.Interop.RawVector3" />* pTexelSize, LPVOID pData)
  22931. { *pOut = <see cref="T:SharpDX.Mathematics.Interop.RawVector4" />(pTexCoord-&gt;x, pTexCoord-&gt;y, pTexCoord-&gt;z, 0.0f);
  22932. } // Fill volume texture
  22933. if (FAILED (hr = <see cref="M:SharpDX.Direct3D9.D3DX9.FillVolumeTexture(SharpDX.Direct3D9.VolumeTexture,SharpDX.FunctionCallback,System.IntPtr)" /> (m_pTexture, ColorVolumeFill, <c>null</c>)))
  22934. { return hr;
  22935. }
  22936. </pre>
  22937. </remarks>
  22938. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFillVolumeTexture']/*" />
  22939. <msdn-id>bb172835</msdn-id>
  22940. <unmanaged>HRESULT D3DXFillVolumeTexture([In] IDirect3DVolumeTexture9* pVolumeTexture,[In] __function__stdcall* pFunction,[In] void* pData)</unmanaged>
  22941. <unmanaged-short>D3DXFillVolumeTexture</unmanaged-short>
  22942. </member>
  22943. <member name="M:SharpDX.Direct3D9.D3DX9.LoadSurfaceFromSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32)">
  22944. <summary>
  22945. <p>Loads a surface from another surface with color conversion.</p>
  22946. </summary>
  22947. <param name="destSurfaceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Specifies the destination surface, which receives the image.</p> </dd></param>
  22948. <param name="destPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the destination palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22949. <param name="destRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure. Specifies the destination rectangle. Set this parameter to <strong><c>null</c></strong> to specify the entire surface.</p> </dd></param>
  22950. <param name="srcSurfaceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the source surface.</p> </dd></param>
  22951. <param name="srcPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the source palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22952. <param name="srcRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure. Specifies the source rectangle. Set this parameter to <strong><c>null</c></strong> to specify the entire surface.</p> </dd></param>
  22953. <param name="filter"><dd> <p>A combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" />, controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" />.</p> </dd></param>
  22954. <param name="colorKey"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> value to replace with transparent black, or 0 to disable the colorkey. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys. Thus, for opaque black, the value would be equal to 0xFF000000.</p> </dd></param>
  22955. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  22956. <remarks>
  22957. <p>This function handles conversion to and from compressed texture formats.</p><p>Writing to a non-level-zero surface will not cause the dirty rectangle to be updated. If <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadSurfaceFromSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32)" /></strong> is called and the surface was not already dirty (this is unlikely under normal usage scenarios), the application needs to explicitly call <strong>AddDirtyRect</strong> on the surface.</p>
  22958. </remarks>
  22959. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadSurfaceFromSurface']/*" />
  22960. <msdn-id>bb172904</msdn-id>
  22961. <unmanaged>HRESULT D3DXLoadSurfaceFromSurface([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  22962. <unmanaged-short>D3DXLoadSurfaceFromSurface</unmanaged-short>
  22963. </member>
  22964. <member name="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromFileInMemory(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)">
  22965. <summary>
  22966. <p>Loads a volume from a file in memory.</p>
  22967. </summary>
  22968. <param name="destVolumeRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface. Specifies the destination volume.</p> </dd></param>
  22969. <param name="destPaletteRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.PaletteEntry" /></strong> structure, the destination palette of 256 colors or <strong><c>null</c></strong>.</p> </dd></param>
  22970. <param name="destBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the destination box. Set this parameter to <strong><c>null</c></strong> to specify the entire volume.</p> </dd></param>
  22971. <param name="srcDataRef"><dd> <p>Pointer to the file in memory from which to load the volume.</p> </dd></param>
  22972. <param name="srcDataSize"><dd> <p>Size in bytes of the file in memory.</p> </dd></param>
  22973. <param name="srcBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifies the source box. Set this parameter to <strong><c>null</c></strong> to specify the entire volume.</p> </dd></param>
  22974. <param name="filter"><dd> <p>Combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" />, controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Triangle" /> | <see cref="F:SharpDX.Direct3D9.Filter.Dither" />.</p> </dd></param>
  22975. <param name="colorKey"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> value to replace with transparent black, or 0 to disable the colorkey. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys. Thus, for opaque black, the value would be equal to 0xFF000000.</p> </dd></param>
  22976. <param name="srcInfoRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.ImageInformation" /></strong> structure to be filled with a description of the data in the source image file, or <strong><c>null</c></strong>.</p> </dd></param>
  22977. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  22978. <remarks>
  22979. <p>This function handles conversion to and from compressed texture formats and supports the following file formats: .bmp, .dds, .dib, .hdr, .jpg, .pfm, .png, .ppm, and .tga. See <strong><see cref="T:SharpDX.Direct3D9.ImageFileFormat" /></strong>.</p><p>Writing to a non-level-zero surface of the volume texture will not cause the dirty rectangle to be updated. If <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromFileInMemory(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.IntPtr,System.Int32,System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr)" /></strong> is called and the texture was not already dirty (this is unlikely under normal usage scenarios), the application needs to explicitly call <strong><see cref="M:SharpDX.Direct3D9.VolumeTexture.AddDirtyBox(System.IntPtr)" /></strong> on the volume texture.</p>
  22980. </remarks>
  22981. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXLoadVolumeFromFileInMemory']/*" />
  22982. <msdn-id>bb172906</msdn-id>
  22983. <unmanaged>HRESULT D3DXLoadVolumeFromFileInMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  22984. <unmanaged-short>D3DXLoadVolumeFromFileInMemory</unmanaged-short>
  22985. </member>
  22986. <member name="M:SharpDX.Direct3D9.D3DX9.FileCreate(SharpDX.Direct3D9.XFile@)">
  22987. <summary>
  22988. <p>Creates an instance of an <strong><see cref="T:SharpDX.Direct3D9.XFile" /></strong> object.</p>
  22989. </summary>
  22990. <param name="lplpDirectXFile">No documentation.</param>
  22991. <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: E_POINTER, E_OUTOFMEMORY.</p></returns>
  22992. <remarks>
  22993. <p>After using this function, use <strong>RegisterTemplates</strong> or <strong>RegisterEnumTemplates</strong> to register templates, <strong>CreateEnumObject</strong> to create an enumerator object, or <strong>CreateSaveObject</strong> to create a save object.</p>
  22994. </remarks>
  22995. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFileCreate']/*" />
  22996. <msdn-id>bb172830</msdn-id>
  22997. <unmanaged>HRESULT D3DXFileCreate([In] ID3DXFile** lplpDirectXFile)</unmanaged>
  22998. <unmanaged-short>D3DXFileCreate</unmanaged-short>
  22999. </member>
  23000. <member name="T:SharpDX.Direct3D9.ResultCode">
  23001. <summary>
  23002. Functions
  23003. </summary>
  23004. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='SharpDX.Direct3D9.ResultCode']/*" />
  23005. </member>
  23006. <member name="F:SharpDX.Direct3D9.ResultCode.ConflictingRenderState">
  23007. <summary>Constant ConflictingRenderState.</summary>
  23008. <unmanaged>D3DERR_CONFLICTINGRENDERSTATE</unmanaged>
  23009. </member>
  23010. <member name="F:SharpDX.Direct3D9.ResultCode.ConflictingTextureFilter">
  23011. <summary>Constant ConflictingTextureFilter.</summary>
  23012. <unmanaged>D3DERR_CONFLICTINGTEXTUREFILTER</unmanaged>
  23013. </member>
  23014. <member name="F:SharpDX.Direct3D9.ResultCode.ConflictingTexturePalette">
  23015. <summary>Constant ConflictingTexturePalette.</summary>
  23016. <unmanaged>D3DERR_CONFLICTINGTEXTUREPALETTE</unmanaged>
  23017. </member>
  23018. <member name="F:SharpDX.Direct3D9.ResultCode.DeviceHung">
  23019. <summary>Constant DeviceHung.</summary>
  23020. <unmanaged>D3DERR_DEVICEHUNG</unmanaged>
  23021. </member>
  23022. <member name="F:SharpDX.Direct3D9.ResultCode.DeviceLost">
  23023. <summary>Constant DeviceLost.</summary>
  23024. <unmanaged>D3DERR_DEVICELOST</unmanaged>
  23025. </member>
  23026. <member name="F:SharpDX.Direct3D9.ResultCode.DeviceNotReset">
  23027. <summary>Constant DeviceNotReset.</summary>
  23028. <unmanaged>D3DERR_DEVICENOTRESET</unmanaged>
  23029. </member>
  23030. <member name="F:SharpDX.Direct3D9.ResultCode.DeviceRemoved">
  23031. <summary>Constant DeviceRemoved.</summary>
  23032. <unmanaged>D3DERR_DEVICEREMOVED</unmanaged>
  23033. </member>
  23034. <member name="F:SharpDX.Direct3D9.ResultCode.DriverInternalError">
  23035. <summary>Constant DriverInternalError.</summary>
  23036. <unmanaged>D3DERR_DRIVERINTERNALERROR</unmanaged>
  23037. </member>
  23038. <member name="F:SharpDX.Direct3D9.ResultCode.InvalidCall">
  23039. <summary>Constant InvalidCall.</summary>
  23040. <unmanaged>D3DERR_INVALIDCALL</unmanaged>
  23041. </member>
  23042. <member name="F:SharpDX.Direct3D9.ResultCode.InvalidDevice">
  23043. <summary>Constant InvalidDevice.</summary>
  23044. <unmanaged>D3DERR_INVALIDDEVICE</unmanaged>
  23045. </member>
  23046. <member name="F:SharpDX.Direct3D9.ResultCode.MoreData">
  23047. <summary>Constant MoreData.</summary>
  23048. <unmanaged>D3DERR_MOREDATA</unmanaged>
  23049. </member>
  23050. <member name="F:SharpDX.Direct3D9.ResultCode.NoAutomaticGeneration">
  23051. <summary>Constant NoAutomaticGeneration.</summary>
  23052. <unmanaged>D3DOK_NOAUTOGEN</unmanaged>
  23053. </member>
  23054. <member name="F:SharpDX.Direct3D9.ResultCode.NotAvailable">
  23055. <summary>Constant NotAvailable.</summary>
  23056. <unmanaged>D3DERR_NOTAVAILABLE</unmanaged>
  23057. </member>
  23058. <member name="F:SharpDX.Direct3D9.ResultCode.NotFound">
  23059. <summary>Constant NotFound.</summary>
  23060. <unmanaged>D3DERR_NOTFOUND</unmanaged>
  23061. </member>
  23062. <member name="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory">
  23063. <summary>Constant OutOfVideoMemory.</summary>
  23064. <unmanaged>D3DERR_OUTOFVIDEOMEMORY</unmanaged>
  23065. </member>
  23066. <member name="F:SharpDX.Direct3D9.ResultCode.PresentModeChanged">
  23067. <summary>Constant PresentModeChanged.</summary>
  23068. <unmanaged>S_PRESENT_MODE_CHANGED</unmanaged>
  23069. </member>
  23070. <member name="F:SharpDX.Direct3D9.ResultCode.PresentOccluded">
  23071. <summary>Constant PresentOccluded.</summary>
  23072. <unmanaged>S_PRESENT_OCCLUDED</unmanaged>
  23073. </member>
  23074. <member name="F:SharpDX.Direct3D9.ResultCode.ResidentInSharedMemory">
  23075. <summary>Constant ResidentInSharedMemory.</summary>
  23076. <unmanaged>S_RESIDENT_IN_SHARED_MEMORY</unmanaged>
  23077. </member>
  23078. <member name="F:SharpDX.Direct3D9.ResultCode.Success">
  23079. <summary>Constant Success.</summary>
  23080. <unmanaged>D3D_OK</unmanaged>
  23081. </member>
  23082. <member name="F:SharpDX.Direct3D9.ResultCode.TooManyOperations">
  23083. <summary>Constant TooManyOperations.</summary>
  23084. <unmanaged>D3DERR_TOOMANYOPERATIONS</unmanaged>
  23085. </member>
  23086. <member name="F:SharpDX.Direct3D9.ResultCode.UnsupportedAlphaArgument">
  23087. <summary>Constant UnsupportedAlphaArgument.</summary>
  23088. <unmanaged>D3DERR_UNSUPPORTEDALPHAARG</unmanaged>
  23089. </member>
  23090. <member name="F:SharpDX.Direct3D9.ResultCode.UnsupportedAlphaOperation">
  23091. <summary>Constant UnsupportedAlphaOperation.</summary>
  23092. <unmanaged>D3DERR_UNSUPPORTEDALPHAOPERATION</unmanaged>
  23093. </member>
  23094. <member name="F:SharpDX.Direct3D9.ResultCode.UnsupportedColorArgument">
  23095. <summary>Constant UnsupportedColorArgument.</summary>
  23096. <unmanaged>D3DERR_UNSUPPORTEDCOLORARG</unmanaged>
  23097. </member>
  23098. <member name="F:SharpDX.Direct3D9.ResultCode.UnsupportedColorOperation">
  23099. <summary>Constant UnsupportedColorOperation.</summary>
  23100. <unmanaged>D3DERR_UNSUPPORTEDCOLOROPERATION</unmanaged>
  23101. </member>
  23102. <member name="F:SharpDX.Direct3D9.ResultCode.UnsupportedFactorValue">
  23103. <summary>Constant UnsupportedFactorValue.</summary>
  23104. <unmanaged>D3DERR_UNSUPPORTEDFACTORVALUE</unmanaged>
  23105. </member>
  23106. <member name="F:SharpDX.Direct3D9.ResultCode.UnsupportedTextureFilter">
  23107. <summary>Constant UnsupportedTextureFilter.</summary>
  23108. <unmanaged>D3DERR_UNSUPPORTEDTEXTUREFILTER</unmanaged>
  23109. </member>
  23110. <member name="F:SharpDX.Direct3D9.ResultCode.WasStillDrawing">
  23111. <summary>Constant WasStillDrawing.</summary>
  23112. <unmanaged>D3DERR_WASSTILLDRAWING</unmanaged>
  23113. </member>
  23114. <member name="F:SharpDX.Direct3D9.ResultCode.WrongTextureFormat">
  23115. <summary>Constant WrongTextureFormat.</summary>
  23116. <unmanaged>D3DERR_WRONGTEXTUREFORMAT</unmanaged>
  23117. </member>
  23118. <member name="T:SharpDX.Direct3D9.AnimationCallbackHandler">
  23119. <summary>
  23120. <p>An application implements this interface to handle callbacks in animation sets generated by calls to <strong><see cref="M:SharpDX.Direct3D9.AnimationController.AdvanceTime(System.Double,SharpDX.Direct3D9.AnimationCallbackHandler)" /></strong>.</p>
  23121. </summary>
  23122. <remarks>
  23123. <p>The LPD3DXANIMATIONCALLBACKHANDLER type is defined as a reference to this interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.AnimationCallbackHandler" /> <see cref="T:SharpDX.Direct3D9.AnimationCallbackHandler" />;
  23124. typedef interface <see cref="T:SharpDX.Direct3D9.AnimationCallbackHandler" /> *LPD3DXANIMATIONCALLBACKHANDLER;
  23125. </pre>
  23126. </remarks>
  23127. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationCallbackHandler']/*" />
  23128. <msdn-id>bb205624</msdn-id>
  23129. <unmanaged>ID3DXAnimationCallbackHandler</unmanaged>
  23130. <unmanaged-short>ID3DXAnimationCallbackHandler</unmanaged-short>
  23131. </member>
  23132. <member name="M:SharpDX.Direct3D9.AnimationCallbackHandler.#ctor(System.IntPtr)">
  23133. <summary>
  23134. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.AnimationCallbackHandler"/> class.
  23135. </summary>
  23136. <param name="nativePtr">The native pointer.</param>
  23137. </member>
  23138. <member name="M:SharpDX.Direct3D9.AnimationCallbackHandler.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.AnimationCallbackHandler">
  23139. <summary>
  23140. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.AnimationCallbackHandler"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  23141. </summary>
  23142. <param name="nativePointer">The native pointer.</param>
  23143. <returns>
  23144. The result of the conversion.
  23145. </returns>
  23146. </member>
  23147. <member name="M:SharpDX.Direct3D9.AnimationCallbackHandler.HandleCallback(System.Int32,System.IntPtr)">
  23148. <summary>
  23149. <p>The application implements this method. This method is called when a callback occurs for an animation set in one of the tracks during a call to <strong><see cref="M:SharpDX.Direct3D9.AnimationController.AdvanceTime(System.Double,SharpDX.Direct3D9.AnimationCallbackHandler)" /></strong>.</p>
  23150. </summary>
  23151. <param name="track">No documentation.</param>
  23152. <param name="callbackDataRef">No documentation.</param>
  23153. <returns><p>The return values of this method are implemented by an application programmer. In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>.</p></returns>
  23154. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationCallbackHandler::HandleCallback']/*" />
  23155. <msdn-id>bb205625</msdn-id>
  23156. <unmanaged>HRESULT ID3DXAnimationCallbackHandler::HandleCallback([In] unsigned int Track,[In] void* pCallbackData)</unmanaged>
  23157. <unmanaged-short>ID3DXAnimationCallbackHandler::HandleCallback</unmanaged-short>
  23158. </member>
  23159. <member name="T:SharpDX.Direct3D9.AnimationController">
  23160. <summary>
  23161. <p>This interface is used to control animation functionality, connecting animation sets with the transformation frames that are being animated. The interface has methods to mix multiple animations and to modify blending parameters over time to enable smooth transitions and other effects.</p>
  23162. </summary>
  23163. <remarks>
  23164. <p>Create an animation controller object with <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateAnimationController(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.AnimationController@)" /></strong>.</p><p>The LPD3DXANIMATIONCONTROLLER type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.AnimationController" /></strong> interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.AnimationController" /> <see cref="T:SharpDX.Direct3D9.AnimationController" />;
  23165. typedef interface <see cref="T:SharpDX.Direct3D9.AnimationController" /> *LPD3DXANIMATIONCONTROLLER;
  23166. </pre><p>The D3DXEVENTHANDLE type is defined as an event handle to animation controller events. </p><pre> typedef DWORD D3DXEVENTHANDLE;
  23167. </pre><p>The LPD3DXEVENTHANDLE type is defined as a reference to an event handle to animation controller events. </p><pre> typedef D3DXEVENTHANDLE *LPD3DXEVENTHANDLE;
  23168. </pre>
  23169. </remarks>
  23170. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController']/*" />
  23171. <msdn-id>bb205626</msdn-id>
  23172. <unmanaged>ID3DXAnimationController</unmanaged>
  23173. <unmanaged-short>ID3DXAnimationController</unmanaged-short>
  23174. </member>
  23175. <member name="M:SharpDX.Direct3D9.AnimationController.#ctor(System.IntPtr)">
  23176. <summary>
  23177. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.AnimationController"/> class.
  23178. </summary>
  23179. <param name="nativePtr">The native pointer.</param>
  23180. </member>
  23181. <member name="M:SharpDX.Direct3D9.AnimationController.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.AnimationController">
  23182. <summary>
  23183. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.AnimationController"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  23184. </summary>
  23185. <param name="nativePointer">The native pointer.</param>
  23186. <returns>
  23187. The result of the conversion.
  23188. </returns>
  23189. </member>
  23190. <member name="P:SharpDX.Direct3D9.AnimationController.MaxNumAnimationOutputs">
  23191. <summary>
  23192. <p>Get the maximum number of animation outputs the animation controller can support.</p>
  23193. </summary>
  23194. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetMaxNumAnimationOutputs']/*" />
  23195. <msdn-id>bb205634</msdn-id>
  23196. <unmanaged>GetMaxNumAnimationOutputs</unmanaged>
  23197. <unmanaged-short>GetMaxNumAnimationOutputs</unmanaged-short>
  23198. <unmanaged>unsigned int ID3DXAnimationController::GetMaxNumAnimationOutputs()</unmanaged>
  23199. </member>
  23200. <member name="P:SharpDX.Direct3D9.AnimationController.MaxNumAnimationSets">
  23201. <summary>
  23202. <p>Gets the maximum number of animation sets the animation controller can support.</p>
  23203. </summary>
  23204. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetMaxNumAnimationSets']/*" />
  23205. <msdn-id>bb205635</msdn-id>
  23206. <unmanaged>GetMaxNumAnimationSets</unmanaged>
  23207. <unmanaged-short>GetMaxNumAnimationSets</unmanaged-short>
  23208. <unmanaged>unsigned int ID3DXAnimationController::GetMaxNumAnimationSets()</unmanaged>
  23209. </member>
  23210. <member name="P:SharpDX.Direct3D9.AnimationController.MaxNumTracks">
  23211. <summary>
  23212. <p>Gets the maximum number of tracks in the animation controller.</p>
  23213. </summary>
  23214. <remarks>
  23215. <p>The maximum number of tracks the controller can manage.</p>
  23216. </remarks>
  23217. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetMaxNumTracks']/*" />
  23218. <msdn-id>bb205637</msdn-id>
  23219. <unmanaged>GetMaxNumTracks</unmanaged>
  23220. <unmanaged-short>GetMaxNumTracks</unmanaged-short>
  23221. <unmanaged>unsigned int ID3DXAnimationController::GetMaxNumTracks()</unmanaged>
  23222. </member>
  23223. <member name="P:SharpDX.Direct3D9.AnimationController.MaxNumEvents">
  23224. <summary>
  23225. <p>Gets the maximum number of events the animation controller can support.</p>
  23226. </summary>
  23227. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetMaxNumEvents']/*" />
  23228. <msdn-id>bb205636</msdn-id>
  23229. <unmanaged>GetMaxNumEvents</unmanaged>
  23230. <unmanaged-short>GetMaxNumEvents</unmanaged-short>
  23231. <unmanaged>unsigned int ID3DXAnimationController::GetMaxNumEvents()</unmanaged>
  23232. </member>
  23233. <member name="P:SharpDX.Direct3D9.AnimationController.NumAnimationSets">
  23234. <summary>
  23235. <p>Returns the number of animation sets currently registered in the animation controller.</p>
  23236. </summary>
  23237. <remarks>
  23238. <p>The controller contains any number of animations sets and tracks. Animation sets can be registered with <strong>RegisterAnimationOutput</strong>. An animation controller created by a call to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> will automatically register loaded animation sets.</p>
  23239. </remarks>
  23240. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetNumAnimationSets']/*" />
  23241. <msdn-id>bb205638</msdn-id>
  23242. <unmanaged>GetNumAnimationSets</unmanaged>
  23243. <unmanaged-short>GetNumAnimationSets</unmanaged-short>
  23244. <unmanaged>unsigned int ID3DXAnimationController::GetNumAnimationSets()</unmanaged>
  23245. </member>
  23246. <member name="P:SharpDX.Direct3D9.AnimationController.Time">
  23247. <summary>
  23248. <p>Gets the global animation time.</p>
  23249. </summary>
  23250. <remarks>
  23251. <p>Animations are designed using a local animation time and mixed into global time with <strong>AdvanceTime</strong>.</p>
  23252. </remarks>
  23253. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetTime']/*" />
  23254. <msdn-id>bb205640</msdn-id>
  23255. <unmanaged>GetTime</unmanaged>
  23256. <unmanaged-short>GetTime</unmanaged-short>
  23257. <unmanaged>double ID3DXAnimationController::GetTime()</unmanaged>
  23258. </member>
  23259. <member name="P:SharpDX.Direct3D9.AnimationController.PriorityBlend">
  23260. <summary>
  23261. <p>Gets or sets the current priority blending weight used by the animation controller.</p>
  23262. </summary>
  23263. <remarks>
  23264. <p>The priority blending weight is used to blend high and low priority tracks together.</p>
  23265. </remarks>
  23266. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetPriorityBlend']/*" />
  23267. <msdn-id>bb205639</msdn-id>
  23268. <unmanaged>GetPriorityBlend / SetPriorityBlend</unmanaged>
  23269. <unmanaged-short>GetPriorityBlend</unmanaged-short>
  23270. <unmanaged>float ID3DXAnimationController::GetPriorityBlend()</unmanaged>
  23271. </member>
  23272. <member name="P:SharpDX.Direct3D9.AnimationController.CurrentPriorityBlend">
  23273. <summary>
  23274. <p>Returns an event handle to a priority blend event that is currently running.</p>
  23275. </summary>
  23276. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetCurrentPriorityBlend']/*" />
  23277. <msdn-id>bb205631</msdn-id>
  23278. <unmanaged>GetCurrentPriorityBlend</unmanaged>
  23279. <unmanaged-short>GetCurrentPriorityBlend</unmanaged-short>
  23280. <unmanaged>unsigned int ID3DXAnimationController::GetCurrentPriorityBlend()</unmanaged>
  23281. </member>
  23282. <member name="M:SharpDX.Direct3D9.AnimationController.GetMaxNumAnimationOutputs">
  23283. <summary>
  23284. <p>Get the maximum number of animation outputs the animation controller can support.</p>
  23285. </summary>
  23286. <returns><p>The maximum number of animation outputs the controller can manage.</p></returns>
  23287. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetMaxNumAnimationOutputs']/*" />
  23288. <msdn-id>bb205634</msdn-id>
  23289. <unmanaged>unsigned int ID3DXAnimationController::GetMaxNumAnimationOutputs()</unmanaged>
  23290. <unmanaged-short>ID3DXAnimationController::GetMaxNumAnimationOutputs</unmanaged-short>
  23291. </member>
  23292. <member name="M:SharpDX.Direct3D9.AnimationController.GetMaxNumAnimationSets">
  23293. <summary>
  23294. <p>Gets the maximum number of animation sets the animation controller can support.</p>
  23295. </summary>
  23296. <returns><p>The maximum number of animation sets the controller can manage.</p></returns>
  23297. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetMaxNumAnimationSets']/*" />
  23298. <msdn-id>bb205635</msdn-id>
  23299. <unmanaged>unsigned int ID3DXAnimationController::GetMaxNumAnimationSets()</unmanaged>
  23300. <unmanaged-short>ID3DXAnimationController::GetMaxNumAnimationSets</unmanaged-short>
  23301. </member>
  23302. <member name="M:SharpDX.Direct3D9.AnimationController.GetMaxNumTracks">
  23303. <summary>
  23304. <p>Gets the maximum number of tracks in the animation controller.</p>
  23305. </summary>
  23306. <returns><p>Number of tracks.</p></returns>
  23307. <remarks>
  23308. <p>The maximum number of tracks the controller can manage.</p>
  23309. </remarks>
  23310. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetMaxNumTracks']/*" />
  23311. <msdn-id>bb205637</msdn-id>
  23312. <unmanaged>unsigned int ID3DXAnimationController::GetMaxNumTracks()</unmanaged>
  23313. <unmanaged-short>ID3DXAnimationController::GetMaxNumTracks</unmanaged-short>
  23314. </member>
  23315. <member name="M:SharpDX.Direct3D9.AnimationController.GetMaxNumEvents">
  23316. <summary>
  23317. <p>Gets the maximum number of events the animation controller can support.</p>
  23318. </summary>
  23319. <returns><p>The maximum number of events the controller can manage.</p></returns>
  23320. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetMaxNumEvents']/*" />
  23321. <msdn-id>bb205636</msdn-id>
  23322. <unmanaged>unsigned int ID3DXAnimationController::GetMaxNumEvents()</unmanaged>
  23323. <unmanaged-short>ID3DXAnimationController::GetMaxNumEvents</unmanaged-short>
  23324. </member>
  23325. <member name="M:SharpDX.Direct3D9.AnimationController.RegisterAnimationOutput(System.String,SharpDX.Mathematics.Interop.RawMatrix@,SharpDX.Mathematics.Interop.RawVector3,SharpDX.Mathematics.Interop.RawQuaternion,SharpDX.Mathematics.Interop.RawVector3)">
  23326. <summary>
  23327. <p>Adds an animation output to the animation controller and registers references for scale, rotate, and translate (SRT) transformations.</p>
  23328. </summary>
  23329. <param name="nameRef"><dd> <p>Name of the animation output.</p> </dd></param>
  23330. <param name="matrixRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong> structure containing SRT transformation data. Can be <strong><c>null</c></strong>.</p> </dd></param>
  23331. <param name="scaleRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> vector that describes the scale of the animation set. Can be <strong><c>null</c></strong>.</p> </dd></param>
  23332. <param name="rotationRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawQuaternion" /></strong> quaternion that describes the rotation of the animation set. Can be <strong><c>null</c></strong>.</p> </dd></param>
  23333. <param name="translationRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> vector that describes the translation of the animation set. Can be <strong><c>null</c></strong>.</p> </dd></param>
  23334. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23335. <remarks>
  23336. <p>If the animation output is already registered, pMatrix will be filled with the input transformation data.</p><p>Animation sets created with <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> automatically register all loaded animation sets.</p>
  23337. </remarks>
  23338. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::RegisterAnimationOutput']/*" />
  23339. <msdn-id>bb205650</msdn-id>
  23340. <unmanaged>HRESULT ID3DXAnimationController::RegisterAnimationOutput([In] const char* pName,[In] D3DXMATRIX* pMatrix,[In] D3DXVECTOR3* pScale,[In] D3DXQUATERNION* pRotation,[In] D3DXVECTOR3* pTranslation)</unmanaged>
  23341. <unmanaged-short>ID3DXAnimationController::RegisterAnimationOutput</unmanaged-short>
  23342. </member>
  23343. <member name="M:SharpDX.Direct3D9.AnimationController.RegisterAnimationSet(SharpDX.Direct3D9.AnimationSet)">
  23344. <summary>
  23345. <p>Adds an animation set to the animation controller.</p>
  23346. </summary>
  23347. <param name="animSetRef"><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Direct3D9.AnimationSet" /></strong> animation set to add.</p> </dd></param>
  23348. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  23349. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::RegisterAnimationSet']/*" />
  23350. <msdn-id>bb205651</msdn-id>
  23351. <unmanaged>HRESULT ID3DXAnimationController::RegisterAnimationSet([In] ID3DXAnimationSet* pAnimSet)</unmanaged>
  23352. <unmanaged-short>ID3DXAnimationController::RegisterAnimationSet</unmanaged-short>
  23353. </member>
  23354. <member name="M:SharpDX.Direct3D9.AnimationController.UnregisterAnimationSet(SharpDX.Direct3D9.AnimationSet)">
  23355. <summary>
  23356. <p>Removes an animation set from the animation controller.</p>
  23357. </summary>
  23358. <param name="animSetRef"><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Direct3D9.AnimationSet" /></strong> animation set to remove.</p> </dd></param>
  23359. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotFound" />.</p></returns>
  23360. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::UnregisterAnimationSet']/*" />
  23361. <msdn-id>bb205664</msdn-id>
  23362. <unmanaged>HRESULT ID3DXAnimationController::UnregisterAnimationSet([In] ID3DXAnimationSet* pAnimSet)</unmanaged>
  23363. <unmanaged-short>ID3DXAnimationController::UnregisterAnimationSet</unmanaged-short>
  23364. </member>
  23365. <member name="M:SharpDX.Direct3D9.AnimationController.GetNumAnimationSets">
  23366. <summary>
  23367. <p>Returns the number of animation sets currently registered in the animation controller.</p>
  23368. </summary>
  23369. <returns><p>Number of animation sets.</p></returns>
  23370. <remarks>
  23371. <p>The controller contains any number of animations sets and tracks. Animation sets can be registered with <strong>RegisterAnimationOutput</strong>. An animation controller created by a call to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> will automatically register loaded animation sets.</p>
  23372. </remarks>
  23373. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetNumAnimationSets']/*" />
  23374. <msdn-id>bb205638</msdn-id>
  23375. <unmanaged>unsigned int ID3DXAnimationController::GetNumAnimationSets()</unmanaged>
  23376. <unmanaged-short>ID3DXAnimationController::GetNumAnimationSets</unmanaged-short>
  23377. </member>
  23378. <member name="M:SharpDX.Direct3D9.AnimationController.GetAnimationSet(System.Int32,SharpDX.Direct3D9.AnimationSet@)">
  23379. <summary>
  23380. <p>Gets an animation set.</p>
  23381. </summary>
  23382. <param name="index"><dd> <p>Index of the animation set.</p> </dd></param>
  23383. <param name="animationSetOut"><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Direct3D9.AnimationSet" /></strong> animation set.</p> </dd></param>
  23384. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  23385. <remarks>
  23386. <p>The animation controller contains an array of animation sets. This method returns one of them at the given index.</p>
  23387. </remarks>
  23388. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetAnimationSet']/*" />
  23389. <msdn-id>bb205629</msdn-id>
  23390. <unmanaged>HRESULT ID3DXAnimationController::GetAnimationSet([In] unsigned int Index,[Out] ID3DXAnimationSet** ppAnimationSet)</unmanaged>
  23391. <unmanaged-short>ID3DXAnimationController::GetAnimationSet</unmanaged-short>
  23392. </member>
  23393. <member name="M:SharpDX.Direct3D9.AnimationController.GetAnimationSetByName(System.String,SharpDX.Direct3D9.AnimationSet@)">
  23394. <summary>
  23395. <p>Gets an animation set, given its name.</p>
  23396. </summary>
  23397. <param name="szName"><dd> <p>String containing the name of the animation set.</p> </dd></param>
  23398. <param name="animationSetOut"><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Direct3D9.AnimationSet" /></strong> animation set.</p> </dd></param>
  23399. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  23400. <remarks>
  23401. <p>The animation controller contains an array of animation sets. This method returns an animation set that has the given name.</p>
  23402. </remarks>
  23403. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetAnimationSetByName']/*" />
  23404. <msdn-id>bb205630</msdn-id>
  23405. <unmanaged>HRESULT ID3DXAnimationController::GetAnimationSetByName([In] const char* szName,[In] ID3DXAnimationSet** ppAnimationSet)</unmanaged>
  23406. <unmanaged-short>ID3DXAnimationController::GetAnimationSetByName</unmanaged-short>
  23407. </member>
  23408. <member name="M:SharpDX.Direct3D9.AnimationController.AdvanceTime(System.Double,SharpDX.Direct3D9.AnimationCallbackHandler)">
  23409. <summary>
  23410. <p>Animates the mesh and advances the global animation time by a specified amount.</p>
  23411. </summary>
  23412. <param name="timeDelta"><dd> <p>Amount, in seconds, by which to advance the global animation time. TimeDelta value must be non-negative or zero.</p> </dd></param>
  23413. <param name="callbackHandlerRef"><dd> <p>Pointer to a user-defined animation callback handler interface, <strong><see cref="T:SharpDX.Direct3D9.AnimationCallbackHandler" /></strong>.</p> </dd></param>
  23414. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23415. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::AdvanceTime']/*" />
  23416. <msdn-id>bb205627</msdn-id>
  23417. <unmanaged>HRESULT ID3DXAnimationController::AdvanceTime([In] double TimeDelta,[In] ID3DXAnimationCallbackHandler* pCallbackHandler)</unmanaged>
  23418. <unmanaged-short>ID3DXAnimationController::AdvanceTime</unmanaged-short>
  23419. </member>
  23420. <member name="M:SharpDX.Direct3D9.AnimationController.ResetTime">
  23421. <summary>
  23422. <p>Resets the global animation time to zero. Any pending events will retain their original schedules, but in the new timeframe.</p>
  23423. </summary>
  23424. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  23425. <remarks>
  23426. <p>This method is typically used when the global animation time value is nearing the maximum precision of DOUBLE storage, or 264 - 1.</p>
  23427. </remarks>
  23428. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::ResetTime']/*" />
  23429. <msdn-id>bb205652</msdn-id>
  23430. <unmanaged>HRESULT ID3DXAnimationController::ResetTime()</unmanaged>
  23431. <unmanaged-short>ID3DXAnimationController::ResetTime</unmanaged-short>
  23432. </member>
  23433. <member name="M:SharpDX.Direct3D9.AnimationController.GetTime">
  23434. <summary>
  23435. <p>Gets the global animation time.</p>
  23436. </summary>
  23437. <returns><p>Returns the global animation time.</p></returns>
  23438. <remarks>
  23439. <p>Animations are designed using a local animation time and mixed into global time with <strong>AdvanceTime</strong>.</p>
  23440. </remarks>
  23441. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetTime']/*" />
  23442. <msdn-id>bb205640</msdn-id>
  23443. <unmanaged>double ID3DXAnimationController::GetTime()</unmanaged>
  23444. <unmanaged-short>ID3DXAnimationController::GetTime</unmanaged-short>
  23445. </member>
  23446. <member name="M:SharpDX.Direct3D9.AnimationController.SetTrackAnimationSet(System.Int32,SharpDX.Direct3D9.AnimationSet)">
  23447. <summary>
  23448. <p>Applies the animation set to the specified track.</p>
  23449. </summary>
  23450. <param name="track"><dd> <p>Identifier of the track to which the animation set is applied.</p> </dd></param>
  23451. <param name="animSetRef"><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Direct3D9.AnimationSet" /></strong> animation set to be added to the track.</p> </dd></param>
  23452. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23453. <remarks>
  23454. <p>This method sets the animation set to the specified track for mixing. The animation set for each track is blended according to the track weight and speed when <strong>AdvanceTime</strong> is called.</p>
  23455. </remarks>
  23456. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::SetTrackAnimationSet']/*" />
  23457. <msdn-id>bb205654</msdn-id>
  23458. <unmanaged>HRESULT ID3DXAnimationController::SetTrackAnimationSet([In] unsigned int Track,[In] ID3DXAnimationSet* pAnimSet)</unmanaged>
  23459. <unmanaged-short>ID3DXAnimationController::SetTrackAnimationSet</unmanaged-short>
  23460. </member>
  23461. <member name="M:SharpDX.Direct3D9.AnimationController.GetTrackAnimationSet(System.Int32,SharpDX.Direct3D9.AnimationSet@)">
  23462. <summary>
  23463. <p>Gets the animation set for the given track.</p>
  23464. </summary>
  23465. <param name="track"><dd> <p>Track identifier.</p> </dd></param>
  23466. <param name="animSetOut"><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Direct3D9.AnimationSet" /></strong> animation set for the given track.</p> </dd></param>
  23467. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23468. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetTrackAnimationSet']/*" />
  23469. <msdn-id>bb205641</msdn-id>
  23470. <unmanaged>HRESULT ID3DXAnimationController::GetTrackAnimationSet([In] unsigned int Track,[Out] ID3DXAnimationSet** ppAnimSet)</unmanaged>
  23471. <unmanaged-short>ID3DXAnimationController::GetTrackAnimationSet</unmanaged-short>
  23472. </member>
  23473. <member name="M:SharpDX.Direct3D9.AnimationController.SetTrackPriority(System.Int32,SharpDX.Direct3D9.TrackPriority)">
  23474. <summary>
  23475. <p>Sets the priority blending weight for the specified animation track.</p>
  23476. </summary>
  23477. <param name="track"><dd> <p>Track identifier.</p> </dd></param>
  23478. <param name="priority"><dd> <p>Track priority. This parameter should be set to one of the constants from <strong><see cref="T:SharpDX.Direct3D9.TrackPriority" /></strong>.</p> </dd></param>
  23479. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  23480. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::SetTrackPriority']/*" />
  23481. <msdn-id>bb205658</msdn-id>
  23482. <unmanaged>HRESULT ID3DXAnimationController::SetTrackPriority([In] unsigned int Track,[In] D3DXPRIORITY_TYPE Priority)</unmanaged>
  23483. <unmanaged-short>ID3DXAnimationController::SetTrackPriority</unmanaged-short>
  23484. </member>
  23485. <member name="M:SharpDX.Direct3D9.AnimationController.SetTrackSpeed(System.Int32,System.Single)">
  23486. <summary>
  23487. <p>Sets the track speed. The track speed is similar to a multiplier that is used to speed up or slow down the playback of the track.</p>
  23488. </summary>
  23489. <param name="track"><dd> <p>Identifier of the track to set the speed on.</p> </dd></param>
  23490. <param name="speed"><dd> <p>New speed.</p> </dd></param>
  23491. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23492. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::SetTrackSpeed']/*" />
  23493. <msdn-id>bb205659</msdn-id>
  23494. <unmanaged>HRESULT ID3DXAnimationController::SetTrackSpeed([In] unsigned int Track,[In] float Speed)</unmanaged>
  23495. <unmanaged-short>ID3DXAnimationController::SetTrackSpeed</unmanaged-short>
  23496. </member>
  23497. <member name="M:SharpDX.Direct3D9.AnimationController.SetTrackWeight(System.Int32,System.Single)">
  23498. <summary>
  23499. <p>Sets the track weight. The weight is used to determine how to blend multiple tracks together.</p>
  23500. </summary>
  23501. <param name="track"><dd> <p>Identifier of the track to set the weight on.</p> </dd></param>
  23502. <param name="weight"><dd> <p>Weight value.</p> </dd></param>
  23503. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23504. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::SetTrackWeight']/*" />
  23505. <msdn-id>bb205660</msdn-id>
  23506. <unmanaged>HRESULT ID3DXAnimationController::SetTrackWeight([In] unsigned int Track,[In] float Weight)</unmanaged>
  23507. <unmanaged-short>ID3DXAnimationController::SetTrackWeight</unmanaged-short>
  23508. </member>
  23509. <member name="M:SharpDX.Direct3D9.AnimationController.SetTrackPosition(System.Int32,System.Double)">
  23510. <summary>
  23511. <p>Sets the track to the specified local animation time.</p>
  23512. </summary>
  23513. <param name="track"><dd> <p>Track identifier.</p> </dd></param>
  23514. <param name="position"><dd> <p>Local animation time value to assign to the track.</p> </dd></param>
  23515. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23516. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::SetTrackPosition']/*" />
  23517. <msdn-id>bb205657</msdn-id>
  23518. <unmanaged>HRESULT ID3DXAnimationController::SetTrackPosition([In] unsigned int Track,[In] double Position)</unmanaged>
  23519. <unmanaged-short>ID3DXAnimationController::SetTrackPosition</unmanaged-short>
  23520. </member>
  23521. <member name="M:SharpDX.Direct3D9.AnimationController.SetTrackEnable(System.Int32,SharpDX.Mathematics.Interop.RawBool)">
  23522. <summary>
  23523. <p>Enables or disables a track in the animation controller.</p>
  23524. </summary>
  23525. <param name="track"><dd> <p>Identifier of the track to be mixed.</p> </dd></param>
  23526. <param name="enable"><dd> <p>Enable value. Set to <strong>TRUE</strong> to enable this track in the controller, or to <strong><see cref="F:SharpDX.Result.False" /></strong> to prevent it from being mixed.</p> </dd></param>
  23527. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23528. <remarks>
  23529. <p>To mix a track with other tracks, the Enable flag must be set to <strong>TRUE</strong>. Conversely, setting the flag to <strong><see cref="F:SharpDX.Result.False" /></strong> will prevent the track from being mixed with other tracks.</p>
  23530. </remarks>
  23531. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::SetTrackEnable']/*" />
  23532. <msdn-id>bb205656</msdn-id>
  23533. <unmanaged>HRESULT ID3DXAnimationController::SetTrackEnable([In] unsigned int Track,[In] BOOL Enable)</unmanaged>
  23534. <unmanaged-short>ID3DXAnimationController::SetTrackEnable</unmanaged-short>
  23535. </member>
  23536. <member name="M:SharpDX.Direct3D9.AnimationController.SetTrackDescription(System.Int32,SharpDX.Direct3D9.TrackDescription@)">
  23537. <summary>
  23538. <p>Sets the track description.</p>
  23539. </summary>
  23540. <param name="track"><dd> <p>Identifier of the track to modify.</p> </dd></param>
  23541. <param name="descRef"><dd> <p>Description of the track.</p> </dd></param>
  23542. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23543. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::SetTrackDesc']/*" />
  23544. <msdn-id>bb205655</msdn-id>
  23545. <unmanaged>HRESULT ID3DXAnimationController::SetTrackDesc([In] unsigned int Track,[In] D3DXTRACK_DESC* pDesc)</unmanaged>
  23546. <unmanaged-short>ID3DXAnimationController::SetTrackDesc</unmanaged-short>
  23547. </member>
  23548. <member name="M:SharpDX.Direct3D9.AnimationController.GetTrackDescription(System.Int32,SharpDX.Direct3D9.TrackDescription@)">
  23549. <summary>
  23550. <p>Gets the track description.</p>
  23551. </summary>
  23552. <param name="track"><dd> <p>Track identifier.</p> </dd></param>
  23553. <param name="descRef"><dd> <p>Pointer to the track description. See <strong><see cref="T:SharpDX.Direct3D9.TrackDescription" /></strong>.</p> </dd></param>
  23554. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23555. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetTrackDesc']/*" />
  23556. <msdn-id>bb205642</msdn-id>
  23557. <unmanaged>HRESULT ID3DXAnimationController::GetTrackDesc([In] unsigned int Track,[In] D3DXTRACK_DESC* pDesc)</unmanaged>
  23558. <unmanaged-short>ID3DXAnimationController::GetTrackDesc</unmanaged-short>
  23559. </member>
  23560. <member name="M:SharpDX.Direct3D9.AnimationController.SetPriorityBlend(System.Single)">
  23561. <summary>
  23562. <p>Sets the priority blending weight used by the animation controller.</p>
  23563. </summary>
  23564. <param name="blendWeight"><dd> <p>Priority blending weight used by the animation controller.</p> </dd></param>
  23565. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  23566. <remarks>
  23567. <p>The blend weight is used to blend high and low priority tracks together.</p>
  23568. </remarks>
  23569. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::SetPriorityBlend']/*" />
  23570. <msdn-id>bb205653</msdn-id>
  23571. <unmanaged>HRESULT ID3DXAnimationController::SetPriorityBlend([In] float BlendWeight)</unmanaged>
  23572. <unmanaged-short>ID3DXAnimationController::SetPriorityBlend</unmanaged-short>
  23573. </member>
  23574. <member name="M:SharpDX.Direct3D9.AnimationController.GetPriorityBlend">
  23575. <summary>
  23576. <p>Gets the current priority blending weight used by the animation controller.</p>
  23577. </summary>
  23578. <returns><p>Returns the current priority blending weight.</p></returns>
  23579. <remarks>
  23580. <p>The priority blending weight is used to blend high and low priority tracks together.</p>
  23581. </remarks>
  23582. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetPriorityBlend']/*" />
  23583. <msdn-id>bb205639</msdn-id>
  23584. <unmanaged>float ID3DXAnimationController::GetPriorityBlend()</unmanaged>
  23585. <unmanaged-short>ID3DXAnimationController::GetPriorityBlend</unmanaged-short>
  23586. </member>
  23587. <member name="M:SharpDX.Direct3D9.AnimationController.KeyTrackSpeed(System.Int32,System.Single,System.Double,System.Double,SharpDX.Direct3D9.TransitionType)">
  23588. <summary>
  23589. <p>Sets an event key that changes the rate of play of an animation track.</p>
  23590. </summary>
  23591. <param name="track"><dd> <p>Identifier of the track to modify.</p> </dd></param>
  23592. <param name="newSpeed"><dd> <p>New speed of the animation track.</p> </dd></param>
  23593. <param name="startTime"><dd> <p>Global time key. Specifies the global time when the change will take place.</p> </dd></param>
  23594. <param name="duration"><dd> <p>Transition time, which specifies how long the smooth transition will take to complete.</p> </dd></param>
  23595. <param name="transition"><dd> <p>Specifies the transition type used for transitioning between speeds. See <strong><see cref="T:SharpDX.Direct3D9.TransitionType" /></strong>.</p> </dd></param>
  23596. <returns><p>Event handle to the priority blend event. <strong><c>null</c></strong> is returned if one or more of the input parameters is invalid, or no free event is available.</p></returns>
  23597. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::KeyTrackSpeed']/*" />
  23598. <msdn-id>bb205648</msdn-id>
  23599. <unmanaged>unsigned int ID3DXAnimationController::KeyTrackSpeed([In] unsigned int Track,[In] float NewSpeed,[In] double StartTime,[In] double Duration,[In] D3DXTRANSITION_TYPE Transition)</unmanaged>
  23600. <unmanaged-short>ID3DXAnimationController::KeyTrackSpeed</unmanaged-short>
  23601. </member>
  23602. <member name="M:SharpDX.Direct3D9.AnimationController.KeyTrackWeight(System.Int32,System.Single,System.Double,System.Double,SharpDX.Direct3D9.TransitionType)">
  23603. <summary>
  23604. <p>Sets an event key that changes the weight of an animation track. The weight is used as a multiplier when combining multiple tracks together.</p>
  23605. </summary>
  23606. <param name="track"><dd> <p>Identifier of the track to modify.</p> </dd></param>
  23607. <param name="newWeight"><dd> <p>New weight of the track.</p> </dd></param>
  23608. <param name="startTime"><dd> <p>Global time key. Specifies the global time when the change will take place.</p> </dd></param>
  23609. <param name="duration"><dd> <p>Transition time, which specifies how long the smooth transition will take to complete.</p> </dd></param>
  23610. <param name="transition"><dd> <p>Specifies the transition type used for transitioning between weights. See <strong><see cref="T:SharpDX.Direct3D9.TransitionType" /></strong>.</p> </dd></param>
  23611. <returns><p>Event handle to the priority blend event. <strong><c>null</c></strong> is returned if one or more of the input parameters is invalid, or no free event is available.</p></returns>
  23612. <remarks>
  23613. <p>The weight is used like a multiplier to determine how much of this track to blend together with other tracks.</p>
  23614. </remarks>
  23615. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::KeyTrackWeight']/*" />
  23616. <msdn-id>bb205649</msdn-id>
  23617. <unmanaged>unsigned int ID3DXAnimationController::KeyTrackWeight([In] unsigned int Track,[In] float NewWeight,[In] double StartTime,[In] double Duration,[In] D3DXTRANSITION_TYPE Transition)</unmanaged>
  23618. <unmanaged-short>ID3DXAnimationController::KeyTrackWeight</unmanaged-short>
  23619. </member>
  23620. <member name="M:SharpDX.Direct3D9.AnimationController.KeyTrackPosition(System.Int32,System.Double,System.Double)">
  23621. <summary>
  23622. <p>Sets an event key that changes the local time of an animation track.</p>
  23623. </summary>
  23624. <param name="track"><dd> <p>Identifier of the track to modify.</p> </dd></param>
  23625. <param name="newPosition"><dd> <p>New local time of the animation track.</p> </dd></param>
  23626. <param name="startTime"><dd> <p>Global time key. Specifies the global time when the change will take place.</p> </dd></param>
  23627. <returns><p>Event handle to the priority blend event. <strong><c>null</c></strong> is returned if Track is invalid, or if no free event is available.</p></returns>
  23628. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::KeyTrackPosition']/*" />
  23629. <msdn-id>bb205647</msdn-id>
  23630. <unmanaged>unsigned int ID3DXAnimationController::KeyTrackPosition([In] unsigned int Track,[In] double NewPosition,[In] double StartTime)</unmanaged>
  23631. <unmanaged-short>ID3DXAnimationController::KeyTrackPosition</unmanaged-short>
  23632. </member>
  23633. <member name="M:SharpDX.Direct3D9.AnimationController.KeyTrackEnable(System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Double)">
  23634. <summary>
  23635. <p>Sets an event key that enables or disables an animation track.</p>
  23636. </summary>
  23637. <param name="track"><dd> <p>Identifier of the animation track to modify.</p> </dd></param>
  23638. <param name="newEnable"><dd> <p>Enable flag. Set this to <strong>TRUE</strong> to enable the animation track, or to <strong><see cref="F:SharpDX.Result.False" /></strong> to disable the track.</p> </dd></param>
  23639. <param name="startTime"><dd> <p>Global time key. Specifies the global time when the change will take place.</p> </dd></param>
  23640. <returns><p>Event handle to the priority blend event. <strong><c>null</c></strong> is returned if Track is invalid.</p></returns>
  23641. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::KeyTrackEnable']/*" />
  23642. <msdn-id>bb205646</msdn-id>
  23643. <unmanaged>unsigned int ID3DXAnimationController::KeyTrackEnable([In] unsigned int Track,[In] BOOL NewEnable,[In] double StartTime)</unmanaged>
  23644. <unmanaged-short>ID3DXAnimationController::KeyTrackEnable</unmanaged-short>
  23645. </member>
  23646. <member name="M:SharpDX.Direct3D9.AnimationController.KeyPriorityBlend(System.Single,System.Double,System.Double,SharpDX.Direct3D9.TransitionType)">
  23647. <summary>
  23648. <p>Sets blending event keys for the specified animation track.</p>
  23649. </summary>
  23650. <param name="newBlendWeight"><dd> <p>Number between 0 and 1 that is used to blend tracks together.</p> </dd></param>
  23651. <param name="startTime"><dd> <p>Global time to start the blend.</p> </dd></param>
  23652. <param name="duration"><dd> <p>Global time duration of the blend.</p> </dd></param>
  23653. <param name="transition"><dd> <p>Specifies the transition type used for the duration of the blend. See <strong><see cref="T:SharpDX.Direct3D9.TransitionType" /></strong>.</p> </dd></param>
  23654. <returns><p>Event handle to the priority blend event. <strong><c>null</c></strong> is returned if one or more of the input parameters is invalid, or no free event is available.</p></returns>
  23655. <remarks>
  23656. <p>The animation controller blends in three phases: low priority tracks are blended first, high priority tracks are blended second, and then the results of both are blended.</p>
  23657. </remarks>
  23658. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::KeyPriorityBlend']/*" />
  23659. <msdn-id>bb205645</msdn-id>
  23660. <unmanaged>unsigned int ID3DXAnimationController::KeyPriorityBlend([In] float NewBlendWeight,[In] double StartTime,[In] double Duration,[In] D3DXTRANSITION_TYPE Transition)</unmanaged>
  23661. <unmanaged-short>ID3DXAnimationController::KeyPriorityBlend</unmanaged-short>
  23662. </member>
  23663. <member name="M:SharpDX.Direct3D9.AnimationController.UnkeyEvent(System.Int32)">
  23664. <summary>
  23665. <p>Removes a specified event from an animation track, preventing the execution of the event.</p>
  23666. </summary>
  23667. <param name="hEvent"><dd> <p>Event handle to the event to be removed from the animation track.</p> </dd></param>
  23668. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  23669. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::UnkeyEvent']/*" />
  23670. <msdn-id>bb205663</msdn-id>
  23671. <unmanaged>HRESULT ID3DXAnimationController::UnkeyEvent([In] unsigned int hEvent)</unmanaged>
  23672. <unmanaged-short>ID3DXAnimationController::UnkeyEvent</unmanaged-short>
  23673. </member>
  23674. <member name="M:SharpDX.Direct3D9.AnimationController.UnkeyAllTrackEvents(System.Int32)">
  23675. <summary>
  23676. <p>Removes all events from a specified animation track.</p>
  23677. </summary>
  23678. <param name="track"><dd> <p>Identifier of the track on which all events should be removed.</p> </dd></param>
  23679. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  23680. <remarks>
  23681. <p>This method prevents the execution of all events previously scheduled on the track, and discards all data associated with those events.</p>
  23682. </remarks>
  23683. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::UnkeyAllTrackEvents']/*" />
  23684. <msdn-id>bb205662</msdn-id>
  23685. <unmanaged>HRESULT ID3DXAnimationController::UnkeyAllTrackEvents([In] unsigned int Track)</unmanaged>
  23686. <unmanaged-short>ID3DXAnimationController::UnkeyAllTrackEvents</unmanaged-short>
  23687. </member>
  23688. <member name="M:SharpDX.Direct3D9.AnimationController.UnkeyAllPriorityBlends">
  23689. <summary>
  23690. <p>Removes all scheduled priority blend events from the animation controller.</p>
  23691. </summary>
  23692. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  23693. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::UnkeyAllPriorityBlends']/*" />
  23694. <msdn-id>bb205661</msdn-id>
  23695. <unmanaged>HRESULT ID3DXAnimationController::UnkeyAllPriorityBlends()</unmanaged>
  23696. <unmanaged-short>ID3DXAnimationController::UnkeyAllPriorityBlends</unmanaged-short>
  23697. </member>
  23698. <member name="M:SharpDX.Direct3D9.AnimationController.GetCurrentTrackEvent(System.Int32,SharpDX.Direct3D9.EventType)">
  23699. <summary>
  23700. <p>Returns an event handle to the event currently running on the specified animation track.</p>
  23701. </summary>
  23702. <param name="track"><dd> <p>Track identifier.</p> </dd></param>
  23703. <param name="eventType"><dd> <p>Type of event to query.</p> </dd></param>
  23704. <returns><p>Event handle to the event currently running on the specified track. <strong><c>null</c></strong> is returned if no event is running on the specified track.</p></returns>
  23705. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetCurrentTrackEvent']/*" />
  23706. <msdn-id>bb205632</msdn-id>
  23707. <unmanaged>unsigned int ID3DXAnimationController::GetCurrentTrackEvent([In] unsigned int Track,[In] D3DXEVENT_TYPE EventType)</unmanaged>
  23708. <unmanaged-short>ID3DXAnimationController::GetCurrentTrackEvent</unmanaged-short>
  23709. </member>
  23710. <member name="M:SharpDX.Direct3D9.AnimationController.GetCurrentPriorityBlend">
  23711. <summary>
  23712. <p>Returns an event handle to a priority blend event that is currently running.</p>
  23713. </summary>
  23714. <returns><p>Event handle to the currently running priority blend event. <strong><c>null</c></strong> is returned if no priority blend event is currently running.</p></returns>
  23715. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetCurrentPriorityBlend']/*" />
  23716. <msdn-id>bb205631</msdn-id>
  23717. <unmanaged>unsigned int ID3DXAnimationController::GetCurrentPriorityBlend()</unmanaged>
  23718. <unmanaged-short>ID3DXAnimationController::GetCurrentPriorityBlend</unmanaged-short>
  23719. </member>
  23720. <member name="M:SharpDX.Direct3D9.AnimationController.GetUpcomingTrackEvent(System.Int32,System.Int32)">
  23721. <summary>
  23722. <p>Returns an event handle to the next event scheduled to occur after a specified event on an animation track.</p>
  23723. </summary>
  23724. <param name="track"><dd> <p>Track identifier.</p> </dd></param>
  23725. <param name="hEvent"><dd> <p>Event handle to a specified event after which to search for a following event. If set to <strong><c>null</c></strong>, then the method will return the next scheduled event.</p> </dd></param>
  23726. <returns><p>Event handle to the next event scheduled to run on the specified track. <strong><c>null</c></strong> is returned if no new event is scheduled.</p></returns>
  23727. <remarks>
  23728. <p>This method can be used iteratively to locate a desired event by repeatedly passing in <strong><c>null</c></strong> for hEvent.</p><p><strong>Note</strong>??Do not iterate further after the method has returned <strong><c>null</c></strong>.</p>
  23729. </remarks>
  23730. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetUpcomingTrackEvent']/*" />
  23731. <msdn-id>bb205644</msdn-id>
  23732. <unmanaged>unsigned int ID3DXAnimationController::GetUpcomingTrackEvent([In] unsigned int Track,[In] unsigned int hEvent)</unmanaged>
  23733. <unmanaged-short>ID3DXAnimationController::GetUpcomingTrackEvent</unmanaged-short>
  23734. </member>
  23735. <member name="M:SharpDX.Direct3D9.AnimationController.GetUpcomingPriorityBlend(System.Int32)">
  23736. <summary>
  23737. <p>Returns an event handle to the next priority blend event scheduled to occur after a specified event.</p>
  23738. </summary>
  23739. <param name="hEvent"><dd> <p>Event handle to a specified event after which to search for a following priority blend event. If set to <strong><c>null</c></strong>, then the method will return the next scheduled priority blend event.</p> </dd></param>
  23740. <returns><p>Event handle to the next scheduled priority blend event. <strong><c>null</c></strong> is returned if no new priority blend event is scheduled.</p></returns>
  23741. <remarks>
  23742. <p>This method can be used iteratively to locate a desired priority blend event by repeatedly passing in <strong><c>null</c></strong> for hEvent.</p><p><strong>Note</strong>??Do not iterate further after the method has returned <strong><c>null</c></strong>.</p>
  23743. </remarks>
  23744. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetUpcomingPriorityBlend']/*" />
  23745. <msdn-id>bb205643</msdn-id>
  23746. <unmanaged>unsigned int ID3DXAnimationController::GetUpcomingPriorityBlend([In] unsigned int hEvent)</unmanaged>
  23747. <unmanaged-short>ID3DXAnimationController::GetUpcomingPriorityBlend</unmanaged-short>
  23748. </member>
  23749. <member name="M:SharpDX.Direct3D9.AnimationController.ValidateEvent(System.Int32)">
  23750. <summary>
  23751. <p>Checks whether a specified event handle is valid and the animation event has not yet completed.</p>
  23752. </summary>
  23753. <param name="hEvent"><dd> <p>Event handle to an animation event.</p> </dd></param>
  23754. <returns><p>Returns <see cref="F:SharpDX.Result.Ok" /> if the event handle is valid and the event has not yet completed.</p><p>Returns E_FAIL if the event handle is invalid and/or the event has completed.</p></returns>
  23755. <remarks>
  23756. <p>The method will indicate that an event handle is valid even if the event is running but has not yet completed.</p>
  23757. </remarks>
  23758. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::ValidateEvent']/*" />
  23759. <msdn-id>bb205665</msdn-id>
  23760. <unmanaged>HRESULT ID3DXAnimationController::ValidateEvent([In] unsigned int hEvent)</unmanaged>
  23761. <unmanaged-short>ID3DXAnimationController::ValidateEvent</unmanaged-short>
  23762. </member>
  23763. <member name="M:SharpDX.Direct3D9.AnimationController.GetEventDescription(System.Int32,SharpDX.Direct3D9.EventDescription@)">
  23764. <summary>
  23765. <p>Gets a description of a specified animation event.</p>
  23766. </summary>
  23767. <param name="hEvent"><dd> <p>Event handle to an animation event to describe.</p> </dd></param>
  23768. <param name="descRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.EventDescription" /></strong> structure that contains a description of the animation event.</p> </dd></param>
  23769. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  23770. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::GetEventDesc']/*" />
  23771. <msdn-id>bb205633</msdn-id>
  23772. <unmanaged>HRESULT ID3DXAnimationController::GetEventDesc([In] unsigned int hEvent,[In] D3DXEVENT_DESC* pDesc)</unmanaged>
  23773. <unmanaged-short>ID3DXAnimationController::GetEventDesc</unmanaged-short>
  23774. </member>
  23775. <member name="M:SharpDX.Direct3D9.AnimationController.CloneAnimationController(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.AnimationController@)">
  23776. <summary>
  23777. <p>Clones, or copies, an animation controller.</p>
  23778. </summary>
  23779. <param name="maxNumAnimationOutputs"><dd> <p>Maximum number of animation outputs the controller can support.</p> </dd></param>
  23780. <param name="maxNumAnimationSets"><dd> <p>Maximum number of animation sets the controller can support.</p> </dd></param>
  23781. <param name="maxNumTracks"><dd> <p>Maximum number of tracks the controller can support.</p> </dd></param>
  23782. <param name="maxNumEvents"><dd> <p>Maximum number of events the controller can support.</p> </dd></param>
  23783. <param name="animControllerOut"><dd> <p>Address of a reference to the cloned <strong><see cref="T:SharpDX.Direct3D9.AnimationController" /></strong> animation controller.</p> </dd></param>
  23784. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  23785. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationController::CloneAnimationController']/*" />
  23786. <msdn-id>bb205628</msdn-id>
  23787. <unmanaged>HRESULT ID3DXAnimationController::CloneAnimationController([In] unsigned int MaxNumAnimationOutputs,[In] unsigned int MaxNumAnimationSets,[In] unsigned int MaxNumTracks,[In] unsigned int MaxNumEvents,[In] ID3DXAnimationController** ppAnimController)</unmanaged>
  23788. <unmanaged-short>ID3DXAnimationController::CloneAnimationController</unmanaged-short>
  23789. </member>
  23790. <member name="T:SharpDX.Direct3D9.AnimationSet">
  23791. <summary>
  23792. <p>This interface encapsulates the minimum functionality required of an animation set by an animation controller. Advanced users might want to implement this interface themselves to suit their specialized needs; for most users, however, the derived <strong><see cref="T:SharpDX.Direct3D9.CompressedAnimationSet" /></strong> and <strong><see cref="T:SharpDX.Direct3D9.KeyframedAnimationSet" /></strong> interfaces should suffice.</p>
  23793. </summary>
  23794. <remarks>
  23795. <p>An animation set consists of animations for many nodes for the same animation.</p><p>The LPD3DXANIMATIONSET type is defined as a reference to this interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.AnimationSet" /> <see cref="T:SharpDX.Direct3D9.AnimationSet" />;
  23796. typedef interface <see cref="T:SharpDX.Direct3D9.AnimationSet" /> *LPD3DXANIMATIONSET;
  23797. </pre>
  23798. </remarks>
  23799. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet']/*" />
  23800. <msdn-id>bb205667</msdn-id>
  23801. <unmanaged>ID3DXAnimationSet</unmanaged>
  23802. <unmanaged-short>ID3DXAnimationSet</unmanaged-short>
  23803. </member>
  23804. <member name="M:SharpDX.Direct3D9.AnimationSet.#ctor(System.IntPtr)">
  23805. <summary>
  23806. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.AnimationSet"/> class.
  23807. </summary>
  23808. <param name="nativePtr">The native pointer.</param>
  23809. </member>
  23810. <member name="M:SharpDX.Direct3D9.AnimationSet.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.AnimationSet">
  23811. <summary>
  23812. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.AnimationSet"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  23813. </summary>
  23814. <param name="nativePointer">The native pointer.</param>
  23815. <returns>
  23816. The result of the conversion.
  23817. </returns>
  23818. </member>
  23819. <member name="P:SharpDX.Direct3D9.AnimationSet.Name">
  23820. <summary>
  23821. <p>Gets the animation set name.</p>
  23822. </summary>
  23823. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetName']/*" />
  23824. <msdn-id>bb205671</msdn-id>
  23825. <unmanaged>GetName</unmanaged>
  23826. <unmanaged-short>GetName</unmanaged-short>
  23827. <unmanaged>const char* ID3DXAnimationSet::GetName()</unmanaged>
  23828. </member>
  23829. <member name="P:SharpDX.Direct3D9.AnimationSet.Period">
  23830. <summary>
  23831. <p>Gets the period of the animation set.</p>
  23832. </summary>
  23833. <remarks>
  23834. <p>The period is the range of time that the animation key frames are valid. For looping animations, this is the period of the loop. The time units that the key frames are specified in (for example, seconds) is determined by the application. </p>
  23835. </remarks>
  23836. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetPeriod']/*" />
  23837. <msdn-id>bb205673</msdn-id>
  23838. <unmanaged>GetPeriod</unmanaged>
  23839. <unmanaged-short>GetPeriod</unmanaged-short>
  23840. <unmanaged>double ID3DXAnimationSet::GetPeriod()</unmanaged>
  23841. </member>
  23842. <member name="P:SharpDX.Direct3D9.AnimationSet.NumAnimations">
  23843. <summary>
  23844. <p>Gets the number of animations in the animation set.</p>
  23845. </summary>
  23846. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetNumAnimations']/*" />
  23847. <msdn-id>bb205672</msdn-id>
  23848. <unmanaged>GetNumAnimations</unmanaged>
  23849. <unmanaged-short>GetNumAnimations</unmanaged-short>
  23850. <unmanaged>unsigned int ID3DXAnimationSet::GetNumAnimations()</unmanaged>
  23851. </member>
  23852. <member name="M:SharpDX.Direct3D9.AnimationSet.GetName">
  23853. <summary>
  23854. <p>Gets the animation set name.</p>
  23855. </summary>
  23856. <returns><p>Name of the animation set.</p></returns>
  23857. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetName']/*" />
  23858. <msdn-id>bb205671</msdn-id>
  23859. <unmanaged>const char* ID3DXAnimationSet::GetName()</unmanaged>
  23860. <unmanaged-short>ID3DXAnimationSet::GetName</unmanaged-short>
  23861. </member>
  23862. <member name="M:SharpDX.Direct3D9.AnimationSet.GetPeriod">
  23863. <summary>
  23864. <p>Gets the period of the animation set.</p>
  23865. </summary>
  23866. <returns><p>Period of the animation set.</p></returns>
  23867. <remarks>
  23868. <p>The period is the range of time that the animation key frames are valid. For looping animations, this is the period of the loop. The time units that the key frames are specified in (for example, seconds) is determined by the application. </p>
  23869. </remarks>
  23870. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetPeriod']/*" />
  23871. <msdn-id>bb205673</msdn-id>
  23872. <unmanaged>double ID3DXAnimationSet::GetPeriod()</unmanaged>
  23873. <unmanaged-short>ID3DXAnimationSet::GetPeriod</unmanaged-short>
  23874. </member>
  23875. <member name="M:SharpDX.Direct3D9.AnimationSet.GetPeriodicPosition(System.Double)">
  23876. <summary>
  23877. <p>Returns time position in the local timeframe of an animation set.</p>
  23878. </summary>
  23879. <param name="position"><dd> <p>Local time of the animation set.</p> </dd></param>
  23880. <returns><p>Time position as measured in the timeframe of the animation set. This value will be bounded by the period of the animation set.</p></returns>
  23881. <remarks>
  23882. <p>The time position returned by this method can be used as the PeriodicPosition parameter of <strong><see cref="M:SharpDX.Direct3D9.AnimationSet.GetSRT(System.Double,System.Int32,SharpDX.Mathematics.Interop.RawVector3@,SharpDX.Mathematics.Interop.RawQuaternion@,SharpDX.Mathematics.Interop.RawVector3@)" /></strong>.</p>
  23883. </remarks>
  23884. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetPeriodicPosition']/*" />
  23885. <msdn-id>bb205674</msdn-id>
  23886. <unmanaged>double ID3DXAnimationSet::GetPeriodicPosition([In] double Position)</unmanaged>
  23887. <unmanaged-short>ID3DXAnimationSet::GetPeriodicPosition</unmanaged-short>
  23888. </member>
  23889. <member name="M:SharpDX.Direct3D9.AnimationSet.GetNumAnimations">
  23890. <summary>
  23891. <p>Gets the number of animations in the animation set.</p>
  23892. </summary>
  23893. <returns><p>Number of animations in the animation set.</p></returns>
  23894. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetNumAnimations']/*" />
  23895. <msdn-id>bb205672</msdn-id>
  23896. <unmanaged>unsigned int ID3DXAnimationSet::GetNumAnimations()</unmanaged>
  23897. <unmanaged-short>ID3DXAnimationSet::GetNumAnimations</unmanaged-short>
  23898. </member>
  23899. <member name="M:SharpDX.Direct3D9.AnimationSet.GetAnimationNameByIndex(System.Int32,System.String)">
  23900. <summary>
  23901. <p>Gets the name of an animation, given its index.</p>
  23902. </summary>
  23903. <param name="index"><dd> <p>Index of the animation.</p> </dd></param>
  23904. <param name="nameOut"><dd> <p>Address of a reference to a string that receives the animation name.</p> </dd></param>
  23905. <returns><p>The return values of this method are implemented by an application programmer.In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>.</p></returns>
  23906. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetAnimationNameByIndex']/*" />
  23907. <msdn-id>bb205669</msdn-id>
  23908. <unmanaged>HRESULT ID3DXAnimationSet::GetAnimationNameByIndex([In] unsigned int Index,[In] const char** ppName)</unmanaged>
  23909. <unmanaged-short>ID3DXAnimationSet::GetAnimationNameByIndex</unmanaged-short>
  23910. </member>
  23911. <member name="M:SharpDX.Direct3D9.AnimationSet.GetAnimationIndexByName(System.String,System.Int32)">
  23912. <summary>
  23913. <p>Gets the index of an animation, given its name.</p>
  23914. </summary>
  23915. <param name="nameRef"><dd> <p>Name of the animation.</p> </dd></param>
  23916. <param name="indexRef"><dd> <p>Pointer to the animation index.</p> </dd></param>
  23917. <returns><p>The return values of this method are implemented by an application programmer.In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>.</p></returns>
  23918. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetAnimationIndexByName']/*" />
  23919. <msdn-id>bb205668</msdn-id>
  23920. <unmanaged>HRESULT ID3DXAnimationSet::GetAnimationIndexByName([In] const char* pName,[In] unsigned int* pIndex)</unmanaged>
  23921. <unmanaged-short>ID3DXAnimationSet::GetAnimationIndexByName</unmanaged-short>
  23922. </member>
  23923. <member name="M:SharpDX.Direct3D9.AnimationSet.GetSRT(System.Double,System.Int32,SharpDX.Mathematics.Interop.RawVector3@,SharpDX.Mathematics.Interop.RawQuaternion@,SharpDX.Mathematics.Interop.RawVector3@)">
  23924. <summary>
  23925. <p>Gets the scale, rotation, and translation values of the animation set.</p>
  23926. </summary>
  23927. <param name="periodicPosition"><dd> <p>Position of the animation set. The position can be obtained by calling <strong><see cref="M:SharpDX.Direct3D9.AnimationSet.GetPeriodicPosition(System.Double)" /></strong>.</p> </dd></param>
  23928. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  23929. <param name="scaleRef"><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> vector that describes the scale of the animation set.</p> </dd></param>
  23930. <param name="rotationRef"><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Mathematics.Interop.RawQuaternion" /></strong> quaternion that describes the rotation of the animation set.</p> </dd></param>
  23931. <param name="translationRef"><dd> <p>Pointer to the <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> vector that describes the translation of the animation set.</p> </dd></param>
  23932. <returns><p>The return values of this method are implemented by an application programmer.In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>.</p></returns>
  23933. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetSRT']/*" />
  23934. <msdn-id>bb205675</msdn-id>
  23935. <unmanaged>HRESULT ID3DXAnimationSet::GetSRT([In] double PeriodicPosition,[In] unsigned int Animation,[Out] D3DXVECTOR3* pScale,[Out] D3DXQUATERNION* pRotation,[Out] D3DXVECTOR3* pTranslation)</unmanaged>
  23936. <unmanaged-short>ID3DXAnimationSet::GetSRT</unmanaged-short>
  23937. </member>
  23938. <member name="M:SharpDX.Direct3D9.AnimationSet.GetCallback(System.Double,System.Int32,System.Double@,System.IntPtr)">
  23939. <summary>
  23940. <p>Gets information about a specific callback in the animation set.</p>
  23941. </summary>
  23942. <param name="position"><dd> <p>Position from which to find callbacks.</p> </dd></param>
  23943. <param name="flags"><dd> <p>Callback search flags. This parameter can be set to a combination of one or more flags from <strong><see cref="T:SharpDX.Direct3D9.CallbackSearchFlags" /></strong>.</p> </dd></param>
  23944. <param name="callbackPositionRef"><dd> <p>Pointer to the position of the callback.</p> </dd></param>
  23945. <param name="callbackDataOut"><dd> <p>Address of the callback data reference.</p> </dd></param>
  23946. <returns><p>The return values of this method are implemented by an application programmer.In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>.</p></returns>
  23947. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAnimationSet::GetCallback']/*" />
  23948. <msdn-id>bb205670</msdn-id>
  23949. <unmanaged>HRESULT ID3DXAnimationSet::GetCallback([In] double Position,[In] unsigned int Flags,[Out] double* pCallbackPosition,[In] void** ppCallbackData)</unmanaged>
  23950. <unmanaged-short>ID3DXAnimationSet::GetCallback</unmanaged-short>
  23951. </member>
  23952. <member name="T:SharpDX.Direct3D9.BaseMesh">
  23953. <summary>
  23954. <p>Locks a vertex buffer and obtains a reference to the vertex buffer memory.</p>
  23955. </summary>
  23956. <remarks>
  23957. <p>When working with vertex buffers, you are allowed to make multiple lock calls; however, you must ensure that the number of lock calls match the number of unlock calls. DrawPrimitive calls will not succeed with any outstanding lock count on any currently set vertex buffer.</p>
  23958. </remarks>
  23959. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh']/*" />
  23960. <msdn-id>bb205749</msdn-id>
  23961. <unmanaged>ID3DXBaseMesh</unmanaged>
  23962. <unmanaged-short>ID3DXBaseMesh</unmanaged-short>
  23963. </member>
  23964. <member name="M:SharpDX.Direct3D9.BaseMesh.#ctor(System.IntPtr)">
  23965. <summary>
  23966. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.BaseMesh"/> class.
  23967. </summary>
  23968. <param name="nativePtr">The native pointer.</param>
  23969. </member>
  23970. <member name="M:SharpDX.Direct3D9.BaseMesh.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.BaseMesh">
  23971. <summary>
  23972. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.BaseMesh"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  23973. </summary>
  23974. <param name="nativePointer">The native pointer.</param>
  23975. <returns>
  23976. The result of the conversion.
  23977. </returns>
  23978. </member>
  23979. <member name="P:SharpDX.Direct3D9.BaseMesh.FVF">
  23980. <summary>
  23981. <p>Gets the fixed function vertex value.</p>
  23982. </summary>
  23983. <remarks>
  23984. <p>This method can return 0 if the vertex format cannot be mapped directly to an FVF code. This will occur for a mesh created from a vertex declaration that doesn't have the same order and elements supported by the FVF codes.</p>
  23985. </remarks>
  23986. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetFVF']/*" />
  23987. <msdn-id>bb205741</msdn-id>
  23988. <unmanaged>GetFVF</unmanaged>
  23989. <unmanaged-short>GetFVF</unmanaged-short>
  23990. <unmanaged>unsigned int ID3DXBaseMesh::GetFVF()</unmanaged>
  23991. </member>
  23992. <member name="P:SharpDX.Direct3D9.BaseMesh.NumBytesPerVertex">
  23993. <summary>
  23994. <p>Gets the number of bytes per vertex.</p>
  23995. </summary>
  23996. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetNumBytesPerVertex']/*" />
  23997. <msdn-id>bb205743</msdn-id>
  23998. <unmanaged>GetNumBytesPerVertex</unmanaged>
  23999. <unmanaged-short>GetNumBytesPerVertex</unmanaged-short>
  24000. <unmanaged>unsigned int ID3DXBaseMesh::GetNumBytesPerVertex()</unmanaged>
  24001. </member>
  24002. <member name="P:SharpDX.Direct3D9.BaseMesh.Options">
  24003. <summary>
  24004. <p>Retrieves the mesh options enabled for this mesh at creation time.</p>
  24005. </summary>
  24006. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetOptions']/*" />
  24007. <msdn-id>bb205746</msdn-id>
  24008. <unmanaged>GetOptions</unmanaged>
  24009. <unmanaged-short>GetOptions</unmanaged-short>
  24010. <unmanaged>unsigned int ID3DXBaseMesh::GetOptions()</unmanaged>
  24011. </member>
  24012. <member name="P:SharpDX.Direct3D9.BaseMesh.Device">
  24013. <summary>
  24014. <p>Retrieves the device associated with the mesh.</p>
  24015. </summary>
  24016. <remarks>
  24017. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Be sure to call <strong><see cref="T:SharpDX.ComObject" /></strong> when you are done using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface or you will have a memory leak.</p>
  24018. </remarks>
  24019. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetDevice']/*" />
  24020. <msdn-id>bb205740</msdn-id>
  24021. <unmanaged>GetDevice</unmanaged>
  24022. <unmanaged-short>GetDevice</unmanaged-short>
  24023. <unmanaged>HRESULT ID3DXBaseMesh::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  24024. </member>
  24025. <member name="P:SharpDX.Direct3D9.BaseMesh.VertexBuffer">
  24026. <summary>
  24027. <p>Retrieves the vertex buffer associated with the mesh.</p>
  24028. </summary>
  24029. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetVertexBuffer']/*" />
  24030. <msdn-id>bb205747</msdn-id>
  24031. <unmanaged>GetVertexBuffer</unmanaged>
  24032. <unmanaged-short>GetVertexBuffer</unmanaged-short>
  24033. <unmanaged>HRESULT ID3DXBaseMesh::GetVertexBuffer([Out] IDirect3DVertexBuffer9** ppVB)</unmanaged>
  24034. </member>
  24035. <member name="P:SharpDX.Direct3D9.BaseMesh.IndexBuffer">
  24036. <summary>
  24037. <p>Retrieves the data in an index buffer.</p>
  24038. </summary>
  24039. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetIndexBuffer']/*" />
  24040. <msdn-id>bb205742</msdn-id>
  24041. <unmanaged>GetIndexBuffer</unmanaged>
  24042. <unmanaged-short>GetIndexBuffer</unmanaged-short>
  24043. <unmanaged>HRESULT ID3DXBaseMesh::GetIndexBuffer([Out] IDirect3DIndexBuffer9** ppIB)</unmanaged>
  24044. </member>
  24045. <member name="M:SharpDX.Direct3D9.BaseMesh.DrawSubset(System.Int32)">
  24046. <summary>
  24047. <p>Draws a subset of a mesh.</p>
  24048. </summary>
  24049. <param name="attribId"><dd> <p> DWORD that 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>
  24050. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24051. <remarks>
  24052. <p>The subset that is specified by AttribId will be rendered by the <strong><see cref="M:SharpDX.Direct3D9.Device.DrawIndexedPrimitive(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" /></strong> method, using the <see cref="F:SharpDX.Direct3D9.PrimitiveType.TriangleList" /> primitive type, so an index buffer must be properly initialized.</p><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 (<em>AttribId</em>) when drawing the frame.</p>
  24053. </remarks>
  24054. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::DrawSubset']/*" />
  24055. <msdn-id>bb205736</msdn-id>
  24056. <unmanaged>HRESULT ID3DXBaseMesh::DrawSubset([In] unsigned int AttribId)</unmanaged>
  24057. <unmanaged-short>ID3DXBaseMesh::DrawSubset</unmanaged-short>
  24058. </member>
  24059. <member name="M:SharpDX.Direct3D9.BaseMesh.GetNumFaces">
  24060. <summary>
  24061. <p>Retrieves the number of faces in the mesh.</p>
  24062. </summary>
  24063. <returns><p>Returns the number of faces in the mesh.</p></returns>
  24064. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetNumFaces']/*" />
  24065. <msdn-id>bb205744</msdn-id>
  24066. <unmanaged>unsigned int ID3DXBaseMesh::GetNumFaces()</unmanaged>
  24067. <unmanaged-short>ID3DXBaseMesh::GetNumFaces</unmanaged-short>
  24068. </member>
  24069. <member name="M:SharpDX.Direct3D9.BaseMesh.GetNumVertices">
  24070. <summary>
  24071. <p>Retrieves the number of vertices in the mesh.</p>
  24072. </summary>
  24073. <returns><p>Returns the number of vertices in the mesh.</p></returns>
  24074. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetNumVertices']/*" />
  24075. <msdn-id>bb205745</msdn-id>
  24076. <unmanaged>unsigned int ID3DXBaseMesh::GetNumVertices()</unmanaged>
  24077. <unmanaged-short>ID3DXBaseMesh::GetNumVertices</unmanaged-short>
  24078. </member>
  24079. <member name="M:SharpDX.Direct3D9.BaseMesh.GetFVF">
  24080. <summary>
  24081. <p>Gets the fixed function vertex value.</p>
  24082. </summary>
  24083. <returns><p>Returns the flexible vertex format (FVF) codes.</p></returns>
  24084. <remarks>
  24085. <p>This method can return 0 if the vertex format cannot be mapped directly to an FVF code. This will occur for a mesh created from a vertex declaration that doesn't have the same order and elements supported by the FVF codes.</p>
  24086. </remarks>
  24087. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetFVF']/*" />
  24088. <msdn-id>bb205741</msdn-id>
  24089. <unmanaged>unsigned int ID3DXBaseMesh::GetFVF()</unmanaged>
  24090. <unmanaged-short>ID3DXBaseMesh::GetFVF</unmanaged-short>
  24091. </member>
  24092. <member name="M:SharpDX.Direct3D9.BaseMesh.GetDeclaration(SharpDX.Direct3D9.VertexElement)">
  24093. <summary>
  24094. <p>Retrieves a declaration describing the vertices in the mesh.</p>
  24095. </summary>
  24096. <param name="declaration"><dd> <p>Array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements describing the vertex format of the mesh vertices. The upper limit of this declarator array is <strong><see cref="F:SharpDX.Direct3D9.VertexFormatDeclaratorCount.Max" /></strong>. The vertex element array ends with the <strong>D3DDECL_END</strong> macro. </p> </dd></param>
  24097. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24098. <remarks>
  24099. <p>The array of elements includes the <strong>D3DDECL_END</strong> macro, which ends the declaration.</p>
  24100. </remarks>
  24101. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetDeclaration']/*" />
  24102. <msdn-id>bb205739</msdn-id>
  24103. <unmanaged>HRESULT ID3DXBaseMesh::GetDeclaration([In] D3DVERTEXELEMENT9* Declaration)</unmanaged>
  24104. <unmanaged-short>ID3DXBaseMesh::GetDeclaration</unmanaged-short>
  24105. </member>
  24106. <member name="M:SharpDX.Direct3D9.BaseMesh.GetNumBytesPerVertex">
  24107. <summary>
  24108. <p>Gets the number of bytes per vertex.</p>
  24109. </summary>
  24110. <returns><p>Returns the number of bytes per vertex.</p></returns>
  24111. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetNumBytesPerVertex']/*" />
  24112. <msdn-id>bb205743</msdn-id>
  24113. <unmanaged>unsigned int ID3DXBaseMesh::GetNumBytesPerVertex()</unmanaged>
  24114. <unmanaged-short>ID3DXBaseMesh::GetNumBytesPerVertex</unmanaged-short>
  24115. </member>
  24116. <member name="M:SharpDX.Direct3D9.BaseMesh.GetOptions">
  24117. <summary>
  24118. <p>Retrieves the mesh options enabled for this mesh at creation time.</p>
  24119. </summary>
  24120. <returns><p>Returns a combination of one or more of the following flags, indicating the options enabled for this mesh at creation time.</p><table> <tr><th>Value</th><th>Description</th></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.Use32Bit" /></td><td>Use 32-bit indices.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.DoNotClip" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Usage.DoNotClip" /> usage flag for vertex and index buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.Dynamic" /></td><td>Equivalent to specifying both <see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferDynamic" /> and <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferDynamic" />.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.RTPatches" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Usage.RTPatches" /> usage flag for vertex and index buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.NPatches" /></td><td>Specifying this flag causes the vertex and index buffer of the mesh to be created with <see cref="F:SharpDX.Direct3D9.Usage.NPatches" /> flag. This is required if the mesh object is to be rendered using N-Patch enhancement.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.Managed" /></td><td>Equivalent to specifying both <see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferManaged" /> and <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferManaged" />.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.Points" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Usage.Points" /> usage flag for vertex and index buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferDynamic" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /> usage flag for index buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferManaged" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Pool.Managed" /> memory class for index buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferSystemMemory" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /> memory class for index buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferWriteOnly" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Usage.WriteOnly" /> usage flag for index buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.SystemMemory" /></td><td>Equivalent to specifying both <see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferSystemMemory" /> and <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferSystemMemory" />.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferDynamic" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /> usage flag for vertex buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferManaged" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Pool.Managed" /> memory class for vertex buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferSystemMemory" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Pool.SystemMemory" /> memory class for vertex buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferWriteOnly" /></td><td>Use the <see cref="F:SharpDX.Direct3D9.Usage.WriteOnly" /> usage flag for vertex buffers.</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.MeshFlags.WriteOnly" /></td><td>Equivalent to specifying both <see cref="F:SharpDX.Direct3D9.MeshFlags.VertexBufferWriteOnly" /> and <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferWriteOnly" />.</td></tr> </table><p>?</p></returns>
  24121. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetOptions']/*" />
  24122. <msdn-id>bb205746</msdn-id>
  24123. <unmanaged>unsigned int ID3DXBaseMesh::GetOptions()</unmanaged>
  24124. <unmanaged-short>ID3DXBaseMesh::GetOptions</unmanaged-short>
  24125. </member>
  24126. <member name="M:SharpDX.Direct3D9.BaseMesh.GetDevice(SharpDX.Direct3D9.Device@)">
  24127. <summary>
  24128. <p>Retrieves the device associated with the mesh.</p>
  24129. </summary>
  24130. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the Direct3D device object associated with the mesh.</p> </dd></param>
  24131. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24132. <remarks>
  24133. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Be sure to call <strong><see cref="T:SharpDX.ComObject" /></strong> when you are done using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface or you will have a memory leak.</p>
  24134. </remarks>
  24135. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetDevice']/*" />
  24136. <msdn-id>bb205740</msdn-id>
  24137. <unmanaged>HRESULT ID3DXBaseMesh::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  24138. <unmanaged-short>ID3DXBaseMesh::GetDevice</unmanaged-short>
  24139. </member>
  24140. <member name="M:SharpDX.Direct3D9.BaseMesh.CloneMeshFVF(System.Int32,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)">
  24141. <summary>
  24142. <p>Clones a mesh using a flexible vertex format (FVF) code.</p>
  24143. </summary>
  24144. <param name="options"><dd> <p>A combination of one or more <strong>D3DXMESH</strong> flags specifying creation options for the mesh.</p> </dd></param>
  24145. <param name="fvf"><dd> <p>Combination of FVF codes, which specifies the vertex format for the vertices in the output mesh. For the values of the codes, see <see cref="T:SharpDX.Direct3D9.VertexFormat" />.</p> </dd></param>
  24146. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface representing the device object associated with the mesh.</p> </dd></param>
  24147. <param name="cloneMeshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the cloned mesh.</p> </dd></param>
  24148. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  24149. <remarks>
  24150. <p><strong><see cref="M:SharpDX.Direct3D9.BaseMesh.CloneMeshFVF(System.Int32,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)" /></strong> is used to reformat and change the vertex data layout. This is done by creating a new mesh object. For example, use it to to add space for normals, texture coordinates, colors, weights, etc. that were not present before. </p><p> <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.UpdateSemantics(SharpDX.Direct3D9.VertexElement)" /></strong> updates the vertex declaration with different semantic information without changing the layout of the vertex buffer. This method does not modify the contents of the vertex buffer. For example, use it to relabel a 3D texture coordinate as a binormal or tangent or vice versa.</p>
  24151. </remarks>
  24152. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::CloneMeshFVF']/*" />
  24153. <msdn-id>bb205733</msdn-id>
  24154. <unmanaged>HRESULT ID3DXBaseMesh::CloneMeshFVF([In] unsigned int Options,[In] unsigned int FVF,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXMesh** ppCloneMesh)</unmanaged>
  24155. <unmanaged-short>ID3DXBaseMesh::CloneMeshFVF</unmanaged-short>
  24156. </member>
  24157. <member name="M:SharpDX.Direct3D9.BaseMesh.CloneMesh(System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)">
  24158. <summary>
  24159. <p>Clones a mesh using a declarator.</p>
  24160. </summary>
  24161. <param name="options"><dd> <p>A combination of one or more <strong>D3DXMESH</strong> flags specifying creation options for the mesh.</p> </dd></param>
  24162. <param name="declarationRef"><dd> <p>An array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements, which specify the vertex format for the vertices in the output mesh.</p> </dd></param>
  24163. <param name="d3DDeviceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the device object associated with the mesh.</p> </dd></param>
  24164. <param name="cloneMeshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the cloned mesh.</p> </dd></param>
  24165. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  24166. <remarks>
  24167. <p><strong><see cref="M:SharpDX.Direct3D9.BaseMesh.CloneMesh(System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)" /></strong> is used to reformat and change the vertex data layout. This is done by creating a new mesh object. For example, use it to add space for normals, texture coordinates, colors, weights, etc. that were not present before. </p><p> <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.UpdateSemantics(SharpDX.Direct3D9.VertexElement)" /></strong> updates the vertex declaration with different semantic information without changing the layout of the vertex buffer. This method does not modify the contents of the vertex buffer. For example, use it to relabel a 3D texture coordinate as a binormal or tangent or vice versa.</p>
  24168. </remarks>
  24169. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::CloneMesh']/*" />
  24170. <msdn-id>bb205732</msdn-id>
  24171. <unmanaged>HRESULT ID3DXBaseMesh::CloneMesh([In] unsigned int Options,[In] const D3DVERTEXELEMENT9* pDeclaration,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXMesh** ppCloneMesh)</unmanaged>
  24172. <unmanaged-short>ID3DXBaseMesh::CloneMesh</unmanaged-short>
  24173. </member>
  24174. <member name="M:SharpDX.Direct3D9.BaseMesh.GetVertexBuffer(SharpDX.Direct3D9.VertexBuffer@)">
  24175. <summary>
  24176. <p>Retrieves the vertex buffer associated with the mesh.</p>
  24177. </summary>
  24178. <param name="vBOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong> interface, representing the vertex buffer object associated with the mesh.</p> </dd></param>
  24179. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24180. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetVertexBuffer']/*" />
  24181. <msdn-id>bb205747</msdn-id>
  24182. <unmanaged>HRESULT ID3DXBaseMesh::GetVertexBuffer([Out] IDirect3DVertexBuffer9** ppVB)</unmanaged>
  24183. <unmanaged-short>ID3DXBaseMesh::GetVertexBuffer</unmanaged-short>
  24184. </member>
  24185. <member name="M:SharpDX.Direct3D9.BaseMesh.GetIndexBuffer(SharpDX.Direct3D9.IndexBuffer@)">
  24186. <summary>
  24187. <p>Retrieves the data in an index buffer.</p>
  24188. </summary>
  24189. <param name="iBOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface, representing the index buffer object associated with the mesh.</p> </dd></param>
  24190. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24191. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetIndexBuffer']/*" />
  24192. <msdn-id>bb205742</msdn-id>
  24193. <unmanaged>HRESULT ID3DXBaseMesh::GetIndexBuffer([Out] IDirect3DIndexBuffer9** ppIB)</unmanaged>
  24194. <unmanaged-short>ID3DXBaseMesh::GetIndexBuffer</unmanaged-short>
  24195. </member>
  24196. <member name="M:SharpDX.Direct3D9.BaseMesh.LockVertexBuffer(System.Int32,System.IntPtr)">
  24197. <summary>
  24198. <p>Locks a vertex buffer and obtains a reference to the vertex buffer memory.</p>
  24199. </summary>
  24200. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoOverwrite" /></li> </ul> <p>For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />.</p> </dd></param>
  24201. <param name="dataOut"><dd> <p>VOID* reference to a buffer containing the vertex data.</p> </dd></param>
  24202. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24203. <remarks>
  24204. <p>When working with vertex buffers, you are allowed to make multiple lock calls; however, you must ensure that the number of lock calls match the number of unlock calls. DrawPrimitive calls will not succeed with any outstanding lock count on any currently set vertex buffer.</p>
  24205. </remarks>
  24206. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::LockVertexBuffer']/*" />
  24207. <msdn-id>bb205749</msdn-id>
  24208. <unmanaged>HRESULT ID3DXBaseMesh::LockVertexBuffer([In] unsigned int Flags,[In] void** ppData)</unmanaged>
  24209. <unmanaged-short>ID3DXBaseMesh::LockVertexBuffer</unmanaged-short>
  24210. </member>
  24211. <member name="M:SharpDX.Direct3D9.BaseMesh.UnlockVertexBuffer">
  24212. <summary>
  24213. <p>Unlocks a vertex buffer.</p>
  24214. </summary>
  24215. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24216. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::UnlockVertexBuffer']/*" />
  24217. <msdn-id>bb205751</msdn-id>
  24218. <unmanaged>HRESULT ID3DXBaseMesh::UnlockVertexBuffer()</unmanaged>
  24219. <unmanaged-short>ID3DXBaseMesh::UnlockVertexBuffer</unmanaged-short>
  24220. </member>
  24221. <member name="M:SharpDX.Direct3D9.BaseMesh.LockIndexBuffer(System.Int32,System.IntPtr)">
  24222. <summary>
  24223. <p>Locks an index buffer and obtains a reference to the index buffer memory.</p>
  24224. </summary>
  24225. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> </ul> <p>For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />.</p> </dd></param>
  24226. <param name="dataOut"><dd> <p>VOID* reference to a buffer containing the index data. The count of indices in this buffer will be equal to <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GetNumFaces" /></strong> * 3.</p> </dd></param>
  24227. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24228. <remarks>
  24229. <p>When working with index buffers, you are allowed to make multiple lock calls. However, you must ensure that the number of lock calls match the number of unlock calls. DrawPrimitive calls will not succeed with any outstanding lock count on any currently set index buffer.</p>
  24230. </remarks>
  24231. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::LockIndexBuffer']/*" />
  24232. <msdn-id>bb205748</msdn-id>
  24233. <unmanaged>HRESULT ID3DXBaseMesh::LockIndexBuffer([In] unsigned int Flags,[In] void** ppData)</unmanaged>
  24234. <unmanaged-short>ID3DXBaseMesh::LockIndexBuffer</unmanaged-short>
  24235. </member>
  24236. <member name="M:SharpDX.Direct3D9.BaseMesh.UnlockIndexBuffer">
  24237. <summary>
  24238. <p>Unlocks an index buffer.</p>
  24239. </summary>
  24240. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24241. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::UnlockIndexBuffer']/*" />
  24242. <msdn-id>bb205750</msdn-id>
  24243. <unmanaged>HRESULT ID3DXBaseMesh::UnlockIndexBuffer()</unmanaged>
  24244. <unmanaged-short>ID3DXBaseMesh::UnlockIndexBuffer</unmanaged-short>
  24245. </member>
  24246. <member name="M:SharpDX.Direct3D9.BaseMesh.GetAttributeTable(SharpDX.Direct3D9.AttributeRange@,System.Int32@)">
  24247. <summary>
  24248. <p>Retrieves either an attribute table for a mesh, or the number of entries stored in an attribute table for a mesh.</p>
  24249. </summary>
  24250. <param name="attribTableRef"><dd> <p>Pointer to an array of <strong><see cref="T:SharpDX.Direct3D9.AttributeRange" /></strong> 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>
  24251. <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>
  24252. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24253. <remarks>
  24254. <p>An attribute table is created by <strong><see cref="M:SharpDX.Direct3D9.Mesh.Optimize(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.Mesh@)" /></strong> and passing <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.AttributeSort" /> for the Flags parameter.</p><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>
  24255. </remarks>
  24256. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GetAttributeTable']/*" />
  24257. <msdn-id>bb205738</msdn-id>
  24258. <unmanaged>HRESULT ID3DXBaseMesh::GetAttributeTable([Out] D3DXATTRIBUTERANGE* pAttribTable,[Out] unsigned int* pAttribTableSize)</unmanaged>
  24259. <unmanaged-short>ID3DXBaseMesh::GetAttributeTable</unmanaged-short>
  24260. </member>
  24261. <member name="M:SharpDX.Direct3D9.BaseMesh.ConvertPointRepsToAdjacency(System.Int32,System.Int32)">
  24262. <summary>
  24263. <p>Converts point representative data to mesh adjacency information.</p>
  24264. </summary>
  24265. <param name="pRepRef"><dd> <p>Pointer to an array of one DWORD per vertex of the mesh that contains point representative data. This parameter is optional. Supplying a <strong><c>null</c></strong> value will cause this parameter to be interpreted as an "identity" array.</p> </dd></param>
  24266. <param name="adjacencyRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the mesh. The number of bytes in this array must be at least 3 * <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GetNumFaces" /></strong> * sizeof(DWORD).</p> </dd></param>
  24267. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  24268. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::ConvertPointRepsToAdjacency']/*" />
  24269. <msdn-id>bb205735</msdn-id>
  24270. <unmanaged>HRESULT ID3DXBaseMesh::ConvertPointRepsToAdjacency([In] const unsigned int* pPRep,[In] unsigned int* pAdjacency)</unmanaged>
  24271. <unmanaged-short>ID3DXBaseMesh::ConvertPointRepsToAdjacency</unmanaged-short>
  24272. </member>
  24273. <member name="M:SharpDX.Direct3D9.BaseMesh.ConvertAdjacencyToPointReps(System.Int32,System.Int32)">
  24274. <summary>
  24275. <p>Converts mesh adjacency information to an array of point representatives.</p>
  24276. </summary>
  24277. <param name="adjacencyRef"><dd> <p>Pointer to an array of three DWORDs per face that specify the three neighbors for each face in the mesh. The number of bytes in this array must be at least 3 * <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GetNumFaces" /></strong> * sizeof(DWORD).</p> </dd></param>
  24278. <param name="pRepRef"><dd> <p>Pointer to an array of one DWORD per vertex of the mesh that will be filled with point representative data.</p> </dd></param>
  24279. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  24280. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::ConvertAdjacencyToPointReps']/*" />
  24281. <msdn-id>bb205734</msdn-id>
  24282. <unmanaged>HRESULT ID3DXBaseMesh::ConvertAdjacencyToPointReps([In] const unsigned int* pAdjacency,[In] unsigned int* pPRep)</unmanaged>
  24283. <unmanaged-short>ID3DXBaseMesh::ConvertAdjacencyToPointReps</unmanaged-short>
  24284. </member>
  24285. <member name="M:SharpDX.Direct3D9.BaseMesh.GenerateAdjacency(System.Single,System.Int32)">
  24286. <summary>
  24287. <p>Generate a list of mesh edges, as well as a list of faces that share each edge.</p>
  24288. </summary>
  24289. <param name="epsilon"><dd> <p>Specifies that vertices that differ in position by less than epsilon should be treated as coincident.</p> </dd></param>
  24290. <param name="adjacencyRef"><dd> <p>Pointer to an array of three DWORDs per face to be filled with the indices of adjacent faces. The number of bytes in this array must be at least 3 * <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GetNumFaces" /></strong> * sizeof(DWORD).</p> </dd></param>
  24291. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  24292. <remarks>
  24293. <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>
  24294. </remarks>
  24295. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::GenerateAdjacency']/*" />
  24296. <msdn-id>bb205737</msdn-id>
  24297. <unmanaged>HRESULT ID3DXBaseMesh::GenerateAdjacency([In] float Epsilon,[In] unsigned int* pAdjacency)</unmanaged>
  24298. <unmanaged-short>ID3DXBaseMesh::GenerateAdjacency</unmanaged-short>
  24299. </member>
  24300. <member name="M:SharpDX.Direct3D9.BaseMesh.UpdateSemantics(SharpDX.Direct3D9.VertexElement)">
  24301. <summary>
  24302. <p>This method allows the user to change the mesh declaration without changing the data layout of the vertex buffer. The call is valid only if the old and new declaration formats have the same vertex size.</p>
  24303. </summary>
  24304. <param name="declaration"><dd> <p>An array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements, describing the vertex format of the mesh vertices. The upper limit of this declarator array is <strong><see cref="F:SharpDX.Direct3D9.VertexFormatDeclaratorCount.Max" /></strong>.</p> </dd></param>
  24305. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24306. <remarks>
  24307. <p> <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.CloneMesh(System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)" /></strong> is used to reformat and change the vertex data layout. For example, use it to to add space for normals, texture coordinates, colors, weights, etc. that were not present before.</p><p><strong><see cref="M:SharpDX.Direct3D9.BaseMesh.UpdateSemantics(SharpDX.Direct3D9.VertexElement)" /></strong> is a method for updating the vertex declaration with different semantic information, without changing the layout of the vertex buffer. For example, use it to relabel a 3D texture coordinate as a binormal or tangent, or vice versa.</p>
  24308. </remarks>
  24309. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXBaseMesh::UpdateSemantics']/*" />
  24310. <msdn-id>bb205752</msdn-id>
  24311. <unmanaged>HRESULT ID3DXBaseMesh::UpdateSemantics([In] D3DVERTEXELEMENT9* Declaration)</unmanaged>
  24312. <unmanaged-short>ID3DXBaseMesh::UpdateSemantics</unmanaged-short>
  24313. </member>
  24314. <member name="T:SharpDX.Direct3D9.CompressedAnimationSet">
  24315. <summary>
  24316. <p>An application uses the methods of this interface to implement a key frame animation set stored in a compressed data format.</p>
  24317. </summary>
  24318. <remarks>
  24319. <p>Create a compressed-format key frame animation set with <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateCompressedAnimationSet(System.String,System.Double,SharpDX.Direct3D9.PlaybackType,SharpDX.Direct3D.Blob,System.Int32,SharpDX.Direct3D9.CallbackKey,SharpDX.Direct3D9.CompressedAnimationSet@)" /></strong>.</p><p>The LPD3DXCOMPRESSEDANIMATIONSET type is defined as a reference to this interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.CompressedAnimationSet" /> <see cref="T:SharpDX.Direct3D9.CompressedAnimationSet" />;
  24320. typedef interface <see cref="T:SharpDX.Direct3D9.CompressedAnimationSet" /> *LPD3DXCOMPRESSEDANIMATIONSET;
  24321. </pre>
  24322. </remarks>
  24323. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXCompressedAnimationSet']/*" />
  24324. <msdn-id>bb205756</msdn-id>
  24325. <unmanaged>ID3DXCompressedAnimationSet</unmanaged>
  24326. <unmanaged-short>ID3DXCompressedAnimationSet</unmanaged-short>
  24327. </member>
  24328. <member name="M:SharpDX.Direct3D9.CompressedAnimationSet.#ctor(System.IntPtr)">
  24329. <summary>
  24330. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.CompressedAnimationSet"/> class.
  24331. </summary>
  24332. <param name="nativePtr">The native pointer.</param>
  24333. </member>
  24334. <member name="M:SharpDX.Direct3D9.CompressedAnimationSet.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.CompressedAnimationSet">
  24335. <summary>
  24336. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.CompressedAnimationSet"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  24337. </summary>
  24338. <param name="nativePointer">The native pointer.</param>
  24339. <returns>
  24340. The result of the conversion.
  24341. </returns>
  24342. </member>
  24343. <member name="P:SharpDX.Direct3D9.CompressedAnimationSet.PlaybackType">
  24344. <summary>
  24345. <p>Gets the type of the animation set playback loop.</p>
  24346. </summary>
  24347. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXCompressedAnimationSet::GetPlaybackType']/*" />
  24348. <msdn-id>bb205760</msdn-id>
  24349. <unmanaged>GetPlaybackType</unmanaged>
  24350. <unmanaged-short>GetPlaybackType</unmanaged-short>
  24351. <unmanaged>D3DXPLAYBACK_TYPE ID3DXCompressedAnimationSet::GetPlaybackType()</unmanaged>
  24352. </member>
  24353. <member name="P:SharpDX.Direct3D9.CompressedAnimationSet.SourceTicksPerSecond">
  24354. <summary>
  24355. <p>Gets the number of animation key frame ticks that occur per second.</p>
  24356. </summary>
  24357. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXCompressedAnimationSet::GetSourceTicksPerSecond']/*" />
  24358. <msdn-id>bb205761</msdn-id>
  24359. <unmanaged>GetSourceTicksPerSecond</unmanaged>
  24360. <unmanaged-short>GetSourceTicksPerSecond</unmanaged-short>
  24361. <unmanaged>double ID3DXCompressedAnimationSet::GetSourceTicksPerSecond()</unmanaged>
  24362. </member>
  24363. <member name="P:SharpDX.Direct3D9.CompressedAnimationSet.CompressedData">
  24364. <summary>
  24365. <p>Gets the data buffer that stores compressed key frame animation data.</p>
  24366. </summary>
  24367. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXCompressedAnimationSet::GetCompressedData']/*" />
  24368. <msdn-id>bb205758</msdn-id>
  24369. <unmanaged>GetCompressedData</unmanaged>
  24370. <unmanaged-short>GetCompressedData</unmanaged-short>
  24371. <unmanaged>HRESULT ID3DXCompressedAnimationSet::GetCompressedData([Out] ID3DXBuffer** ppCompressedData)</unmanaged>
  24372. </member>
  24373. <member name="P:SharpDX.Direct3D9.CompressedAnimationSet.NumCallbackKeys">
  24374. <summary>
  24375. <p>Gets the number of callback keys in the animation set.</p>
  24376. </summary>
  24377. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXCompressedAnimationSet::GetNumCallbackKeys']/*" />
  24378. <msdn-id>bb205759</msdn-id>
  24379. <unmanaged>GetNumCallbackKeys</unmanaged>
  24380. <unmanaged-short>GetNumCallbackKeys</unmanaged-short>
  24381. <unmanaged>unsigned int ID3DXCompressedAnimationSet::GetNumCallbackKeys()</unmanaged>
  24382. </member>
  24383. <member name="M:SharpDX.Direct3D9.CompressedAnimationSet.GetPlaybackType">
  24384. <summary>
  24385. <p>Gets the type of the animation set playback loop.</p>
  24386. </summary>
  24387. <returns><p>Type of the animation set playback loop. See <strong><see cref="T:SharpDX.Direct3D9.PlaybackType" /></strong>.</p></returns>
  24388. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXCompressedAnimationSet::GetPlaybackType']/*" />
  24389. <msdn-id>bb205760</msdn-id>
  24390. <unmanaged>D3DXPLAYBACK_TYPE ID3DXCompressedAnimationSet::GetPlaybackType()</unmanaged>
  24391. <unmanaged-short>ID3DXCompressedAnimationSet::GetPlaybackType</unmanaged-short>
  24392. </member>
  24393. <member name="M:SharpDX.Direct3D9.CompressedAnimationSet.GetSourceTicksPerSecond">
  24394. <summary>
  24395. <p>Gets the number of animation key frame ticks that occur per second.</p>
  24396. </summary>
  24397. <returns><p>Number of animation key frame ticks that occur per second.</p></returns>
  24398. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXCompressedAnimationSet::GetSourceTicksPerSecond']/*" />
  24399. <msdn-id>bb205761</msdn-id>
  24400. <unmanaged>double ID3DXCompressedAnimationSet::GetSourceTicksPerSecond()</unmanaged>
  24401. <unmanaged-short>ID3DXCompressedAnimationSet::GetSourceTicksPerSecond</unmanaged-short>
  24402. </member>
  24403. <member name="M:SharpDX.Direct3D9.CompressedAnimationSet.GetCompressedData(SharpDX.Direct3D.Blob@)">
  24404. <summary>
  24405. <p>Gets the data buffer that stores compressed key frame animation data.</p>
  24406. </summary>
  24407. <param name="compressedDataOut"><dd> <p>Address of a reference to the <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> data buffer that receives compressed key frame animation data.</p> </dd></param>
  24408. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24409. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXCompressedAnimationSet::GetCompressedData']/*" />
  24410. <msdn-id>bb205758</msdn-id>
  24411. <unmanaged>HRESULT ID3DXCompressedAnimationSet::GetCompressedData([Out] ID3DXBuffer** ppCompressedData)</unmanaged>
  24412. <unmanaged-short>ID3DXCompressedAnimationSet::GetCompressedData</unmanaged-short>
  24413. </member>
  24414. <member name="M:SharpDX.Direct3D9.CompressedAnimationSet.GetNumCallbackKeys">
  24415. <summary>
  24416. <p>Gets the number of callback keys in the animation set.</p>
  24417. </summary>
  24418. <returns><p>Number of callback keys in the animation set.</p></returns>
  24419. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXCompressedAnimationSet::GetNumCallbackKeys']/*" />
  24420. <msdn-id>bb205759</msdn-id>
  24421. <unmanaged>unsigned int ID3DXCompressedAnimationSet::GetNumCallbackKeys()</unmanaged>
  24422. <unmanaged-short>ID3DXCompressedAnimationSet::GetNumCallbackKeys</unmanaged-short>
  24423. </member>
  24424. <member name="M:SharpDX.Direct3D9.CompressedAnimationSet.GetCallbackKeys(SharpDX.Direct3D9.CallbackKey)">
  24425. <summary>
  24426. <p>Fills an array with callback key data used for key frame animation.</p>
  24427. </summary>
  24428. <param name="callbackKeysRef"><dd> <p>Pointer to a user-allocated array of <strong><see cref="T:SharpDX.Direct3D9.CallbackKey" /></strong> structures that the method is to fill with callback data.</p> </dd></param>
  24429. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  24430. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXCompressedAnimationSet::GetCallbackKeys']/*" />
  24431. <msdn-id>bb205757</msdn-id>
  24432. <unmanaged>HRESULT ID3DXCompressedAnimationSet::GetCallbackKeys([In] D3DXKEY_CALLBACK* pCallbackKeys)</unmanaged>
  24433. <unmanaged-short>ID3DXCompressedAnimationSet::GetCallbackKeys</unmanaged-short>
  24434. </member>
  24435. <member name="T:SharpDX.Direct3D9.EffectStateManager">
  24436. <summary>
  24437. <p> This is a user-implemented interface that allows a user to set the device state from an effect. Each of the methods in this interface must be implemented by the user and will then be used as callbacks to the application when either of the following occur: </p><ul> <li>An effect calls <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>Effect state is dynamically updated by calling the appropriate state change API. See individual method pages for details.</li> </ul><p>When an application uses the state manager to implement custom callbacks, an effect no longer automatically saves and restores state when calling <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.EndPass" /></strong>. Because the application has implemented a custom save and restore behavior in the callbacks, this automatic behavior is bypassed.</p>
  24438. </summary>
  24439. <remarks>
  24440. <p>A user creates an <see cref="T:SharpDX.Direct3D9.EffectStateManager" /> interface by implementing a class that derives from this interface, and implementing all the interface methods. Once the interface is created, you can get or set the state manager within an effect using <strong><see cref="M:SharpDX.Direct3D9.Effect.GetStateManager(SharpDX.Direct3D9.EffectStateManager@)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Effect.SetStateManager(SharpDX.Direct3D9.EffectStateManager)" /></strong>.</p><p>The LPD3DXEFFECTSTATEMANAGER type is defined as a reference to this interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.EffectStateManager" /> <see cref="T:SharpDX.Direct3D9.EffectStateManager" />;
  24441. typedef interface <see cref="T:SharpDX.Direct3D9.EffectStateManager" /> *LPD3DXEFFECTSTATEMANAGER;
  24442. </pre>
  24443. </remarks>
  24444. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager']/*" />
  24445. <msdn-id>bb205795</msdn-id>
  24446. <unmanaged>ID3DXEffectStateManager</unmanaged>
  24447. <unmanaged-short>ID3DXEffectStateManager</unmanaged-short>
  24448. </member>
  24449. <member name="M:SharpDX.Direct3D9.EffectStateManager.#ctor(System.IntPtr)">
  24450. <summary>
  24451. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.EffectStateManager"/> class.
  24452. </summary>
  24453. <param name="nativePtr">The native pointer.</param>
  24454. </member>
  24455. <member name="M:SharpDX.Direct3D9.EffectStateManager.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.EffectStateManager">
  24456. <summary>
  24457. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.EffectStateManager"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  24458. </summary>
  24459. <param name="nativePointer">The native pointer.</param>
  24460. <returns>
  24461. The result of the conversion.
  24462. </returns>
  24463. </member>
  24464. <member name="P:SharpDX.Direct3D9.EffectStateManager.Material">
  24465. <summary>
  24466. <p>A callback function that must be implemented by a user to set material state.</p>
  24467. </summary>
  24468. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetMaterial']/*" />
  24469. <msdn-id>bb205799</msdn-id>
  24470. <unmanaged>SetMaterial</unmanaged>
  24471. <unmanaged-short>SetMaterial</unmanaged-short>
  24472. <unmanaged>HRESULT ID3DXEffectStateManager::SetMaterial([In] const D3DMATERIAL9* pMaterial)</unmanaged>
  24473. </member>
  24474. <member name="P:SharpDX.Direct3D9.EffectStateManager.NPatchMode">
  24475. <summary>
  24476. <p>A callback function that must be implemented by a user to set the number of subdivision segments for N-patches.</p>
  24477. </summary>
  24478. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetNPatchMode']/*" />
  24479. <msdn-id>bb205800</msdn-id>
  24480. <unmanaged>SetNPatchMode</unmanaged>
  24481. <unmanaged-short>SetNPatchMode</unmanaged-short>
  24482. <unmanaged>HRESULT ID3DXEffectStateManager::SetNPatchMode([In] float NumSegments)</unmanaged>
  24483. </member>
  24484. <member name="P:SharpDX.Direct3D9.EffectStateManager.VertexFormat">
  24485. <summary>
  24486. <p>A callback function that must be implemented by a user to set a FVF code.</p>
  24487. </summary>
  24488. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetFVF']/*" />
  24489. <msdn-id>bb205797</msdn-id>
  24490. <unmanaged>SetFVF</unmanaged>
  24491. <unmanaged-short>SetFVF</unmanaged-short>
  24492. <unmanaged>HRESULT ID3DXEffectStateManager::SetFVF([In] D3DFVF FVF)</unmanaged>
  24493. </member>
  24494. <member name="P:SharpDX.Direct3D9.EffectStateManager.VertexShader">
  24495. <summary>
  24496. <p>A callback function that must be implemented by a user to set a vertex shader.</p>
  24497. </summary>
  24498. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetVertexShader']/*" />
  24499. <msdn-id>bb205810</msdn-id>
  24500. <unmanaged>SetVertexShader</unmanaged>
  24501. <unmanaged-short>SetVertexShader</unmanaged-short>
  24502. <unmanaged>HRESULT ID3DXEffectStateManager::SetVertexShader([In] IDirect3DVertexShader9* pShader)</unmanaged>
  24503. </member>
  24504. <member name="P:SharpDX.Direct3D9.EffectStateManager.PixelShader">
  24505. <summary>
  24506. <p>A callback function that must be implemented by a user to set a pixel shader.</p>
  24507. </summary>
  24508. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetPixelShader']/*" />
  24509. <msdn-id>bb205801</msdn-id>
  24510. <unmanaged>SetPixelShader</unmanaged>
  24511. <unmanaged-short>SetPixelShader</unmanaged-short>
  24512. <unmanaged>HRESULT ID3DXEffectStateManager::SetPixelShader([In] IDirect3DPixelShader9* pShader)</unmanaged>
  24513. </member>
  24514. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetTransform(SharpDX.Direct3D9.TransformState,SharpDX.Mathematics.Interop.RawMatrix@)">
  24515. <summary>
  24516. <p>A callback function that must be implemented by a user to set a transform.</p>
  24517. </summary>
  24518. <param name="state"><dd> <p>The type of transform to apply the matrix to. See <strong><see cref="T:SharpDX.Direct3D9.TransformState" /></strong>.</p> </dd></param>
  24519. <param name="matrixRef"><dd> <p>A transformation matrix. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  24520. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetTransform_(System.Int32,SharpDX.Mathematics.Interop.RawMatrix@)" /></strong>) will fail.</li> </ul></returns>
  24521. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetTransform']/*" />
  24522. <msdn-id>bb205809</msdn-id>
  24523. <unmanaged>HRESULT ID3DXEffectStateManager::SetTransform([In] D3DTRANSFORMSTATETYPE State,[In] const D3DMATRIX* pMatrix)</unmanaged>
  24524. <unmanaged-short>ID3DXEffectStateManager::SetTransform</unmanaged-short>
  24525. </member>
  24526. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetMaterial(SharpDX.Direct3D9.Material@)">
  24527. <summary>
  24528. <p>A callback function that must be implemented by a user to set material state.</p>
  24529. </summary>
  24530. <param name="materialRef"><dd> <p>A reference to the material state. See <strong><see cref="T:SharpDX.Direct3D9.Material" /></strong>.</p> </dd></param>
  24531. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetMaterial(SharpDX.Direct3D9.Material@)" /></strong>) will fail.</li> </ul></returns>
  24532. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetMaterial']/*" />
  24533. <msdn-id>bb205799</msdn-id>
  24534. <unmanaged>HRESULT ID3DXEffectStateManager::SetMaterial([In] const D3DMATERIAL9* pMaterial)</unmanaged>
  24535. <unmanaged-short>ID3DXEffectStateManager::SetMaterial</unmanaged-short>
  24536. </member>
  24537. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetLight(System.Int32,SharpDX.Direct3D9.Light@)">
  24538. <summary>
  24539. <p>A callback function that must be implemented by a user to set a light.</p>
  24540. </summary>
  24541. <param name="index"><dd> <p>The zero-based index of the light. This is the same index in <strong><see cref="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)" /></strong>.</p> </dd></param>
  24542. <param name="lightRef"><dd> <p>The light object. See <strong><see cref="T:SharpDX.Direct3D9.Light" /></strong>.</p> </dd></param>
  24543. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)" /></strong>) will fail.</li> </ul></returns>
  24544. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetLight']/*" />
  24545. <msdn-id>bb205798</msdn-id>
  24546. <unmanaged>HRESULT ID3DXEffectStateManager::SetLight([In] unsigned int Index,[In] const D3DLIGHT9* pLight)</unmanaged>
  24547. <unmanaged-short>ID3DXEffectStateManager::SetLight</unmanaged-short>
  24548. </member>
  24549. <member name="M:SharpDX.Direct3D9.EffectStateManager.LightEnable(System.Int32,SharpDX.Mathematics.Interop.RawBool)">
  24550. <summary>
  24551. <p>A callback function that must be implemented by a user to enable/disable a light.</p>
  24552. </summary>
  24553. <param name="index"><dd> <p>The zero-based index of the light. This is the same index in <strong><see cref="M:SharpDX.Direct3D9.Device.SetLight(System.Int32,SharpDX.Direct3D9.Light@)" /></strong>.</p> </dd></param>
  24554. <param name="enable"><dd> <p>True to enable the light, false otherwise.</p> </dd></param>
  24555. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.EnableLight(System.Int32,SharpDX.Mathematics.Interop.RawBool)" /></strong>) will fail.</li> </ul></returns>
  24556. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::LightEnable']/*" />
  24557. <msdn-id>bb205796</msdn-id>
  24558. <unmanaged>HRESULT ID3DXEffectStateManager::LightEnable([In] unsigned int Index,[In] BOOL Enable)</unmanaged>
  24559. <unmanaged-short>ID3DXEffectStateManager::LightEnable</unmanaged-short>
  24560. </member>
  24561. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetRenderState(SharpDX.Direct3D9.RenderState,System.Int32)">
  24562. <summary>
  24563. <p>A callback function that must be implemented by a user to set render state.</p>
  24564. </summary>
  24565. <param name="state"><dd> <p>The render state to set. <strong><see cref="T:SharpDX.Direct3D9.RenderState" /></strong> </p> </dd></param>
  24566. <param name="value"><dd> <p>The render state value. See Effect States (Direct3D 9).</p> </dd></param>
  24567. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetRenderState(SharpDX.Direct3D9.RenderState,System.Boolean)" /></strong>) will fail.</li> </ul></returns>
  24568. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetRenderState']/*" />
  24569. <msdn-id>bb205805</msdn-id>
  24570. <unmanaged>HRESULT ID3DXEffectStateManager::SetRenderState([In] D3DRENDERSTATETYPE State,[In] unsigned int Value)</unmanaged>
  24571. <unmanaged-short>ID3DXEffectStateManager::SetRenderState</unmanaged-short>
  24572. </member>
  24573. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetTexture(System.Int32,SharpDX.Direct3D9.BaseTexture)">
  24574. <summary>
  24575. <p>A callback function that must be implemented by a user to set a texture.</p>
  24576. </summary>
  24577. <param name="stage"><dd> <p>The stage to which the texture is assigned. This is the index value in <strong><see cref="M:SharpDX.Direct3D9.Device.SetTexture(System.Int32,SharpDX.Direct3D9.BaseTexture)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,SharpDX.Direct3D9.TextureArgument)" /></strong>. </p> </dd></param>
  24578. <param name="textureRef"><dd> <p>A reference to the texture object. This can be any of the Direct3D texture types (cube, volume, etc.). See <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong>.</p> </dd></param>
  24579. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetTexture(System.Int32,SharpDX.Direct3D9.BaseTexture)" /></strong>) will fail.</li> </ul></returns>
  24580. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetTexture']/*" />
  24581. <msdn-id>bb205807</msdn-id>
  24582. <unmanaged>HRESULT ID3DXEffectStateManager::SetTexture([In] unsigned int Stage,[In] IDirect3DBaseTexture9* pTexture)</unmanaged>
  24583. <unmanaged-short>ID3DXEffectStateManager::SetTexture</unmanaged-short>
  24584. </member>
  24585. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,System.Int32)">
  24586. <summary>
  24587. <p>A callback function that must be implemented by a user to set the texture stage state.</p>
  24588. </summary>
  24589. <param name="stage"><dd> <p>The stage that the texture is assigned to. This is the index value in <strong><see cref="M:SharpDX.Direct3D9.Device.SetTexture(System.Int32,SharpDX.Direct3D9.BaseTexture)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,SharpDX.Direct3D9.TextureArgument)" /></strong>. </p> </dd></param>
  24590. <param name="type"><dd> <p>Defines the type of operation that a texture stage will perform. See <strong><see cref="T:SharpDX.Direct3D9.TextureStage" /></strong>. </p> </dd></param>
  24591. <param name="value"><dd> <p>Can be either an operation (<strong><see cref="T:SharpDX.Direct3D9.TextureOperation" /></strong>) or an argument value (<see cref="T:SharpDX.Direct3D9.TextureArgument" />), depending on what is chosen for Type.</p> </dd></param>
  24592. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetTextureStageState(System.Int32,SharpDX.Direct3D9.TextureStage,SharpDX.Direct3D9.TextureArgument)" /></strong>) will fail.</li> </ul></returns>
  24593. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetTextureStageState']/*" />
  24594. <msdn-id>bb205808</msdn-id>
  24595. <unmanaged>HRESULT ID3DXEffectStateManager::SetTextureStageState([In] unsigned int Stage,[In] D3DTEXTURESTAGESTATETYPE Type,[In] unsigned int Value)</unmanaged>
  24596. <unmanaged-short>ID3DXEffectStateManager::SetTextureStageState</unmanaged-short>
  24597. </member>
  24598. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,System.Int32)">
  24599. <summary>
  24600. <p>A callback function that must be implemented by a user to set a sampler.</p>
  24601. </summary>
  24602. <param name="sampler"><dd> <p>The zero-based sampler number. </p> </dd></param>
  24603. <param name="type"><dd> <p>Identifies sampler state, which can specify the filtering, addressing, or the border color. See <strong><see cref="T:SharpDX.Direct3D9.SamplerState" /></strong>.</p> </dd></param>
  24604. <param name="value"><dd> <p>A value from one of the sampler state types in Type. </p> </dd></param>
  24605. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetSamplerState(System.Int32,SharpDX.Direct3D9.SamplerState,SharpDX.Direct3D9.TextureFilter)" /></strong>) will fail.</li> </ul></returns>
  24606. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetSamplerState']/*" />
  24607. <msdn-id>bb205806</msdn-id>
  24608. <unmanaged>HRESULT ID3DXEffectStateManager::SetSamplerState([In] unsigned int Sampler,[In] D3DSAMPLERSTATETYPE Type,[In] unsigned int Value)</unmanaged>
  24609. <unmanaged-short>ID3DXEffectStateManager::SetSamplerState</unmanaged-short>
  24610. </member>
  24611. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetNPatchMode(System.Single)">
  24612. <summary>
  24613. <p>A callback function that must be implemented by a user to set the number of subdivision segments for N-patches.</p>
  24614. </summary>
  24615. <param name="numSegments"><dd> <p>Break the surface into this number of subdivisions. This is the same as the number used by <strong><see cref="M:SharpDX.Direct3D9.Device.SetNPatchMode(System.Single)" /></strong>.</p> </dd></param>
  24616. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetNPatchMode(System.Single)" /></strong>) will fail.</li> </ul></returns>
  24617. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetNPatchMode']/*" />
  24618. <msdn-id>bb205800</msdn-id>
  24619. <unmanaged>HRESULT ID3DXEffectStateManager::SetNPatchMode([In] float NumSegments)</unmanaged>
  24620. <unmanaged-short>ID3DXEffectStateManager::SetNPatchMode</unmanaged-short>
  24621. </member>
  24622. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetVertexFormat(SharpDX.Direct3D9.VertexFormat)">
  24623. <summary>
  24624. <p>A callback function that must be implemented by a user to set a FVF code.</p>
  24625. </summary>
  24626. <param name="vertexFormat"><dd> <p>The FVF constant, that determines how to interpret vertex data. See <see cref="T:SharpDX.Direct3D9.VertexFormat" />.</p> </dd></param>
  24627. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexFormat(SharpDX.Direct3D9.VertexFormat)" /></strong>) will fail.</li> </ul></returns>
  24628. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetFVF']/*" />
  24629. <msdn-id>bb205797</msdn-id>
  24630. <unmanaged>HRESULT ID3DXEffectStateManager::SetFVF([In] D3DFVF FVF)</unmanaged>
  24631. <unmanaged-short>ID3DXEffectStateManager::SetFVF</unmanaged-short>
  24632. </member>
  24633. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetVertexShader(SharpDX.Direct3D9.VertexShader)">
  24634. <summary>
  24635. <p>A callback function that must be implemented by a user to set a vertex shader.</p>
  24636. </summary>
  24637. <param name="shaderRef"><dd> <p>A reference to a vertex shader object. See <strong><see cref="T:SharpDX.Direct3D9.VertexShader" /></strong>. </p> </dd></param>
  24638. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexShader(SharpDX.Direct3D9.VertexShader)" /></strong>) will fail.</li> </ul></returns>
  24639. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetVertexShader']/*" />
  24640. <msdn-id>bb205810</msdn-id>
  24641. <unmanaged>HRESULT ID3DXEffectStateManager::SetVertexShader([In] IDirect3DVertexShader9* pShader)</unmanaged>
  24642. <unmanaged-short>ID3DXEffectStateManager::SetVertexShader</unmanaged-short>
  24643. </member>
  24644. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetVertexShaderConstantF(System.Int32,System.Single,System.Int32)">
  24645. <summary>
  24646. <p>A callback function that must be implemented by a user to set an array of vertex shader floating-point constants.</p>
  24647. </summary>
  24648. <param name="registerIndex"><dd> <p>The zero-based index of the first constant register.</p> </dd></param>
  24649. <param name="constantDataRef"><dd> <p>An array of floating-point constants.</p> </dd></param>
  24650. <param name="registerCount"><dd> <p>The number of registers in pConstantData.</p> </dd></param>
  24651. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexShaderConstantF(System.Int32,System.IntPtr,System.Int32)" /></strong>) will fail.</li> </ul></returns>
  24652. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetVertexShaderConstantF']/*" />
  24653. <msdn-id>bb205812</msdn-id>
  24654. <unmanaged>HRESULT ID3DXEffectStateManager::SetVertexShaderConstantF([In] unsigned int RegisterIndex,[In] const float* pConstantData,[In] unsigned int RegisterCount)</unmanaged>
  24655. <unmanaged-short>ID3DXEffectStateManager::SetVertexShaderConstantF</unmanaged-short>
  24656. </member>
  24657. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetVertexShaderConstantI(System.Int32,System.Int32,System.Int32)">
  24658. <summary>
  24659. <p>A callback function that must be implemented by a user to set an array of vertex shader integer constants.</p>
  24660. </summary>
  24661. <param name="registerIndex"><dd> <p>The zero-based index of the first constant register.</p> </dd></param>
  24662. <param name="constantDataRef"><dd> <p>An array of integer constants.</p> </dd></param>
  24663. <param name="registerCount"><dd> <p>The number of registers in pConstantData.</p> </dd></param>
  24664. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexShaderConstantI(System.Int32,System.IntPtr,System.Int32)" /></strong>) will fail.</li> </ul></returns>
  24665. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetVertexShaderConstantI']/*" />
  24666. <msdn-id>bb205813</msdn-id>
  24667. <unmanaged>HRESULT ID3DXEffectStateManager::SetVertexShaderConstantI([In] unsigned int RegisterIndex,[In] const int* pConstantData,[In] unsigned int RegisterCount)</unmanaged>
  24668. <unmanaged-short>ID3DXEffectStateManager::SetVertexShaderConstantI</unmanaged-short>
  24669. </member>
  24670. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetVertexShaderConstantB(System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32)">
  24671. <summary>
  24672. <p>A callback function that must be implemented by a user to set an array of vertex shader Boolean constants.</p>
  24673. </summary>
  24674. <param name="registerIndex"><dd> <p>The zero-based index of the first constant register.</p> </dd></param>
  24675. <param name="constantDataRef"><dd> <p>An array of Boolean constants.</p> </dd></param>
  24676. <param name="registerCount"><dd> <p>The number of registers in pConstantData.</p> </dd></param>
  24677. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetVertexShaderConstantB(System.Int32,System.IntPtr,System.Int32)" /></strong>) will fail.</li> </ul></returns>
  24678. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetVertexShaderConstantB']/*" />
  24679. <msdn-id>bb205811</msdn-id>
  24680. <unmanaged>HRESULT ID3DXEffectStateManager::SetVertexShaderConstantB([In] unsigned int RegisterIndex,[In] const BOOL* pConstantData,[In] unsigned int RegisterCount)</unmanaged>
  24681. <unmanaged-short>ID3DXEffectStateManager::SetVertexShaderConstantB</unmanaged-short>
  24682. </member>
  24683. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetPixelShader(SharpDX.Direct3D9.PixelShader)">
  24684. <summary>
  24685. <p>A callback function that must be implemented by a user to set a pixel shader.</p>
  24686. </summary>
  24687. <param name="shaderRef"><dd> <p>A reference to a pixel shader object. See <strong><see cref="T:SharpDX.Direct3D9.PixelShader" /></strong>. </p> </dd></param>
  24688. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetPixelShader(SharpDX.Direct3D9.PixelShader)" /></strong>) will fail.</li> </ul></returns>
  24689. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetPixelShader']/*" />
  24690. <msdn-id>bb205801</msdn-id>
  24691. <unmanaged>HRESULT ID3DXEffectStateManager::SetPixelShader([In] IDirect3DPixelShader9* pShader)</unmanaged>
  24692. <unmanaged-short>ID3DXEffectStateManager::SetPixelShader</unmanaged-short>
  24693. </member>
  24694. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetPixelShaderConstantF(System.Int32,System.Single,System.Int32)">
  24695. <summary>
  24696. <p>A callback function that must be implemented by a user to set an array of vertex shader floating-point constants.</p>
  24697. </summary>
  24698. <param name="registerIndex"><dd> <p>The zero-based index of the first constant register.</p> </dd></param>
  24699. <param name="constantDataRef"><dd> <p>An array of floating-point constants.</p> </dd></param>
  24700. <param name="registerCount"><dd> <p>The number of registers in pConstantData.</p> </dd></param>
  24701. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetPixelShaderConstantF(System.Int32,System.IntPtr,System.Int32)" /></strong>) will fail.</li> </ul></returns>
  24702. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetPixelShaderConstantF']/*" />
  24703. <msdn-id>bb205803</msdn-id>
  24704. <unmanaged>HRESULT ID3DXEffectStateManager::SetPixelShaderConstantF([In] unsigned int RegisterIndex,[In] const float* pConstantData,[In] unsigned int RegisterCount)</unmanaged>
  24705. <unmanaged-short>ID3DXEffectStateManager::SetPixelShaderConstantF</unmanaged-short>
  24706. </member>
  24707. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetPixelShaderConstantI(System.Int32,System.Int32,System.Int32)">
  24708. <summary>
  24709. <p>A callback function that must be implemented by a user to set an array of vertex shader integer constants.</p>
  24710. </summary>
  24711. <param name="registerIndex"><dd> <p>The zero-based index of the first constant register.</p> </dd></param>
  24712. <param name="constantDataRef"><dd> <p>An array of integer constants.</p> </dd></param>
  24713. <param name="registerCount"><dd> <p>The number of registers in pConstantData.</p> </dd></param>
  24714. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetPixelShaderConstantI(System.Int32,System.IntPtr,System.Int32)" /></strong>) will fail.</li> </ul></returns>
  24715. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetPixelShaderConstantI']/*" />
  24716. <msdn-id>bb205804</msdn-id>
  24717. <unmanaged>HRESULT ID3DXEffectStateManager::SetPixelShaderConstantI([In] unsigned int RegisterIndex,[In] const int* pConstantData,[In] unsigned int RegisterCount)</unmanaged>
  24718. <unmanaged-short>ID3DXEffectStateManager::SetPixelShaderConstantI</unmanaged-short>
  24719. </member>
  24720. <member name="M:SharpDX.Direct3D9.EffectStateManager.SetPixelShaderConstantB(System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32)">
  24721. <summary>
  24722. <p>A callback function that must be implemented by a user to set an array of vertex shader Boolean constants.</p>
  24723. </summary>
  24724. <param name="registerIndex"><dd> <p>The zero-based index of the first constant register.</p> </dd></param>
  24725. <param name="constantDataRef"><dd> <p>An array of Boolean constants.</p> </dd></param>
  24726. <param name="registerCount"><dd> <p>The number of registers in pConstantData.</p> </dd></param>
  24727. <returns><p>The user-implemented method should return <see cref="F:SharpDX.Result.Ok" />. If the callback fails when setting the device state, either of the following will occur:</p><ul> <li>The effect will fail during <strong><see cref="M:SharpDX.Direct3D9.Effect.BeginPass(System.Int32)" /></strong>.</li> <li>The dynamic effect state call (such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetPixelShaderConstantB(System.Int32,System.IntPtr,System.Int32)" /></strong>) will fail.</li> </ul></returns>
  24728. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXEffectStateManager::SetPixelShaderConstantB']/*" />
  24729. <msdn-id>bb205802</msdn-id>
  24730. <unmanaged>HRESULT ID3DXEffectStateManager::SetPixelShaderConstantB([In] unsigned int RegisterIndex,[In] const BOOL* pConstantData,[In] unsigned int RegisterCount)</unmanaged>
  24731. <unmanaged-short>ID3DXEffectStateManager::SetPixelShaderConstantB</unmanaged-short>
  24732. </member>
  24733. <member name="T:SharpDX.Direct3D9.IAllocateHierarchy">
  24734. <summary>
  24735. <p>This interface is implemented by the application to allocate or free frame and mesh container objects. Methods on this are called during loading and destroying frame hierarchies.</p>
  24736. </summary>
  24737. <remarks>
  24738. <p>The LPD3DXALLOCATEHIERARCHY type is defined as a reference to this interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.IAllocateHierarchy" /> <see cref="T:SharpDX.Direct3D9.IAllocateHierarchy" />;
  24739. typedef interface <see cref="T:SharpDX.Direct3D9.IAllocateHierarchy" /> *LPD3DXALLOCATEHIERARCHY;
  24740. </pre>
  24741. </remarks>
  24742. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAllocateHierarchy']/*" />
  24743. <msdn-id>bb205619</msdn-id>
  24744. <unmanaged>ID3DXAllocateHierarchy</unmanaged>
  24745. <unmanaged-short>ID3DXAllocateHierarchy</unmanaged-short>
  24746. </member>
  24747. <member name="M:SharpDX.Direct3D9.IAllocateHierarchy.#ctor(System.IntPtr)">
  24748. <summary>
  24749. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.IAllocateHierarchy"/> class.
  24750. </summary>
  24751. <param name="nativePtr">The native pointer.</param>
  24752. </member>
  24753. <member name="M:SharpDX.Direct3D9.IAllocateHierarchy.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.IAllocateHierarchy">
  24754. <summary>
  24755. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.IAllocateHierarchy"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  24756. </summary>
  24757. <param name="nativePointer">The native pointer.</param>
  24758. <returns>
  24759. The result of the conversion.
  24760. </returns>
  24761. </member>
  24762. <member name="M:SharpDX.Direct3D9.IAllocateHierarchy.CreateFrame(System.String,SharpDX.Direct3D9.Frame@)">
  24763. <summary>
  24764. <p>Requests allocation of a frame object.</p>
  24765. </summary>
  24766. <param name="name"><dd> <p>Name of the frame to be created.</p> </dd></param>
  24767. <param name="newFrameOut"><dd> <p>Returns the created frame object.</p> </dd></param>
  24768. <returns><p>The return values of this method are implemented by an application programmer. In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or D3DXERR, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  24769. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAllocateHierarchy::CreateFrame']/*" />
  24770. <msdn-id>bb205620</msdn-id>
  24771. <unmanaged>HRESULT ID3DXAllocateHierarchy::CreateFrame([In] const char* Name,[In] D3DXFRAME** ppNewFrame)</unmanaged>
  24772. <unmanaged-short>ID3DXAllocateHierarchy::CreateFrame</unmanaged-short>
  24773. </member>
  24774. <member name="M:SharpDX.Direct3D9.IAllocateHierarchy.CreateMeshContainer(System.String,SharpDX.Direct3D9.MeshData,SharpDX.Direct3D9.ExtendedMaterial@,SharpDX.Direct3D9.EffectInstance,System.Int32,System.Int32,SharpDX.Direct3D9.SkinInfo,SharpDX.Direct3D9.MeshContainer)">
  24775. <summary>
  24776. <p>Requests allocation of a mesh container object.</p>
  24777. </summary>
  24778. <param name="name"><dd> <p>Name of the mesh.</p> </dd></param>
  24779. <param name="meshDataRef"><dd> <p>Pointer to the mesh data structure. See <strong><see cref="T:SharpDX.Direct3D9.MeshData" /></strong>.</p> </dd></param>
  24780. <param name="materialsRef"><dd> <p>Array of materials used in the mesh.</p> </dd></param>
  24781. <param name="effectInstancesRef"><dd> <p>Array of effect instances used in the mesh. See <strong><see cref="T:SharpDX.Direct3D9.EffectInstance" /></strong>.</p> </dd></param>
  24782. <param name="numMaterials"><dd> <p>Number of materials in the materials array.</p> </dd></param>
  24783. <param name="adjacencyRef"><dd> <p>Adjacency array for the mesh.</p> </dd></param>
  24784. <param name="skinInfoRef"><dd> <p>Pointer to the skin mesh object if skin data is found. See <strong><see cref="T:SharpDX.Direct3D9.SkinInfo" /></strong>.</p> </dd></param>
  24785. <param name="newMeshContainerOut"><dd> <p>Returns the created mesh container. See <strong><see cref="T:SharpDX.Direct3D9.MeshContainer" /></strong>.</p> </dd></param>
  24786. <returns><p>The return values of this method are implemented by an application programmer. In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or D3DXERR, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  24787. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAllocateHierarchy::CreateMeshContainer']/*" />
  24788. <msdn-id>bb205621</msdn-id>
  24789. <unmanaged>HRESULT ID3DXAllocateHierarchy::CreateMeshContainer([In] const char* Name,[In] const D3DXMESHDATA* pMeshData,[In] const D3DXMATERIAL* pMaterials,[In] const D3DXEFFECTINSTANCE* pEffectInstances,[In] unsigned int NumMaterials,[In] const unsigned int* pAdjacency,[In] ID3DXSkinInfo* pSkinInfo,[In] D3DXMESHCONTAINER** ppNewMeshContainer)</unmanaged>
  24790. <unmanaged-short>ID3DXAllocateHierarchy::CreateMeshContainer</unmanaged-short>
  24791. </member>
  24792. <member name="M:SharpDX.Direct3D9.IAllocateHierarchy.DestroyFrame(SharpDX.Direct3D9.Frame@)">
  24793. <summary>
  24794. <p>Requests deallocation of a frame object.</p>
  24795. </summary>
  24796. <param name="frameToFreeRef"><dd> <p>Pointer to the frame to be deallocated.</p> </dd></param>
  24797. <returns><p>The return values of this method are implemented by an application programmer. In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or D3DXERR, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  24798. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAllocateHierarchy::DestroyFrame']/*" />
  24799. <msdn-id>bb205622</msdn-id>
  24800. <unmanaged>HRESULT ID3DXAllocateHierarchy::DestroyFrame([In] D3DXFRAME* pFrameToFree)</unmanaged>
  24801. <unmanaged-short>ID3DXAllocateHierarchy::DestroyFrame</unmanaged-short>
  24802. </member>
  24803. <member name="M:SharpDX.Direct3D9.IAllocateHierarchy.DestroyMeshContainer(SharpDX.Direct3D9.MeshContainer)">
  24804. <summary>
  24805. <p>Requests deallocation of a mesh container object.</p>
  24806. </summary>
  24807. <param name="meshContainerToFreeRef"><dd> <p>Pointer to the mesh container object to be deallocated.</p> </dd></param>
  24808. <returns><p>The return values of this method are implemented by an application programmer. In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or D3DXERR, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  24809. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXAllocateHierarchy::DestroyMeshContainer']/*" />
  24810. <msdn-id>bb205623</msdn-id>
  24811. <unmanaged>HRESULT ID3DXAllocateHierarchy::DestroyMeshContainer([In] D3DXMESHCONTAINER* pMeshContainerToFree)</unmanaged>
  24812. <unmanaged-short>ID3DXAllocateHierarchy::DestroyMeshContainer</unmanaged-short>
  24813. </member>
  24814. <member name="T:SharpDX.Direct3D9.ILoadUserData">
  24815. <summary>
  24816. <p>This interface is implemented by the application to save any additional user data embedded in .x files. An instance of this interface is passed to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong>, and D3DX calls the appropriate method on this interface every time the appropriate data is encountered. For example, for each frame object in the .x file, <strong><see cref="M:SharpDX.Direct3D9.ILoadUserData.LoadFrameChildData(SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.XFileData)" /></strong> is called and passed the child data. </p>
  24817. </summary>
  24818. <remarks>
  24819. <p>The LPD3DXLOADUSERDATA type is defined as a reference to this interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.ILoadUserData" /> <see cref="T:SharpDX.Direct3D9.ILoadUserData" />;
  24820. typedef interface <see cref="T:SharpDX.Direct3D9.ILoadUserData" /> *LPD3DXLOADUSERDATA;
  24821. </pre>
  24822. </remarks>
  24823. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLoadUserData']/*" />
  24824. <msdn-id>bb174034</msdn-id>
  24825. <unmanaged>ID3DXLoadUserData</unmanaged>
  24826. <unmanaged-short>ID3DXLoadUserData</unmanaged-short>
  24827. </member>
  24828. <member name="M:SharpDX.Direct3D9.ILoadUserData.#ctor(System.IntPtr)">
  24829. <summary>
  24830. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.ILoadUserData"/> class.
  24831. </summary>
  24832. <param name="nativePtr">The native pointer.</param>
  24833. </member>
  24834. <member name="M:SharpDX.Direct3D9.ILoadUserData.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.ILoadUserData">
  24835. <summary>
  24836. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.ILoadUserData"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  24837. </summary>
  24838. <param name="nativePointer">The native pointer.</param>
  24839. <returns>
  24840. The result of the conversion.
  24841. </returns>
  24842. </member>
  24843. <member name="M:SharpDX.Direct3D9.ILoadUserData.LoadTopLevelData(SharpDX.Direct3D9.XFileData)">
  24844. <summary>
  24845. <p>Load top level data from a .x file.</p>
  24846. </summary>
  24847. <param name="xofChildDataRef"><dd> <p>Pointer to a .x file data structure. This is defined in Dxfile.h.</p> </dd></param>
  24848. <returns><p>The return values of this method are implemented by an application programmer.In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or D3DXERR, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  24849. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLoadUserData::LoadTopLevelData']/*" />
  24850. <msdn-id>bb174037</msdn-id>
  24851. <unmanaged>HRESULT ID3DXLoadUserData::LoadTopLevelData([In] ID3DXFileData* pXofChildData)</unmanaged>
  24852. <unmanaged-short>ID3DXLoadUserData::LoadTopLevelData</unmanaged-short>
  24853. </member>
  24854. <member name="M:SharpDX.Direct3D9.ILoadUserData.LoadFrameChildData(SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.XFileData)">
  24855. <summary>
  24856. <p>Load frame child data from a .x file.</p>
  24857. </summary>
  24858. <param name="frameRef"><dd> <p>Pointer to a mesh container. See <strong><see cref="T:SharpDX.Direct3D9.Frame" /></strong>.</p> </dd></param>
  24859. <param name="xofChildDataRef"><dd> <p>Pointer to a .x file data structure. This is defined in Dxfile.h.</p> </dd></param>
  24860. <returns><p>The return values of this method are implemented by an application programmer.In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or D3DXERR, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error. </p></returns>
  24861. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLoadUserData::LoadFrameChildData']/*" />
  24862. <msdn-id>bb174035</msdn-id>
  24863. <unmanaged>HRESULT ID3DXLoadUserData::LoadFrameChildData([In] D3DXFRAME* pFrame,[In] ID3DXFileData* pXofChildData)</unmanaged>
  24864. <unmanaged-short>ID3DXLoadUserData::LoadFrameChildData</unmanaged-short>
  24865. </member>
  24866. <member name="M:SharpDX.Direct3D9.ILoadUserData.LoadMeshChildData(SharpDX.Direct3D9.MeshContainer,SharpDX.Direct3D9.XFileData)">
  24867. <summary>
  24868. <p>Load mesh child data from a .x file.</p>
  24869. </summary>
  24870. <param name="meshContainerRef"><dd> <p>Pointer to a mesh container. See <strong><see cref="T:SharpDX.Direct3D9.MeshContainer" /></strong>.</p> </dd></param>
  24871. <param name="xofChildDataRef"><dd> <p>Pointer to a .x file data structure. This is defined in Dxfile.h.</p> </dd></param>
  24872. <returns><p>The return values of this method are implemented by an application programmer.In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or D3DXERR, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  24873. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLoadUserData::LoadMeshChildData']/*" />
  24874. <msdn-id>bb174036</msdn-id>
  24875. <unmanaged>HRESULT ID3DXLoadUserData::LoadMeshChildData([In] D3DXMESHCONTAINER* pMeshContainer,[In] ID3DXFileData* pXofChildData)</unmanaged>
  24876. <unmanaged-short>ID3DXLoadUserData::LoadMeshChildData</unmanaged-short>
  24877. </member>
  24878. <member name="T:SharpDX.Direct3D9.Include">
  24879. <summary>
  24880. <p><see cref="T:SharpDX.Direct3D9.Include" /> is a user-implemented interface to provide callbacks for #include directives during shader compilation. Each of the methods in this interface must be implemented by the user which will then be used as callbacks to the application when one of the following occurs: </p><ul> <li>An HLSL shader that contains a #include is compiled by calling one of the <see cref="M:SharpDX.Direct3D9.D3DX9.CompileShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.String,System.String,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.ConstantTable@)" />*** functions.</li> <li>An assembly shader #include is assembled by calling any of the <see cref="M:SharpDX.Direct3D9.D3DX9.AssembleShader(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@)" />*** functions.</li> <li>An effect that contains a #include is compiled by by calling any of the <see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffect(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectPool,SharpDX.Direct3D9.Effect@,SharpDX.Direct3D.Blob@)" />*** or <see cref="M:SharpDX.Direct3D9.D3DX9.CreateEffectCompiler(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],System.IntPtr,System.Int32,SharpDX.Direct3D9.EffectCompiler,SharpDX.Direct3D.Blob@)" />*** functions.</li> </ul>
  24881. </summary>
  24882. <remarks>
  24883. <p>A user creates an <see cref="T:SharpDX.Direct3D9.Include" /> interface by implementing a class that derives from this interface, and implementing all the interface methods.</p><p>The LPD3DXINCLUDE type is defined as a reference to this interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.Include" /> <see cref="T:SharpDX.Direct3D9.Include" />;
  24884. typedef interface <see cref="T:SharpDX.Direct3D9.Include" /> *LPD3DXINCLUDE;
  24885. </pre>
  24886. </remarks>
  24887. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXInclude']/*" />
  24888. <msdn-id>bb173986</msdn-id>
  24889. <unmanaged>ID3DXInclude</unmanaged>
  24890. <unmanaged-short>ID3DXInclude</unmanaged-short>
  24891. </member>
  24892. <member name="M:SharpDX.Direct3D9.Include.Open(SharpDX.Direct3D9.IncludeType,System.String,System.IO.Stream)">
  24893. <summary>
  24894. A user-implemented method for opening and reading the contents of a shader #include file.
  24895. </summary>
  24896. <param name="type">A <see cref="!:SharpDX.D3DCompiler.IncludeType"/>-typed value that indicates the location of the #include file.</param>
  24897. <param name="fileName">Name of the #include file.</param>
  24898. <param name="parentStream">Pointer to the container that includes the #include file.</param>
  24899. <returns>Stream that is associated with fileName to be read. This reference remains valid until <see cref="!:SharpDX.D3DCompiler.Include.Close"/> is called.</returns>
  24900. <unmanaged>HRESULT Open([None] D3D_INCLUDE_TYPE IncludeType,[None] const char* pFileName,[None] LPCVOID pParentData,[None] LPCVOID* ppData,[None] UINT* pBytes)</unmanaged>
  24901. </member>
  24902. <member name="M:SharpDX.Direct3D9.Include.Close(System.IO.Stream)">
  24903. <summary>
  24904. A user-implemented method for closing a shader #include file.
  24905. </summary>
  24906. <remarks>
  24907. If <see cref="!:SharpDX.D3DCompiler.Include.Open"/> was successful, Close is guaranteed to be called before the API using the <see cref="!:SharpDX.D3DCompiler.Include"/> interface returns.
  24908. </remarks>
  24909. <param name="stream">This is a reference that was returned by the corresponding <see cref="!:SharpDX.D3DCompiler.Include.Open"/> call.</param>
  24910. <unmanaged>HRESULT Close([None] LPCVOID pData)</unmanaged>
  24911. </member>
  24912. <member name="T:SharpDX.Direct3D9.IndexBuffer">
  24913. <summary>
  24914. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.IndexBuffer" /> interface to manipulate an index buffer resource.</p>
  24915. </summary>
  24916. <remarks>
  24917. <p>The <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.Device.CreateIndexBuffer(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.IndexBuffer,System.IntPtr)" /></strong> method.</p><p>This interface inherits additional functionality from the <strong><see cref="T:SharpDX.Direct3D9.Resource" /></strong> interface.</p><p>This interface, like all COM interfaces, inherits from the <strong><see cref="T:SharpDX.ComObject" /></strong> interface.</p><p>The LPDIRECT3DINDEXBUFFER9 and PDIRECT3DINDEXBUFFER9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong> interface. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.IndexBuffer" /> *LPDIRECT3DINDEXBUFFER9, *PDIRECT3DINDEXBUFFER9;
  24918. </pre>
  24919. </remarks>
  24920. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DIndexBuffer9']/*" />
  24921. <msdn-id>bb205865</msdn-id>
  24922. <unmanaged>IDirect3DIndexBuffer9</unmanaged>
  24923. <unmanaged-short>IDirect3DIndexBuffer9</unmanaged-short>
  24924. </member>
  24925. <member name="M:SharpDX.Direct3D9.IndexBuffer.#ctor(System.IntPtr)">
  24926. <summary>
  24927. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.IndexBuffer"/> class.
  24928. </summary>
  24929. <param name="nativePtr">The native pointer.</param>
  24930. </member>
  24931. <member name="M:SharpDX.Direct3D9.IndexBuffer.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.IndexBuffer">
  24932. <summary>
  24933. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.IndexBuffer"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  24934. </summary>
  24935. <param name="nativePointer">The native pointer.</param>
  24936. <returns>
  24937. The result of the conversion.
  24938. </returns>
  24939. </member>
  24940. <member name="P:SharpDX.Direct3D9.IndexBuffer.Description">
  24941. <summary>
  24942. <p>Retrieves a description of the index buffer resource.</p>
  24943. </summary>
  24944. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DIndexBuffer9::GetDesc']/*" />
  24945. <msdn-id>bb205866</msdn-id>
  24946. <unmanaged>GetDesc</unmanaged>
  24947. <unmanaged-short>GetDesc</unmanaged-short>
  24948. <unmanaged>HRESULT IDirect3DIndexBuffer9::GetDesc([Out] D3DINDEXBUFFER_DESC* pDesc)</unmanaged>
  24949. </member>
  24950. <member name="M:SharpDX.Direct3D9.IndexBuffer.Lock(System.Int32,System.Int32,System.IntPtr@,SharpDX.Direct3D9.LockFlags)">
  24951. <summary>
  24952. <p>Locks a range of index data and obtains a reference to the index buffer memory.</p>
  24953. </summary>
  24954. <param name="offsetToLock"><dd> <p>Offset into the index data to lock, in bytes. Lock the entire index buffer by specifying 0 for both parameters, SizeToLock and OffsetToLock. </p> </dd></param>
  24955. <param name="sizeToLock"><dd> <p>Size of the index data to lock, in bytes. Lock the entire index buffer by specifying 0 for both parameters, SizeToLock and OffsetToLock.</p> </dd></param>
  24956. <param name="bDataOut"><dd> <p>VOID* reference to a memory buffer containing the returned index data. </p> </dd></param>
  24957. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoOverwrite" /></li> </ul> <p> For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />. </p> </dd></param>
  24958. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  24959. <remarks>
  24960. <p>As a general rule, do not hold a lock across more than one frame. When working with index buffers, you are allowed to make multiple lock calls. However, you must ensure that the number of lock calls match the number of unlock calls. <strong><see cref="M:SharpDX.Direct3D9.Device.DrawIndexedPrimitive(SharpDX.Direct3D9.PrimitiveType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" /></strong> calls will not succeed with any outstanding lock count on any currently set index buffer. </p><p>The <see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /> and <see cref="F:SharpDX.Direct3D9.LockFlags.NoOverwrite" /> flags are valid only on buffers created with <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" />.</p><p>See Programming Tips (Direct3D 9) for information about using <see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.NoOverwrite" />.</p>
  24961. </remarks>
  24962. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DIndexBuffer9::Lock']/*" />
  24963. <msdn-id>bb205867</msdn-id>
  24964. <unmanaged>HRESULT IDirect3DIndexBuffer9::Lock([In] unsigned int OffsetToLock,[In] unsigned int SizeToLock,[Out] void** ppbData,[In] D3DLOCK Flags)</unmanaged>
  24965. <unmanaged-short>IDirect3DIndexBuffer9::Lock</unmanaged-short>
  24966. </member>
  24967. <member name="M:SharpDX.Direct3D9.IndexBuffer.Unlock">
  24968. <summary>
  24969. <p>Unlocks index data.</p>
  24970. </summary>
  24971. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  24972. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DIndexBuffer9::Unlock']/*" />
  24973. <msdn-id>bb205868</msdn-id>
  24974. <unmanaged>HRESULT IDirect3DIndexBuffer9::Unlock()</unmanaged>
  24975. <unmanaged-short>IDirect3DIndexBuffer9::Unlock</unmanaged-short>
  24976. </member>
  24977. <member name="M:SharpDX.Direct3D9.IndexBuffer.GetDescription(SharpDX.Direct3D9.IndexBufferDescription@)">
  24978. <summary>
  24979. <p>Retrieves a description of the index buffer resource.</p>
  24980. </summary>
  24981. <param name="descRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.IndexBufferDescription" /></strong> structure, describing the returned index buffer. </p> </dd></param>
  24982. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if the argument is invalid.</p></returns>
  24983. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DIndexBuffer9::GetDesc']/*" />
  24984. <msdn-id>bb205866</msdn-id>
  24985. <unmanaged>HRESULT IDirect3DIndexBuffer9::GetDesc([Out] D3DINDEXBUFFER_DESC* pDesc)</unmanaged>
  24986. <unmanaged-short>IDirect3DIndexBuffer9::GetDesc</unmanaged-short>
  24987. </member>
  24988. <member name="M:SharpDX.Direct3D9.IndexBuffer.#ctor(SharpDX.Direct3D9.Device,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool,System.Boolean)">
  24989. <summary>
  24990. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.IndexBuffer"/> class.
  24991. </summary>
  24992. <param name="device">The device.</param>
  24993. <param name="sizeInBytes">The size in bytes.</param>
  24994. <param name="usage">The usage.</param>
  24995. <param name="pool">The pool.</param>
  24996. <param name="sixteenBit">if set to <c>true</c> use 16bit index buffer, otherwise, use 32bit index buffer.</param>
  24997. <msdn-id>bb174357</msdn-id>
  24998. <unmanaged>HRESULT IDirect3DDevice9::CreateIndexBuffer([In] unsigned int Length,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DIndexBuffer9** ppIndexBuffer,[In] void** pSharedHandle)</unmanaged>
  24999. <unmanaged-short>IDirect3DDevice9::CreateIndexBuffer</unmanaged-short>
  25000. </member>
  25001. <member name="M:SharpDX.Direct3D9.IndexBuffer.#ctor(SharpDX.Direct3D9.Device,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool,System.Boolean,System.IntPtr@)">
  25002. <summary>
  25003. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.IndexBuffer"/> class.
  25004. </summary>
  25005. <param name="device">The device.</param>
  25006. <param name="sizeInBytes">The size in bytes.</param>
  25007. <param name="usage">The usage.</param>
  25008. <param name="pool">The pool.</param>
  25009. <param name="sixteenBit">if set to <c>true</c> use 16bit index buffer, otherwise, use 32bit index buffer.</param>
  25010. <param name="sharedHandle">The shared handle.</param>
  25011. <msdn-id>bb174357</msdn-id>
  25012. <unmanaged>HRESULT IDirect3DDevice9::CreateIndexBuffer([In] unsigned int Length,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DIndexBuffer9** ppIndexBuffer,[In] void** pSharedHandle)</unmanaged>
  25013. <unmanaged-short>IDirect3DDevice9::CreateIndexBuffer</unmanaged-short>
  25014. </member>
  25015. <member name="M:SharpDX.Direct3D9.IndexBuffer.Lock(System.Int32,System.Int32,SharpDX.Direct3D9.LockFlags)">
  25016. <summary>
  25017. Locks the specified index buffer.
  25018. </summary>
  25019. <param name="offsetToLock">The offset in the buffer.</param>
  25020. <param name="sizeToLock">The size of the buffer to lock.</param>
  25021. <param name="lockFlags">The lock flags.</param>
  25022. <returns>A <see cref="T:SharpDX.DataStream" /> containing the locked index buffer.</returns>
  25023. <msdn-id>bb205867</msdn-id>
  25024. <unmanaged>HRESULT IDirect3DIndexBuffer9::Lock([In] unsigned int OffsetToLock,[In] unsigned int SizeToLock,[Out] void** ppbData,[In] D3DLOCK Flags)</unmanaged>
  25025. <unmanaged-short>IDirect3DIndexBuffer9::Lock</unmanaged-short>
  25026. </member>
  25027. <member name="M:SharpDX.Direct3D9.IndexBuffer.LockToPointer(System.Int32,System.Int32,SharpDX.Direct3D9.LockFlags)">
  25028. <summary>
  25029. Locks the specified index buffer.
  25030. </summary>
  25031. <param name="offsetToLock">The offset in the buffer.</param>
  25032. <param name="sizeToLock">The size of the buffer to lock.</param>
  25033. <param name="lockFlags">The lock flags.</param>
  25034. <returns>A <see cref="T:SharpDX.DataStream" /> containing the locked index buffer.</returns>
  25035. <msdn-id>bb205867</msdn-id>
  25036. <unmanaged>HRESULT IDirect3DIndexBuffer9::Lock([In] unsigned int OffsetToLock,[In] unsigned int SizeToLock,[Out] void** ppbData,[In] D3DLOCK Flags)</unmanaged>
  25037. <unmanaged-short>IDirect3DIndexBuffer9::Lock</unmanaged-short>
  25038. </member>
  25039. <member name="T:SharpDX.Direct3D9.ISaveUserData">
  25040. <summary>
  25041. <p>This interface is implemented by the application to save any additional user data embedded in .x files. An instance of this interface is passed to <strong><see cref="M:SharpDX.Direct3D9.D3DX9.SaveMeshHierarchyToFileW(System.String,System.Int32,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController,SharpDX.Direct3D9.ISaveUserData)" /></strong>, and D3DX calls the appropriate method on this interface every time the appropriate data is encountered. For example, for each frame object in the .x file, <strong><see cref="M:SharpDX.Direct3D9.ISaveUserData.AddFrameChildData(SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.XFileSaveObject,SharpDX.Direct3D9.XFileSaveData)" /></strong> is called and passed the child data.</p>
  25042. </summary>
  25043. <remarks>
  25044. <p>The LPD3DXSAVEUSERDATA type is defined as a reference to this interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.ISaveUserData" /> <see cref="T:SharpDX.Direct3D9.ISaveUserData" />;
  25045. typedef interface <see cref="T:SharpDX.Direct3D9.ISaveUserData" /> *LPD3DXSAVEUSERDATA;
  25046. </pre>
  25047. </remarks>
  25048. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSaveUserData']/*" />
  25049. <msdn-id>bb174199</msdn-id>
  25050. <unmanaged>ID3DXSaveUserData</unmanaged>
  25051. <unmanaged-short>ID3DXSaveUserData</unmanaged-short>
  25052. </member>
  25053. <member name="M:SharpDX.Direct3D9.ISaveUserData.#ctor(System.IntPtr)">
  25054. <summary>
  25055. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.ISaveUserData"/> class.
  25056. </summary>
  25057. <param name="nativePtr">The native pointer.</param>
  25058. </member>
  25059. <member name="M:SharpDX.Direct3D9.ISaveUserData.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.ISaveUserData">
  25060. <summary>
  25061. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.ISaveUserData"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  25062. </summary>
  25063. <param name="nativePointer">The native pointer.</param>
  25064. <returns>
  25065. The result of the conversion.
  25066. </returns>
  25067. </member>
  25068. <member name="M:SharpDX.Direct3D9.ISaveUserData.AddFrameChildData(SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.XFileSaveObject,SharpDX.Direct3D9.XFileSaveData)">
  25069. <summary>
  25070. <p>Add child data to the frame.</p>
  25071. </summary>
  25072. <param name="frameRef"><dd> <p>Pointer to a mesh container. See <strong><see cref="T:SharpDX.Direct3D9.Frame" /></strong>.</p> </dd></param>
  25073. <param name="xofSaveRef"><dd> <p>Pointer to a .x file save object. Use the reference to call <strong><see cref="M:SharpDX.Direct3D9.XFileSaveObject.AddDataObject(System.Guid,System.String,System.Guid,SharpDX.PointerSize,System.IntPtr,SharpDX.Direct3D9.XFileSaveData@)" /></strong> to add a child data object. Do not save the data with <strong><see cref="M:SharpDX.Direct3D9.XFileSaveObject.Save" /></strong>.</p> </dd></param>
  25074. <param name="xofFrameDataRef"><dd> <p>Pointer to a .x file data node. Use the reference to call <strong><see cref="M:SharpDX.Direct3D9.XFileSaveData.AddDataObject(System.Guid,System.String,System.Guid,SharpDX.PointerSize,System.IntPtr,SharpDX.Direct3D9.XFileSaveData@)" /></strong> to add a child data object.</p> </dd></param>
  25075. <returns><p>The return values of this method are implemented by an application programmer. In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  25076. <remarks>
  25077. <p> <strong><see cref="M:SharpDX.Direct3D9.ISaveUserData.RegisterTemplates(SharpDX.Direct3D9.XFile)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.ISaveUserData.SaveTemplates(SharpDX.Direct3D9.XFileSaveObject)" /></strong> provide a mechanism for adding a template to a .x file for saving user data.</p>
  25078. </remarks>
  25079. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSaveUserData::AddFrameChildData']/*" />
  25080. <msdn-id>bb174200</msdn-id>
  25081. <unmanaged>HRESULT ID3DXSaveUserData::AddFrameChildData([In] const D3DXFRAME* pFrame,[In] ID3DXFileSaveObject* pXofSave,[In] ID3DXFileSaveData* pXofFrameData)</unmanaged>
  25082. <unmanaged-short>ID3DXSaveUserData::AddFrameChildData</unmanaged-short>
  25083. </member>
  25084. <member name="M:SharpDX.Direct3D9.ISaveUserData.AddMeshChildData(SharpDX.Direct3D9.MeshContainer,SharpDX.Direct3D9.XFileSaveObject,SharpDX.Direct3D9.XFileSaveData)">
  25085. <summary>
  25086. <p>Add child data to the mesh.</p>
  25087. </summary>
  25088. <param name="meshContainerRef"><dd> <p>Pointer to a mesh container. See <strong><see cref="T:SharpDX.Direct3D9.MeshContainer" /></strong>.</p> </dd></param>
  25089. <param name="xofSaveRef"><dd> <p>Pointer to a .x file save object. Use the reference to call <strong><see cref="M:SharpDX.Direct3D9.XFileSaveObject.AddDataObject(System.Guid,System.String,System.Guid,SharpDX.PointerSize,System.IntPtr,SharpDX.Direct3D9.XFileSaveData@)" /></strong> to add a child data object. Do not save the data with <strong><see cref="M:SharpDX.Direct3D9.XFileSaveObject.Save" /></strong>.</p> </dd></param>
  25090. <param name="xofMeshDataRef"><dd> <p>Pointer to a .x file data node. Use the reference to call <strong><see cref="M:SharpDX.Direct3D9.XFileSaveData.AddDataObject(System.Guid,System.String,System.Guid,SharpDX.PointerSize,System.IntPtr,SharpDX.Direct3D9.XFileSaveData@)" /></strong> to add a child data object.</p> </dd></param>
  25091. <returns><p>The return values of this method are implemented by an application programmer. In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  25092. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSaveUserData::AddMeshChildData']/*" />
  25093. <msdn-id>bb174201</msdn-id>
  25094. <unmanaged>HRESULT ID3DXSaveUserData::AddMeshChildData([In] const D3DXMESHCONTAINER* pMeshContainer,[In] ID3DXFileSaveObject* pXofSave,[In] ID3DXFileSaveData* pXofMeshData)</unmanaged>
  25095. <unmanaged-short>ID3DXSaveUserData::AddMeshChildData</unmanaged-short>
  25096. </member>
  25097. <member name="M:SharpDX.Direct3D9.ISaveUserData.AddTopLevelDataObjectsPre(SharpDX.Direct3D9.XFileSaveObject)">
  25098. <summary>
  25099. <p>Add a top level object before the frame hierarchy.</p>
  25100. </summary>
  25101. <param name="xofSaveRef"><dd> <p>Pointer to a .x file save object. Use this reference to call <strong>IDirectXFileSaveObject::CreateDataObject</strong> to create the data object to be saved. Then call <strong>IDirectXFileSaveObject::SaveData</strong> to save the data.</p> </dd></param>
  25102. <returns><p>The return values of this method are implemented by an application programmer. In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  25103. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSaveUserData::AddTopLevelDataObjectsPre']/*" />
  25104. <msdn-id>bb174203</msdn-id>
  25105. <unmanaged>HRESULT ID3DXSaveUserData::AddTopLevelDataObjectsPre([In] ID3DXFileSaveObject* pXofSave)</unmanaged>
  25106. <unmanaged-short>ID3DXSaveUserData::AddTopLevelDataObjectsPre</unmanaged-short>
  25107. </member>
  25108. <member name="M:SharpDX.Direct3D9.ISaveUserData.AddTopLevelDataObjectsPost(SharpDX.Direct3D9.XFileSaveObject)">
  25109. <summary>
  25110. <p>Add a top level object after the frame hierarchy.</p>
  25111. </summary>
  25112. <param name="xofSaveRef"><dd> <p>Pointer to a .x file save object. Use this reference to call <strong>IDirectXFileSaveObject::CreateDataObject</strong> to create the data object to be saved. Then call <strong>IDirectXFileSaveObject::SaveData</strong> to save the data.</p> </dd></param>
  25113. <returns><p>The return values of this method are implemented by an application programmer.In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  25114. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSaveUserData::AddTopLevelDataObjectsPost']/*" />
  25115. <msdn-id>bb174202</msdn-id>
  25116. <unmanaged>HRESULT ID3DXSaveUserData::AddTopLevelDataObjectsPost([In] ID3DXFileSaveObject* pXofSave)</unmanaged>
  25117. <unmanaged-short>ID3DXSaveUserData::AddTopLevelDataObjectsPost</unmanaged-short>
  25118. </member>
  25119. <member name="M:SharpDX.Direct3D9.ISaveUserData.RegisterTemplates(SharpDX.Direct3D9.XFile)">
  25120. <summary>
  25121. <p>A callback for the user to register a .x file template.</p>
  25122. </summary>
  25123. <param name="xFileApiRef"><dd> <p>Use this reference to register user-defined .x file templates. See <strong><see cref="T:SharpDX.Direct3D9.XFile" /></strong>. Do not use this parameter to add data objects.</p> </dd></param>
  25124. <returns><p>The return values of this method are implemented by an application programmer.In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  25125. <remarks>
  25126. <p><strong><see cref="M:SharpDX.Direct3D9.ISaveUserData.RegisterTemplates(SharpDX.Direct3D9.XFile)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.ISaveUserData.SaveTemplates(SharpDX.Direct3D9.XFileSaveObject)" /></strong> provide a mechanism for adding a template to a .x file for saving user data.</p>
  25127. </remarks>
  25128. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSaveUserData::RegisterTemplates']/*" />
  25129. <msdn-id>bb174204</msdn-id>
  25130. <unmanaged>HRESULT ID3DXSaveUserData::RegisterTemplates([In] ID3DXFile* pXFileApi)</unmanaged>
  25131. <unmanaged-short>ID3DXSaveUserData::RegisterTemplates</unmanaged-short>
  25132. </member>
  25133. <member name="M:SharpDX.Direct3D9.ISaveUserData.SaveTemplates(SharpDX.Direct3D9.XFileSaveObject)">
  25134. <summary>
  25135. <p>A callback for the user to save a .x file template.</p>
  25136. </summary>
  25137. <param name="xofSaveRef"><dd> <p>Pointer to a .x file save object. Do not use this parameter to add data objects. See <strong><see cref="T:SharpDX.Direct3D9.XFileSaveObject" /></strong>.</p> </dd></param>
  25138. <returns><p>The return values of this method are implemented by an application programmer.In general, if no error occurs, program the method to return <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. Otherwise, program the method to return an appropriate error message from D3DERR or <strong>D3DXERR</strong>, as this will cause <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshHierarchyFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.IAllocateHierarchy,SharpDX.Direct3D9.ILoadUserData,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D9.AnimationController@)" /></strong> to fail also, and return the error.</p></returns>
  25139. <remarks>
  25140. <p> <strong><see cref="M:SharpDX.Direct3D9.ISaveUserData.RegisterTemplates(SharpDX.Direct3D9.XFile)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.ISaveUserData.SaveTemplates(SharpDX.Direct3D9.XFileSaveObject)" /></strong> provide a mechanism for adding a template to a .x file for saving user data.</p>
  25141. </remarks>
  25142. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSaveUserData::SaveTemplates']/*" />
  25143. <msdn-id>bb174205</msdn-id>
  25144. <unmanaged>HRESULT ID3DXSaveUserData::SaveTemplates([In] ID3DXFileSaveObject* pXofSave)</unmanaged>
  25145. <unmanaged-short>ID3DXSaveUserData::SaveTemplates</unmanaged-short>
  25146. </member>
  25147. <member name="T:SharpDX.Direct3D9.KeyframedAnimationSet">
  25148. <summary>
  25149. <p>An application uses the methods of this interface to implement a key frame animation set.</p>
  25150. </summary>
  25151. <remarks>
  25152. <p>Create a keyframed animation set with <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateKeyframedAnimationSet(System.String,System.Double,SharpDX.Direct3D9.PlaybackType,System.Int32,System.Int32,SharpDX.Direct3D9.CallbackKey,SharpDX.Direct3D9.KeyframedAnimationSet@)" /></strong>.</p><p>The LPD3DXKEYFRAMEDANIMATIONSET type is defined as a reference to this interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.KeyframedAnimationSet" /> <see cref="T:SharpDX.Direct3D9.KeyframedAnimationSet" />;
  25153. typedef interface <see cref="T:SharpDX.Direct3D9.KeyframedAnimationSet" /> *LPD3DXKEYFRAMEDANIMATIONSET;
  25154. </pre>
  25155. </remarks>
  25156. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet']/*" />
  25157. <msdn-id>bb173989</msdn-id>
  25158. <unmanaged>ID3DXKeyframedAnimationSet</unmanaged>
  25159. <unmanaged-short>ID3DXKeyframedAnimationSet</unmanaged-short>
  25160. </member>
  25161. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.#ctor(System.IntPtr)">
  25162. <summary>
  25163. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.KeyframedAnimationSet"/> class.
  25164. </summary>
  25165. <param name="nativePtr">The native pointer.</param>
  25166. </member>
  25167. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.KeyframedAnimationSet">
  25168. <summary>
  25169. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.KeyframedAnimationSet"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  25170. </summary>
  25171. <param name="nativePointer">The native pointer.</param>
  25172. <returns>
  25173. The result of the conversion.
  25174. </returns>
  25175. </member>
  25176. <member name="P:SharpDX.Direct3D9.KeyframedAnimationSet.PlaybackType">
  25177. <summary>
  25178. <p>Gets the type of the animation set playback loop.</p>
  25179. </summary>
  25180. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetPlaybackType']/*" />
  25181. <msdn-id>bb173997</msdn-id>
  25182. <unmanaged>GetPlaybackType</unmanaged>
  25183. <unmanaged-short>GetPlaybackType</unmanaged-short>
  25184. <unmanaged>D3DXPLAYBACK_TYPE ID3DXKeyframedAnimationSet::GetPlaybackType()</unmanaged>
  25185. </member>
  25186. <member name="P:SharpDX.Direct3D9.KeyframedAnimationSet.SourceTicksPerSecond">
  25187. <summary>
  25188. <p>Gets the number of animation key frame ticks that occur per second.</p>
  25189. </summary>
  25190. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetSourceTicksPerSecond']/*" />
  25191. <msdn-id>bb174004</msdn-id>
  25192. <unmanaged>GetSourceTicksPerSecond</unmanaged>
  25193. <unmanaged-short>GetSourceTicksPerSecond</unmanaged-short>
  25194. <unmanaged>double ID3DXKeyframedAnimationSet::GetSourceTicksPerSecond()</unmanaged>
  25195. </member>
  25196. <member name="P:SharpDX.Direct3D9.KeyframedAnimationSet.NumCallbackKeys">
  25197. <summary>
  25198. <p>Gets the number of callback keys in the animation set.</p>
  25199. </summary>
  25200. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetNumCallbackKeys']/*" />
  25201. <msdn-id>bb173993</msdn-id>
  25202. <unmanaged>GetNumCallbackKeys</unmanaged>
  25203. <unmanaged-short>GetNumCallbackKeys</unmanaged-short>
  25204. <unmanaged>unsigned int ID3DXKeyframedAnimationSet::GetNumCallbackKeys()</unmanaged>
  25205. </member>
  25206. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetPlaybackType">
  25207. <summary>
  25208. <p>Gets the type of the animation set playback loop.</p>
  25209. </summary>
  25210. <returns><p>Type of the animation set playback loop. See <strong><see cref="T:SharpDX.Direct3D9.PlaybackType" /></strong>.</p></returns>
  25211. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetPlaybackType']/*" />
  25212. <msdn-id>bb173997</msdn-id>
  25213. <unmanaged>D3DXPLAYBACK_TYPE ID3DXKeyframedAnimationSet::GetPlaybackType()</unmanaged>
  25214. <unmanaged-short>ID3DXKeyframedAnimationSet::GetPlaybackType</unmanaged-short>
  25215. </member>
  25216. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetSourceTicksPerSecond">
  25217. <summary>
  25218. <p>Gets the number of animation key frame ticks that occur per second.</p>
  25219. </summary>
  25220. <returns><p>Number of animation key frame ticks that occur per second.</p></returns>
  25221. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetSourceTicksPerSecond']/*" />
  25222. <msdn-id>bb174004</msdn-id>
  25223. <unmanaged>double ID3DXKeyframedAnimationSet::GetSourceTicksPerSecond()</unmanaged>
  25224. <unmanaged-short>ID3DXKeyframedAnimationSet::GetSourceTicksPerSecond</unmanaged-short>
  25225. </member>
  25226. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetNumScaleKeys(System.Int32)">
  25227. <summary>
  25228. <p>Gets the number of scale keys in the specified key frame animation.</p>
  25229. </summary>
  25230. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25231. <returns><p>Number of scale keys in the specified key frame animation.</p></returns>
  25232. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetNumScaleKeys']/*" />
  25233. <msdn-id>bb173995</msdn-id>
  25234. <unmanaged>unsigned int ID3DXKeyframedAnimationSet::GetNumScaleKeys([In] unsigned int Animation)</unmanaged>
  25235. <unmanaged-short>ID3DXKeyframedAnimationSet::GetNumScaleKeys</unmanaged-short>
  25236. </member>
  25237. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetScaleKeys(System.Int32,SharpDX.Direct3D9.ScaleKey)">
  25238. <summary>
  25239. <p>Fills an array with scale key data used for key frame animation.</p>
  25240. </summary>
  25241. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25242. <param name="scaleKeysRef"><dd> <p>Pointer to a user-allocated array of <strong><see cref="T:SharpDX.Direct3D9.ScaleKey" /></strong> vectors that the method is to fill with animation scale data.</p> </dd></param>
  25243. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25244. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetScaleKeys']/*" />
  25245. <msdn-id>bb174003</msdn-id>
  25246. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::GetScaleKeys([In] unsigned int Animation,[In] D3DXKEY_VECTOR3* pScaleKeys)</unmanaged>
  25247. <unmanaged-short>ID3DXKeyframedAnimationSet::GetScaleKeys</unmanaged-short>
  25248. </member>
  25249. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetScaleKey(System.Int32,System.Int32,SharpDX.Direct3D9.ScaleKey)">
  25250. <summary>
  25251. <p>Get scale information for a specific key frame in the animation set.</p>
  25252. </summary>
  25253. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25254. <param name="key"><dd> <p>Key frame.</p> </dd></param>
  25255. <param name="scaleKeyRef"><dd> <p>Pointer to the scale data. See <strong><see cref="T:SharpDX.Direct3D9.ScaleKey" /></strong>.</p> </dd></param>
  25256. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25257. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetScaleKey']/*" />
  25258. <msdn-id>bb174002</msdn-id>
  25259. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::GetScaleKey([In] unsigned int Animation,[In] unsigned int Key,[In] D3DXKEY_VECTOR3* pScaleKey)</unmanaged>
  25260. <unmanaged-short>ID3DXKeyframedAnimationSet::GetScaleKey</unmanaged-short>
  25261. </member>
  25262. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.SetScaleKey(System.Int32,System.Int32,SharpDX.Direct3D9.ScaleKey)">
  25263. <summary>
  25264. <p>Set scale information for a specific key frame in the animation set.</p>
  25265. </summary>
  25266. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25267. <param name="key"><dd> <p>Key frame.</p> </dd></param>
  25268. <param name="scaleKeyRef"><dd> <p>Pointer to the scale data. See <strong><see cref="T:SharpDX.Direct3D9.ScaleKey" /></strong>.</p> </dd></param>
  25269. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25270. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::SetScaleKey']/*" />
  25271. <msdn-id>bb174010</msdn-id>
  25272. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::SetScaleKey([In] unsigned int Animation,[In] unsigned int Key,[In] D3DXKEY_VECTOR3* pScaleKey)</unmanaged>
  25273. <unmanaged-short>ID3DXKeyframedAnimationSet::SetScaleKey</unmanaged-short>
  25274. </member>
  25275. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetNumRotationKeys(System.Int32)">
  25276. <summary>
  25277. <p>Gets the number of rotation keys in the specified key frame animation.</p>
  25278. </summary>
  25279. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25280. <returns><p>Number of rotation keys in the specified key frame animation.</p></returns>
  25281. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetNumRotationKeys']/*" />
  25282. <msdn-id>bb173994</msdn-id>
  25283. <unmanaged>unsigned int ID3DXKeyframedAnimationSet::GetNumRotationKeys([In] unsigned int Animation)</unmanaged>
  25284. <unmanaged-short>ID3DXKeyframedAnimationSet::GetNumRotationKeys</unmanaged-short>
  25285. </member>
  25286. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetRotationKeys(System.Int32,SharpDX.Direct3D9.RotationKey@)">
  25287. <summary>
  25288. <p>Fills an array with rotational key data used for key frame animation.</p>
  25289. </summary>
  25290. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25291. <param name="rotationKeysRef"><dd> <p>Pointer to a user-allocated array of <strong><see cref="T:SharpDX.Direct3D9.RotationKey" /></strong> quaternions that the method is to fill with animation rotation data.</p> </dd></param>
  25292. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25293. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetRotationKeys']/*" />
  25294. <msdn-id>bb174001</msdn-id>
  25295. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::GetRotationKeys([In] unsigned int Animation,[In] D3DXKEY_QUATERNION* pRotationKeys)</unmanaged>
  25296. <unmanaged-short>ID3DXKeyframedAnimationSet::GetRotationKeys</unmanaged-short>
  25297. </member>
  25298. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetRotationKey(System.Int32,System.Int32,SharpDX.Direct3D9.RotationKey@)">
  25299. <summary>
  25300. <p>Get rotation information for a specific key frame in the animation set.</p>
  25301. </summary>
  25302. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25303. <param name="key"><dd> <p>Key frame.</p> </dd></param>
  25304. <param name="rotationKeyRef"><dd> <p>Pointer to the rotation data. See <strong><see cref="T:SharpDX.Direct3D9.RotationKey" /></strong>.</p> </dd></param>
  25305. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25306. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetRotationKey']/*" />
  25307. <msdn-id>bb173998</msdn-id>
  25308. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::GetRotationKey([In] unsigned int Animation,[In] unsigned int Key,[In] D3DXKEY_QUATERNION* pRotationKey)</unmanaged>
  25309. <unmanaged-short>ID3DXKeyframedAnimationSet::GetRotationKey</unmanaged-short>
  25310. </member>
  25311. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.SetRotationKey(System.Int32,System.Int32,SharpDX.Direct3D9.RotationKey@)">
  25312. <summary>
  25313. <p>Set rotation information for a specific key frame in the animation set.</p>
  25314. </summary>
  25315. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25316. <param name="key"><dd> <p>Key frame.</p> </dd></param>
  25317. <param name="rotationKeyRef"><dd> <p>Pointer to the rotation data. See <strong><see cref="T:SharpDX.Direct3D9.ScaleKey" /></strong>.</p> </dd></param>
  25318. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25319. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::SetRotationKey']/*" />
  25320. <msdn-id>bb174009</msdn-id>
  25321. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::SetRotationKey([In] unsigned int Animation,[In] unsigned int Key,[In] D3DXKEY_QUATERNION* pRotationKey)</unmanaged>
  25322. <unmanaged-short>ID3DXKeyframedAnimationSet::SetRotationKey</unmanaged-short>
  25323. </member>
  25324. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetNumTranslationKeys(System.Int32)">
  25325. <summary>
  25326. <p>Gets the number of translation keys in the specified key frame animation.</p>
  25327. </summary>
  25328. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25329. <returns><p>Number of translation keys in the specified key frame animation.</p></returns>
  25330. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetNumTranslationKeys']/*" />
  25331. <msdn-id>bb173996</msdn-id>
  25332. <unmanaged>unsigned int ID3DXKeyframedAnimationSet::GetNumTranslationKeys([In] unsigned int Animation)</unmanaged>
  25333. <unmanaged-short>ID3DXKeyframedAnimationSet::GetNumTranslationKeys</unmanaged-short>
  25334. </member>
  25335. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetTranslationKeys(System.Int32,SharpDX.Direct3D9.ScaleKey)">
  25336. <summary>
  25337. <p>Fills an array with translational key data used for key frame animation.</p>
  25338. </summary>
  25339. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25340. <param name="translationKeysRef"><dd> <p>Pointer to a user-allocated array of <strong><see cref="T:SharpDX.Direct3D9.ScaleKey" /></strong> vectors that the method is to fill with animation translation data.</p> </dd></param>
  25341. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25342. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetTranslationKeys']/*" />
  25343. <msdn-id>bb174006</msdn-id>
  25344. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::GetTranslationKeys([In] unsigned int Animation,[In] D3DXKEY_VECTOR3* pTranslationKeys)</unmanaged>
  25345. <unmanaged-short>ID3DXKeyframedAnimationSet::GetTranslationKeys</unmanaged-short>
  25346. </member>
  25347. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetTranslationKey(System.Int32,System.Int32,SharpDX.Direct3D9.ScaleKey)">
  25348. <summary>
  25349. <p>Get translation information for a specific key frame in the animation set.</p>
  25350. </summary>
  25351. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25352. <param name="key"><dd> <p>Key Frame.</p> </dd></param>
  25353. <param name="translationKeyRef"><dd> <p>Pointer to the rotation information. See <strong><see cref="T:SharpDX.Direct3D9.ScaleKey" /></strong>.</p> </dd></param>
  25354. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25355. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetTranslationKey']/*" />
  25356. <msdn-id>bb174005</msdn-id>
  25357. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::GetTranslationKey([In] unsigned int Animation,[In] unsigned int Key,[In] D3DXKEY_VECTOR3* pTranslationKey)</unmanaged>
  25358. <unmanaged-short>ID3DXKeyframedAnimationSet::GetTranslationKey</unmanaged-short>
  25359. </member>
  25360. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.SetTranslationKey(System.Int32,System.Int32,SharpDX.Direct3D9.ScaleKey)">
  25361. <summary>
  25362. <p>Set translation information for a specific key frame in the animation set.</p>
  25363. </summary>
  25364. <param name="animation"><dd> <p>Animation index.</p> </dd></param>
  25365. <param name="key"><dd> <p>Key Frame.</p> </dd></param>
  25366. <param name="translationKeyRef"><dd> <p>Pointer to the translation data. See <strong><see cref="T:SharpDX.Direct3D9.ScaleKey" /></strong>.</p> </dd></param>
  25367. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25368. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::SetTranslationKey']/*" />
  25369. <msdn-id>bb174011</msdn-id>
  25370. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::SetTranslationKey([In] unsigned int Animation,[In] unsigned int Key,[In] D3DXKEY_VECTOR3* pTranslationKey)</unmanaged>
  25371. <unmanaged-short>ID3DXKeyframedAnimationSet::SetTranslationKey</unmanaged-short>
  25372. </member>
  25373. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetNumCallbackKeys">
  25374. <summary>
  25375. <p>Gets the number of callback keys in the animation set.</p>
  25376. </summary>
  25377. <returns><p>Number of callback keys in the animation set.</p></returns>
  25378. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetNumCallbackKeys']/*" />
  25379. <msdn-id>bb173993</msdn-id>
  25380. <unmanaged>unsigned int ID3DXKeyframedAnimationSet::GetNumCallbackKeys()</unmanaged>
  25381. <unmanaged-short>ID3DXKeyframedAnimationSet::GetNumCallbackKeys</unmanaged-short>
  25382. </member>
  25383. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetCallbackKeys(SharpDX.Direct3D9.CallbackKey)">
  25384. <summary>
  25385. <p>Fills an array with callback key data used for key frame animation.</p>
  25386. </summary>
  25387. <param name="callbackKeysRef"><dd> <p>Pointer to a user-allocated array of <strong><see cref="T:SharpDX.Direct3D9.CallbackKey" /></strong> structures that the method is to fill with callback data.</p> </dd></param>
  25388. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25389. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetCallbackKeys']/*" />
  25390. <msdn-id>bb173992</msdn-id>
  25391. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::GetCallbackKeys([In] D3DXKEY_CALLBACK* pCallbackKeys)</unmanaged>
  25392. <unmanaged-short>ID3DXKeyframedAnimationSet::GetCallbackKeys</unmanaged-short>
  25393. </member>
  25394. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.GetCallbackKey(System.Int32,SharpDX.Direct3D9.CallbackKey)">
  25395. <summary>
  25396. <p>Gets information about a specific callback in the animation set.</p>
  25397. </summary>
  25398. <param name="key"><dd> <p>Animation index.</p> </dd></param>
  25399. <param name="callbackKeyRef"><dd> <p>Pointer to the <strong>callback function</strong>.</p> </dd></param>
  25400. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25401. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::GetCallbackKey']/*" />
  25402. <msdn-id>bb173991</msdn-id>
  25403. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::GetCallbackKey([In] unsigned int Key,[In] D3DXKEY_CALLBACK* pCallbackKey)</unmanaged>
  25404. <unmanaged-short>ID3DXKeyframedAnimationSet::GetCallbackKey</unmanaged-short>
  25405. </member>
  25406. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.SetCallbackKey(System.Int32,SharpDX.Direct3D9.CallbackKey)">
  25407. <summary>
  25408. <p>Sets information about a specific callback in the animation set.</p>
  25409. </summary>
  25410. <param name="key"><dd> <p>Animation index.</p> </dd></param>
  25411. <param name="callbackKeyRef"><dd> <p>Pointer to the <strong>callback function</strong>.</p> </dd></param>
  25412. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25413. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::SetCallbackKey']/*" />
  25414. <msdn-id>bb174008</msdn-id>
  25415. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::SetCallbackKey([In] unsigned int Key,[In] D3DXKEY_CALLBACK* pCallbackKey)</unmanaged>
  25416. <unmanaged-short>ID3DXKeyframedAnimationSet::SetCallbackKey</unmanaged-short>
  25417. </member>
  25418. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.UnregisterScaleKey(System.Int32,System.Int32)">
  25419. <summary>
  25420. <p>Removes the scale data at the specified key frame.</p>
  25421. </summary>
  25422. <param name="animation"><dd> <p>Animation identifier.</p> </dd></param>
  25423. <param name="key"><dd> <p>Key frame.</p> </dd></param>
  25424. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25425. <remarks>
  25426. <p>This method is slow and should not be used after an animation has begun to play.</p>
  25427. </remarks>
  25428. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::UnregisterScaleKey']/*" />
  25429. <msdn-id>bb174014</msdn-id>
  25430. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::UnregisterScaleKey([In] unsigned int Animation,[In] unsigned int Key)</unmanaged>
  25431. <unmanaged-short>ID3DXKeyframedAnimationSet::UnregisterScaleKey</unmanaged-short>
  25432. </member>
  25433. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.UnregisterRotationKey(System.Int32,System.Int32)">
  25434. <summary>
  25435. <p>Removes the rotation data at the specified key frame.</p>
  25436. </summary>
  25437. <param name="animation"><dd> <p>Animation identifier.</p> </dd></param>
  25438. <param name="key"><dd> <p>Key frame.</p> </dd></param>
  25439. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25440. <remarks>
  25441. <p>This method is slow and should not be used after an animation has begun to play.</p>
  25442. </remarks>
  25443. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::UnregisterRotationKey']/*" />
  25444. <msdn-id>bb174013</msdn-id>
  25445. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::UnregisterRotationKey([In] unsigned int Animation,[In] unsigned int Key)</unmanaged>
  25446. <unmanaged-short>ID3DXKeyframedAnimationSet::UnregisterRotationKey</unmanaged-short>
  25447. </member>
  25448. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.UnregisterTranslationKey(System.Int32,System.Int32)">
  25449. <summary>
  25450. <p>Removes the translation data at the specified key frame.</p>
  25451. </summary>
  25452. <param name="animation"><dd> <p>Animation identifier.</p> </dd></param>
  25453. <param name="key"><dd> <p>Key frame.</p> </dd></param>
  25454. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25455. <remarks>
  25456. <p>This method is slow and should not be used after an animation has begun to play.</p>
  25457. </remarks>
  25458. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::UnregisterTranslationKey']/*" />
  25459. <msdn-id>bb174015</msdn-id>
  25460. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::UnregisterTranslationKey([In] unsigned int Animation,[In] unsigned int Key)</unmanaged>
  25461. <unmanaged-short>ID3DXKeyframedAnimationSet::UnregisterTranslationKey</unmanaged-short>
  25462. </member>
  25463. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.RegisterAnimationSRTKeys(System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.ScaleKey,SharpDX.Direct3D9.RotationKey@,SharpDX.Direct3D9.ScaleKey,System.Int32)">
  25464. <summary>
  25465. <p>Register the scale, rotate, and translate (SRT) key frame data for an animation.</p>
  25466. </summary>
  25467. <param name="nameRef"><dd> <p>Pointer to the animation name.</p> </dd></param>
  25468. <param name="numScaleKeys"><dd> <p>Number of scale keys.</p> </dd></param>
  25469. <param name="numRotationKeys"><dd> <p>Number of rotation keys.</p> </dd></param>
  25470. <param name="numTranslationKeys"><dd> <p>Number of translation keys.</p> </dd></param>
  25471. <param name="scaleKeysRef"><dd> <p>Address of a reference to a user-allocated array of <strong><see cref="T:SharpDX.Direct3D9.ScaleKey" /></strong> vectors that the method fills with scale data.</p> </dd></param>
  25472. <param name="rotationKeysRef"><dd> <p>Address of a reference to a user-allocated array of <strong><see cref="T:SharpDX.Direct3D9.RotationKey" /></strong> quaternions that the method fills with rotation data.</p> </dd></param>
  25473. <param name="translationKeysRef"><dd> <p>Address of a reference to a user-allocated array of <strong><see cref="T:SharpDX.Direct3D9.ScaleKey" /></strong> vectors that the method fills with translation data.</p> </dd></param>
  25474. <param name="animationIndexRef"><dd> <p>Returns the animation index.</p> </dd></param>
  25475. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  25476. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::RegisterAnimationSRTKeys']/*" />
  25477. <msdn-id>bb174007</msdn-id>
  25478. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::RegisterAnimationSRTKeys([In] const char* pName,[In] unsigned int NumScaleKeys,[In] unsigned int NumRotationKeys,[In] unsigned int NumTranslationKeys,[In] const D3DXKEY_VECTOR3* pScaleKeys,[In] const D3DXKEY_QUATERNION* pRotationKeys,[In] const D3DXKEY_VECTOR3* pTranslationKeys,[In] unsigned int* pAnimationIndex)</unmanaged>
  25479. <unmanaged-short>ID3DXKeyframedAnimationSet::RegisterAnimationSRTKeys</unmanaged-short>
  25480. </member>
  25481. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.Compress(System.Int32,System.Single,SharpDX.Direct3D9.Frame@,SharpDX.Direct3D.Blob@)">
  25482. <summary>
  25483. <p>Transforms animations in an animation set into a compressed format and returns a reference to the buffer that stores the compressed data.</p>
  25484. </summary>
  25485. <param name="flags"><dd> <p>One of the <strong><see cref="T:SharpDX.Direct3D9.CompressionFlags" /></strong> values that define the compression mode used for storing compressed animation set data. <see cref="F:SharpDX.Direct3D9.CompressionFlags.Default" /> is the only value currently supported.</p> </dd></param>
  25486. <param name="lossiness"><dd> <p>Desired compression loss ratio, in the range from 0 to 1.</p> </dd></param>
  25487. <param name="hierarchyRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Frame" /></strong> transformation frame hierarchy. Can be <strong><c>null</c></strong>.</p> </dd></param>
  25488. <param name="compressedDataOut"><dd> <p>Address of a reference to the <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> compressed animation set.</p> </dd></param>
  25489. <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 values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  25490. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::Compress']/*" />
  25491. <msdn-id>bb173990</msdn-id>
  25492. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::Compress([In] unsigned int Flags,[In] float Lossiness,[In] D3DXFRAME* pHierarchy,[In] ID3DXBuffer** ppCompressedData)</unmanaged>
  25493. <unmanaged-short>ID3DXKeyframedAnimationSet::Compress</unmanaged-short>
  25494. </member>
  25495. <member name="M:SharpDX.Direct3D9.KeyframedAnimationSet.UnregisterAnimation(System.Int32)">
  25496. <summary>
  25497. <p>Remove the animation data from the animation set.</p>
  25498. </summary>
  25499. <param name="index"><dd> <p>The animation index.</p> </dd></param>
  25500. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25501. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXKeyframedAnimationSet::UnregisterAnimation']/*" />
  25502. <msdn-id>bb174012</msdn-id>
  25503. <unmanaged>HRESULT ID3DXKeyframedAnimationSet::UnregisterAnimation([In] unsigned int Index)</unmanaged>
  25504. <unmanaged-short>ID3DXKeyframedAnimationSet::UnregisterAnimation</unmanaged-short>
  25505. </member>
  25506. <member name="T:SharpDX.Direct3D9.Line">
  25507. <summary>
  25508. <p>The <see cref="T:SharpDX.Direct3D9.Line" /> interface implements line drawing using textured triangles.</p>
  25509. </summary>
  25510. <remarks>
  25511. <p>Create a line drawing object with <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateLine(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Line)" /></strong>.</p><p>The LPD3DXLINE type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.Line" /></strong> interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.Line" /> <see cref="T:SharpDX.Direct3D9.Line" />;
  25512. typedef interface <see cref="T:SharpDX.Direct3D9.Line" /> *LPD3DXLINE;
  25513. </pre>
  25514. </remarks>
  25515. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine']/*" />
  25516. <msdn-id>bb174016</msdn-id>
  25517. <unmanaged>ID3DXLine</unmanaged>
  25518. <unmanaged-short>ID3DXLine</unmanaged-short>
  25519. </member>
  25520. <member name="M:SharpDX.Direct3D9.Line.#ctor(System.IntPtr)">
  25521. <summary>
  25522. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Line"/> class.
  25523. </summary>
  25524. <param name="nativePtr">The native pointer.</param>
  25525. </member>
  25526. <member name="M:SharpDX.Direct3D9.Line.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Line">
  25527. <summary>
  25528. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Line"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  25529. </summary>
  25530. <param name="nativePointer">The native pointer.</param>
  25531. <returns>
  25532. The result of the conversion.
  25533. </returns>
  25534. </member>
  25535. <member name="P:SharpDX.Direct3D9.Line.Device">
  25536. <summary>
  25537. <p>Retrieves the Direct3D device associated with the line object.</p>
  25538. </summary>
  25539. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetDevice']/*" />
  25540. <msdn-id>bb174022</msdn-id>
  25541. <unmanaged>GetDevice</unmanaged>
  25542. <unmanaged-short>GetDevice</unmanaged-short>
  25543. <unmanaged>HRESULT ID3DXLine::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  25544. </member>
  25545. <member name="P:SharpDX.Direct3D9.Line.Pattern">
  25546. <summary>
  25547. <p>Gets or sets the line stipple pattern.</p>
  25548. </summary>
  25549. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetPattern']/*" />
  25550. <msdn-id>bb174024</msdn-id>
  25551. <unmanaged>GetPattern / SetPattern</unmanaged>
  25552. <unmanaged-short>GetPattern</unmanaged-short>
  25553. <unmanaged>unsigned int ID3DXLine::GetPattern()</unmanaged>
  25554. </member>
  25555. <member name="P:SharpDX.Direct3D9.Line.PatternScale">
  25556. <summary>
  25557. <p>Gets or sets the stipple-pattern scale value.</p>
  25558. </summary>
  25559. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetPatternScale']/*" />
  25560. <msdn-id>bb174025</msdn-id>
  25561. <unmanaged>GetPatternScale / SetPatternScale</unmanaged>
  25562. <unmanaged-short>GetPatternScale</unmanaged-short>
  25563. <unmanaged>float ID3DXLine::GetPatternScale()</unmanaged>
  25564. </member>
  25565. <member name="P:SharpDX.Direct3D9.Line.Width">
  25566. <summary>
  25567. <p>Gets or sets the thickness of the line.</p>
  25568. </summary>
  25569. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetWidth']/*" />
  25570. <msdn-id>bb174026</msdn-id>
  25571. <unmanaged>GetWidth / SetWidth</unmanaged>
  25572. <unmanaged-short>GetWidth</unmanaged-short>
  25573. <unmanaged>float ID3DXLine::GetWidth()</unmanaged>
  25574. </member>
  25575. <member name="P:SharpDX.Direct3D9.Line.Antialias">
  25576. <summary>
  25577. <p>Gets or sets the line antialiasing state.</p>
  25578. </summary>
  25579. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetAntialias']/*" />
  25580. <msdn-id>bb174021</msdn-id>
  25581. <unmanaged>GetAntialias / SetAntialias</unmanaged>
  25582. <unmanaged-short>GetAntialias</unmanaged-short>
  25583. <unmanaged>BOOL ID3DXLine::GetAntialias()</unmanaged>
  25584. </member>
  25585. <member name="P:SharpDX.Direct3D9.Line.GLLines">
  25586. <summary>
  25587. <p>Gets or sets the OpenGL-style line-drawing mode.</p>
  25588. </summary>
  25589. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetGLLines']/*" />
  25590. <msdn-id>bb174023</msdn-id>
  25591. <unmanaged>GetGLLines / SetGLLines</unmanaged>
  25592. <unmanaged-short>GetGLLines</unmanaged-short>
  25593. <unmanaged>BOOL ID3DXLine::GetGLLines()</unmanaged>
  25594. </member>
  25595. <member name="M:SharpDX.Direct3D9.Line.GetDevice(SharpDX.Direct3D9.Device@)">
  25596. <summary>
  25597. <p>Retrieves the Direct3D device associated with the line object.</p>
  25598. </summary>
  25599. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the Direct3D device object associated with the line object.</p> </dd></param>
  25600. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  25601. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetDevice']/*" />
  25602. <msdn-id>bb174022</msdn-id>
  25603. <unmanaged>HRESULT ID3DXLine::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  25604. <unmanaged-short>ID3DXLine::GetDevice</unmanaged-short>
  25605. </member>
  25606. <member name="M:SharpDX.Direct3D9.Line.Begin">
  25607. <summary>
  25608. <p>Prepares a device for drawing lines.</p>
  25609. </summary>
  25610. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  25611. <remarks>
  25612. <p>Calling <strong><see cref="M:SharpDX.Direct3D9.Line.Begin" /></strong> is optional. If called outside of a <see cref="M:SharpDX.Direct3D9.Line.Begin" />/<see cref="M:SharpDX.Direct3D9.Line.End" /> sequence, the draw functions will internally call <see cref="M:SharpDX.Direct3D9.Line.Begin" /> and <see cref="M:SharpDX.Direct3D9.Line.End" />. To avoid extra overhead, this method should be used if more than one draw function will be called successively.</p><p>This method must be called from inside an <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> sequence.</p><p><see cref="M:SharpDX.Direct3D9.Line.Begin" /> cannot be used as a substitute for either <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.RenderToSurface.BeginScene(SharpDX.Direct3D9.Surface,SharpDX.Mathematics.Interop.RawViewport)" /></strong>.</p>
  25613. </remarks>
  25614. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::Begin']/*" />
  25615. <msdn-id>bb174017</msdn-id>
  25616. <unmanaged>HRESULT ID3DXLine::Begin()</unmanaged>
  25617. <unmanaged-short>ID3DXLine::Begin</unmanaged-short>
  25618. </member>
  25619. <member name="M:SharpDX.Direct3D9.Line.Draw(System.IntPtr,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA)">
  25620. <summary>
  25621. <p>Draws a line strip in screen space. Input is in the form of an array that defines points (of <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector2" /></strong>) on the line strip.</p>
  25622. </summary>
  25623. <param name="vertexListRef">No documentation.</param>
  25624. <param name="dwVertexListCount">No documentation.</param>
  25625. <param name="color">No documentation.</param>
  25626. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  25627. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::Draw']/*" />
  25628. <msdn-id>bb174018</msdn-id>
  25629. <unmanaged>HRESULT ID3DXLine::Draw([In] const void* pVertexList,[In] unsigned int dwVertexListCount,[In] D3DCOLOR Color)</unmanaged>
  25630. <unmanaged-short>ID3DXLine::Draw</unmanaged-short>
  25631. </member>
  25632. <member name="M:SharpDX.Direct3D9.Line.DrawTransform(System.IntPtr,System.Int32,SharpDX.Mathematics.Interop.RawMatrix@,SharpDX.Mathematics.Interop.RawColorBGRA)">
  25633. <summary>
  25634. <p>Draws a line strip in screen space with a specified input transformation matrix.</p>
  25635. </summary>
  25636. <param name="vertexListRef"><dd> <p>Array of vertices that make up the line. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong>.</p> </dd></param>
  25637. <param name="dwVertexListCount"><dd> <p>Number of vertices in the vertex list.</p> </dd></param>
  25638. <param name="transformRef"><dd> <p>A scale, rotate, and translate (SRT) matrix for transforming the points. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>. If this matrix is a projection matrix, any stippled lines will be drawn with a perspective-correct stippling pattern. Or, you can transform the vertices and use <strong><see cref="M:SharpDX.Direct3D9.Line.Draw(System.IntPtr,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA)" /></strong> to draw the line with a nonperspective-correct stipple pattern.</p> </dd></param>
  25639. <param name="color"><dd> <p>Color of the line. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong>.</p> </dd></param>
  25640. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  25641. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::DrawTransform']/*" />
  25642. <msdn-id>bb174019</msdn-id>
  25643. <unmanaged>HRESULT ID3DXLine::DrawTransform([In] const void* pVertexList,[In] unsigned int dwVertexListCount,[In] const D3DXMATRIX* pTransform,[In] D3DCOLOR Color)</unmanaged>
  25644. <unmanaged-short>ID3DXLine::DrawTransform</unmanaged-short>
  25645. </member>
  25646. <member name="M:SharpDX.Direct3D9.Line.SetPattern(System.Int32)">
  25647. <summary>
  25648. <p>Applies a stipple pattern to the line.</p>
  25649. </summary>
  25650. <param name="dwPattern"><dd> <p>Describes the stipple pattern: 1 is opaque, 0 is transparent.</p> </dd></param>
  25651. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  25652. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::SetPattern']/*" />
  25653. <msdn-id>bb174031</msdn-id>
  25654. <unmanaged>HRESULT ID3DXLine::SetPattern([In] unsigned int dwPattern)</unmanaged>
  25655. <unmanaged-short>ID3DXLine::SetPattern</unmanaged-short>
  25656. </member>
  25657. <member name="M:SharpDX.Direct3D9.Line.GetPattern">
  25658. <summary>
  25659. <p>Gets the line stipple pattern.</p>
  25660. </summary>
  25661. <returns><p>Returns the line stipple pattern: 1 is opaque, 0 is transparent.</p></returns>
  25662. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetPattern']/*" />
  25663. <msdn-id>bb174024</msdn-id>
  25664. <unmanaged>unsigned int ID3DXLine::GetPattern()</unmanaged>
  25665. <unmanaged-short>ID3DXLine::GetPattern</unmanaged-short>
  25666. </member>
  25667. <member name="M:SharpDX.Direct3D9.Line.SetPatternScale(System.Single)">
  25668. <summary>
  25669. <p>Stretches the stipple pattern along the line direction.</p>
  25670. </summary>
  25671. <param name="fPatternScale"><dd> <p>Stipple pattern scaling value. 1.0f is the default value and represents no scaling. A value less than 1.0f shrinks the pattern, and a value greater than 1.0 stretches the pattern.</p> </dd></param>
  25672. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  25673. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::SetPatternScale']/*" />
  25674. <msdn-id>bb174032</msdn-id>
  25675. <unmanaged>HRESULT ID3DXLine::SetPatternScale([In] float fPatternScale)</unmanaged>
  25676. <unmanaged-short>ID3DXLine::SetPatternScale</unmanaged-short>
  25677. </member>
  25678. <member name="M:SharpDX.Direct3D9.Line.GetPatternScale">
  25679. <summary>
  25680. <p>Gets the stipple-pattern scale value.</p>
  25681. </summary>
  25682. <returns><p>Returns the value used to scale the stipple-pattern. 1.0f is the default value and represents no scaling. A value less than 1.0f shrinks the pattern, and a value greater than 1.0 stretches the pattern.</p></returns>
  25683. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetPatternScale']/*" />
  25684. <msdn-id>bb174025</msdn-id>
  25685. <unmanaged>float ID3DXLine::GetPatternScale()</unmanaged>
  25686. <unmanaged-short>ID3DXLine::GetPatternScale</unmanaged-short>
  25687. </member>
  25688. <member name="M:SharpDX.Direct3D9.Line.SetWidth(System.Single)">
  25689. <summary>
  25690. <p>Specifies the thickness of the line.</p>
  25691. </summary>
  25692. <param name="fWidth"><dd> <p>Describes the line width.</p> </dd></param>
  25693. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  25694. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::SetWidth']/*" />
  25695. <msdn-id>bb174033</msdn-id>
  25696. <unmanaged>HRESULT ID3DXLine::SetWidth([In] float fWidth)</unmanaged>
  25697. <unmanaged-short>ID3DXLine::SetWidth</unmanaged-short>
  25698. </member>
  25699. <member name="M:SharpDX.Direct3D9.Line.GetWidth">
  25700. <summary>
  25701. <p>Gets the thickness of the line.</p>
  25702. </summary>
  25703. <returns><p>The line thickness.</p></returns>
  25704. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetWidth']/*" />
  25705. <msdn-id>bb174026</msdn-id>
  25706. <unmanaged>float ID3DXLine::GetWidth()</unmanaged>
  25707. <unmanaged-short>ID3DXLine::GetWidth</unmanaged-short>
  25708. </member>
  25709. <member name="M:SharpDX.Direct3D9.Line.SetAntialias(SharpDX.Mathematics.Interop.RawBool)">
  25710. <summary>
  25711. <p>Toggles line antialiasing.</p>
  25712. </summary>
  25713. <param name="bAntialias"><dd> <p>Toggles antialiasing on and off. <strong>TRUE</strong> turns antialiasing on, and <strong><see cref="F:SharpDX.Result.False" /></strong> turns antialiasing off.</p> </dd></param>
  25714. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  25715. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::SetAntialias']/*" />
  25716. <msdn-id>bb174029</msdn-id>
  25717. <unmanaged>HRESULT ID3DXLine::SetAntialias([In] BOOL bAntialias)</unmanaged>
  25718. <unmanaged-short>ID3DXLine::SetAntialias</unmanaged-short>
  25719. </member>
  25720. <member name="M:SharpDX.Direct3D9.Line.GetAntialias">
  25721. <summary>
  25722. <p>Gets the line antialiasing state.</p>
  25723. </summary>
  25724. <returns><p>Returns the antialiasing switch value. <strong>TRUE</strong> means antialiasing is on, and <strong><see cref="F:SharpDX.Result.False" /></strong> means antialiasing is off.</p></returns>
  25725. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetAntialias']/*" />
  25726. <msdn-id>bb174021</msdn-id>
  25727. <unmanaged>BOOL ID3DXLine::GetAntialias()</unmanaged>
  25728. <unmanaged-short>ID3DXLine::GetAntialias</unmanaged-short>
  25729. </member>
  25730. <member name="M:SharpDX.Direct3D9.Line.SetGLLines(SharpDX.Mathematics.Interop.RawBool)">
  25731. <summary>
  25732. <p>Toggles the mode to draw OpenGL-style lines.</p>
  25733. </summary>
  25734. <param name="bGLLines"><dd> <p>Toggles OpenGL-style line drawing. <strong>TRUE</strong> enables OpenGL-style lines, and <strong><see cref="F:SharpDX.Result.False" /></strong> enables Direct3D-style lines.</p> </dd></param>
  25735. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  25736. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::SetGLLines']/*" />
  25737. <msdn-id>bb174030</msdn-id>
  25738. <unmanaged>HRESULT ID3DXLine::SetGLLines([In] BOOL bGLLines)</unmanaged>
  25739. <unmanaged-short>ID3DXLine::SetGLLines</unmanaged-short>
  25740. </member>
  25741. <member name="M:SharpDX.Direct3D9.Line.GetGLLines">
  25742. <summary>
  25743. <p>Gets the OpenGL-style line-drawing mode.</p>
  25744. </summary>
  25745. <returns><p>Returns <strong>TRUE</strong> if OpenGL-style lines are enabled, and <strong><see cref="F:SharpDX.Result.False" /></strong> if Direct3D-style lines are enabled.</p></returns>
  25746. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::GetGLLines']/*" />
  25747. <msdn-id>bb174023</msdn-id>
  25748. <unmanaged>BOOL ID3DXLine::GetGLLines()</unmanaged>
  25749. <unmanaged-short>ID3DXLine::GetGLLines</unmanaged-short>
  25750. </member>
  25751. <member name="M:SharpDX.Direct3D9.Line.End">
  25752. <summary>
  25753. <p>Restores the device state to how it was when <strong><see cref="M:SharpDX.Direct3D9.Line.Begin" /></strong> was called.</p>
  25754. </summary>
  25755. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  25756. <remarks>
  25757. <p><strong><see cref="M:SharpDX.Direct3D9.Line.End" /></strong> cannot be used as a substitute for either <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.RenderToSurface.EndScene(SharpDX.Direct3D9.Filter)" /></strong>.</p>
  25758. </remarks>
  25759. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::End']/*" />
  25760. <msdn-id>bb174020</msdn-id>
  25761. <unmanaged>HRESULT ID3DXLine::End()</unmanaged>
  25762. <unmanaged-short>ID3DXLine::End</unmanaged-short>
  25763. </member>
  25764. <member name="M:SharpDX.Direct3D9.Line.OnLostDevice">
  25765. <summary>
  25766. <p>Use this method to release all references to video memory resources and delete all stateblocks. This method should be called whenever a device is lost, or before resetting a device.</p>
  25767. </summary>
  25768. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25769. <remarks>
  25770. <p>This method should be called whenever the device is lost or before the user calls <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>. Even if the device was not actually lost, <strong><see cref="M:SharpDX.Direct3D9.Line.OnLostDevice" /></strong> is responsible for freeing stateblocks and other resources that may need to be released before resetting the device. As a result, the font object cannot be used again before calling <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> and then <strong><see cref="M:SharpDX.Direct3D9.Line.OnResetDevice" /></strong>.</p>
  25771. </remarks>
  25772. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::OnLostDevice']/*" />
  25773. <msdn-id>bb174027</msdn-id>
  25774. <unmanaged>HRESULT ID3DXLine::OnLostDevice()</unmanaged>
  25775. <unmanaged-short>ID3DXLine::OnLostDevice</unmanaged-short>
  25776. </member>
  25777. <member name="M:SharpDX.Direct3D9.Line.OnResetDevice">
  25778. <summary>
  25779. <p>Use this method to re-acquire resources and save initial state.</p>
  25780. </summary>
  25781. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25782. <remarks>
  25783. <p><strong><see cref="M:SharpDX.Direct3D9.Line.OnResetDevice" /></strong> should be called each time the device is reset (using <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>), before any other methods are called. This is a good place to re-acquire video-memory resources and capture state blocks.</p>
  25784. </remarks>
  25785. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXLine::OnResetDevice']/*" />
  25786. <msdn-id>bb174028</msdn-id>
  25787. <unmanaged>HRESULT ID3DXLine::OnResetDevice()</unmanaged>
  25788. <unmanaged-short>ID3DXLine::OnResetDevice</unmanaged-short>
  25789. </member>
  25790. <member name="M:SharpDX.Direct3D9.Line.#ctor(SharpDX.Direct3D9.Device)">
  25791. <summary>
  25792. Instantiates a left-handed coordinate system to create a <see cref="T:SharpDX.Direct3D9.Line"/>.
  25793. </summary>
  25794. <param name="device"><para>Pointer to an <see cref="T:SharpDX.Direct3D9.Device"/> interface, representing the device associated with the created box mesh.</para></param>
  25795. <remarks>
  25796. This function creates a mesh with the <see cref="F:SharpDX.Direct3D9.MeshFlags.Managed"/> creation option and <see cref="F:SharpDX.Direct3D9.VertexFormat.Position"/> | <see cref="F:SharpDX.Direct3D9.VertexFormat.Normal"/> Flexible Vertex Format (FVF).
  25797. </remarks>
  25798. <unmanaged>HRESULT D3DXCreateLine([In] IDirect3DDevice9* pDevice,[Out, Fast] ID3DXLine** ppLine)</unmanaged>
  25799. </member>
  25800. <member name="M:SharpDX.Direct3D9.Line.Draw(SharpDX.Mathematics.Interop.RawVector2[],SharpDX.Mathematics.Interop.RawColorBGRA)">
  25801. <summary>
  25802. Draws a line strip in screen space. Input is in the form of an array that defines points (of <see cref="T:SharpDX.Mathematics.Interop.RawVector2"/>) on the line strip.
  25803. </summary>
  25804. <param name="vertices">No documentation.</param>
  25805. <param name="color">No documentation.</param>
  25806. <unmanaged>HRESULT ID3DXLine::Draw([In] const void* pVertexList,[In] unsigned int dwVertexListCount,[In] D3DCOLOR Color)</unmanaged>
  25807. </member>
  25808. <member name="M:SharpDX.Direct3D9.Line.Draw``1(``0[],SharpDX.Mathematics.Interop.RawColorBGRA)">
  25809. <summary>
  25810. Draws a line strip in screen space. Input is in the form of an array that defines points (of <see cref="T:SharpDX.Mathematics.Interop.RawVector2"/>) on the line strip.
  25811. </summary>
  25812. <param name="vertices">No documentation.</param>
  25813. <param name="color">No documentation.</param>
  25814. <unmanaged>HRESULT ID3DXLine::Draw([In] const void* pVertexList,[In] unsigned int dwVertexListCount,[In] D3DCOLOR Color)</unmanaged>
  25815. </member>
  25816. <member name="M:SharpDX.Direct3D9.Line.DrawTransform(SharpDX.Mathematics.Interop.RawVector3[],SharpDX.Mathematics.Interop.RawMatrix,SharpDX.Mathematics.Interop.RawColorBGRA)">
  25817. <summary>
  25818. Draws a line strip in screen space with a specified input transformation matrix.
  25819. </summary>
  25820. <param name="vertices"><para>Array of vertices that make up the line. See <see cref="T:SharpDX.Mathematics.Interop.RawVector3"/>.</para></param>
  25821. <param name="transform"><para>A scale, rotate, and translate (SRT) matrix for transforming the points. See <see cref="T:SharpDX.Mathematics.Interop.RawMatrix"/>. If this matrix is a projection matrix, any stippled lines will be drawn with a perspective-correct stippling pattern. Or, you can transform the vertices and use <see cref="M:SharpDX.Direct3D9.Line.Draw(System.IntPtr,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA)"/> to draw the line with a nonperspective-correct stipple pattern.</para></param>
  25822. <param name="color"><para>Color of the line. See <see cref="T:SharpDX.Mathematics.Interop.RawColor4"/>.</para></param>
  25823. <returns>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success"/>. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall"/>, D3DXERR_INVALIDDATA.</returns>
  25824. <unmanaged>HRESULT ID3DXLine::DrawTransform([In] const void* pVertexList,[In] unsigned int dwVertexListCount,[In] const D3DXMATRIX* pTransform,[In] D3DCOLOR Color)</unmanaged>
  25825. </member>
  25826. <member name="M:SharpDX.Direct3D9.Line.DrawTransform``1(``0[],SharpDX.Mathematics.Interop.RawMatrix,SharpDX.Mathematics.Interop.RawColorBGRA)">
  25827. <summary>
  25828. Draws a line strip in screen space with a specified input transformation matrix.
  25829. </summary>
  25830. <param name="vertices"><para>Array of vertices that make up the line. See <see cref="T:SharpDX.Mathematics.Interop.RawVector3"/>.</para></param>
  25831. <param name="transform"><para>A scale, rotate, and translate (SRT) matrix for transforming the points. See <see cref="T:SharpDX.Mathematics.Interop.RawMatrix"/>. If this matrix is a projection matrix, any stippled lines will be drawn with a perspective-correct stippling pattern. Or, you can transform the vertices and use <see cref="M:SharpDX.Direct3D9.Line.Draw(System.IntPtr,System.Int32,SharpDX.Mathematics.Interop.RawColorBGRA)"/> to draw the line with a nonperspective-correct stipple pattern.</para></param>
  25832. <param name="color"><para>Color of the line. See <see cref="T:SharpDX.Mathematics.Interop.RawColor4"/>.</para></param>
  25833. <returns>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success"/>. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall"/>, D3DXERR_INVALIDDATA.</returns>
  25834. <unmanaged>HRESULT ID3DXLine::DrawTransform([In] const void* pVertexList,[In] unsigned int dwVertexListCount,[In] const D3DXMATRIX* pTransform,[In] D3DCOLOR Color)</unmanaged>
  25835. </member>
  25836. <member name="T:SharpDX.Direct3D9.Mesh">
  25837. <summary>
  25838. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.Mesh" /> interface to manipulate mesh objects.</p>
  25839. </summary>
  25840. <remarks>
  25841. <p>To obtain the <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, call either the <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateMesh(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateMeshFVF(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Mesh@)" /></strong> function.</p><p>This interface inherits additional functionality from the <strong><see cref="T:SharpDX.Direct3D9.BaseMesh" /></strong> interface.</p><p>The LPD3DXMESH type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.Mesh" /> *LPD3DXMESH;
  25842. </pre>
  25843. </remarks>
  25844. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXMesh']/*" />
  25845. <msdn-id>bb174069</msdn-id>
  25846. <unmanaged>ID3DXMesh</unmanaged>
  25847. <unmanaged-short>ID3DXMesh</unmanaged-short>
  25848. </member>
  25849. <member name="M:SharpDX.Direct3D9.Mesh.#ctor(System.IntPtr)">
  25850. <summary>
  25851. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Mesh"/> class.
  25852. </summary>
  25853. <param name="nativePtr">The native pointer.</param>
  25854. </member>
  25855. <member name="M:SharpDX.Direct3D9.Mesh.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Mesh">
  25856. <summary>
  25857. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Mesh"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  25858. </summary>
  25859. <param name="nativePointer">The native pointer.</param>
  25860. <returns>
  25861. The result of the conversion.
  25862. </returns>
  25863. </member>
  25864. <member name="M:SharpDX.Direct3D9.Mesh.LockAttributeBuffer(System.Int32,System.Int32)">
  25865. <summary>
  25866. <p>Locks the mesh buffer that contains the mesh attribute data, and returns a reference to it.</p>
  25867. </summary>
  25868. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> </ul> <p>For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />.</p> </dd></param>
  25869. <param name="dataOut"><dd> <p>Address of a reference to a buffer containing a DWORD for each face in the mesh.</p> </dd></param>
  25870. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25871. <remarks>
  25872. <p>If <strong><see cref="M:SharpDX.Direct3D9.Mesh.Optimize(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.Mesh@)" /></strong> has been called, the mesh will also have an attribute table that can be accessed using the <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GetAttributeTable(SharpDX.Direct3D9.AttributeRange@,System.Int32@)" /></strong> method. </p>
  25873. </remarks>
  25874. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXMesh::LockAttributeBuffer']/*" />
  25875. <msdn-id>bb174070</msdn-id>
  25876. <unmanaged>HRESULT ID3DXMesh::LockAttributeBuffer([In] unsigned int Flags,[In] unsigned int** ppData)</unmanaged>
  25877. <unmanaged-short>ID3DXMesh::LockAttributeBuffer</unmanaged-short>
  25878. </member>
  25879. <member name="M:SharpDX.Direct3D9.Mesh.UnlockAttributeBuffer">
  25880. <summary>
  25881. <p>Unlocks an attribute buffer.</p>
  25882. </summary>
  25883. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  25884. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXMesh::UnlockAttributeBuffer']/*" />
  25885. <msdn-id>bb174074</msdn-id>
  25886. <unmanaged>HRESULT ID3DXMesh::UnlockAttributeBuffer()</unmanaged>
  25887. <unmanaged-short>ID3DXMesh::UnlockAttributeBuffer</unmanaged-short>
  25888. </member>
  25889. <member name="M:SharpDX.Direct3D9.Mesh.Optimize(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.Mesh@)">
  25890. <summary>
  25891. <p>Generates a new mesh with reordered faces and vertices to optimize drawing performance.</p>
  25892. </summary>
  25893. <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 <strong>D3DXMESHOPT</strong> and <strong>D3DXMESH</strong> (except <see cref="F:SharpDX.Direct3D9.MeshFlags.Use32Bit" />, <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferWriteOnly" />, and <see cref="F:SharpDX.Direct3D9.MeshFlags.WriteOnly" />).</p> </dd></param>
  25894. <param name="adjacencyInRef"><dd> <p>Pointer to an array of three DWORDs per face that specifies the three neighbors for each face in the source mesh. If the edge has no adjacent faces, the value is 0xffffffff. See Remarks.</p> </dd></param>
  25895. <param name="adjacencyOutRef"><dd> <p>Pointer to an array of three DWORDs per face that specifies the three neighbors for each face in the optimized mesh. If the edge has no adjacent faces, the value is 0xffffffff.</p> </dd></param>
  25896. <param name="faceRemapRef"><dd> <p>An array of DWORDs, 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>
  25897. <param name="vertexRemapOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface, 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>
  25898. <param name="optMeshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the optimized mesh.</p> </dd></param>
  25899. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  25900. <remarks>
  25901. <p>This method generates a new mesh. Before running Optimize, an application must generate an adjacency buffer by calling <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GenerateAdjacency(System.Single,System.Int32)" /></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.Direct3D9.BaseMesh.CloneMesh(System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.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>
  25902. </remarks>
  25903. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXMesh::Optimize']/*" />
  25904. <msdn-id>bb174071</msdn-id>
  25905. <unmanaged>HRESULT ID3DXMesh::Optimize([In] unsigned int Flags,[In] const unsigned int* pAdjacencyIn,[In] unsigned int* pAdjacencyOut,[In] unsigned int* pFaceRemap,[In] ID3DXBuffer** ppVertexRemap,[In] ID3DXMesh** ppOptMesh)</unmanaged>
  25906. <unmanaged-short>ID3DXMesh::Optimize</unmanaged-short>
  25907. </member>
  25908. <member name="M:SharpDX.Direct3D9.Mesh.OptimizeInplace(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@)">
  25909. <summary>
  25910. <p>Generates a mesh with reordered faces and vertices to optimize drawing performance. This method reorders the existing mesh.</p>
  25911. </summary>
  25912. <param name="flags"><dd> <p>Combination of one or more <strong>D3DXMESHOPT</strong> flags, specifying the type of optimization to perform.</p> </dd></param>
  25913. <param name="adjacencyInRef"><dd> <p>Pointer to an array of three DWORDs per face that specifies the three neighbors for each face in the source mesh. If the edge has no adjacent faces, the value is 0xffffffff.</p> </dd></param>
  25914. <param name="adjacencyOutRef"><dd> <p>Pointer to an array of three DWORDs per face that specifies the three neighbors for each face in the optimized mesh. If the edge has no adjacent faces, the value is 0xffffffff. If the value supplied for this argument is <strong><c>null</c></strong>, adjacency data is not returned.</p> </dd></param>
  25915. <param name="faceRemapRef"><dd> <p>An array of DWORDs, 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>
  25916. <param name="vertexRemapOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface, 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. If the value supplied for this argument is <strong><c>null</c></strong>, vertex remap data is not returned.</p> </dd></param>
  25917. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_CANNOTATTRSORT, E_OUTOFMEMORY.</p></returns>
  25918. <remarks>
  25919. <p>Before running <strong><see cref="M:SharpDX.Direct3D9.Mesh.OptimizeInplace(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@)" /></strong>, an application must generate an adjacency buffer by calling <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GenerateAdjacency(System.Single,System.Int32)" /></strong>. The adjacency buffer contains adjacency data, such as a list of edges and the faces that are adjacent to each other.</p><p><strong>Note</strong>??This method will fail if the mesh is sharing its vertex buffer with another mesh, unless the <see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.IgnoreVertices" /> is set in Flags.</p>
  25920. </remarks>
  25921. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXMesh::OptimizeInplace']/*" />
  25922. <msdn-id>bb174072</msdn-id>
  25923. <unmanaged>HRESULT ID3DXMesh::OptimizeInplace([In] unsigned int Flags,[In] const unsigned int* pAdjacencyIn,[In] unsigned int* pAdjacencyOut,[In] unsigned int* pFaceRemap,[In] ID3DXBuffer** ppVertexRemap)</unmanaged>
  25924. <unmanaged-short>ID3DXMesh::OptimizeInplace</unmanaged-short>
  25925. </member>
  25926. <member name="M:SharpDX.Direct3D9.Mesh.SetAttributeTable(SharpDX.Direct3D9.AttributeRange@,System.Int32)">
  25927. <summary>
  25928. <p>Sets the attribute table for a mesh and the number of entries stored in the table.</p>
  25929. </summary>
  25930. <param name="attribTableRef"><dd> <p>Pointer to an array of <strong><see cref="T:SharpDX.Direct3D9.AttributeRange" /></strong> structures, representing the entries in the mesh attribute table.</p> </dd></param>
  25931. <param name="cAttribTableSize"><dd> <p>Number of attributes in the mesh attribute table.</p> </dd></param>
  25932. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  25933. <remarks>
  25934. <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 <strong><see cref="M:SharpDX.Direct3D9.Mesh.Optimize(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.Mesh@)" /></strong> again.</p>
  25935. </remarks>
  25936. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXMesh::SetAttributeTable']/*" />
  25937. <msdn-id>bb174073</msdn-id>
  25938. <unmanaged>HRESULT ID3DXMesh::SetAttributeTable([In] const D3DXATTRIBUTERANGE* pAttribTable,[In] unsigned int cAttribTableSize)</unmanaged>
  25939. <unmanaged-short>ID3DXMesh::SetAttributeTable</unmanaged-short>
  25940. </member>
  25941. <member name="T:SharpDX.Direct3D9.PatchMesh">
  25942. <summary>
  25943. <p>This interface encapsulates patch mesh functionality.</p>
  25944. </summary>
  25945. <remarks>
  25946. <p>A patch mesh is a mesh that consists of a series of patches. </p><p>To obtain the <strong><see cref="T:SharpDX.Direct3D9.PatchMesh" /></strong> interface, call the <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreatePatchMesh(SharpDX.Direct3D9.PatchInfo,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.VertexElement[],SharpDX.Direct3D9.Device,SharpDX.Direct3D9.PatchMesh@)" /></strong> function.</p><p>The LPD3DXPATCHMESH type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.PatchMesh" /></strong> interface, as follows: </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.PatchMesh" /> *LPD3DXPATCHMESH;
  25947. </pre>
  25948. </remarks>
  25949. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh']/*" />
  25950. <msdn-id>bb174075</msdn-id>
  25951. <unmanaged>ID3DXPatchMesh</unmanaged>
  25952. <unmanaged-short>ID3DXPatchMesh</unmanaged-short>
  25953. </member>
  25954. <member name="M:SharpDX.Direct3D9.PatchMesh.#ctor(System.IntPtr)">
  25955. <summary>
  25956. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.PatchMesh"/> class.
  25957. </summary>
  25958. <param name="nativePtr">The native pointer.</param>
  25959. </member>
  25960. <member name="M:SharpDX.Direct3D9.PatchMesh.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.PatchMesh">
  25961. <summary>
  25962. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.PatchMesh"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  25963. </summary>
  25964. <param name="nativePointer">The native pointer.</param>
  25965. <returns>
  25966. The result of the conversion.
  25967. </returns>
  25968. </member>
  25969. <member name="P:SharpDX.Direct3D9.PatchMesh.NumPatches">
  25970. <summary>
  25971. <p>Gets the number of patches in the mesh.</p>
  25972. </summary>
  25973. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetNumPatches']/*" />
  25974. <msdn-id>bb174083</msdn-id>
  25975. <unmanaged>GetNumPatches</unmanaged>
  25976. <unmanaged-short>GetNumPatches</unmanaged-short>
  25977. <unmanaged>unsigned int ID3DXPatchMesh::GetNumPatches()</unmanaged>
  25978. </member>
  25979. <member name="P:SharpDX.Direct3D9.PatchMesh.NumVertices">
  25980. <summary>
  25981. <p>Gets the number of vertices in the mesh.</p>
  25982. </summary>
  25983. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetNumVertices']/*" />
  25984. <msdn-id>bb174084</msdn-id>
  25985. <unmanaged>GetNumVertices</unmanaged>
  25986. <unmanaged-short>GetNumVertices</unmanaged-short>
  25987. <unmanaged>unsigned int ID3DXPatchMesh::GetNumVertices()</unmanaged>
  25988. </member>
  25989. <member name="P:SharpDX.Direct3D9.PatchMesh.ControlVerticesPerPatch">
  25990. <summary>
  25991. <p>Gets the number of control vertices per patch.</p>
  25992. </summary>
  25993. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetControlVerticesPerPatch']/*" />
  25994. <msdn-id>bb174078</msdn-id>
  25995. <unmanaged>GetControlVerticesPerPatch</unmanaged>
  25996. <unmanaged-short>GetControlVerticesPerPatch</unmanaged-short>
  25997. <unmanaged>unsigned int ID3DXPatchMesh::GetControlVerticesPerPatch()</unmanaged>
  25998. </member>
  25999. <member name="P:SharpDX.Direct3D9.PatchMesh.Options">
  26000. <summary>
  26001. <p>Gets the type of patch.</p>
  26002. </summary>
  26003. <remarks>
  26004. <p>For more information about patch types, see <strong><see cref="T:SharpDX.Direct3D9.PatchMeshType" /></strong>.</p>
  26005. </remarks>
  26006. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetOptions']/*" />
  26007. <msdn-id>bb174085</msdn-id>
  26008. <unmanaged>GetOptions</unmanaged>
  26009. <unmanaged-short>GetOptions</unmanaged-short>
  26010. <unmanaged>unsigned int ID3DXPatchMesh::GetOptions()</unmanaged>
  26011. </member>
  26012. <member name="P:SharpDX.Direct3D9.PatchMesh.Device">
  26013. <summary>
  26014. <p>Gets the device that created the mesh.</p>
  26015. </summary>
  26016. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetDevice']/*" />
  26017. <msdn-id>bb174080</msdn-id>
  26018. <unmanaged>GetDevice</unmanaged>
  26019. <unmanaged-short>GetDevice</unmanaged-short>
  26020. <unmanaged>HRESULT ID3DXPatchMesh::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  26021. </member>
  26022. <member name="P:SharpDX.Direct3D9.PatchMesh.VertexBuffer">
  26023. <summary>
  26024. <p>Gets the mesh vertex buffer.</p>
  26025. </summary>
  26026. <remarks>
  26027. <p>This method assumes uniform tessellation.</p>
  26028. </remarks>
  26029. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetVertexBuffer']/*" />
  26030. <msdn-id>bb174088</msdn-id>
  26031. <unmanaged>GetVertexBuffer</unmanaged>
  26032. <unmanaged-short>GetVertexBuffer</unmanaged-short>
  26033. <unmanaged>HRESULT ID3DXPatchMesh::GetVertexBuffer([Out] IDirect3DVertexBuffer9** ppVB)</unmanaged>
  26034. </member>
  26035. <member name="P:SharpDX.Direct3D9.PatchMesh.IndexBuffer">
  26036. <summary>
  26037. <p>Gets the mesh index buffer.</p>
  26038. </summary>
  26039. <remarks>
  26040. <p> The index buffer contains the vertex ordering in the vertex buffer. The index buffer is used to access the vertex buffer when the mesh is rendered.</p>
  26041. </remarks>
  26042. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetIndexBuffer']/*" />
  26043. <msdn-id>bb174082</msdn-id>
  26044. <unmanaged>GetIndexBuffer</unmanaged>
  26045. <unmanaged-short>GetIndexBuffer</unmanaged-short>
  26046. <unmanaged>HRESULT ID3DXPatchMesh::GetIndexBuffer([Out] IDirect3DIndexBuffer9** ppIB)</unmanaged>
  26047. </member>
  26048. <member name="M:SharpDX.Direct3D9.PatchMesh.GetNumPatches">
  26049. <summary>
  26050. <p>Gets the number of patches in the mesh.</p>
  26051. </summary>
  26052. <returns><p>The number of patches.</p></returns>
  26053. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetNumPatches']/*" />
  26054. <msdn-id>bb174083</msdn-id>
  26055. <unmanaged>unsigned int ID3DXPatchMesh::GetNumPatches()</unmanaged>
  26056. <unmanaged-short>ID3DXPatchMesh::GetNumPatches</unmanaged-short>
  26057. </member>
  26058. <member name="M:SharpDX.Direct3D9.PatchMesh.GetNumVertices">
  26059. <summary>
  26060. <p>Gets the number of vertices in the mesh.</p>
  26061. </summary>
  26062. <returns><p>The number of vertices.</p></returns>
  26063. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetNumVertices']/*" />
  26064. <msdn-id>bb174084</msdn-id>
  26065. <unmanaged>unsigned int ID3DXPatchMesh::GetNumVertices()</unmanaged>
  26066. <unmanaged-short>ID3DXPatchMesh::GetNumVertices</unmanaged-short>
  26067. </member>
  26068. <member name="M:SharpDX.Direct3D9.PatchMesh.GetDeclaration(SharpDX.Direct3D9.VertexElement)">
  26069. <summary>
  26070. <p>Gets the vertex declaration.</p>
  26071. </summary>
  26072. <param name="declaration"><dd> <p>Array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements describing the vertex format of the mesh vertices. The dimension of this declarator array is <strong><see cref="F:SharpDX.Direct3D9.VertexFormatDeclaratorCount.Max" /></strong>. The vertex element array ends with the <strong>D3DDECL_END</strong> macro.</p> </dd></param>
  26073. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26074. <remarks>
  26075. <p>The array of elements includes the <strong>D3DDECL_END</strong> macro, which ends the declaration.</p>
  26076. </remarks>
  26077. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetDeclaration']/*" />
  26078. <msdn-id>bb174079</msdn-id>
  26079. <unmanaged>HRESULT ID3DXPatchMesh::GetDeclaration([In] D3DVERTEXELEMENT9* Declaration)</unmanaged>
  26080. <unmanaged-short>ID3DXPatchMesh::GetDeclaration</unmanaged-short>
  26081. </member>
  26082. <member name="M:SharpDX.Direct3D9.PatchMesh.GetControlVerticesPerPatch">
  26083. <summary>
  26084. <p>Gets the number of control vertices per patch.</p>
  26085. </summary>
  26086. <returns><p>The number of control vertices per patch.</p></returns>
  26087. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetControlVerticesPerPatch']/*" />
  26088. <msdn-id>bb174078</msdn-id>
  26089. <unmanaged>unsigned int ID3DXPatchMesh::GetControlVerticesPerPatch()</unmanaged>
  26090. <unmanaged-short>ID3DXPatchMesh::GetControlVerticesPerPatch</unmanaged-short>
  26091. </member>
  26092. <member name="M:SharpDX.Direct3D9.PatchMesh.GetOptions">
  26093. <summary>
  26094. <p>Gets the type of patch.</p>
  26095. </summary>
  26096. <returns><p>The patch type.</p></returns>
  26097. <remarks>
  26098. <p>For more information about patch types, see <strong><see cref="T:SharpDX.Direct3D9.PatchMeshType" /></strong>.</p>
  26099. </remarks>
  26100. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetOptions']/*" />
  26101. <msdn-id>bb174085</msdn-id>
  26102. <unmanaged>unsigned int ID3DXPatchMesh::GetOptions()</unmanaged>
  26103. <unmanaged-short>ID3DXPatchMesh::GetOptions</unmanaged-short>
  26104. </member>
  26105. <member name="M:SharpDX.Direct3D9.PatchMesh.GetDevice(SharpDX.Direct3D9.Device@)">
  26106. <summary>
  26107. <p>Gets the device that created the mesh.</p>
  26108. </summary>
  26109. <param name="deviceOut"><dd> <p>Pointer to the device.</p> </dd></param>
  26110. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26111. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetDevice']/*" />
  26112. <msdn-id>bb174080</msdn-id>
  26113. <unmanaged>HRESULT ID3DXPatchMesh::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  26114. <unmanaged-short>ID3DXPatchMesh::GetDevice</unmanaged-short>
  26115. </member>
  26116. <member name="M:SharpDX.Direct3D9.PatchMesh.GetPatchInfo(SharpDX.Direct3D9.PatchInfo)">
  26117. <summary>
  26118. <p>Gets the attributes of the patch.</p>
  26119. </summary>
  26120. <param name="patchInfo"><dd> <p>Pointer to the structures containing the patch attributes. For more information about patch attributes, see <strong><see cref="T:SharpDX.Direct3D9.PatchInfo" /></strong>.</p> </dd></param>
  26121. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26122. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetPatchInfo']/*" />
  26123. <msdn-id>bb174086</msdn-id>
  26124. <unmanaged>HRESULT ID3DXPatchMesh::GetPatchInfo([In] D3DXPATCHINFO* PatchInfo)</unmanaged>
  26125. <unmanaged-short>ID3DXPatchMesh::GetPatchInfo</unmanaged-short>
  26126. </member>
  26127. <member name="M:SharpDX.Direct3D9.PatchMesh.GetVertexBuffer(SharpDX.Direct3D9.VertexBuffer@)">
  26128. <summary>
  26129. <p>Gets the mesh vertex buffer.</p>
  26130. </summary>
  26131. <param name="vBOut"><dd> <p>Pointer to the vertex buffer.</p> </dd></param>
  26132. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26133. <remarks>
  26134. <p>This method assumes uniform tessellation.</p>
  26135. </remarks>
  26136. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetVertexBuffer']/*" />
  26137. <msdn-id>bb174088</msdn-id>
  26138. <unmanaged>HRESULT ID3DXPatchMesh::GetVertexBuffer([Out] IDirect3DVertexBuffer9** ppVB)</unmanaged>
  26139. <unmanaged-short>ID3DXPatchMesh::GetVertexBuffer</unmanaged-short>
  26140. </member>
  26141. <member name="M:SharpDX.Direct3D9.PatchMesh.GetIndexBuffer(SharpDX.Direct3D9.IndexBuffer@)">
  26142. <summary>
  26143. <p>Gets the mesh index buffer.</p>
  26144. </summary>
  26145. <param name="iBOut"><dd> <p>Pointer to the index buffer.</p> </dd></param>
  26146. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26147. <remarks>
  26148. <p> The index buffer contains the vertex ordering in the vertex buffer. The index buffer is used to access the vertex buffer when the mesh is rendered.</p>
  26149. </remarks>
  26150. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetIndexBuffer']/*" />
  26151. <msdn-id>bb174082</msdn-id>
  26152. <unmanaged>HRESULT ID3DXPatchMesh::GetIndexBuffer([Out] IDirect3DIndexBuffer9** ppIB)</unmanaged>
  26153. <unmanaged-short>ID3DXPatchMesh::GetIndexBuffer</unmanaged-short>
  26154. </member>
  26155. <member name="M:SharpDX.Direct3D9.PatchMesh.LockVertexBuffer(System.Int32,System.IntPtr)">
  26156. <summary>
  26157. <p>Lock the vertex buffer.</p>
  26158. </summary>
  26159. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoOverwrite" /></li> </ul> <p> For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />.</p> </dd></param>
  26160. <param name="dataOut"><dd> <p>VOID* reference to a memory buffer containing the returned vertex data.</p> </dd></param>
  26161. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26162. <remarks>
  26163. <p>The vertex buffer is usually locked, written to, and then unlocked for reading.</p><p>Patch meshes use 16-bit index buffers.</p>
  26164. </remarks>
  26165. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::LockVertexBuffer']/*" />
  26166. <msdn-id>bb174091</msdn-id>
  26167. <unmanaged>HRESULT ID3DXPatchMesh::LockVertexBuffer([In] unsigned int flags,[In] void** ppData)</unmanaged>
  26168. <unmanaged-short>ID3DXPatchMesh::LockVertexBuffer</unmanaged-short>
  26169. </member>
  26170. <member name="M:SharpDX.Direct3D9.PatchMesh.UnlockVertexBuffer">
  26171. <summary>
  26172. <p>Unlock the vertex buffer.</p>
  26173. </summary>
  26174. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26175. <remarks>
  26176. <p>The vertex buffer is usually locked, written to, and then unlocked for reading.</p>
  26177. </remarks>
  26178. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::UnlockVertexBuffer']/*" />
  26179. <msdn-id>bb174098</msdn-id>
  26180. <unmanaged>HRESULT ID3DXPatchMesh::UnlockVertexBuffer()</unmanaged>
  26181. <unmanaged-short>ID3DXPatchMesh::UnlockVertexBuffer</unmanaged-short>
  26182. </member>
  26183. <member name="M:SharpDX.Direct3D9.PatchMesh.LockIndexBuffer(System.Int32,System.IntPtr)">
  26184. <summary>
  26185. <p>Lock the index buffer.</p>
  26186. </summary>
  26187. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> </ul> <p> For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />.</p> </dd></param>
  26188. <param name="dataOut"><dd> <p>VOID* reference to a memory buffer containing the returned index data.</p> </dd></param>
  26189. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26190. <remarks>
  26191. <p>The index buffer is usually locked, written to, and then unlocked for reading. Patch mesh index buffers are 16-bit buffers.</p>
  26192. </remarks>
  26193. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::LockIndexBuffer']/*" />
  26194. <msdn-id>bb174090</msdn-id>
  26195. <unmanaged>HRESULT ID3DXPatchMesh::LockIndexBuffer([In] unsigned int flags,[In] void** ppData)</unmanaged>
  26196. <unmanaged-short>ID3DXPatchMesh::LockIndexBuffer</unmanaged-short>
  26197. </member>
  26198. <member name="M:SharpDX.Direct3D9.PatchMesh.UnlockIndexBuffer">
  26199. <summary>
  26200. <p>Unlock the index buffer.</p>
  26201. </summary>
  26202. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26203. <remarks>
  26204. <p>The index buffer is usually locked, written to, and then unlocked for reading.</p>
  26205. </remarks>
  26206. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::UnlockIndexBuffer']/*" />
  26207. <msdn-id>bb174097</msdn-id>
  26208. <unmanaged>HRESULT ID3DXPatchMesh::UnlockIndexBuffer()</unmanaged>
  26209. <unmanaged-short>ID3DXPatchMesh::UnlockIndexBuffer</unmanaged-short>
  26210. </member>
  26211. <member name="M:SharpDX.Direct3D9.PatchMesh.LockAttributeBuffer(System.Int32,System.Int32)">
  26212. <summary>
  26213. <p>Locks the attribute buffer.</p>
  26214. </summary>
  26215. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> </ul> <p> For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />.</p> </dd></param>
  26216. <param name="dataOut"><dd> <p>Address of a reference to a buffer containing a DWORD for each face in the mesh.</p> </dd></param>
  26217. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26218. <remarks>
  26219. <p>The attribute buffer is usually locked, written to, and then unlocked for reading.</p>
  26220. </remarks>
  26221. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::LockAttributeBuffer']/*" />
  26222. <msdn-id>bb174089</msdn-id>
  26223. <unmanaged>HRESULT ID3DXPatchMesh::LockAttributeBuffer([In] unsigned int flags,[In] unsigned int** ppData)</unmanaged>
  26224. <unmanaged-short>ID3DXPatchMesh::LockAttributeBuffer</unmanaged-short>
  26225. </member>
  26226. <member name="M:SharpDX.Direct3D9.PatchMesh.UnlockAttributeBuffer">
  26227. <summary>
  26228. <p>Unlock the attribute buffer.</p>
  26229. </summary>
  26230. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26231. <remarks>
  26232. <p>The attribute buffer is usually locked, written to, and then unlocked for reading.</p>
  26233. </remarks>
  26234. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::UnlockAttributeBuffer']/*" />
  26235. <msdn-id>bb174096</msdn-id>
  26236. <unmanaged>HRESULT ID3DXPatchMesh::UnlockAttributeBuffer()</unmanaged>
  26237. <unmanaged-short>ID3DXPatchMesh::UnlockAttributeBuffer</unmanaged-short>
  26238. </member>
  26239. <member name="M:SharpDX.Direct3D9.PatchMesh.GetTessSize(System.Single,System.Int32,System.Int32@,System.Int32@)">
  26240. <summary>
  26241. <p>Gets the size of the tessellated mesh, given a tessellation level.</p>
  26242. </summary>
  26243. <param name="fTessLevel"><dd> <p>Tessellation level.</p> </dd></param>
  26244. <param name="adaptive"><dd> <p>Adaptive tessellation. For adaptive tessellation, set this value to <strong>TRUE</strong> and set fTessLevel to the maximum tessellation value. This will result in the maximum mesh size necessary for adaptive tessellation.</p> </dd></param>
  26245. <param name="numTriangles"><dd> <p>Pointer to the number of triangles generated by the tessellated mesh.</p> </dd></param>
  26246. <param name="numVertices"><dd> <p>Pointer to the number of vertices generated by the tessellated mesh.</p> </dd></param>
  26247. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26248. <remarks>
  26249. <p>This method assumes uniform tessellation.</p>
  26250. </remarks>
  26251. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetTessSize']/*" />
  26252. <msdn-id>bb174087</msdn-id>
  26253. <unmanaged>HRESULT ID3DXPatchMesh::GetTessSize([In] float fTessLevel,[In] unsigned int Adaptive,[Out] unsigned int* NumTriangles,[Out] unsigned int* NumVertices)</unmanaged>
  26254. <unmanaged-short>ID3DXPatchMesh::GetTessSize</unmanaged-short>
  26255. </member>
  26256. <member name="M:SharpDX.Direct3D9.PatchMesh.GenerateAdjacency(System.Single)">
  26257. <summary>
  26258. <p>Generate a list of mesh edges and the patches that share each edge.</p>
  26259. </summary>
  26260. <param name="tolerance"><dd> <p>Specifies that vertices that differ in position by less than the tolerance should be treated as coincident.</p> </dd></param>
  26261. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26262. <remarks>
  26263. <p>After an application generates adjacency information for a mesh, the mesh data can be optimized for better drawing performance. This method determines which patches are adjacent (within the provided tolerance). This information is used internally to optimize tessellation.</p>
  26264. </remarks>
  26265. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GenerateAdjacency']/*" />
  26266. <msdn-id>bb174077</msdn-id>
  26267. <unmanaged>HRESULT ID3DXPatchMesh::GenerateAdjacency([In] float Tolerance)</unmanaged>
  26268. <unmanaged-short>ID3DXPatchMesh::GenerateAdjacency</unmanaged-short>
  26269. </member>
  26270. <member name="M:SharpDX.Direct3D9.PatchMesh.CloneMesh(System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.PatchMesh@)">
  26271. <summary>
  26272. <p>Creates a new patch mesh with the specified vertex declaration.</p>
  26273. </summary>
  26274. <param name="options"><dd> <p>Combination of one or more <strong>D3DXMESH</strong> flags that specify creation options for the mesh.</p> </dd></param>
  26275. <param name="declRef"><dd> <p>Array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements that specify the vertex format for the vertices in the output mesh.</p> </dd></param>
  26276. <param name="meshRef"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.PatchMesh" /></strong> interface that represents the cloned mesh.</p> </dd></param>
  26277. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26278. <remarks>
  26279. <p><strong>CloneMesh</strong> converts the vertex buffer to the new vertex declaration. Entries in the vertex declaration that are new to the original mesh are set to 0. If the current mesh has adjacency, the new mesh will also have adjacency.</p>
  26280. </remarks>
  26281. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::CloneMesh']/*" />
  26282. <msdn-id>bb174076</msdn-id>
  26283. <unmanaged>HRESULT ID3DXPatchMesh::CloneMesh([In] unsigned int Options,[In] const D3DVERTEXELEMENT9* pDecl,[In] ID3DXPatchMesh** pMesh)</unmanaged>
  26284. <unmanaged-short>ID3DXPatchMesh::CloneMesh</unmanaged-short>
  26285. </member>
  26286. <member name="M:SharpDX.Direct3D9.PatchMesh.Optimize(System.Int32)">
  26287. <summary>
  26288. <p>Optimizes the patch mesh for efficient tessellation.</p>
  26289. </summary>
  26290. <param name="flags"><dd> <p>Currently unused.</p> </dd></param>
  26291. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_CANNOTATTRSORT.</p></returns>
  26292. <remarks>
  26293. <p>After an application generates adjacency information for a mesh, the mesh data can be optimized (reordered) for better drawing performance. This method determines which patches are adjacent (within the provided tolerance).</p><p>Adjacency information is also used to optimize tessellation. Generate adjacency information once and tessellate repeatedly by calling <strong><see cref="M:SharpDX.Direct3D9.PatchMesh.Tessellate(System.Single,SharpDX.Direct3D9.Mesh)" /></strong>. The optimization performed is independent of the actual tessellation level used. However, if the mesh vertices are changed, you must regenerate the adjacency information.</p>
  26294. </remarks>
  26295. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::Optimize']/*" />
  26296. <msdn-id>bb174092</msdn-id>
  26297. <unmanaged>HRESULT ID3DXPatchMesh::Optimize([In] unsigned int flags)</unmanaged>
  26298. <unmanaged-short>ID3DXPatchMesh::Optimize</unmanaged-short>
  26299. </member>
  26300. <member name="M:SharpDX.Direct3D9.PatchMesh.SetDisplaceParam(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.TextureFilter,SharpDX.Direct3D9.TextureFilter,SharpDX.Direct3D9.TextureFilter,SharpDX.Direct3D9.TextureAddress,System.Int32)">
  26301. <summary>
  26302. <p>Sets mesh geometry displacement parameters.</p>
  26303. </summary>
  26304. <param name="texture"><dd> <p>Texture containing the displacement data.</p> </dd></param>
  26305. <param name="minFilter"><dd> <p>Minification level. For more information, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p> </dd></param>
  26306. <param name="magFilter"><dd> <p>Magnification level. For more information, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p> </dd></param>
  26307. <param name="mipFilter"><dd> <p>Mip filter level. For more information, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p> </dd></param>
  26308. <param name="wrap"><dd> <p>Texture address wrap mode. For more information, see <strong><see cref="T:SharpDX.Direct3D9.TextureAddress" /></strong> </p> </dd></param>
  26309. <param name="dwLODBias"><dd> <p>Level of detail bias value.</p> </dd></param>
  26310. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26311. <remarks>
  26312. <p>Displacement maps can only be 2D textures. Mipmapping is ignored for nonadaptive tessellation.</p>
  26313. </remarks>
  26314. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::SetDisplaceParam']/*" />
  26315. <msdn-id>bb174093</msdn-id>
  26316. <unmanaged>HRESULT ID3DXPatchMesh::SetDisplaceParam([In] IDirect3DBaseTexture9* Texture,[In] D3DTEXTUREFILTERTYPE MinFilter,[In] D3DTEXTUREFILTERTYPE MagFilter,[In] D3DTEXTUREFILTERTYPE MipFilter,[In] D3DTEXTUREADDRESS Wrap,[In] unsigned int dwLODBias)</unmanaged>
  26317. <unmanaged-short>ID3DXPatchMesh::SetDisplaceParam</unmanaged-short>
  26318. </member>
  26319. <member name="M:SharpDX.Direct3D9.PatchMesh.GetDisplaceParam(SharpDX.Direct3D9.BaseTexture@,SharpDX.Direct3D9.TextureFilter@,SharpDX.Direct3D9.TextureFilter@,SharpDX.Direct3D9.TextureFilter@,SharpDX.Direct3D9.TextureAddress@,System.Int32@)">
  26320. <summary>
  26321. <p>Gets mesh geometry displacement parameters.</p>
  26322. </summary>
  26323. <param name="texture"><dd> <p>Texture containing the displacement data.</p> </dd></param>
  26324. <param name="minFilter"><dd> <p>Minification level. For more information, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p> </dd></param>
  26325. <param name="magFilter"><dd> <p>Magnification level. For more information, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p> </dd></param>
  26326. <param name="mipFilter"><dd> <p>Mip filter level. For more information, see <strong><see cref="T:SharpDX.Direct3D9.TextureFilter" /></strong>.</p> </dd></param>
  26327. <param name="wrap"><dd> <p>Texture address wrap mode. For more information, see <strong><see cref="T:SharpDX.Direct3D9.TextureAddress" /></strong>.</p> </dd></param>
  26328. <param name="dwLODBias"><dd> <p>Level of detail bias value.</p> </dd></param>
  26329. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26330. <remarks>
  26331. <p>Displacement maps can only be 2D textures. Mipmapping is ignored for nonadaptive tessellation.</p>
  26332. </remarks>
  26333. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::GetDisplaceParam']/*" />
  26334. <msdn-id>bb174081</msdn-id>
  26335. <unmanaged>HRESULT ID3DXPatchMesh::GetDisplaceParam([Out] IDirect3DBaseTexture9** Texture,[Out] D3DTEXTUREFILTERTYPE* MinFilter,[Out] D3DTEXTUREFILTERTYPE* MagFilter,[Out] D3DTEXTUREFILTERTYPE* MipFilter,[Out] D3DTEXTUREADDRESS* Wrap,[Out] unsigned int* dwLODBias)</unmanaged>
  26336. <unmanaged-short>ID3DXPatchMesh::GetDisplaceParam</unmanaged-short>
  26337. </member>
  26338. <member name="M:SharpDX.Direct3D9.PatchMesh.Tessellate(System.Single,SharpDX.Direct3D9.Mesh)">
  26339. <summary>
  26340. <p>Performs uniform tessellation based on the tessellation level.</p>
  26341. </summary>
  26342. <param name="fTessLevel"><dd> <p>Tessellation level. This is the number of vertices introduced between existing vertices. The range of this float parameter is 0 &lt; fTessLevel &lt;= 32.</p> </dd></param>
  26343. <param name="meshRef"><dd> <p>Resulting tessellated mesh. See <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>.</p> </dd></param>
  26344. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26345. <remarks>
  26346. <p>This function will perform more efficiently if the patch mesh has been optimized using <strong><see cref="M:SharpDX.Direct3D9.PatchMesh.Optimize(System.Int32)" /></strong>. </p>
  26347. </remarks>
  26348. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::Tessellate']/*" />
  26349. <msdn-id>bb174094</msdn-id>
  26350. <unmanaged>HRESULT ID3DXPatchMesh::Tessellate([In] float fTessLevel,[In] ID3DXMesh* pMesh)</unmanaged>
  26351. <unmanaged-short>ID3DXPatchMesh::Tessellate</unmanaged-short>
  26352. </member>
  26353. <member name="M:SharpDX.Direct3D9.PatchMesh.TessellateAdaptive(SharpDX.Mathematics.Interop.RawVector4,System.Int32,System.Int32,SharpDX.Direct3D9.Mesh)">
  26354. <summary>
  26355. <p>Performs adaptive tessellation based on the z-based adaptive tessellation criterion.</p>
  26356. </summary>
  26357. <param name="transRef"><dd> <p>Specifies a 4D vector that is dotted with the vertices to get the per-vertex adaptive tessellation amount. Each edge is tessellated to the average value of the tessellation levels for the two vertices it connects.</p> </dd></param>
  26358. <param name="dwMaxTessLevel"><dd> <p>Maximum limit for adaptive tessellation. This is the number of vertices introduced between existing vertices. This integer value can range from 1 to 32, inclusive.</p> </dd></param>
  26359. <param name="dwMinTessLevel"><dd> <p>Minimum limit for adaptive tessellation. This is the number of vertices introduced between existing vertices. This integer value can range from 1 to 32, inclusive.</p> </dd></param>
  26360. <param name="meshRef"><dd> <p>Resulting tessellated mesh. See <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>.</p> </dd></param>
  26361. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26362. <remarks>
  26363. <p>This function will perform more efficiently if the patch mesh has been optimized using <strong><see cref="M:SharpDX.Direct3D9.PatchMesh.Optimize(System.Int32)" /></strong>. </p>
  26364. </remarks>
  26365. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPatchMesh::TessellateAdaptive']/*" />
  26366. <msdn-id>bb174095</msdn-id>
  26367. <unmanaged>HRESULT ID3DXPatchMesh::TessellateAdaptive([In] const D3DXVECTOR4* pTrans,[In] unsigned int dwMaxTessLevel,[In] unsigned int dwMinTessLevel,[In] ID3DXMesh* pMesh)</unmanaged>
  26368. <unmanaged-short>ID3DXPatchMesh::TessellateAdaptive</unmanaged-short>
  26369. </member>
  26370. <member name="T:SharpDX.Direct3D9.PixelShader">
  26371. <summary>
  26372. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.PixelShader" /> interface to encapsulate the functionality of a pixel shader.</p>
  26373. </summary>
  26374. <remarks>
  26375. <p>The LPDIRECT3DPIXELSHADER9 and PDIRECT3DPIXELSHADER9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.PixelShader" /></strong> interface. </p><pre>typedef struct <see cref="T:SharpDX.Direct3D9.PixelShader" /> *LPDIRECT3DPIXELSHADER9, *PDIRECT3DPIXELSHADER9;</pre>
  26376. </remarks>
  26377. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DPixelShader9']/*" />
  26378. <msdn-id>bb205869</msdn-id>
  26379. <unmanaged>IDirect3DPixelShader9</unmanaged>
  26380. <unmanaged-short>IDirect3DPixelShader9</unmanaged-short>
  26381. </member>
  26382. <member name="M:SharpDX.Direct3D9.PixelShader.#ctor(System.IntPtr)">
  26383. <summary>
  26384. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.PixelShader"/> class.
  26385. </summary>
  26386. <param name="nativePtr">The native pointer.</param>
  26387. </member>
  26388. <member name="M:SharpDX.Direct3D9.PixelShader.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.PixelShader">
  26389. <summary>
  26390. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.PixelShader"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  26391. </summary>
  26392. <param name="nativePointer">The native pointer.</param>
  26393. <returns>
  26394. The result of the conversion.
  26395. </returns>
  26396. </member>
  26397. <member name="F:SharpDX.Direct3D9.PixelShader.MaxDynamicFlowControlDepth">
  26398. <summary>Constant MaxDynamicFlowControlDepth.</summary>
  26399. <unmanaged>D3DPS20_MAX_DYNAMICFLOWCONTROLDEPTH</unmanaged>
  26400. </member>
  26401. <member name="F:SharpDX.Direct3D9.PixelShader.MinDynamicFlowControlDepth">
  26402. <summary>Constant MinDynamicFlowControlDepth.</summary>
  26403. <unmanaged>D3DPS20_MIN_DYNAMICFLOWCONTROLDEPTH</unmanaged>
  26404. </member>
  26405. <member name="F:SharpDX.Direct3D9.PixelShader.MaxTemps">
  26406. <summary>Constant MaxTemps.</summary>
  26407. <unmanaged>D3DPS20_MAX_NUMTEMPS</unmanaged>
  26408. </member>
  26409. <member name="F:SharpDX.Direct3D9.PixelShader.MinTemps">
  26410. <summary>Constant MinTemps.</summary>
  26411. <unmanaged>D3DPS20_MIN_NUMTEMPS</unmanaged>
  26412. </member>
  26413. <member name="F:SharpDX.Direct3D9.PixelShader.MaxStaticFlowControlDepth">
  26414. <summary>Constant MaxStaticFlowControlDepth.</summary>
  26415. <unmanaged>D3DPS20_MAX_STATICFLOWCONTROLDEPTH</unmanaged>
  26416. </member>
  26417. <member name="F:SharpDX.Direct3D9.PixelShader.MinStaticFlowControlDepth">
  26418. <summary>Constant MinStaticFlowControlDepth.</summary>
  26419. <unmanaged>D3DPS20_MIN_STATICFLOWCONTROLDEPTH</unmanaged>
  26420. </member>
  26421. <member name="F:SharpDX.Direct3D9.PixelShader.MaxInstructionSlots">
  26422. <summary>Constant MaxInstructionSlots.</summary>
  26423. <unmanaged>D3DPS20_MAX_NUMINSTRUCTIONSLOTS</unmanaged>
  26424. </member>
  26425. <member name="F:SharpDX.Direct3D9.PixelShader.MinInstructionSlots">
  26426. <summary>Constant MinInstructionSlots.</summary>
  26427. <unmanaged>D3DPS20_MIN_NUMINSTRUCTIONSLOTS</unmanaged>
  26428. </member>
  26429. <member name="P:SharpDX.Direct3D9.PixelShader.Device">
  26430. <summary>
  26431. <p>Gets the device.</p>
  26432. </summary>
  26433. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DPixelShader9::GetDevice']/*" />
  26434. <msdn-id>bb205870</msdn-id>
  26435. <unmanaged>GetDevice</unmanaged>
  26436. <unmanaged-short>GetDevice</unmanaged-short>
  26437. <unmanaged>HRESULT IDirect3DPixelShader9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  26438. </member>
  26439. <member name="M:SharpDX.Direct3D9.PixelShader.GetDevice(SharpDX.Direct3D9.Device@)">
  26440. <summary>
  26441. <p>Gets the device.</p>
  26442. </summary>
  26443. <param name="deviceOut"><dd> <p>Pointer to the <see cref="T:SharpDX.Direct3D9.Device" /> interface that is returned.</p> </dd></param>
  26444. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  26445. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DPixelShader9::GetDevice']/*" />
  26446. <msdn-id>bb205870</msdn-id>
  26447. <unmanaged>HRESULT IDirect3DPixelShader9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  26448. <unmanaged-short>IDirect3DPixelShader9::GetDevice</unmanaged-short>
  26449. </member>
  26450. <member name="M:SharpDX.Direct3D9.PixelShader.GetFunction(System.IntPtr,System.Int32@)">
  26451. <summary>
  26452. <p>Gets a reference to the shader data.</p>
  26453. </summary>
  26454. <param name="arg0"><dd> <p>Pointer to a buffer that contains the shader data. The application needs to allocate enough room for this. </p> </dd></param>
  26455. <param name="sizeOfDataRef"><dd> <p>Size of the data, in bytes. To get the buffer size that is needed to retrieve the data, set pData = <strong><c>null</c></strong> when calling GetFunction. Then call GetFunction with the returned size, to get the buffer data.</p> </dd></param>
  26456. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  26457. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DPixelShader9::GetFunction']/*" />
  26458. <msdn-id>bb205871</msdn-id>
  26459. <unmanaged>HRESULT IDirect3DPixelShader9::GetFunction([In] void* arg0,[InOut] unsigned int* pSizeOfData)</unmanaged>
  26460. <unmanaged-short>IDirect3DPixelShader9::GetFunction</unmanaged-short>
  26461. </member>
  26462. <member name="M:SharpDX.Direct3D9.PixelShader.#ctor(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.ShaderBytecode)">
  26463. <summary>
  26464. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.PixelShader"/> class.
  26465. </summary>
  26466. <param name="device">The device.</param>
  26467. <param name="function">The function.</param>
  26468. <unmanaged>HRESULT IDirect3DDevice9::CreatePixelShader([In] const void* pFunction,[Out, Fast] IDirect3DPixelShader9** ppShader)</unmanaged>
  26469. </member>
  26470. <member name="P:SharpDX.Direct3D9.PixelShader.Function">
  26471. <summary>
  26472. Gets the bytecode associated to this shader..
  26473. </summary>
  26474. </member>
  26475. <member name="T:SharpDX.Direct3D9.ProgressiveMesh">
  26476. <summary>
  26477. No documentation.
  26478. </summary>
  26479. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh']/*" />
  26480. <msdn-id>bb280447</msdn-id>
  26481. <unmanaged>ID3DXPMesh</unmanaged>
  26482. <unmanaged-short>ID3DXPMesh</unmanaged-short>
  26483. </member>
  26484. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.#ctor(System.IntPtr)">
  26485. <summary>
  26486. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.ProgressiveMesh"/> class.
  26487. </summary>
  26488. <param name="nativePtr">The native pointer.</param>
  26489. </member>
  26490. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.ProgressiveMesh">
  26491. <summary>
  26492. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.ProgressiveMesh"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  26493. </summary>
  26494. <param name="nativePointer">The native pointer.</param>
  26495. <returns>
  26496. The result of the conversion.
  26497. </returns>
  26498. </member>
  26499. <member name="P:SharpDX.Direct3D9.ProgressiveMesh.MaxFaces">
  26500. <summary>
  26501. No documentation.
  26502. </summary>
  26503. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GetMaxFaces']/*" />
  26504. <unmanaged>GetMaxFaces</unmanaged>
  26505. <unmanaged-short>GetMaxFaces</unmanaged-short>
  26506. <unmanaged>unsigned int ID3DXPMesh::GetMaxFaces()</unmanaged>
  26507. </member>
  26508. <member name="P:SharpDX.Direct3D9.ProgressiveMesh.MinFaces">
  26509. <summary>
  26510. No documentation.
  26511. </summary>
  26512. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GetMinFaces']/*" />
  26513. <unmanaged>GetMinFaces</unmanaged>
  26514. <unmanaged-short>GetMinFaces</unmanaged-short>
  26515. <unmanaged>unsigned int ID3DXPMesh::GetMinFaces()</unmanaged>
  26516. </member>
  26517. <member name="P:SharpDX.Direct3D9.ProgressiveMesh.MaxVertices">
  26518. <summary>
  26519. No documentation.
  26520. </summary>
  26521. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GetMaxVertices']/*" />
  26522. <unmanaged>GetMaxVertices</unmanaged>
  26523. <unmanaged-short>GetMaxVertices</unmanaged-short>
  26524. <unmanaged>unsigned int ID3DXPMesh::GetMaxVertices()</unmanaged>
  26525. </member>
  26526. <member name="P:SharpDX.Direct3D9.ProgressiveMesh.MinVertices">
  26527. <summary>
  26528. No documentation.
  26529. </summary>
  26530. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GetMinVertices']/*" />
  26531. <unmanaged>GetMinVertices</unmanaged>
  26532. <unmanaged-short>GetMinVertices</unmanaged-short>
  26533. <unmanaged>unsigned int ID3DXPMesh::GetMinVertices()</unmanaged>
  26534. </member>
  26535. <member name="P:SharpDX.Direct3D9.ProgressiveMesh.Adjacency">
  26536. <summary>
  26537. No documentation.
  26538. </summary>
  26539. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GetAdjacency']/*" />
  26540. <unmanaged>GetAdjacency</unmanaged>
  26541. <unmanaged-short>GetAdjacency</unmanaged-short>
  26542. <unmanaged>HRESULT ID3DXPMesh::GetAdjacency([Out] unsigned int* pAdjacency)</unmanaged>
  26543. </member>
  26544. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.ClonePMeshFVF(System.Int32,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.ProgressiveMesh@)">
  26545. <summary>
  26546. No documentation.
  26547. </summary>
  26548. <param name="options">No documentation.</param>
  26549. <param name="fvf">No documentation.</param>
  26550. <param name="d3DDeviceRef">No documentation.</param>
  26551. <param name="cloneMeshOut">No documentation.</param>
  26552. <returns>No documentation.</returns>
  26553. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::ClonePMeshFVF']/*" />
  26554. <unmanaged>HRESULT ID3DXPMesh::ClonePMeshFVF([In] unsigned int Options,[In] unsigned int FVF,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXPMesh** ppCloneMesh)</unmanaged>
  26555. <unmanaged-short>ID3DXPMesh::ClonePMeshFVF</unmanaged-short>
  26556. </member>
  26557. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.ClonePMesh(System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.ProgressiveMesh@)">
  26558. <summary>
  26559. No documentation.
  26560. </summary>
  26561. <param name="options">No documentation.</param>
  26562. <param name="declarationRef">No documentation.</param>
  26563. <param name="d3DDeviceRef">No documentation.</param>
  26564. <param name="cloneMeshOut">No documentation.</param>
  26565. <returns>No documentation.</returns>
  26566. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::ClonePMesh']/*" />
  26567. <unmanaged>HRESULT ID3DXPMesh::ClonePMesh([In] unsigned int Options,[In] const D3DVERTEXELEMENT9* pDeclaration,[In] IDirect3DDevice9* pD3DDevice,[In] ID3DXPMesh** ppCloneMesh)</unmanaged>
  26568. <unmanaged-short>ID3DXPMesh::ClonePMesh</unmanaged-short>
  26569. </member>
  26570. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.SetNumFaces(System.Int32)">
  26571. <summary>
  26572. No documentation.
  26573. </summary>
  26574. <param name="faces">No documentation.</param>
  26575. <returns>No documentation.</returns>
  26576. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::SetNumFaces']/*" />
  26577. <unmanaged>HRESULT ID3DXPMesh::SetNumFaces([In] unsigned int Faces)</unmanaged>
  26578. <unmanaged-short>ID3DXPMesh::SetNumFaces</unmanaged-short>
  26579. </member>
  26580. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.SetNumVertices(System.Int32)">
  26581. <summary>
  26582. No documentation.
  26583. </summary>
  26584. <param name="vertices">No documentation.</param>
  26585. <returns>No documentation.</returns>
  26586. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::SetNumVertices']/*" />
  26587. <unmanaged>HRESULT ID3DXPMesh::SetNumVertices([In] unsigned int Vertices)</unmanaged>
  26588. <unmanaged-short>ID3DXPMesh::SetNumVertices</unmanaged-short>
  26589. </member>
  26590. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.GetMaxFaces">
  26591. <summary>
  26592. No documentation.
  26593. </summary>
  26594. <returns>No documentation.</returns>
  26595. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GetMaxFaces']/*" />
  26596. <unmanaged>unsigned int ID3DXPMesh::GetMaxFaces()</unmanaged>
  26597. <unmanaged-short>ID3DXPMesh::GetMaxFaces</unmanaged-short>
  26598. </member>
  26599. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.GetMinFaces">
  26600. <summary>
  26601. No documentation.
  26602. </summary>
  26603. <returns>No documentation.</returns>
  26604. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GetMinFaces']/*" />
  26605. <unmanaged>unsigned int ID3DXPMesh::GetMinFaces()</unmanaged>
  26606. <unmanaged-short>ID3DXPMesh::GetMinFaces</unmanaged-short>
  26607. </member>
  26608. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.GetMaxVertices">
  26609. <summary>
  26610. No documentation.
  26611. </summary>
  26612. <returns>No documentation.</returns>
  26613. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GetMaxVertices']/*" />
  26614. <unmanaged>unsigned int ID3DXPMesh::GetMaxVertices()</unmanaged>
  26615. <unmanaged-short>ID3DXPMesh::GetMaxVertices</unmanaged-short>
  26616. </member>
  26617. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.GetMinVertices">
  26618. <summary>
  26619. No documentation.
  26620. </summary>
  26621. <returns>No documentation.</returns>
  26622. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GetMinVertices']/*" />
  26623. <unmanaged>unsigned int ID3DXPMesh::GetMinVertices()</unmanaged>
  26624. <unmanaged-short>ID3DXPMesh::GetMinVertices</unmanaged-short>
  26625. </member>
  26626. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.Save_(System.IntPtr,SharpDX.Direct3D9.ExtendedMaterial@,SharpDX.Direct3D9.EffectInstance,System.Int32)">
  26627. <summary>
  26628. No documentation.
  26629. </summary>
  26630. <param name="streamRef">No documentation.</param>
  26631. <param name="materialsRef">No documentation.</param>
  26632. <param name="effectInstancesRef">No documentation.</param>
  26633. <param name="numMaterials">No documentation.</param>
  26634. <returns>No documentation.</returns>
  26635. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::Save']/*" />
  26636. <unmanaged>HRESULT ID3DXPMesh::Save([In] IStream* pStream,[In] const D3DXMATERIAL* pMaterials,[In] const D3DXEFFECTINSTANCE* pEffectInstances,[In] unsigned int NumMaterials)</unmanaged>
  26637. <unmanaged-short>ID3DXPMesh::Save</unmanaged-short>
  26638. </member>
  26639. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.Optimize(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.Mesh@)">
  26640. <summary>
  26641. <p>Generates a new mesh with reordered faces and vertices to optimize drawing performance.</p>
  26642. </summary>
  26643. <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 <strong>D3DXMESHOPT</strong> and <strong>D3DXMESH</strong> (except <see cref="F:SharpDX.Direct3D9.MeshFlags.Use32Bit" />, <see cref="F:SharpDX.Direct3D9.MeshFlags.IndexBufferWriteOnly" />, and <see cref="F:SharpDX.Direct3D9.MeshFlags.WriteOnly" />).</p> </dd></param>
  26644. <param name="adjacencyOutRef"><dd> <p>Pointer to an array of three DWORDs per face that specifies the three neighbors for each face in the optimized mesh. If the edge has no adjacent faces, the value is 0xffffffff.</p> </dd></param>
  26645. <param name="faceRemapRef"><dd> <p>An array of DWORDs, 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>
  26646. <param name="vertexRemapOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface, 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>
  26647. <param name="optMeshOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong> interface, representing the optimized mesh.</p> </dd></param>
  26648. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  26649. <remarks>
  26650. <p>This method generates a new mesh. Before running Optimize, an application must generate an adjacency buffer by calling <strong><see cref="M:SharpDX.Direct3D9.BaseMesh.GenerateAdjacency(System.Single,System.Int32)" /></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.Direct3D9.BaseMesh.CloneMesh(System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,SharpDX.Direct3D9.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>
  26651. </remarks>
  26652. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::Optimize']/*" />
  26653. <msdn-id>bb174071</msdn-id>
  26654. <unmanaged>HRESULT ID3DXPMesh::Optimize([In] unsigned int Flags,[In] unsigned int* pAdjacencyOut,[In] unsigned int* pFaceRemap,[In] ID3DXBuffer** ppVertexRemap,[In] ID3DXMesh** ppOptMesh)</unmanaged>
  26655. <unmanaged-short>ID3DXPMesh::Optimize</unmanaged-short>
  26656. </member>
  26657. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.OptimizeBaseLOD(System.Int32,System.Int32)">
  26658. <summary>
  26659. No documentation.
  26660. </summary>
  26661. <param name="flags">No documentation.</param>
  26662. <param name="faceRemapRef">No documentation.</param>
  26663. <returns>No documentation.</returns>
  26664. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::OptimizeBaseLOD']/*" />
  26665. <unmanaged>HRESULT ID3DXPMesh::OptimizeBaseLOD([In] unsigned int Flags,[In] unsigned int* pFaceRemap)</unmanaged>
  26666. <unmanaged-short>ID3DXPMesh::OptimizeBaseLOD</unmanaged-short>
  26667. </member>
  26668. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.TrimByFaces(System.Int32,System.Int32,System.Int32,System.Int32)">
  26669. <summary>
  26670. No documentation.
  26671. </summary>
  26672. <param name="newFacesMin">No documentation.</param>
  26673. <param name="newFacesMax">No documentation.</param>
  26674. <param name="rgiFaceRemap">No documentation.</param>
  26675. <param name="rgiVertRemap">No documentation.</param>
  26676. <returns>No documentation.</returns>
  26677. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::TrimByFaces']/*" />
  26678. <unmanaged>HRESULT ID3DXPMesh::TrimByFaces([In] unsigned int NewFacesMin,[In] unsigned int NewFacesMax,[In] unsigned int* rgiFaceRemap,[In] unsigned int* rgiVertRemap)</unmanaged>
  26679. <unmanaged-short>ID3DXPMesh::TrimByFaces</unmanaged-short>
  26680. </member>
  26681. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.TrimByVertices(System.Int32,System.Int32,System.Int32,System.Int32)">
  26682. <summary>
  26683. No documentation.
  26684. </summary>
  26685. <param name="newVerticesMin">No documentation.</param>
  26686. <param name="newVerticesMax">No documentation.</param>
  26687. <param name="rgiFaceRemap">No documentation.</param>
  26688. <param name="rgiVertRemap">No documentation.</param>
  26689. <returns>No documentation.</returns>
  26690. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::TrimByVertices']/*" />
  26691. <unmanaged>HRESULT ID3DXPMesh::TrimByVertices([In] unsigned int NewVerticesMin,[In] unsigned int NewVerticesMax,[In] unsigned int* rgiFaceRemap,[In] unsigned int* rgiVertRemap)</unmanaged>
  26692. <unmanaged-short>ID3DXPMesh::TrimByVertices</unmanaged-short>
  26693. </member>
  26694. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.GetAdjacency(System.Int32@)">
  26695. <summary>
  26696. No documentation.
  26697. </summary>
  26698. <param name="adjacencyRef">No documentation.</param>
  26699. <returns>No documentation.</returns>
  26700. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GetAdjacency']/*" />
  26701. <unmanaged>HRESULT ID3DXPMesh::GetAdjacency([Out] unsigned int* pAdjacency)</unmanaged>
  26702. <unmanaged-short>ID3DXPMesh::GetAdjacency</unmanaged-short>
  26703. </member>
  26704. <member name="M:SharpDX.Direct3D9.ProgressiveMesh.GenerateVertexHistory(System.Int32)">
  26705. <summary>
  26706. No documentation.
  26707. </summary>
  26708. <param name="vertexHistoryRef">No documentation.</param>
  26709. <returns>No documentation.</returns>
  26710. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXPMesh::GenerateVertexHistory']/*" />
  26711. <unmanaged>HRESULT ID3DXPMesh::GenerateVertexHistory([In] unsigned int* pVertexHistory)</unmanaged>
  26712. <unmanaged-short>ID3DXPMesh::GenerateVertexHistory</unmanaged-short>
  26713. </member>
  26714. <member name="T:SharpDX.Direct3D9.Query">
  26715. <summary>
  26716. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.Query" /> interface to perform asynchronous queries on a driver.</p>
  26717. </summary>
  26718. <remarks>
  26719. <p>The LPDIRECT3DQUERY9 and PDIRECT3DQUERY9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.Query" /></strong> interface. </p><pre>typedef struct <see cref="T:SharpDX.Direct3D9.Query" /> *LPDIRECT3DQUERY9, *PDIRECT3DQUERY9;</pre>
  26720. </remarks>
  26721. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DQuery9']/*" />
  26722. <msdn-id>bb205872</msdn-id>
  26723. <unmanaged>IDirect3DQuery9</unmanaged>
  26724. <unmanaged-short>IDirect3DQuery9</unmanaged-short>
  26725. </member>
  26726. <member name="M:SharpDX.Direct3D9.Query.#ctor(System.IntPtr)">
  26727. <summary>
  26728. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Query"/> class.
  26729. </summary>
  26730. <param name="nativePtr">The native pointer.</param>
  26731. </member>
  26732. <member name="M:SharpDX.Direct3D9.Query.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Query">
  26733. <summary>
  26734. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Query"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  26735. </summary>
  26736. <param name="nativePointer">The native pointer.</param>
  26737. <returns>
  26738. The result of the conversion.
  26739. </returns>
  26740. </member>
  26741. <member name="P:SharpDX.Direct3D9.Query.Device">
  26742. <summary>
  26743. <p>Gets the device that is being queried.</p>
  26744. </summary>
  26745. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DQuery9::GetDevice']/*" />
  26746. <msdn-id>bb205875</msdn-id>
  26747. <unmanaged>GetDevice</unmanaged>
  26748. <unmanaged-short>GetDevice</unmanaged-short>
  26749. <unmanaged>HRESULT IDirect3DQuery9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  26750. </member>
  26751. <member name="P:SharpDX.Direct3D9.Query.DataSize">
  26752. <summary>
  26753. <p>Gets the number of bytes in the query data.</p>
  26754. </summary>
  26755. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DQuery9::GetDataSize']/*" />
  26756. <msdn-id>bb205874</msdn-id>
  26757. <unmanaged>GetDataSize</unmanaged>
  26758. <unmanaged-short>GetDataSize</unmanaged-short>
  26759. <unmanaged>unsigned int IDirect3DQuery9::GetDataSize()</unmanaged>
  26760. </member>
  26761. <member name="M:SharpDX.Direct3D9.Query.GetDevice(SharpDX.Direct3D9.Device@)">
  26762. <summary>
  26763. <p>Gets the device that is being queried.</p>
  26764. </summary>
  26765. <param name="deviceOut"><dd> <p>Pointer to the device being queried. See <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong>.</p> </dd></param>
  26766. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  26767. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DQuery9::GetDevice']/*" />
  26768. <msdn-id>bb205875</msdn-id>
  26769. <unmanaged>HRESULT IDirect3DQuery9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  26770. <unmanaged-short>IDirect3DQuery9::GetDevice</unmanaged-short>
  26771. </member>
  26772. <member name="M:SharpDX.Direct3D9.Query.GetTypeInfo">
  26773. <summary>
  26774. <p>Gets the query type.</p>
  26775. </summary>
  26776. <returns><p>Returns the query type. See <strong><see cref="T:SharpDX.Direct3D9.QueryType" /></strong>.</p></returns>
  26777. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DQuery9::GetType']/*" />
  26778. <msdn-id>bb205876</msdn-id>
  26779. <unmanaged>D3DQUERYTYPE IDirect3DQuery9::GetType()</unmanaged>
  26780. <unmanaged-short>IDirect3DQuery9::GetType</unmanaged-short>
  26781. </member>
  26782. <member name="M:SharpDX.Direct3D9.Query.GetDataSize">
  26783. <summary>
  26784. <p>Gets the number of bytes in the query data.</p>
  26785. </summary>
  26786. <returns><p>Returns the number of bytes of query data.</p></returns>
  26787. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DQuery9::GetDataSize']/*" />
  26788. <msdn-id>bb205874</msdn-id>
  26789. <unmanaged>unsigned int IDirect3DQuery9::GetDataSize()</unmanaged>
  26790. <unmanaged-short>IDirect3DQuery9::GetDataSize</unmanaged-short>
  26791. </member>
  26792. <member name="M:SharpDX.Direct3D9.Query.Issue(SharpDX.Direct3D9.Issue)">
  26793. <summary>
  26794. <p>Issue a query.</p>
  26795. </summary>
  26796. <param name="dwIssueFlags"><dd> <p>Query flags specify the type of state change for the query. See <strong><see cref="F:SharpDX.Direct3D9.Issue.Begin" /></strong> and <strong><see cref="F:SharpDX.Direct3D9.Issue.End" /></strong>.</p> </dd></param>
  26797. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  26798. <remarks>
  26799. <p>A signaled query means the query has completed, the data is available, and <strong><see cref="M:SharpDX.Direct3D9.Query.GetData(System.IntPtr,System.Int32,System.Int32)" /></strong> will return <see cref="F:SharpDX.Result.Ok" />. </p>
  26800. </remarks>
  26801. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DQuery9::Issue']/*" />
  26802. <msdn-id>bb205877</msdn-id>
  26803. <unmanaged>HRESULT IDirect3DQuery9::Issue([In] D3DISSUE dwIssueFlags)</unmanaged>
  26804. <unmanaged-short>IDirect3DQuery9::Issue</unmanaged-short>
  26805. </member>
  26806. <member name="M:SharpDX.Direct3D9.Query.GetData(System.IntPtr,System.Int32,System.Int32)">
  26807. <summary>
  26808. <p>Polls a queried resource to get the query state or a query result. For more information about queries, see Queries (Direct3D 9).</p>
  26809. </summary>
  26810. <param name="dataRef">No documentation.</param>
  26811. <param name="dwSize">No documentation.</param>
  26812. <param name="dwGetDataFlags">No documentation.</param>
  26813. <returns><p>The return type identifies the query state (see Queries (Direct3D 9)). The method returns <see cref="F:SharpDX.Result.Ok" /> if the query data is available and S_FALSE if it is not. These are considered successful return values. If the method fails when <strong>D3DGETDATA_FLUSH</strong> is used, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />. </p></returns>
  26814. <remarks>
  26815. <p>It is possible to lose the device while polling for query status. When <strong>D3DGETDATA_FLUSH</strong> is specified, this method will return <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" /> in response to a lost device. This allows an application to prevent threads from endlessly polling due to a lost device (which cannot respond to the query).</p><p>An application must never write code that only invokes GetData ( ... , 0 ), expecting that GetData will eventually return <see cref="F:SharpDX.Result.Ok" /> by itself over time. This is true, even if the application has used the FLUSH flag with GetData in the past. For example:</p><pre>// Enables an infinite loop:
  26816. while( pQuery-&gt;GetData( ... , 0 ) == S_FALSE ) ; // Still enables an infinite loop:
  26817. pQuery-&gt;GetData( ... , D3DGETDATA_FLUSH );
  26818. while( pQuery-&gt;GetData( ... , 0 ) == S_FALSE ) ; // Does not enable an infinite loop because eventually the command
  26819. // buffer will fill up and that will cause a flush to occur.
  26820. while( pQuery-&gt;GetData( ..., 0 ) == S_FALSE ) { pDevice-&gt;SetTexture(...); pDevice-&gt;Draw(...);
  26821. }
  26822. </pre>
  26823. </remarks>
  26824. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DQuery9::GetData']/*" />
  26825. <msdn-id>bb205873</msdn-id>
  26826. <unmanaged>HRESULT IDirect3DQuery9::GetData([In] void* pData,[In] unsigned int dwSize,[In] unsigned int dwGetDataFlags)</unmanaged>
  26827. <unmanaged-short>IDirect3DQuery9::GetData</unmanaged-short>
  26828. </member>
  26829. <member name="M:SharpDX.Direct3D9.Query.#ctor(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.QueryType)">
  26830. <summary>
  26831. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Query"/> class.
  26832. </summary>
  26833. <param name="device">The device.</param>
  26834. <param name="type">The type.</param>
  26835. </member>
  26836. <member name="P:SharpDX.Direct3D9.Query.Type">
  26837. <summary>
  26838. Gets the type.
  26839. </summary>
  26840. <unmanaged>D3DQUERYTYPE IDirect3DQuery9::GetType()</unmanaged>
  26841. </member>
  26842. <!-- Badly formed XML comment ignored for member "M:SharpDX.Direct3D9.Query.GetData``1(``0@,System.Boolean)" -->
  26843. <member name="T:SharpDX.Direct3D9.RenderToEnvironmentMap">
  26844. <summary>
  26845. <p>The <see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap" /> interface is used to generalize the process of rendering to environment maps.</p>
  26846. </summary>
  26847. <remarks>
  26848. <p>An environment map is used to texture-map scene geometry to provide a more sophisticated scene without using complex geometry. This interface supports creating surfaces for the following kinds of geometry: cube, half sphere or hemispheric, parabolic, or sphere.</p><p>The <strong><see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap" /></strong> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateRenderToEnvMap(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.RenderToEnvironmentMap@)" /></strong> function.</p><p>The LPD3DXRenderToEnvMap type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap" /></strong> interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap" /> <see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap" />;
  26849. typedef interface <see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap" /> *LPD3DXRenderToEnvMap;
  26850. </pre>
  26851. </remarks>
  26852. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap']/*" />
  26853. <msdn-id>bb174181</msdn-id>
  26854. <unmanaged>ID3DXRenderToEnvMap</unmanaged>
  26855. <unmanaged-short>ID3DXRenderToEnvMap</unmanaged-short>
  26856. </member>
  26857. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.#ctor(System.IntPtr)">
  26858. <summary>
  26859. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap"/> class.
  26860. </summary>
  26861. <param name="nativePtr">The native pointer.</param>
  26862. </member>
  26863. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.RenderToEnvironmentMap">
  26864. <summary>
  26865. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  26866. </summary>
  26867. <param name="nativePointer">The native pointer.</param>
  26868. <returns>
  26869. The result of the conversion.
  26870. </returns>
  26871. </member>
  26872. <member name="P:SharpDX.Direct3D9.RenderToEnvironmentMap.Device">
  26873. <summary>
  26874. <p>Retrieves the Direct3D device associated with the environment map.</p>
  26875. </summary>
  26876. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::GetDevice']/*" />
  26877. <msdn-id>bb174189</msdn-id>
  26878. <unmanaged>GetDevice</unmanaged>
  26879. <unmanaged-short>GetDevice</unmanaged-short>
  26880. <unmanaged>HRESULT ID3DXRenderToEnvMap::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  26881. </member>
  26882. <member name="P:SharpDX.Direct3D9.RenderToEnvironmentMap.Description">
  26883. <summary>
  26884. <p>Retrieves the description of the render surface.</p>
  26885. </summary>
  26886. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::GetDesc']/*" />
  26887. <msdn-id>bb174188</msdn-id>
  26888. <unmanaged>GetDesc</unmanaged>
  26889. <unmanaged-short>GetDesc</unmanaged-short>
  26890. <unmanaged>HRESULT ID3DXRenderToEnvMap::GetDesc([Out] D3DXRTE_DESC* pDesc)</unmanaged>
  26891. </member>
  26892. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.GetDevice(SharpDX.Direct3D9.Device@)">
  26893. <summary>
  26894. <p>Retrieves the Direct3D device associated with the environment map.</p>
  26895. </summary>
  26896. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface that represents the Direct3D device object associated with the environment map.</p> </dd></param>
  26897. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. Calling this method increases the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Be sure to call <strong><see cref="T:SharpDX.ComObject" /></strong> when you are done using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface or you will have a memory leak.</p></returns>
  26898. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::GetDevice']/*" />
  26899. <msdn-id>bb174189</msdn-id>
  26900. <unmanaged>HRESULT ID3DXRenderToEnvMap::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  26901. <unmanaged-short>ID3DXRenderToEnvMap::GetDevice</unmanaged-short>
  26902. </member>
  26903. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.GetDescription(SharpDX.Direct3D9.RenderToEnvironmentMapDescription@)">
  26904. <summary>
  26905. <p>Retrieves the description of the render surface.</p>
  26906. </summary>
  26907. <param name="descRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMapDescription" /></strong> structure that describes the rendering surface.</p> </dd></param>
  26908. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  26909. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::GetDesc']/*" />
  26910. <msdn-id>bb174188</msdn-id>
  26911. <unmanaged>HRESULT ID3DXRenderToEnvMap::GetDesc([Out] D3DXRTE_DESC* pDesc)</unmanaged>
  26912. <unmanaged-short>ID3DXRenderToEnvMap::GetDesc</unmanaged-short>
  26913. </member>
  26914. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.BeginCube(SharpDX.Direct3D9.CubeTexture)">
  26915. <summary>
  26916. <p>Initiate the rendering of a cubic environment map.</p>
  26917. </summary>
  26918. <param name="cubeTexRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong> interface that represents the cube texture to which to render.</p> </dd></param>
  26919. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  26920. <remarks>
  26921. <p>See <strong><see cref="M:SharpDX.Direct3D9.RenderToEnvironmentMap.Face(SharpDX.Direct3D9.CubeMapFace,System.Int32)" /></strong> to draw each of the 6 faces.</p>
  26922. </remarks>
  26923. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::BeginCube']/*" />
  26924. <msdn-id>bb174182</msdn-id>
  26925. <unmanaged>HRESULT ID3DXRenderToEnvMap::BeginCube([In] IDirect3DCubeTexture9* pCubeTex)</unmanaged>
  26926. <unmanaged-short>ID3DXRenderToEnvMap::BeginCube</unmanaged-short>
  26927. </member>
  26928. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.BeginSphere(SharpDX.Direct3D9.Texture)">
  26929. <summary>
  26930. <p>Initiate the rendering of a spherical environment map.</p>
  26931. </summary>
  26932. <param name="texRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface that represents the texture to which to render.</p> </dd></param>
  26933. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.E_FAIL</p></returns>
  26934. <remarks>
  26935. <p>See <strong><see cref="M:SharpDX.Direct3D9.RenderToEnvironmentMap.Face(SharpDX.Direct3D9.CubeMapFace,System.Int32)" /></strong> to draw the face.</p>
  26936. </remarks>
  26937. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::BeginSphere']/*" />
  26938. <msdn-id>bb174185</msdn-id>
  26939. <unmanaged>HRESULT ID3DXRenderToEnvMap::BeginSphere([In] IDirect3DTexture9* pTex)</unmanaged>
  26940. <unmanaged-short>ID3DXRenderToEnvMap::BeginSphere</unmanaged-short>
  26941. </member>
  26942. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.BeginHemisphere(SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.Texture)">
  26943. <summary>
  26944. <p>Initiate the rendering of a hemispheric environment map.</p>
  26945. </summary>
  26946. <param name="texZPosRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface that represents the positive texture render surface.</p> </dd></param>
  26947. <param name="texZNegRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface that represents the negative texture render surface.</p> </dd></param>
  26948. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.E_FAIL</p></returns>
  26949. <remarks>
  26950. <p>See <strong><see cref="M:SharpDX.Direct3D9.RenderToEnvironmentMap.Face(SharpDX.Direct3D9.CubeMapFace,System.Int32)" /></strong> to draw the face.</p>
  26951. </remarks>
  26952. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::BeginHemisphere']/*" />
  26953. <msdn-id>bb174183</msdn-id>
  26954. <unmanaged>HRESULT ID3DXRenderToEnvMap::BeginHemisphere([In] IDirect3DTexture9* pTexZPos,[In] IDirect3DTexture9* pTexZNeg)</unmanaged>
  26955. <unmanaged-short>ID3DXRenderToEnvMap::BeginHemisphere</unmanaged-short>
  26956. </member>
  26957. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.BeginParabolic(SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.Texture)">
  26958. <summary>
  26959. <p>Initiate the rendering of a parabolic environment map.</p>
  26960. </summary>
  26961. <param name="texZPosRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface that represents the positive render texture.</p> </dd></param>
  26962. <param name="texZNegRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface that represents the negative render texture.</p> </dd></param>
  26963. <returns><p>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the function fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.E_FAIL</p></returns>
  26964. <remarks>
  26965. <p>See <strong><see cref="M:SharpDX.Direct3D9.RenderToEnvironmentMap.Face(SharpDX.Direct3D9.CubeMapFace,System.Int32)" /></strong> to draw the faces.</p>
  26966. </remarks>
  26967. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::BeginParabolic']/*" />
  26968. <msdn-id>bb174184</msdn-id>
  26969. <unmanaged>HRESULT ID3DXRenderToEnvMap::BeginParabolic([In] IDirect3DTexture9* pTexZPos,[In] IDirect3DTexture9* pTexZNeg)</unmanaged>
  26970. <unmanaged-short>ID3DXRenderToEnvMap::BeginParabolic</unmanaged-short>
  26971. </member>
  26972. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.Face(SharpDX.Direct3D9.CubeMapFace,System.Int32)">
  26973. <summary>
  26974. <p>Initiate the drawing of each face of an environment map.</p>
  26975. </summary>
  26976. <param name="face"><dd> <p>The first face of the environmental cube map. See <strong><see cref="T:SharpDX.Direct3D9.CubeMapFace" /></strong>.</p> </dd></param>
  26977. <param name="mipFilter"><dd> <p>A valid combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" /> flags.</p> </dd></param>
  26978. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  26979. <remarks>
  26980. <p>This method must be called once for each type of environment map. The only exception is a cubic environment map which requires this method to be called six times, once for each face in <see cref="T:SharpDX.Direct3D9.CubeMapFace" />. For more information, see Environment Mapping (Direct3D 9). </p>
  26981. </remarks>
  26982. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::Face']/*" />
  26983. <msdn-id>bb174187</msdn-id>
  26984. <unmanaged>HRESULT ID3DXRenderToEnvMap::Face([In] D3DCUBEMAP_FACES Face,[In] unsigned int MipFilter)</unmanaged>
  26985. <unmanaged-short>ID3DXRenderToEnvMap::Face</unmanaged-short>
  26986. </member>
  26987. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.End(System.Int32)">
  26988. <summary>
  26989. <p>Restore all render targets and, if needed, compose all the rendered faces into the environment map surface.</p>
  26990. </summary>
  26991. <param name="mipFilter"><dd> <p>A valid combination of one or more <see cref="T:SharpDX.Direct3D9.Filter" /> flags.</p> </dd></param>
  26992. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  26993. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::End']/*" />
  26994. <msdn-id>bb174186</msdn-id>
  26995. <unmanaged>HRESULT ID3DXRenderToEnvMap::End([In] unsigned int MipFilter)</unmanaged>
  26996. <unmanaged-short>ID3DXRenderToEnvMap::End</unmanaged-short>
  26997. </member>
  26998. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.OnLostDevice">
  26999. <summary>
  27000. <p>Use this method to release all references to video memory resources and delete all stateblocks. This method should be called whenever a device is lost, or before resetting a device.</p>
  27001. </summary>
  27002. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27003. <remarks>
  27004. <p>This method should be called whenever the device is lost or before the user calls <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>. Even if the device was not actually lost, <strong><see cref="M:SharpDX.Direct3D9.RenderToEnvironmentMap.OnLostDevice" /></strong> is responsible for freeing stateblocks and other resources that may need to be released before resetting the device. As a result, the font object cannot be used again before calling <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> and then <strong><see cref="M:SharpDX.Direct3D9.RenderToEnvironmentMap.OnResetDevice" /></strong>.</p>
  27005. </remarks>
  27006. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::OnLostDevice']/*" />
  27007. <msdn-id>bb174190</msdn-id>
  27008. <unmanaged>HRESULT ID3DXRenderToEnvMap::OnLostDevice()</unmanaged>
  27009. <unmanaged-short>ID3DXRenderToEnvMap::OnLostDevice</unmanaged-short>
  27010. </member>
  27011. <member name="M:SharpDX.Direct3D9.RenderToEnvironmentMap.OnResetDevice">
  27012. <summary>
  27013. <p>Use this method to re-acquire resources and save initial state.</p>
  27014. </summary>
  27015. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27016. <remarks>
  27017. <p><strong><see cref="M:SharpDX.Direct3D9.RenderToEnvironmentMap.OnResetDevice" /></strong> should be called each time the device is reset (using <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>), before any other methods are called. This is a good place to re-acquire video-memory resources and capture state blocks.</p>
  27018. </remarks>
  27019. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToEnvMap::OnResetDevice']/*" />
  27020. <msdn-id>bb174191</msdn-id>
  27021. <unmanaged>HRESULT ID3DXRenderToEnvMap::OnResetDevice()</unmanaged>
  27022. <unmanaged-short>ID3DXRenderToEnvMap::OnResetDevice</unmanaged-short>
  27023. </member>
  27024. <member name="T:SharpDX.Direct3D9.RenderToSurface">
  27025. <summary>
  27026. <p>The <see cref="T:SharpDX.Direct3D9.RenderToSurface" /> interface is used to generalize the process of rendering to surfaces.</p>
  27027. </summary>
  27028. <remarks>
  27029. <p>Surfaces can be used in a variety of ways including render targets, off-screen rendering, or rendering to textures.</p><p>A surface can be configured using a separate viewport using the <strong><see cref="M:SharpDX.Direct3D9.RenderToSurface.BeginScene(SharpDX.Direct3D9.Surface,SharpDX.Mathematics.Interop.RawViewport)" /></strong> method, to provide a custom render view. If the surface is not a render target, a compatible render target is used, and the result is copied to the surface at the end of the scene.</p><p>The <strong><see cref="T:SharpDX.Direct3D9.RenderToSurface" /></strong> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateRenderToSurface(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Mathematics.Interop.RawBool,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.RenderToSurface)" /></strong> function.</p><p>The LPD3DXRENDERTOSURFACE type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.RenderToSurface" /></strong> interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.RenderToSurface" /> <see cref="T:SharpDX.Direct3D9.RenderToSurface" />;
  27030. typedef interface <see cref="T:SharpDX.Direct3D9.RenderToSurface" /> *LPD3DXRENDERTOSURFACE;
  27031. </pre>
  27032. </remarks>
  27033. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToSurface']/*" />
  27034. <msdn-id>bb174192</msdn-id>
  27035. <unmanaged>ID3DXRenderToSurface</unmanaged>
  27036. <unmanaged-short>ID3DXRenderToSurface</unmanaged-short>
  27037. </member>
  27038. <member name="M:SharpDX.Direct3D9.RenderToSurface.#ctor(System.IntPtr)">
  27039. <summary>
  27040. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.RenderToSurface"/> class.
  27041. </summary>
  27042. <param name="nativePtr">The native pointer.</param>
  27043. </member>
  27044. <member name="M:SharpDX.Direct3D9.RenderToSurface.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.RenderToSurface">
  27045. <summary>
  27046. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.RenderToSurface"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  27047. </summary>
  27048. <param name="nativePointer">The native pointer.</param>
  27049. <returns>
  27050. The result of the conversion.
  27051. </returns>
  27052. </member>
  27053. <member name="P:SharpDX.Direct3D9.RenderToSurface.Device">
  27054. <summary>
  27055. <p>Retrieves the Direct3D device associated with the render surface.</p>
  27056. </summary>
  27057. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToSurface::GetDevice']/*" />
  27058. <msdn-id>bb174196</msdn-id>
  27059. <unmanaged>GetDevice</unmanaged>
  27060. <unmanaged-short>GetDevice</unmanaged-short>
  27061. <unmanaged>HRESULT ID3DXRenderToSurface::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  27062. </member>
  27063. <member name="P:SharpDX.Direct3D9.RenderToSurface.Description">
  27064. <summary>
  27065. <p>Retrieves the parameters of the render surface.</p>
  27066. </summary>
  27067. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToSurface::GetDesc']/*" />
  27068. <msdn-id>bb174195</msdn-id>
  27069. <unmanaged>GetDesc</unmanaged>
  27070. <unmanaged-short>GetDesc</unmanaged-short>
  27071. <unmanaged>HRESULT ID3DXRenderToSurface::GetDesc([Out] D3DXRTS_DESC* pDesc)</unmanaged>
  27072. </member>
  27073. <member name="M:SharpDX.Direct3D9.RenderToSurface.GetDevice(SharpDX.Direct3D9.Device@)">
  27074. <summary>
  27075. <p>Retrieves the Direct3D device associated with the render surface.</p>
  27076. </summary>
  27077. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the Direct3D device object associated with the render surface.</p> </dd></param>
  27078. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Be sure to call <strong><see cref="T:SharpDX.ComObject" /></strong> when you are done using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface or you will have a memory leak.</p></returns>
  27079. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToSurface::GetDevice']/*" />
  27080. <msdn-id>bb174196</msdn-id>
  27081. <unmanaged>HRESULT ID3DXRenderToSurface::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  27082. <unmanaged-short>ID3DXRenderToSurface::GetDevice</unmanaged-short>
  27083. </member>
  27084. <member name="M:SharpDX.Direct3D9.RenderToSurface.GetDescription(SharpDX.Direct3D9.RenderToSurfaceDescription@)">
  27085. <summary>
  27086. <p>Retrieves the parameters of the render surface.</p>
  27087. </summary>
  27088. <param name="descRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.RenderToSurfaceDescription" /></strong> structure, describing the parameters of the render surface.</p> </dd></param>
  27089. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27090. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToSurface::GetDesc']/*" />
  27091. <msdn-id>bb174195</msdn-id>
  27092. <unmanaged>HRESULT ID3DXRenderToSurface::GetDesc([Out] D3DXRTS_DESC* pDesc)</unmanaged>
  27093. <unmanaged-short>ID3DXRenderToSurface::GetDesc</unmanaged-short>
  27094. </member>
  27095. <member name="M:SharpDX.Direct3D9.RenderToSurface.BeginScene(SharpDX.Direct3D9.Surface,SharpDX.Mathematics.Interop.RawViewport)">
  27096. <summary>
  27097. <p>Begins a scene.</p>
  27098. </summary>
  27099. <param name="surfaceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the render surface.</p> </dd></param>
  27100. <param name="viewportRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawViewport" /></strong> structure, describing the viewport for the scene.</p> </dd></param>
  27101. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.<see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" /> D3DXERR_INVALIDDATA E_OUTOFMEMORY</p></returns>
  27102. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToSurface::BeginScene']/*" />
  27103. <msdn-id>bb174193</msdn-id>
  27104. <unmanaged>HRESULT ID3DXRenderToSurface::BeginScene([In] IDirect3DSurface9* pSurface,[In] const D3DVIEWPORT9* pViewport)</unmanaged>
  27105. <unmanaged-short>ID3DXRenderToSurface::BeginScene</unmanaged-short>
  27106. </member>
  27107. <member name="M:SharpDX.Direct3D9.RenderToSurface.EndScene(SharpDX.Direct3D9.Filter)">
  27108. <summary>
  27109. <p>Ends a scene.</p>
  27110. </summary>
  27111. <param name="mipFilter"><dd> <p>Filter options, enumerated in <see cref="T:SharpDX.Direct3D9.Filter" />.</p> </dd></param>
  27112. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  27113. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToSurface::EndScene']/*" />
  27114. <msdn-id>bb174194</msdn-id>
  27115. <unmanaged>HRESULT ID3DXRenderToSurface::EndScene([In] D3DX_FILTER MipFilter)</unmanaged>
  27116. <unmanaged-short>ID3DXRenderToSurface::EndScene</unmanaged-short>
  27117. </member>
  27118. <member name="M:SharpDX.Direct3D9.RenderToSurface.OnLostDevice">
  27119. <summary>
  27120. <p>Use this method to release all references to video memory resources and delete all stateblocks. This method should be called whenever a device is lost or before resetting a device.</p>
  27121. </summary>
  27122. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27123. <remarks>
  27124. <p>This method should be called whenever the device is lost or before the user calls <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>. Even if the device was not actually lost, <see cref="M:SharpDX.Direct3D9.RenderToSurface.OnLostDevice" /> is responsible for freeing stateblocks and other resources that may need to be released before resetting the device. As a result, the font object cannot be used again before calling <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> and then <see cref="M:SharpDX.Direct3D9.RenderToSurface.OnResetDevice" />.</p>
  27125. </remarks>
  27126. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToSurface::OnLostDevice']/*" />
  27127. <msdn-id>bb174197</msdn-id>
  27128. <unmanaged>HRESULT ID3DXRenderToSurface::OnLostDevice()</unmanaged>
  27129. <unmanaged-short>ID3DXRenderToSurface::OnLostDevice</unmanaged-short>
  27130. </member>
  27131. <member name="M:SharpDX.Direct3D9.RenderToSurface.OnResetDevice">
  27132. <summary>
  27133. <p>Use this method to re-acquire resources and save initial state.</p>
  27134. </summary>
  27135. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27136. <remarks>
  27137. <p><see cref="M:SharpDX.Direct3D9.RenderToSurface.OnResetDevice" /> should be called each time the device is reset (using <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>), before any other methods are called. This is a good place to re-acquire video-memory resources and capture state blocks.</p>
  27138. </remarks>
  27139. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXRenderToSurface::OnResetDevice']/*" />
  27140. <msdn-id>bb174198</msdn-id>
  27141. <unmanaged>HRESULT ID3DXRenderToSurface::OnResetDevice()</unmanaged>
  27142. <unmanaged-short>ID3DXRenderToSurface::OnResetDevice</unmanaged-short>
  27143. </member>
  27144. <member name="M:SharpDX.Direct3D9.RenderToSurface.#ctor(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,System.Boolean,SharpDX.Direct3D9.Format)">
  27145. <summary>
  27146. Creates a render surface.
  27147. </summary>
  27148. <param name="device"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Device"/></strong> interface, the device to be associated with the render surface.</p> </dd></param>
  27149. <param name="width"><dd> <p>Width of the render surface, in pixels.</p> </dd></param>
  27150. <param name="height"><dd> <p>Height of the render surface, in pixels.</p> </dd></param>
  27151. <param name="format"><dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format"/> enumerated type, describing the pixel format of the render surface.</p> </dd></param>
  27152. <param name="depthStencil"><dd> <p>If <strong>TRUE</strong>, the render surface supports a depth-stencil surface. Otherwise, this member is set to <strong><see cref="F:SharpDX.Result.False"/></strong>. This function will create a new depth buffer.</p> </dd></param>
  27153. <param name="depthStencilFormat"><dd> <p>If <em>DepthStencil</em> is set to <strong>TRUE</strong>, this parameter is a member of the <see cref="T:SharpDX.Direct3D9.Format"/> enumerated type, describing the depth-stencil format of the render surface.</p> </dd></param>
  27154. <msdn-id>bb172791</msdn-id>
  27155. <unmanaged>HRESULT D3DXCreateRenderToSurface([In] IDirect3DDevice9* pDevice,[In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] BOOL DepthStencil,[In] D3DFORMAT DepthStencilFormat,[In] ID3DXRenderToSurface** ppRenderToSurface)</unmanaged>
  27156. <unmanaged-short>D3DXCreateRenderToSurface</unmanaged-short>
  27157. </member>
  27158. <member name="T:SharpDX.Direct3D9.Resource">
  27159. <summary>
  27160. <p>Applications use the methods of the <strong><see cref="T:SharpDX.Direct3D9.Resource" /></strong> interface to query and prepare resources.</p>
  27161. </summary>
  27162. <remarks>
  27163. <p>To create a texture resource, you can call one of the following methods.</p><ul> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.CreateCubeTexture(System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.CubeTexture,System.IntPtr)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.CreateTexture(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Texture,System.IntPtr)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.CreateVolumeTexture(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VolumeTexture,System.IntPtr)" /></strong> </li> </ul><p>To create a geometry-oriented resource, you can call one of the following methods.</p><ul> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.CreateIndexBuffer(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.IndexBuffer,System.IntPtr)" /></strong> </li> <li> <strong><see cref="M:SharpDX.Direct3D9.Device.CreateVertexBuffer(System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VertexBuffer,System.IntPtr)" /></strong> </li> </ul><p>This interface, like all COM interfaces, inherits from the <strong><see cref="T:SharpDX.ComObject" /></strong> interface.</p><p>The LPDIRECT3DRESOURCE9 and PDIRECT3DRESOURCE9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.Resource" /></strong> interface. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.Resource" /> *LPDIRECT3DRESOURCE9, *PDIRECT3DRESOURCE9;
  27164. </pre>
  27165. </remarks>
  27166. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9']/*" />
  27167. <msdn-id>bb205878</msdn-id>
  27168. <unmanaged>IDirect3DResource9</unmanaged>
  27169. <unmanaged-short>IDirect3DResource9</unmanaged-short>
  27170. </member>
  27171. <member name="M:SharpDX.Direct3D9.Resource.#ctor(System.IntPtr)">
  27172. <summary>
  27173. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Resource"/> class.
  27174. </summary>
  27175. <param name="nativePtr">The native pointer.</param>
  27176. </member>
  27177. <member name="M:SharpDX.Direct3D9.Resource.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Resource">
  27178. <summary>
  27179. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Resource"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  27180. </summary>
  27181. <param name="nativePointer">The native pointer.</param>
  27182. <returns>
  27183. The result of the conversion.
  27184. </returns>
  27185. </member>
  27186. <member name="P:SharpDX.Direct3D9.Resource.Device">
  27187. <summary>
  27188. <p>Retrieves the device associated with a resource.</p>
  27189. </summary>
  27190. <remarks>
  27191. <p>This method allows navigation to the owning device object.</p><p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface results in a memory leak.</p>
  27192. </remarks>
  27193. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::GetDevice']/*" />
  27194. <msdn-id>bb205880</msdn-id>
  27195. <unmanaged>GetDevice</unmanaged>
  27196. <unmanaged-short>GetDevice</unmanaged-short>
  27197. <unmanaged>HRESULT IDirect3DResource9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  27198. </member>
  27199. <member name="P:SharpDX.Direct3D9.Resource.Priority">
  27200. <summary>
  27201. <p>Retrieves the priority for this resource.</p>
  27202. </summary>
  27203. <remarks>
  27204. <p><strong><see cref="M:SharpDX.Direct3D9.Resource.GetPriority" /></strong> is used for priority control of managed resources. This method returns 0 on nonmanaged resources.</p><p>Priorities are used to determine when managed resources are to be removed from memory. A resource assigned a low priority is removed before a resource with a high priority. If two resources have the same priority, the resource that was used more recently is kept in memory; the other resource is removed. Managed resources have a default priority of 0.</p>
  27205. </remarks>
  27206. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::GetPriority']/*" />
  27207. <msdn-id>bb205881</msdn-id>
  27208. <unmanaged>GetPriority</unmanaged>
  27209. <unmanaged-short>GetPriority</unmanaged-short>
  27210. <unmanaged>unsigned int IDirect3DResource9::GetPriority()</unmanaged>
  27211. </member>
  27212. <member name="P:SharpDX.Direct3D9.Resource.TypeInfo">
  27213. <summary>
  27214. <p>Returns the type of the resource.</p>
  27215. </summary>
  27216. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::GetType']/*" />
  27217. <msdn-id>bb205883</msdn-id>
  27218. <unmanaged>GetType</unmanaged>
  27219. <unmanaged-short>GetType</unmanaged-short>
  27220. <unmanaged>D3DRESOURCETYPE IDirect3DResource9::GetType()</unmanaged>
  27221. </member>
  27222. <member name="M:SharpDX.Direct3D9.Resource.GetDevice(SharpDX.Direct3D9.Device@)">
  27223. <summary>
  27224. <p>Retrieves the device associated with a resource.</p>
  27225. </summary>
  27226. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface to fill with the device reference, if the query succeeds. </p> </dd></param>
  27227. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  27228. <remarks>
  27229. <p>This method allows navigation to the owning device object.</p><p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface results in a memory leak.</p>
  27230. </remarks>
  27231. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::GetDevice']/*" />
  27232. <msdn-id>bb205880</msdn-id>
  27233. <unmanaged>HRESULT IDirect3DResource9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  27234. <unmanaged-short>IDirect3DResource9::GetDevice</unmanaged-short>
  27235. </member>
  27236. <member name="M:SharpDX.Direct3D9.Resource.SetPrivateData(System.Guid,System.IntPtr,System.Int32,System.Int32)">
  27237. <summary>
  27238. <p>Associates data with the resource that is intended for use by the application, not by Direct3D. Data is passed by value, and multiple sets of data can be associated with a single resource.</p>
  27239. </summary>
  27240. <param name="refguid"><dd> <p>Reference to the globally unique identifier that identifies the private data to set.</p> </dd></param>
  27241. <param name="dataRef"><dd> <p>Pointer to a buffer that contains the data to be associated with the resource. </p> </dd></param>
  27242. <param name="sizeOfData"><dd> <p>Size of the buffer at pData, in bytes. </p> </dd></param>
  27243. <param name="flags"><dd> <p>Value that describes the type of data being passed, or indicates to the application that the data should be invalidated when the resource changes. </p> <p /> <table> <tr><th>Item</th><th>Description</th></tr> <tr><td> <p>(none)</p> </td><td> <p>If no flags are specified, Direct3D allocates memory to hold the data within the buffer and copies the data into the new buffer. The buffer allocated by Direct3D is automatically freed, as appropriate.</p> </td></tr> <tr><td> <p>D3DSPD_IUNKNOWN</p> </td><td> <p>The data at pData is a reference to an <strong><see cref="T:SharpDX.ComObject" /></strong> interface. SizeOfData must be set to the size of a reference to <see cref="T:SharpDX.ComObject" />, that is, sizeof(<see cref="T:SharpDX.ComObject" />*). Direct3D automatically callsIUnknown through pData when the private data is destroyed. Private data will be destroyed by a subsequent call to <strong><see cref="M:SharpDX.Direct3D9.Resource.SetPrivateData(System.Guid,System.IntPtr,System.Int32,System.Int32)" /></strong> with the same <see cref="T:System.Guid" />, a subsequent call to <strong><see cref="M:SharpDX.Direct3D9.Resource.FreePrivateData(System.Guid)" /></strong>, or when the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> object is released. For more information, see Remarks.</p> </td></tr> </table> <p>?</p> </dd></param>
  27244. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  27245. <remarks>
  27246. <p>Direct3D does not manage the memory at pData. If this buffer was dynamically allocated, it is the calling application's responsibility to free the memory.</p>
  27247. </remarks>
  27248. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::SetPrivateData']/*" />
  27249. <msdn-id>bb205886</msdn-id>
  27250. <unmanaged>HRESULT IDirect3DResource9::SetPrivateData([In] const GUID&amp; refguid,[In] const void* pData,[In] unsigned int SizeOfData,[In] unsigned int Flags)</unmanaged>
  27251. <unmanaged-short>IDirect3DResource9::SetPrivateData</unmanaged-short>
  27252. </member>
  27253. <member name="M:SharpDX.Direct3D9.Resource.GetPrivateData(System.Guid,System.IntPtr,System.Int32@)">
  27254. <summary>
  27255. <p>Copies the private data associated with the resource to a provided buffer.</p>
  27256. </summary>
  27257. <param name="refguid"><dd> <p>The globally unique identifier that identifies the private data to retrieve. </p> </dd></param>
  27258. <param name="dataRef"><dd> <p>Pointer to a previously allocated buffer to fill with the requested private data if the call succeeds. The application calling this method is responsible for allocating and releasing this buffer. If this parameter is <strong><c>null</c></strong>, this method will return the buffer size in pSizeOfData.</p> </dd></param>
  27259. <param name="sizeOfDataRef"><dd> <p>Pointer to the size of the buffer at pData, in bytes. If this value is less than the actual size of the private data (such as 0), the method sets this parameter to the required buffer size and the method returns <see cref="F:SharpDX.Direct3D9.ResultCode.MoreData" />. </p> </dd></param>
  27260. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.MoreData" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotFound" />.</p></returns>
  27261. <remarks>
  27262. <p>This method is inherited by the following interfaces: <strong><see cref="T:SharpDX.Direct3D9.Resource" /></strong>, <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong>, <strong><see cref="T:SharpDX.Direct3D9.CubeTexture" /></strong>, <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong>, <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong>, <strong><see cref="T:SharpDX.Direct3D9.IndexBuffer" /></strong>, <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong>.</p>
  27263. </remarks>
  27264. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::GetPrivateData']/*" />
  27265. <msdn-id>bb205882</msdn-id>
  27266. <unmanaged>HRESULT IDirect3DResource9::GetPrivateData([In] const GUID&amp; refguid,[In] void* pData,[InOut] unsigned int* pSizeOfData)</unmanaged>
  27267. <unmanaged-short>IDirect3DResource9::GetPrivateData</unmanaged-short>
  27268. </member>
  27269. <member name="M:SharpDX.Direct3D9.Resource.FreePrivateData(System.Guid)">
  27270. <summary>
  27271. <p>Frees the specified private data associated with this resource.</p>
  27272. </summary>
  27273. <param name="refguid"><dd> <p>Reference to the globally unique identifier that identifies the private data to free.</p> </dd></param>
  27274. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotFound" />.</p></returns>
  27275. <remarks>
  27276. <p>Direct3D calls this method automatically when a resource is released.</p>
  27277. </remarks>
  27278. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::FreePrivateData']/*" />
  27279. <msdn-id>bb205879</msdn-id>
  27280. <unmanaged>HRESULT IDirect3DResource9::FreePrivateData([In] const GUID&amp; refguid)</unmanaged>
  27281. <unmanaged-short>IDirect3DResource9::FreePrivateData</unmanaged-short>
  27282. </member>
  27283. <member name="M:SharpDX.Direct3D9.Resource.SetPriority(System.Int32)">
  27284. <summary>
  27285. <p>Assigns the priority of a resource for scheduling purposes.</p>
  27286. </summary>
  27287. <param name="priorityNew"><dd> <p>Priority to assign to a resource. </p> <table> <tr><td> <p>Differences between Direct3D 9 and Direct3D 9 for Windows Vista</p> <p>The priority can be any DWORD value; Direct3D 9 for Windows Vista also supports any of these pre-defined values <strong>D3D9_RESOURCE_PRIORITY</strong>.</p> </td></tr> </table> <p>?</p> </dd></param>
  27288. <returns><p>Returns the previous priority value for the resource.</p></returns>
  27289. <remarks>
  27290. <p>This method is used to change the priority of managed resources (resources created with the <strong><see cref="F:SharpDX.Direct3D9.Pool.Managed" /></strong> flag). This method returns 0 on non-managed resources.</p><p>Priorities are used to determine when managed resources are to be removed from memory. A resource assigned a low priority is removed before a resource with a high priority. If two resources have the same priority, the resource that was used more recently is kept in memory; the other resource is removed. Managed resources have a default priority of 0.</p><p> Windows Vista only - When this method is called using an <strong><see cref="T:SharpDX.Direct3D9.Direct3DEx" /></strong> interface, only resources created with the <strong><see cref="F:SharpDX.Direct3D9.Pool.Default" /></strong> flag will be affected.</p>
  27291. </remarks>
  27292. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::SetPriority']/*" />
  27293. <msdn-id>bb205885</msdn-id>
  27294. <unmanaged>unsigned int IDirect3DResource9::SetPriority([In] unsigned int PriorityNew)</unmanaged>
  27295. <unmanaged-short>IDirect3DResource9::SetPriority</unmanaged-short>
  27296. </member>
  27297. <member name="M:SharpDX.Direct3D9.Resource.GetPriority">
  27298. <summary>
  27299. <p>Retrieves the priority for this resource.</p>
  27300. </summary>
  27301. <returns><p>Returns a DWORD value, indicating the priority of the resource.</p></returns>
  27302. <remarks>
  27303. <p><strong><see cref="M:SharpDX.Direct3D9.Resource.GetPriority" /></strong> is used for priority control of managed resources. This method returns 0 on nonmanaged resources.</p><p>Priorities are used to determine when managed resources are to be removed from memory. A resource assigned a low priority is removed before a resource with a high priority. If two resources have the same priority, the resource that was used more recently is kept in memory; the other resource is removed. Managed resources have a default priority of 0.</p>
  27304. </remarks>
  27305. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::GetPriority']/*" />
  27306. <msdn-id>bb205881</msdn-id>
  27307. <unmanaged>unsigned int IDirect3DResource9::GetPriority()</unmanaged>
  27308. <unmanaged-short>IDirect3DResource9::GetPriority</unmanaged-short>
  27309. </member>
  27310. <member name="M:SharpDX.Direct3D9.Resource.PreLoad">
  27311. <summary>
  27312. <p>Preloads a managed resource.</p>
  27313. </summary>
  27314. <remarks>
  27315. <p>Calling this method indicates that the application will need this managed resource shortly. This method has no effect on nonmanaged resources.</p><p><strong><see cref="M:SharpDX.Direct3D9.Resource.PreLoad" /></strong> detects "thrashing" conditions where more resources are being used in each frame than can fit in video memory simultaneously. Under such circumstances <strong><see cref="M:SharpDX.Direct3D9.Resource.PreLoad" /></strong> silently does nothing.</p>
  27316. </remarks>
  27317. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::PreLoad']/*" />
  27318. <msdn-id>bb205884</msdn-id>
  27319. <unmanaged>void IDirect3DResource9::PreLoad()</unmanaged>
  27320. <unmanaged-short>IDirect3DResource9::PreLoad</unmanaged-short>
  27321. </member>
  27322. <member name="M:SharpDX.Direct3D9.Resource.GetTypeInfo">
  27323. <summary>
  27324. <p>Returns the type of the resource.</p>
  27325. </summary>
  27326. <returns><p>Returns a member of the <strong><see cref="T:SharpDX.Direct3D9.ResourceType" /></strong> enumerated type, identifying the type of the resource.</p></returns>
  27327. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DResource9::GetType']/*" />
  27328. <msdn-id>bb205883</msdn-id>
  27329. <unmanaged>D3DRESOURCETYPE IDirect3DResource9::GetType()</unmanaged>
  27330. <unmanaged-short>IDirect3DResource9::GetType</unmanaged-short>
  27331. </member>
  27332. <member name="P:SharpDX.Direct3D9.Resource.DebugName">
  27333. <summary>
  27334. Gets or sets the debug-name for this object.
  27335. </summary>
  27336. <value>
  27337. The debug name.
  27338. </value>
  27339. </member>
  27340. <member name="T:SharpDX.Direct3D9.SimplificationMesh">
  27341. <summary>
  27342. No documentation.
  27343. </summary>
  27344. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh']/*" />
  27345. <msdn-id>bb280438</msdn-id>
  27346. <unmanaged>ID3DXSPMesh</unmanaged>
  27347. <unmanaged-short>ID3DXSPMesh</unmanaged-short>
  27348. </member>
  27349. <member name="M:SharpDX.Direct3D9.SimplificationMesh.#ctor(System.IntPtr)">
  27350. <summary>
  27351. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.SimplificationMesh"/> class.
  27352. </summary>
  27353. <param name="nativePtr">The native pointer.</param>
  27354. </member>
  27355. <member name="M:SharpDX.Direct3D9.SimplificationMesh.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.SimplificationMesh">
  27356. <summary>
  27357. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.SimplificationMesh"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  27358. </summary>
  27359. <param name="nativePointer">The native pointer.</param>
  27360. <returns>
  27361. The result of the conversion.
  27362. </returns>
  27363. </member>
  27364. <member name="P:SharpDX.Direct3D9.SimplificationMesh.NumFaces">
  27365. <summary>
  27366. No documentation.
  27367. </summary>
  27368. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetNumFaces']/*" />
  27369. <unmanaged>GetNumFaces</unmanaged>
  27370. <unmanaged-short>GetNumFaces</unmanaged-short>
  27371. <unmanaged>unsigned int ID3DXSPMesh::GetNumFaces()</unmanaged>
  27372. </member>
  27373. <member name="P:SharpDX.Direct3D9.SimplificationMesh.NumVertices">
  27374. <summary>
  27375. No documentation.
  27376. </summary>
  27377. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetNumVertices']/*" />
  27378. <unmanaged>GetNumVertices</unmanaged>
  27379. <unmanaged-short>GetNumVertices</unmanaged-short>
  27380. <unmanaged>unsigned int ID3DXSPMesh::GetNumVertices()</unmanaged>
  27381. </member>
  27382. <member name="P:SharpDX.Direct3D9.SimplificationMesh.FVF">
  27383. <summary>
  27384. No documentation.
  27385. </summary>
  27386. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetFVF']/*" />
  27387. <unmanaged>GetFVF</unmanaged>
  27388. <unmanaged-short>GetFVF</unmanaged-short>
  27389. <unmanaged>unsigned int ID3DXSPMesh::GetFVF()</unmanaged>
  27390. </member>
  27391. <member name="P:SharpDX.Direct3D9.SimplificationMesh.Options">
  27392. <summary>
  27393. No documentation.
  27394. </summary>
  27395. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetOptions']/*" />
  27396. <unmanaged>GetOptions</unmanaged>
  27397. <unmanaged-short>GetOptions</unmanaged-short>
  27398. <unmanaged>unsigned int ID3DXSPMesh::GetOptions()</unmanaged>
  27399. </member>
  27400. <member name="P:SharpDX.Direct3D9.SimplificationMesh.Device">
  27401. <summary>
  27402. No documentation.
  27403. </summary>
  27404. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetDevice']/*" />
  27405. <unmanaged>GetDevice</unmanaged>
  27406. <unmanaged-short>GetDevice</unmanaged-short>
  27407. <unmanaged>HRESULT ID3DXSPMesh::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  27408. </member>
  27409. <member name="P:SharpDX.Direct3D9.SimplificationMesh.MaxFaces">
  27410. <summary>
  27411. No documentation.
  27412. </summary>
  27413. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetMaxFaces']/*" />
  27414. <unmanaged>GetMaxFaces</unmanaged>
  27415. <unmanaged-short>GetMaxFaces</unmanaged-short>
  27416. <unmanaged>unsigned int ID3DXSPMesh::GetMaxFaces()</unmanaged>
  27417. </member>
  27418. <member name="P:SharpDX.Direct3D9.SimplificationMesh.MaxVertices">
  27419. <summary>
  27420. No documentation.
  27421. </summary>
  27422. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetMaxVertices']/*" />
  27423. <unmanaged>GetMaxVertices</unmanaged>
  27424. <unmanaged-short>GetMaxVertices</unmanaged-short>
  27425. <unmanaged>unsigned int ID3DXSPMesh::GetMaxVertices()</unmanaged>
  27426. </member>
  27427. <member name="P:SharpDX.Direct3D9.SimplificationMesh.VertexWeights">
  27428. <summary>
  27429. No documentation.
  27430. </summary>
  27431. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetVertexWeights']/*" />
  27432. <unmanaged>GetVertexWeights</unmanaged>
  27433. <unmanaged-short>GetVertexWeights</unmanaged-short>
  27434. <unmanaged>HRESULT ID3DXSPMesh::GetVertexWeights([Out] float* pVertexWeights)</unmanaged>
  27435. </member>
  27436. <member name="M:SharpDX.Direct3D9.SimplificationMesh.GetNumFaces">
  27437. <summary>
  27438. No documentation.
  27439. </summary>
  27440. <returns>No documentation.</returns>
  27441. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetNumFaces']/*" />
  27442. <unmanaged>unsigned int ID3DXSPMesh::GetNumFaces()</unmanaged>
  27443. <unmanaged-short>ID3DXSPMesh::GetNumFaces</unmanaged-short>
  27444. </member>
  27445. <member name="M:SharpDX.Direct3D9.SimplificationMesh.GetNumVertices">
  27446. <summary>
  27447. No documentation.
  27448. </summary>
  27449. <returns>No documentation.</returns>
  27450. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetNumVertices']/*" />
  27451. <unmanaged>unsigned int ID3DXSPMesh::GetNumVertices()</unmanaged>
  27452. <unmanaged-short>ID3DXSPMesh::GetNumVertices</unmanaged-short>
  27453. </member>
  27454. <member name="M:SharpDX.Direct3D9.SimplificationMesh.GetFVF">
  27455. <summary>
  27456. No documentation.
  27457. </summary>
  27458. <returns>No documentation.</returns>
  27459. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetFVF']/*" />
  27460. <unmanaged>unsigned int ID3DXSPMesh::GetFVF()</unmanaged>
  27461. <unmanaged-short>ID3DXSPMesh::GetFVF</unmanaged-short>
  27462. </member>
  27463. <member name="M:SharpDX.Direct3D9.SimplificationMesh.GetDeclaration(SharpDX.Direct3D9.VertexElement)">
  27464. <summary>
  27465. No documentation.
  27466. </summary>
  27467. <param name="declaration">No documentation.</param>
  27468. <returns>No documentation.</returns>
  27469. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetDeclaration']/*" />
  27470. <unmanaged>HRESULT ID3DXSPMesh::GetDeclaration([In] D3DVERTEXELEMENT9* Declaration)</unmanaged>
  27471. <unmanaged-short>ID3DXSPMesh::GetDeclaration</unmanaged-short>
  27472. </member>
  27473. <member name="M:SharpDX.Direct3D9.SimplificationMesh.GetOptions">
  27474. <summary>
  27475. No documentation.
  27476. </summary>
  27477. <returns>No documentation.</returns>
  27478. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetOptions']/*" />
  27479. <unmanaged>unsigned int ID3DXSPMesh::GetOptions()</unmanaged>
  27480. <unmanaged-short>ID3DXSPMesh::GetOptions</unmanaged-short>
  27481. </member>
  27482. <member name="M:SharpDX.Direct3D9.SimplificationMesh.GetDevice(SharpDX.Direct3D9.Device@)">
  27483. <summary>
  27484. No documentation.
  27485. </summary>
  27486. <param name="deviceOut">No documentation.</param>
  27487. <returns>No documentation.</returns>
  27488. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetDevice']/*" />
  27489. <unmanaged>HRESULT ID3DXSPMesh::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  27490. <unmanaged-short>ID3DXSPMesh::GetDevice</unmanaged-short>
  27491. </member>
  27492. <member name="M:SharpDX.Direct3D9.SimplificationMesh.CloneMeshFVF(System.Int32,System.Int32,SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Mesh@)">
  27493. <summary>
  27494. No documentation.
  27495. </summary>
  27496. <param name="options">No documentation.</param>
  27497. <param name="fvf">No documentation.</param>
  27498. <param name="d3DDeviceRef">No documentation.</param>
  27499. <param name="adjacencyOutRef">No documentation.</param>
  27500. <param name="vertexRemapOutRef">No documentation.</param>
  27501. <param name="cloneMeshOut">No documentation.</param>
  27502. <returns>No documentation.</returns>
  27503. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::CloneMeshFVF']/*" />
  27504. <unmanaged>HRESULT ID3DXSPMesh::CloneMeshFVF([In] unsigned int Options,[In] unsigned int FVF,[In] IDirect3DDevice9* pD3DDevice,[In] unsigned int* pAdjacencyOut,[In] unsigned int* pVertexRemapOut,[In] ID3DXMesh** ppCloneMesh)</unmanaged>
  27505. <unmanaged-short>ID3DXSPMesh::CloneMeshFVF</unmanaged-short>
  27506. </member>
  27507. <member name="M:SharpDX.Direct3D9.SimplificationMesh.CloneMesh(System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Mesh@)">
  27508. <summary>
  27509. No documentation.
  27510. </summary>
  27511. <param name="options">No documentation.</param>
  27512. <param name="declarationRef">No documentation.</param>
  27513. <param name="d3DDeviceRef">No documentation.</param>
  27514. <param name="adjacencyOutRef">No documentation.</param>
  27515. <param name="vertexRemapOutRef">No documentation.</param>
  27516. <param name="cloneMeshOut">No documentation.</param>
  27517. <returns>No documentation.</returns>
  27518. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::CloneMesh']/*" />
  27519. <unmanaged>HRESULT ID3DXSPMesh::CloneMesh([In] unsigned int Options,[In] const D3DVERTEXELEMENT9* pDeclaration,[In] IDirect3DDevice9* pD3DDevice,[In] unsigned int* pAdjacencyOut,[In] unsigned int* pVertexRemapOut,[In] ID3DXMesh** ppCloneMesh)</unmanaged>
  27520. <unmanaged-short>ID3DXSPMesh::CloneMesh</unmanaged-short>
  27521. </member>
  27522. <member name="M:SharpDX.Direct3D9.SimplificationMesh.ClonePMeshFVF(System.Int32,System.Int32,SharpDX.Direct3D9.Device,System.Int32,System.Single,SharpDX.Direct3D9.ProgressiveMesh@)">
  27523. <summary>
  27524. No documentation.
  27525. </summary>
  27526. <param name="options">No documentation.</param>
  27527. <param name="fvf">No documentation.</param>
  27528. <param name="d3DDeviceRef">No documentation.</param>
  27529. <param name="vertexRemapOutRef">No documentation.</param>
  27530. <param name="errorsByFaceRef">No documentation.</param>
  27531. <param name="cloneMeshOut">No documentation.</param>
  27532. <returns>No documentation.</returns>
  27533. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::ClonePMeshFVF']/*" />
  27534. <unmanaged>HRESULT ID3DXSPMesh::ClonePMeshFVF([In] unsigned int Options,[In] unsigned int FVF,[In] IDirect3DDevice9* pD3DDevice,[In] unsigned int* pVertexRemapOut,[In] float* pErrorsByFace,[In] ID3DXPMesh** ppCloneMesh)</unmanaged>
  27535. <unmanaged-short>ID3DXSPMesh::ClonePMeshFVF</unmanaged-short>
  27536. </member>
  27537. <member name="M:SharpDX.Direct3D9.SimplificationMesh.ClonePMesh(System.Int32,SharpDX.Direct3D9.VertexElement,SharpDX.Direct3D9.Device,System.Int32,System.Single,SharpDX.Direct3D9.ProgressiveMesh@)">
  27538. <summary>
  27539. No documentation.
  27540. </summary>
  27541. <param name="options">No documentation.</param>
  27542. <param name="declarationRef">No documentation.</param>
  27543. <param name="d3DDeviceRef">No documentation.</param>
  27544. <param name="vertexRemapOutRef">No documentation.</param>
  27545. <param name="errorsbyFaceRef">No documentation.</param>
  27546. <param name="cloneMeshOut">No documentation.</param>
  27547. <returns>No documentation.</returns>
  27548. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::ClonePMesh']/*" />
  27549. <unmanaged>HRESULT ID3DXSPMesh::ClonePMesh([In] unsigned int Options,[In] const D3DVERTEXELEMENT9* pDeclaration,[In] IDirect3DDevice9* pD3DDevice,[In] unsigned int* pVertexRemapOut,[In] float* pErrorsbyFace,[In] ID3DXPMesh** ppCloneMesh)</unmanaged>
  27550. <unmanaged-short>ID3DXSPMesh::ClonePMesh</unmanaged-short>
  27551. </member>
  27552. <member name="M:SharpDX.Direct3D9.SimplificationMesh.ReduceFaces(System.Int32)">
  27553. <summary>
  27554. No documentation.
  27555. </summary>
  27556. <param name="faces">No documentation.</param>
  27557. <returns>No documentation.</returns>
  27558. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::ReduceFaces']/*" />
  27559. <unmanaged>HRESULT ID3DXSPMesh::ReduceFaces([In] unsigned int Faces)</unmanaged>
  27560. <unmanaged-short>ID3DXSPMesh::ReduceFaces</unmanaged-short>
  27561. </member>
  27562. <member name="M:SharpDX.Direct3D9.SimplificationMesh.ReduceVertices(System.Int32)">
  27563. <summary>
  27564. No documentation.
  27565. </summary>
  27566. <param name="vertices">No documentation.</param>
  27567. <returns>No documentation.</returns>
  27568. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::ReduceVertices']/*" />
  27569. <unmanaged>HRESULT ID3DXSPMesh::ReduceVertices([In] unsigned int Vertices)</unmanaged>
  27570. <unmanaged-short>ID3DXSPMesh::ReduceVertices</unmanaged-short>
  27571. </member>
  27572. <member name="M:SharpDX.Direct3D9.SimplificationMesh.GetMaxFaces">
  27573. <summary>
  27574. No documentation.
  27575. </summary>
  27576. <returns>No documentation.</returns>
  27577. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetMaxFaces']/*" />
  27578. <unmanaged>unsigned int ID3DXSPMesh::GetMaxFaces()</unmanaged>
  27579. <unmanaged-short>ID3DXSPMesh::GetMaxFaces</unmanaged-short>
  27580. </member>
  27581. <member name="M:SharpDX.Direct3D9.SimplificationMesh.GetMaxVertices">
  27582. <summary>
  27583. No documentation.
  27584. </summary>
  27585. <returns>No documentation.</returns>
  27586. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetMaxVertices']/*" />
  27587. <unmanaged>unsigned int ID3DXSPMesh::GetMaxVertices()</unmanaged>
  27588. <unmanaged-short>ID3DXSPMesh::GetMaxVertices</unmanaged-short>
  27589. </member>
  27590. <member name="M:SharpDX.Direct3D9.SimplificationMesh.GetVertexAttributeWeights(SharpDX.Direct3D9.AttributeWeights@)">
  27591. <summary>
  27592. No documentation.
  27593. </summary>
  27594. <param name="vertexAttributeWeightsRef">No documentation.</param>
  27595. <returns>No documentation.</returns>
  27596. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetVertexAttributeWeights']/*" />
  27597. <unmanaged>HRESULT ID3DXSPMesh::GetVertexAttributeWeights([In] D3DXATTRIBUTEWEIGHTS* pVertexAttributeWeights)</unmanaged>
  27598. <unmanaged-short>ID3DXSPMesh::GetVertexAttributeWeights</unmanaged-short>
  27599. </member>
  27600. <member name="M:SharpDX.Direct3D9.SimplificationMesh.GetVertexWeights(System.Single@)">
  27601. <summary>
  27602. No documentation.
  27603. </summary>
  27604. <param name="vertexWeightsRef">No documentation.</param>
  27605. <returns>No documentation.</returns>
  27606. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSPMesh::GetVertexWeights']/*" />
  27607. <unmanaged>HRESULT ID3DXSPMesh::GetVertexWeights([Out] float* pVertexWeights)</unmanaged>
  27608. <unmanaged-short>ID3DXSPMesh::GetVertexWeights</unmanaged-short>
  27609. </member>
  27610. <member name="T:SharpDX.Direct3D9.SkinInfo">
  27611. <summary>
  27612. No documentation.
  27613. </summary>
  27614. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo']/*" />
  27615. <msdn-id>bb280439</msdn-id>
  27616. <unmanaged>ID3DXSkinInfo</unmanaged>
  27617. <unmanaged-short>ID3DXSkinInfo</unmanaged-short>
  27618. </member>
  27619. <member name="M:SharpDX.Direct3D9.SkinInfo.#ctor(System.IntPtr)">
  27620. <summary>
  27621. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.SkinInfo"/> class.
  27622. </summary>
  27623. <param name="nativePtr">The native pointer.</param>
  27624. </member>
  27625. <member name="M:SharpDX.Direct3D9.SkinInfo.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.SkinInfo">
  27626. <summary>
  27627. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.SkinInfo"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  27628. </summary>
  27629. <param name="nativePointer">The native pointer.</param>
  27630. <returns>
  27631. The result of the conversion.
  27632. </returns>
  27633. </member>
  27634. <member name="P:SharpDX.Direct3D9.SkinInfo.MaxVertexInfluences">
  27635. <summary>
  27636. <p>Gets the maximum number of influences for any vertex in the mesh.</p>
  27637. </summary>
  27638. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetMaxVertexInfluences']/*" />
  27639. <msdn-id>bb174218</msdn-id>
  27640. <unmanaged>GetMaxVertexInfluences</unmanaged>
  27641. <unmanaged-short>GetMaxVertexInfluences</unmanaged-short>
  27642. <unmanaged>HRESULT ID3DXSkinInfo::GetMaxVertexInfluences([Out] unsigned int* maxVertexInfluences)</unmanaged>
  27643. </member>
  27644. <member name="P:SharpDX.Direct3D9.SkinInfo.NumBones">
  27645. <summary>
  27646. <p>Gets the number of bones.</p>
  27647. </summary>
  27648. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetNumBones']/*" />
  27649. <msdn-id>bb174221</msdn-id>
  27650. <unmanaged>GetNumBones</unmanaged>
  27651. <unmanaged-short>GetNumBones</unmanaged-short>
  27652. <unmanaged>unsigned int ID3DXSkinInfo::GetNumBones()</unmanaged>
  27653. </member>
  27654. <member name="P:SharpDX.Direct3D9.SkinInfo.MinBoneInfluence">
  27655. <summary>
  27656. <p>Gets or sets the minimum bone influence. Influence values smaller than this are ignored.</p>
  27657. </summary>
  27658. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetMinBoneInfluence']/*" />
  27659. <msdn-id>bb174219</msdn-id>
  27660. <unmanaged>GetMinBoneInfluence / SetMinBoneInfluence</unmanaged>
  27661. <unmanaged-short>GetMinBoneInfluence</unmanaged-short>
  27662. <unmanaged>float ID3DXSkinInfo::GetMinBoneInfluence()</unmanaged>
  27663. </member>
  27664. <member name="P:SharpDX.Direct3D9.SkinInfo.FVF">
  27665. <summary>
  27666. <p>Gets or sets the fixed function vertex value.</p>
  27667. </summary>
  27668. <remarks>
  27669. <p>This method can return 0 if the vertex format cannot be mapped directly to an FVF code. This will occur for a mesh created from a vertex declaration that doesn't have the same order and elements supported by the FVF codes.</p>
  27670. </remarks>
  27671. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetFVF']/*" />
  27672. <msdn-id>bb174216</msdn-id>
  27673. <unmanaged>GetFVF / SetFVF</unmanaged>
  27674. <unmanaged-short>GetFVF</unmanaged-short>
  27675. <unmanaged>unsigned int ID3DXSkinInfo::GetFVF()</unmanaged>
  27676. </member>
  27677. <member name="M:SharpDX.Direct3D9.SkinInfo.SetBoneInfluence(System.Int32,System.Int32,System.Int32,System.Single)">
  27678. <summary>
  27679. <p>Sets the influence value for a bone.</p>
  27680. </summary>
  27681. <param name="bone"><dd> <p>Bone number.</p> </dd></param>
  27682. <param name="numInfluences"><dd> <p>Number of influences.</p> </dd></param>
  27683. <param name="vertices"><dd> <p>The array of vertices influenced by a bone.</p> </dd></param>
  27684. <param name="weights"><dd> <p>The array of weights influenced by a bone.</p> </dd></param>
  27685. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27686. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::SetBoneInfluence']/*" />
  27687. <msdn-id>bb174224</msdn-id>
  27688. <unmanaged>HRESULT ID3DXSkinInfo::SetBoneInfluence([In] unsigned int bone,[In] unsigned int numInfluences,[In] const unsigned int* vertices,[In] const float* weights)</unmanaged>
  27689. <unmanaged-short>ID3DXSkinInfo::SetBoneInfluence</unmanaged-short>
  27690. </member>
  27691. <member name="M:SharpDX.Direct3D9.SkinInfo.SetBoneVertexInfluence(System.Int32,System.Int32,System.Single)">
  27692. <summary>
  27693. <p>Sets an influence value of a bone on a single vertex.</p>
  27694. </summary>
  27695. <param name="boneNum"><dd> <p>Index of the bone. Must be between 0 and the number of bones.</p> </dd></param>
  27696. <param name="influenceNum"><dd> <p>Index of the influence array of the specified bone.</p> </dd></param>
  27697. <param name="weight"><dd> <p>Blend factor of the specified bone influence.</p> </dd></param>
  27698. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27699. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::SetBoneVertexInfluence']/*" />
  27700. <msdn-id>bb174227</msdn-id>
  27701. <unmanaged>HRESULT ID3DXSkinInfo::SetBoneVertexInfluence([In] unsigned int boneNum,[In] unsigned int influenceNum,[In] float weight)</unmanaged>
  27702. <unmanaged-short>ID3DXSkinInfo::SetBoneVertexInfluence</unmanaged-short>
  27703. </member>
  27704. <member name="M:SharpDX.Direct3D9.SkinInfo.GetNumBoneInfluences(System.Int32)">
  27705. <summary>
  27706. <p>Gets the number of influences for a bone.</p>
  27707. </summary>
  27708. <param name="bone"><dd> <p>Bone number.</p> </dd></param>
  27709. <returns><p>Returns the number of influences for a bone.</p></returns>
  27710. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetNumBoneInfluences']/*" />
  27711. <msdn-id>bb174220</msdn-id>
  27712. <unmanaged>unsigned int ID3DXSkinInfo::GetNumBoneInfluences([In] unsigned int bone)</unmanaged>
  27713. <unmanaged-short>ID3DXSkinInfo::GetNumBoneInfluences</unmanaged-short>
  27714. </member>
  27715. <member name="M:SharpDX.Direct3D9.SkinInfo.GetBoneInfluence(System.Int32,System.Int32@,System.Single@)">
  27716. <summary>
  27717. <p>Gets the vertices and weights that a bone influences.</p>
  27718. </summary>
  27719. <param name="bone"><dd> <p>Bone number.</p> </dd></param>
  27720. <param name="vertices"><dd> <p>Get the array of vertices influenced by a bone.</p> </dd></param>
  27721. <param name="weights"><dd> <p>Get the array of weights influenced by a bone.</p> </dd></param>
  27722. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27723. <remarks>
  27724. <p>Use <strong><see cref="M:SharpDX.Direct3D9.SkinInfo.GetNumBoneInfluences(System.Int32)" /></strong> to find out how many vertices the bone influences. </p>
  27725. </remarks>
  27726. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetBoneInfluence']/*" />
  27727. <msdn-id>bb174211</msdn-id>
  27728. <unmanaged>HRESULT ID3DXSkinInfo::GetBoneInfluence([In] unsigned int bone,[Out] unsigned int* vertices,[Out] float* weights)</unmanaged>
  27729. <unmanaged-short>ID3DXSkinInfo::GetBoneInfluence</unmanaged-short>
  27730. </member>
  27731. <member name="M:SharpDX.Direct3D9.SkinInfo.GetBoneVertexInfluence(System.Int32,System.Int32,System.Single@,System.Int32@)">
  27732. <summary>
  27733. <p>Retrieves the blend factor and vertex affected by a specified bone influence.</p>
  27734. </summary>
  27735. <param name="boneNum"><dd> <p>Index of the bone. Must be between 0 and the number of bones.</p> </dd></param>
  27736. <param name="influenceNum"><dd> <p>Index of the influence array of the specified bone.</p> </dd></param>
  27737. <param name="weightRef"><dd> <p>Pointer to the blend factor influenced by influenceNum.</p> </dd></param>
  27738. <param name="vertexNumRef"><dd> <p>Pointer to the vertex influenced by influenceNum.</p> </dd></param>
  27739. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27740. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetBoneVertexInfluence']/*" />
  27741. <msdn-id>bb174214</msdn-id>
  27742. <unmanaged>HRESULT ID3DXSkinInfo::GetBoneVertexInfluence([In] unsigned int boneNum,[In] unsigned int influenceNum,[Out] float* pWeight,[Out] unsigned int* pVertexNum)</unmanaged>
  27743. <unmanaged-short>ID3DXSkinInfo::GetBoneVertexInfluence</unmanaged-short>
  27744. </member>
  27745. <member name="M:SharpDX.Direct3D9.SkinInfo.GetMaxVertexInfluences(System.Int32@)">
  27746. <summary>
  27747. <p>Gets the maximum number of influences for any vertex in the mesh.</p>
  27748. </summary>
  27749. <param name="maxVertexInfluences"><dd> <p>Pointer to the maximum vertex influence.</p> </dd></param>
  27750. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27751. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetMaxVertexInfluences']/*" />
  27752. <msdn-id>bb174218</msdn-id>
  27753. <unmanaged>HRESULT ID3DXSkinInfo::GetMaxVertexInfluences([Out] unsigned int* maxVertexInfluences)</unmanaged>
  27754. <unmanaged-short>ID3DXSkinInfo::GetMaxVertexInfluences</unmanaged-short>
  27755. </member>
  27756. <member name="M:SharpDX.Direct3D9.SkinInfo.GetNumBones">
  27757. <summary>
  27758. <p>Gets the number of bones.</p>
  27759. </summary>
  27760. <returns><p>Returns the number of bones.</p></returns>
  27761. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetNumBones']/*" />
  27762. <msdn-id>bb174221</msdn-id>
  27763. <unmanaged>unsigned int ID3DXSkinInfo::GetNumBones()</unmanaged>
  27764. <unmanaged-short>ID3DXSkinInfo::GetNumBones</unmanaged-short>
  27765. </member>
  27766. <member name="M:SharpDX.Direct3D9.SkinInfo.FindBoneVertexInfluenceIndex(System.Int32,System.Int32,System.Int32)">
  27767. <summary>
  27768. <p>Retrieves the index of the bone influence affecting a single vertex.</p>
  27769. </summary>
  27770. <param name="boneNum"><dd> <p>Index of the bone. Must be between 0 and the number of bones.</p> </dd></param>
  27771. <param name="vertexNum"><dd> <p>Index of the vertex for which the bone influence is to be found. Must be between 0 and the number of vertices in the mesh.</p> </dd></param>
  27772. <param name="influenceIndexRef"><dd> <p>Pointer to the index of the bone influence that affects vertexNum.</p> </dd></param>
  27773. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" />. If the specified bone does not influence the given vertex, S_FALSE is returned. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27774. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::FindBoneVertexInfluenceIndex']/*" />
  27775. <msdn-id>bb174210</msdn-id>
  27776. <unmanaged>HRESULT ID3DXSkinInfo::FindBoneVertexInfluenceIndex([In] unsigned int boneNum,[In] unsigned int vertexNum,[In] unsigned int* pInfluenceIndex)</unmanaged>
  27777. <unmanaged-short>ID3DXSkinInfo::FindBoneVertexInfluenceIndex</unmanaged-short>
  27778. </member>
  27779. <member name="M:SharpDX.Direct3D9.SkinInfo.GetMaxFaceInfluences(SharpDX.Direct3D9.IndexBuffer,System.Int32,System.Int32@)">
  27780. <summary>
  27781. <p>Gets the maximum face influences in a triangle mesh with the specified index buffer.</p>
  27782. </summary>
  27783. <param name="iBRef"><dd> <p>Pointer to the index buffer that contains the mesh index data.</p> </dd></param>
  27784. <param name="numFaces"><dd> <p>Number of faces in the mesh.</p> </dd></param>
  27785. <param name="maxFaceInfluences"><dd> <p>Pointer to the maximum face influences.</p> </dd></param>
  27786. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27787. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetMaxFaceInfluences']/*" />
  27788. <msdn-id>bb174217</msdn-id>
  27789. <unmanaged>HRESULT ID3DXSkinInfo::GetMaxFaceInfluences([In] IDirect3DIndexBuffer9* pIB,[In] unsigned int NumFaces,[Out] unsigned int* maxFaceInfluences)</unmanaged>
  27790. <unmanaged-short>ID3DXSkinInfo::GetMaxFaceInfluences</unmanaged-short>
  27791. </member>
  27792. <member name="M:SharpDX.Direct3D9.SkinInfo.SetMinBoneInfluence(System.Single)">
  27793. <summary>
  27794. <p>Sets the minimum bone influence. Influence values smaller than this are ignored.</p>
  27795. </summary>
  27796. <param name="minInfl"><dd> <p>Minimum influence value. Influence values smaller than this are ignored.</p> </dd></param>
  27797. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27798. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::SetMinBoneInfluence']/*" />
  27799. <msdn-id>bb174230</msdn-id>
  27800. <unmanaged>HRESULT ID3DXSkinInfo::SetMinBoneInfluence([In] float MinInfl)</unmanaged>
  27801. <unmanaged-short>ID3DXSkinInfo::SetMinBoneInfluence</unmanaged-short>
  27802. </member>
  27803. <member name="M:SharpDX.Direct3D9.SkinInfo.GetMinBoneInfluence">
  27804. <summary>
  27805. <p>Gets the minimum bone influence. Influence values smaller than this are ignored.</p>
  27806. </summary>
  27807. <returns><p>Returns the minimum bone influence value.</p></returns>
  27808. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetMinBoneInfluence']/*" />
  27809. <msdn-id>bb174219</msdn-id>
  27810. <unmanaged>float ID3DXSkinInfo::GetMinBoneInfluence()</unmanaged>
  27811. <unmanaged-short>ID3DXSkinInfo::GetMinBoneInfluence</unmanaged-short>
  27812. </member>
  27813. <member name="M:SharpDX.Direct3D9.SkinInfo.SetBoneName(System.Int32,System.String)">
  27814. <summary>
  27815. <p>Sets the bone name.</p>
  27816. </summary>
  27817. <param name="bone"><dd> <p>Bone number</p> </dd></param>
  27818. <param name="nameRef"><dd> <p>Bone name</p> </dd></param>
  27819. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27820. <remarks>
  27821. <p>Bone names are returned by <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXof(SharpDX.Direct3D9.XFileData,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)" /></strong>.</p>
  27822. </remarks>
  27823. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::SetBoneName']/*" />
  27824. <msdn-id>bb174225</msdn-id>
  27825. <unmanaged>HRESULT ID3DXSkinInfo::SetBoneName([In] unsigned int Bone,[In] const char* pName)</unmanaged>
  27826. <unmanaged-short>ID3DXSkinInfo::SetBoneName</unmanaged-short>
  27827. </member>
  27828. <member name="M:SharpDX.Direct3D9.SkinInfo.GetBoneName(System.Int32)">
  27829. <summary>
  27830. <p>Gets the bone name, from the bone index.</p>
  27831. </summary>
  27832. <param name="bone"><dd> <p>Bone number.</p> </dd></param>
  27833. <returns><p>Returns the bone name. Do not free this string.</p></returns>
  27834. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetBoneName']/*" />
  27835. <msdn-id>bb174212</msdn-id>
  27836. <unmanaged>const char* ID3DXSkinInfo::GetBoneName([In] unsigned int Bone)</unmanaged>
  27837. <unmanaged-short>ID3DXSkinInfo::GetBoneName</unmanaged-short>
  27838. </member>
  27839. <member name="M:SharpDX.Direct3D9.SkinInfo.SetBoneOffsetMatrix(System.Int32,SharpDX.Mathematics.Interop.RawMatrix@)">
  27840. <summary>
  27841. <p>Sets the bone offset matrix.</p>
  27842. </summary>
  27843. <param name="bone"><dd> <p>Bone number.</p> </dd></param>
  27844. <param name="boneTransformRef"><dd> <p>Pointer to the bone offset matrix.</p> </dd></param>
  27845. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27846. <remarks>
  27847. <p>Bone names are returned by <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXof(SharpDX.Direct3D9.XFileData,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)" /></strong>.</p>
  27848. </remarks>
  27849. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::SetBoneOffsetMatrix']/*" />
  27850. <msdn-id>bb174226</msdn-id>
  27851. <unmanaged>HRESULT ID3DXSkinInfo::SetBoneOffsetMatrix([In] unsigned int Bone,[In] const D3DXMATRIX* pBoneTransform)</unmanaged>
  27852. <unmanaged-short>ID3DXSkinInfo::SetBoneOffsetMatrix</unmanaged-short>
  27853. </member>
  27854. <member name="M:SharpDX.Direct3D9.SkinInfo.GetBoneOffsetMatrix(System.Int32)">
  27855. <summary>
  27856. <p>Gets the bone offset matrix.</p>
  27857. </summary>
  27858. <param name="bone"><dd> <p>Bone number.</p> </dd></param>
  27859. <returns><p>Returns a reference to the bone offset matrix. Do not free this reference.</p></returns>
  27860. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetBoneOffsetMatrix']/*" />
  27861. <msdn-id>bb174213</msdn-id>
  27862. <unmanaged>D3DXMATRIX* ID3DXSkinInfo::GetBoneOffsetMatrix([In] unsigned int Bone)</unmanaged>
  27863. <unmanaged-short>ID3DXSkinInfo::GetBoneOffsetMatrix</unmanaged-short>
  27864. </member>
  27865. <member name="M:SharpDX.Direct3D9.SkinInfo.Clone(SharpDX.Direct3D9.SkinInfo@)">
  27866. <summary>
  27867. <p>Clones a skin info object.</p>
  27868. </summary>
  27869. <param name="skinInfoOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.SkinInfo" /></strong> object, which will contain the cloned object if the method is successful.</p> </dd></param>
  27870. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27871. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::Clone']/*" />
  27872. <msdn-id>bb174207</msdn-id>
  27873. <unmanaged>HRESULT ID3DXSkinInfo::Clone([In] ID3DXSkinInfo** ppSkinInfo)</unmanaged>
  27874. <unmanaged-short>ID3DXSkinInfo::Clone</unmanaged-short>
  27875. </member>
  27876. <member name="M:SharpDX.Direct3D9.SkinInfo.Remap(System.Int32,System.Int32)">
  27877. <summary>
  27878. <p>Updates bone influence information to match vertices after they are reordered. This method should be called if the target vertex buffer has been reordered externally.</p>
  27879. </summary>
  27880. <param name="numVertices"><dd> <p>Number of vertices to remap.</p> </dd></param>
  27881. <param name="vertexRemapRef"><dd> <p>Array of DWORDS whose length is specified by NumVertices.</p> </dd></param>
  27882. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27883. <remarks>
  27884. <p>Each element in pVertexRemap specifies the previous vertex index for that position. For example, if a vertex was in position 3 but has been remapped to position 5, then the fifth element of pVertexRemap should contain 3. The vertex remap array returned by <strong><see cref="M:SharpDX.Direct3D9.Mesh.Optimize(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.Mesh@)" /></strong> can be used.</p>
  27885. </remarks>
  27886. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::Remap']/*" />
  27887. <msdn-id>bb174223</msdn-id>
  27888. <unmanaged>HRESULT ID3DXSkinInfo::Remap([In] unsigned int NumVertices,[In] unsigned int* pVertexRemap)</unmanaged>
  27889. <unmanaged-short>ID3DXSkinInfo::Remap</unmanaged-short>
  27890. </member>
  27891. <member name="M:SharpDX.Direct3D9.SkinInfo.SetFVF(System.Int32)">
  27892. <summary>
  27893. <p>Sets the flexible vertex format (FVF) type.</p>
  27894. </summary>
  27895. <param name="fvf"><dd> <p>Flexible vertex format. See <see cref="T:SharpDX.Direct3D9.VertexFormat" />.</p> </dd></param>
  27896. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27897. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::SetFVF']/*" />
  27898. <msdn-id>bb174229</msdn-id>
  27899. <unmanaged>HRESULT ID3DXSkinInfo::SetFVF([In] unsigned int FVF)</unmanaged>
  27900. <unmanaged-short>ID3DXSkinInfo::SetFVF</unmanaged-short>
  27901. </member>
  27902. <member name="M:SharpDX.Direct3D9.SkinInfo.SetDeclaration(SharpDX.Direct3D9.VertexElement)">
  27903. <summary>
  27904. <p>Sets the vertex declaration.</p>
  27905. </summary>
  27906. <param name="declarationRef"><dd> <p>Pointer to an array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements.</p> </dd></param>
  27907. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27908. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::SetDeclaration']/*" />
  27909. <msdn-id>bb174228</msdn-id>
  27910. <unmanaged>HRESULT ID3DXSkinInfo::SetDeclaration([In] const D3DVERTEXELEMENT9* pDeclaration)</unmanaged>
  27911. <unmanaged-short>ID3DXSkinInfo::SetDeclaration</unmanaged-short>
  27912. </member>
  27913. <member name="M:SharpDX.Direct3D9.SkinInfo.GetFVF">
  27914. <summary>
  27915. <p>Gets the fixed function vertex value.</p>
  27916. </summary>
  27917. <returns><p>Returns the flexible vertex format (FVF) codes.</p></returns>
  27918. <remarks>
  27919. <p>This method can return 0 if the vertex format cannot be mapped directly to an FVF code. This will occur for a mesh created from a vertex declaration that doesn't have the same order and elements supported by the FVF codes.</p>
  27920. </remarks>
  27921. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetFVF']/*" />
  27922. <msdn-id>bb174216</msdn-id>
  27923. <unmanaged>unsigned int ID3DXSkinInfo::GetFVF()</unmanaged>
  27924. <unmanaged-short>ID3DXSkinInfo::GetFVF</unmanaged-short>
  27925. </member>
  27926. <member name="M:SharpDX.Direct3D9.SkinInfo.GetDeclaration(SharpDX.Direct3D9.VertexElement)">
  27927. <summary>
  27928. <p>Gets the vertex declaration.</p>
  27929. </summary>
  27930. <param name="declaration"><dd> <p>Array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> elements describing the vertex format of the mesh vertices. The upper limit of this declarator array is <strong><see cref="F:SharpDX.Direct3D9.VertexFormatDeclaratorCount.Max" /></strong>. The vertex element array ends with the <strong>D3DDECL_END</strong> macro. </p> </dd></param>
  27931. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27932. <remarks>
  27933. <p>The array of elements includes the <strong>D3DDECL_END</strong> macro, which ends the declaration.</p>
  27934. </remarks>
  27935. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::GetDeclaration']/*" />
  27936. <msdn-id>bb174215</msdn-id>
  27937. <unmanaged>HRESULT ID3DXSkinInfo::GetDeclaration([In] D3DVERTEXELEMENT9* Declaration)</unmanaged>
  27938. <unmanaged-short>ID3DXSkinInfo::GetDeclaration</unmanaged-short>
  27939. </member>
  27940. <member name="M:SharpDX.Direct3D9.SkinInfo.UpdateSkinnedMesh(SharpDX.Mathematics.Interop.RawMatrix@,SharpDX.Mathematics.Interop.RawMatrix@,System.IntPtr,System.IntPtr)">
  27941. <summary>
  27942. <p>Applies software skinning to the target vertices based on the current matrices.</p>
  27943. </summary>
  27944. <param name="boneTransformsRef"><dd> <p>Bone transform matrix.</p> </dd></param>
  27945. <param name="boneInvTransposeTransformsRef"><dd> <p>Inverse transpose of the bone transform matrix.</p> </dd></param>
  27946. <param name="verticesSrcRef"><dd> <p>Pointer to the buffer containing the source vertices.</p> </dd></param>
  27947. <param name="verticesDstRef"><dd> <p>Pointer to the buffer containing the destination vertices.</p> </dd></param>
  27948. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27949. <remarks>
  27950. <p>When used to skin vertices with two position elements, this method skins the second position element with the inverse of the bone instead of the bone itself.</p>
  27951. </remarks>
  27952. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::UpdateSkinnedMesh']/*" />
  27953. <msdn-id>bb174231</msdn-id>
  27954. <unmanaged>HRESULT ID3DXSkinInfo::UpdateSkinnedMesh([In] const D3DXMATRIX* pBoneTransforms,[In] const D3DXMATRIX* pBoneInvTransposeTransforms,[In] const void* pVerticesSrc,[In] void* pVerticesDst)</unmanaged>
  27955. <unmanaged-short>ID3DXSkinInfo::UpdateSkinnedMesh</unmanaged-short>
  27956. </member>
  27957. <member name="M:SharpDX.Direct3D9.SkinInfo.ConvertToBlendedMesh(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.Mesh@)">
  27958. <summary>
  27959. <p>Takes a mesh and returns a new mesh with per-vertex blend weights and a bone combination table. The table describes which bones affect which subsets of the mesh.</p>
  27960. </summary>
  27961. <param name="meshRef"><dd> <p>Input mesh. See <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>.</p> </dd></param>
  27962. <param name="options"><dd> <p>Currently unused.</p> </dd></param>
  27963. <param name="adjacencyInRef"><dd> <p>Input mesh adjacency information.</p> </dd></param>
  27964. <param name="adjacencyOutRef"><dd> <p>Output mesh adjacency information.</p> </dd></param>
  27965. <param name="faceRemapRef"><dd> <p>An array of DWORDs, one per face, that identifies the original mesh face that corresponds to each face in the blended mesh. If the value supplied for this argument is <strong><c>null</c></strong>, face remap data is not returned.</p> </dd></param>
  27966. <param name="vertexRemapOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface, 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. This parameter is optional; <strong><c>null</c></strong> may be used.</p> </dd></param>
  27967. <param name="maxFaceInflRef"><dd> <p>Pointer to a DWORD that will contain the maximum number of bone influences required per vertex for this skinning method.</p> </dd></param>
  27968. <param name="numBoneCombinationsRef"><dd> <p>Pointer to the number of bones in the bone combination table.</p> </dd></param>
  27969. <param name="boneCombinationTableOut"><dd> <p>Pointer to the bone combination table. The data is organized in a <strong><see cref="T:SharpDX.Direct3D9.BoneCombination" /></strong> structure.</p> </dd></param>
  27970. <param name="meshOut"><dd> <p>Pointer to the new mesh.</p> </dd></param>
  27971. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27972. <remarks>
  27973. <p>Each element in the remap array specifies the previous index for that position. For example, if a vertex was in position 3 but has been remapped to position 5, then the fifth element of pVertexRemap will contain 3.</p><p>This method does not run on hardware that does not support fixed-function vertex blending.</p>
  27974. </remarks>
  27975. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::ConvertToBlendedMesh']/*" />
  27976. <msdn-id>bb174208</msdn-id>
  27977. <unmanaged>HRESULT ID3DXSkinInfo::ConvertToBlendedMesh([In] ID3DXMesh* pMesh,[In] unsigned int Options,[In] const unsigned int* pAdjacencyIn,[In] unsigned int* pAdjacencyOut,[In] unsigned int* pFaceRemap,[In] ID3DXBuffer** ppVertexRemap,[In] unsigned int* pMaxFaceInfl,[In] unsigned int* pNumBoneCombinations,[In] ID3DXBuffer** ppBoneCombinationTable,[In] ID3DXMesh** ppMesh)</unmanaged>
  27978. <unmanaged-short>ID3DXSkinInfo::ConvertToBlendedMesh</unmanaged-short>
  27979. </member>
  27980. <member name="M:SharpDX.Direct3D9.SkinInfo.ConvertToIndexedBlendedMesh(SharpDX.Direct3D9.Mesh,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,System.Int32,System.Int32,SharpDX.Direct3D.Blob@,SharpDX.Direct3D9.Mesh@)">
  27981. <summary>
  27982. <p>Takes a mesh and returns a new mesh with per-vertex blend weights, indices, and a bone combination table. The table describes which bone palettes affect which subsets of the mesh.</p>
  27983. </summary>
  27984. <param name="meshRef"><dd> <p>The input mesh. See <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>.</p> </dd></param>
  27985. <param name="options"><dd> <p>Currently unused.</p> </dd></param>
  27986. <param name="paletteSize"><dd> <p>Number of bone matrices available for matrix palette skinning.</p> </dd></param>
  27987. <param name="adjacencyInRef"><dd> <p>Input mesh adjacency information.</p> </dd></param>
  27988. <param name="adjacencyOutRef"><dd> <p>Output mesh adjacency information.</p> </dd></param>
  27989. <param name="faceRemapRef"><dd> <p>An array of DWORDs, one per face, that identifies the original mesh face that corresponds to each face in the blended mesh. If the value supplied for this argument is <strong><c>null</c></strong>, face remap data is not returned.</p> </dd></param>
  27990. <param name="vertexRemapOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface, 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. This parameter is optional; <strong><c>null</c></strong> may be used.</p> </dd></param>
  27991. <param name="maxVertexInflRef"><dd> <p>Pointer to a DWORD that will contain the maximum number of bone influences required per vertex for this skinning method.</p> </dd></param>
  27992. <param name="numBoneCombinationsRef"><dd> <p>Pointer to the number of bones in the bone combination table.</p> </dd></param>
  27993. <param name="boneCombinationTableOut"><dd> <p>Pointer to the bone combination table. The data is organized in a <strong><see cref="T:SharpDX.Direct3D9.BoneCombination" /></strong> structure.</p> </dd></param>
  27994. <param name="meshOut"><dd> <p>Pointer to the new mesh.</p> </dd></param>
  27995. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  27996. <remarks>
  27997. <p>Each element in the remap arrays specifies the previous index for that position. For example, if a vertex was in position 3 but has been remapped to position 5, then the fifth element of pVertexRemap will contain 3.</p><p>This method does not run on hardware that does not support fixed-function vertex blending.</p>
  27998. </remarks>
  27999. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSkinInfo::ConvertToIndexedBlendedMesh']/*" />
  28000. <msdn-id>bb174209</msdn-id>
  28001. <unmanaged>HRESULT ID3DXSkinInfo::ConvertToIndexedBlendedMesh([In] ID3DXMesh* pMesh,[In] unsigned int Options,[In] unsigned int paletteSize,[In] const unsigned int* pAdjacencyIn,[In] unsigned int* pAdjacencyOut,[In] unsigned int* pFaceRemap,[In] ID3DXBuffer** ppVertexRemap,[In] unsigned int* pMaxVertexInfl,[In] unsigned int* pNumBoneCombinations,[In] ID3DXBuffer** ppBoneCombinationTable,[In] ID3DXMesh** ppMesh)</unmanaged>
  28002. <unmanaged-short>ID3DXSkinInfo::ConvertToIndexedBlendedMesh</unmanaged-short>
  28003. </member>
  28004. <member name="T:SharpDX.Direct3D9.Sprite">
  28005. <summary>
  28006. <p>The <see cref="T:SharpDX.Direct3D9.Sprite" /> interface provides a set of methods that simplify the process of drawing sprites using Microsoft Direct3D.</p>
  28007. </summary>
  28008. <remarks>
  28009. <p>The <strong><see cref="T:SharpDX.Direct3D9.Sprite" /></strong> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateSprite(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.Sprite)" /></strong> function.</p><p>The application typically first calls <strong><see cref="M:SharpDX.Direct3D9.Sprite.Begin(SharpDX.Direct3D9.SpriteFlags)" /></strong>, which allows control over the device render state, alpha blending, and sprite transformation and sorting. Then for each sprite to be displayed, call <strong><see cref="M:SharpDX.Direct3D9.Sprite.Draw(SharpDX.Direct3D9.Texture,System.IntPtr,System.IntPtr,System.IntPtr,SharpDX.Mathematics.Interop.RawColorBGRA)" /></strong>. <strong><see cref="M:SharpDX.Direct3D9.Sprite.Draw(SharpDX.Direct3D9.Texture,System.IntPtr,System.IntPtr,System.IntPtr,SharpDX.Mathematics.Interop.RawColorBGRA)" /></strong> can be called repeatedly to store any number of sprites. To display the batched sprites to the device, call <strong><see cref="M:SharpDX.Direct3D9.Sprite.End" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.Sprite.Flush" /></strong>.</p><p>The LPD3DXSPRITE type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.Sprite" /></strong> interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.Sprite" /> <see cref="T:SharpDX.Direct3D9.Sprite" />;
  28010. typedef interface <see cref="T:SharpDX.Direct3D9.Sprite" /> *LPD3DXSPRITE;
  28011. </pre>
  28012. </remarks>
  28013. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite']/*" />
  28014. <msdn-id>bb174249</msdn-id>
  28015. <unmanaged>ID3DXSprite</unmanaged>
  28016. <unmanaged-short>ID3DXSprite</unmanaged-short>
  28017. </member>
  28018. <member name="M:SharpDX.Direct3D9.Sprite.#ctor(System.IntPtr)">
  28019. <summary>
  28020. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Sprite"/> class.
  28021. </summary>
  28022. <param name="nativePtr">The native pointer.</param>
  28023. </member>
  28024. <member name="M:SharpDX.Direct3D9.Sprite.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Sprite">
  28025. <summary>
  28026. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Sprite"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  28027. </summary>
  28028. <param name="nativePointer">The native pointer.</param>
  28029. <returns>
  28030. The result of the conversion.
  28031. </returns>
  28032. </member>
  28033. <member name="P:SharpDX.Direct3D9.Sprite.Device">
  28034. <summary>
  28035. <p>Retrieves the device associated with the sprite object.</p>
  28036. </summary>
  28037. <remarks>
  28038. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface.</p>
  28039. </remarks>
  28040. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::GetDevice']/*" />
  28041. <msdn-id>bb174254</msdn-id>
  28042. <unmanaged>GetDevice</unmanaged>
  28043. <unmanaged-short>GetDevice</unmanaged-short>
  28044. <unmanaged>HRESULT ID3DXSprite::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  28045. </member>
  28046. <member name="P:SharpDX.Direct3D9.Sprite.Transform">
  28047. <summary>
  28048. <p>Gets or sets the sprite transform.</p>
  28049. </summary>
  28050. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::GetTransform']/*" />
  28051. <msdn-id>bb174255</msdn-id>
  28052. <unmanaged>GetTransform / SetTransform</unmanaged>
  28053. <unmanaged-short>GetTransform</unmanaged-short>
  28054. <unmanaged>HRESULT ID3DXSprite::GetTransform([Out] D3DXMATRIX* pTransform)</unmanaged>
  28055. </member>
  28056. <member name="M:SharpDX.Direct3D9.Sprite.GetDevice(SharpDX.Direct3D9.Device@)">
  28057. <summary>
  28058. <p>Retrieves the device associated with the sprite object.</p>
  28059. </summary>
  28060. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface, representing the Direct3D device object associated with the sprite object.</p> </dd></param>
  28061. <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.<see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  28062. <remarks>
  28063. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface.</p>
  28064. </remarks>
  28065. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::GetDevice']/*" />
  28066. <msdn-id>bb174254</msdn-id>
  28067. <unmanaged>HRESULT ID3DXSprite::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  28068. <unmanaged-short>ID3DXSprite::GetDevice</unmanaged-short>
  28069. </member>
  28070. <member name="M:SharpDX.Direct3D9.Sprite.GetTransform(SharpDX.Mathematics.Interop.RawMatrix@)">
  28071. <summary>
  28072. <p>Gets the sprite transform.</p>
  28073. </summary>
  28074. <param name="transformRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong> that contains a transform of the sprite from the original world space.</p> </dd></param>
  28075. <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.<see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  28076. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::GetTransform']/*" />
  28077. <msdn-id>bb174255</msdn-id>
  28078. <unmanaged>HRESULT ID3DXSprite::GetTransform([Out] D3DXMATRIX* pTransform)</unmanaged>
  28079. <unmanaged-short>ID3DXSprite::GetTransform</unmanaged-short>
  28080. </member>
  28081. <member name="M:SharpDX.Direct3D9.Sprite.SetTransform(SharpDX.Mathematics.Interop.RawMatrix@)">
  28082. <summary>
  28083. <p>Sets the sprite transform.</p>
  28084. </summary>
  28085. <param name="transformRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong> 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>
  28086. <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.<see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  28087. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::SetTransform']/*" />
  28088. <msdn-id>bb174258</msdn-id>
  28089. <unmanaged>HRESULT ID3DXSprite::SetTransform([In] const D3DXMATRIX* pTransform)</unmanaged>
  28090. <unmanaged-short>ID3DXSprite::SetTransform</unmanaged-short>
  28091. </member>
  28092. <member name="M:SharpDX.Direct3D9.Sprite.SetWorldViewRH(SharpDX.Mathematics.Interop.RawMatrix@,SharpDX.Mathematics.Interop.RawMatrix@)">
  28093. <summary>
  28094. <p>Sets the right-handed world-view transform for a sprite. A call to this method is required before billboarding or sorting sprites.</p>
  28095. </summary>
  28096. <param name="worldRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong> that contains a world transform. If <strong><c>null</c></strong>, the identity matrix is used for the world transform.</p> </dd></param>
  28097. <param name="viewRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong> that contains a view transform. If <strong><c>null</c></strong>, the identity matrix is used for the view transform.</p> </dd></param>
  28098. <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.<see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  28099. <remarks>
  28100. <p>A call to this method (or to <strong><see cref="M:SharpDX.Direct3D9.Sprite.SetWorldViewLH(SharpDX.Mathematics.Interop.RawMatrix@,SharpDX.Mathematics.Interop.RawMatrix@)" /></strong>) is required if the sprite will be rendered with the D3DXSprite__BILLBOARD, D3DXSprite__SORT_DEPTH_FRONTTOBACK, or D3DXSprite__SORT_DEPTH_BACKTOFRONT flag value in <strong><see cref="M:SharpDX.Direct3D9.Sprite.Begin(SharpDX.Direct3D9.SpriteFlags)" /></strong>.</p>
  28101. </remarks>
  28102. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::SetWorldViewRH']/*" />
  28103. <msdn-id>bb174260</msdn-id>
  28104. <unmanaged>HRESULT ID3DXSprite::SetWorldViewRH([In] const D3DXMATRIX* pWorld,[In] const D3DXMATRIX* pView)</unmanaged>
  28105. <unmanaged-short>ID3DXSprite::SetWorldViewRH</unmanaged-short>
  28106. </member>
  28107. <member name="M:SharpDX.Direct3D9.Sprite.SetWorldViewLH(SharpDX.Mathematics.Interop.RawMatrix@,SharpDX.Mathematics.Interop.RawMatrix@)">
  28108. <summary>
  28109. <p>Sets the left-handed world-view transform for a sprite. A call to this method is required before billboarding or sorting sprites.</p>
  28110. </summary>
  28111. <param name="worldRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong> that contains a world transform. If <strong><c>null</c></strong>, the identity matrix is used for the world transform.</p> </dd></param>
  28112. <param name="viewRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong> that contains a view transform. If <strong><c>null</c></strong>, the identity matrix is used for the view transform.</p> </dd></param>
  28113. <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.<see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  28114. <remarks>
  28115. <p>A call to this method (or to <strong><see cref="M:SharpDX.Direct3D9.Sprite.SetWorldViewRH(SharpDX.Mathematics.Interop.RawMatrix@,SharpDX.Mathematics.Interop.RawMatrix@)" /></strong>) is required if the sprite will be rendered with the D3DXSprite__BILLBOARD, D3DXSprite__SORT_DEPTH_FRONTTOBACK, or D3DXSprite__SORT_DEPTH_BACKTOFRONT flag value in <strong><see cref="M:SharpDX.Direct3D9.Sprite.Begin(SharpDX.Direct3D9.SpriteFlags)" /></strong>.</p>
  28116. </remarks>
  28117. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::SetWorldViewLH']/*" />
  28118. <msdn-id>bb174259</msdn-id>
  28119. <unmanaged>HRESULT ID3DXSprite::SetWorldViewLH([In] const D3DXMATRIX* pWorld,[In] const D3DXMATRIX* pView)</unmanaged>
  28120. <unmanaged-short>ID3DXSprite::SetWorldViewLH</unmanaged-short>
  28121. </member>
  28122. <member name="M:SharpDX.Direct3D9.Sprite.Begin(SharpDX.Direct3D9.SpriteFlags)">
  28123. <summary>
  28124. <p>Prepares a device for drawing sprites.</p>
  28125. </summary>
  28126. <param name="flags"><dd> <p>Combination of zero or more flags that describe sprite rendering options. For this method, the valid flags are:</p> <ul> <li><see cref="F:SharpDX.Direct3D9.SpriteFlags.AlphaBlend" /></li> <li>D3DXSPRITE__BILLBOARD</li> <li><see cref="F:SharpDX.Direct3D9.SpriteFlags.DoNotModifyRenderState" /></li> <li><see cref="F:SharpDX.Direct3D9.SpriteFlags.DoNotSaveState" /></li> <li><see cref="F:SharpDX.Direct3D9.SpriteFlags.ObjectSpace" /></li> <li>D3DXSPRITE__SORT_DEPTH_BACKTOFRONT</li> <li>D3DXSPRITE__SORT_DEPTH_FRONTTOBACK</li> <li>D3DXSPRITE__SORT_TEXTURE</li> </ul> <p> For a description of the flags and for information on how to control device state capture and device view transforms, see <see cref="T:SharpDX.Direct3D9.SpriteFlags" />.</p> </dd></param>
  28127. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, D3DXERR_INVALIDDATA, E_OUTOFMEMORY.</p></returns>
  28128. <remarks>
  28129. <p>This method must be called from inside a <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> . . . <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> sequence. <strong><see cref="M:SharpDX.Direct3D9.Sprite.Begin(SharpDX.Direct3D9.SpriteFlags)" /></strong> cannot be used as a substitute for either <strong><see cref="M:SharpDX.Direct3D9.Device.BeginScene" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.RenderToSurface.BeginScene(SharpDX.Direct3D9.Surface,SharpDX.Mathematics.Interop.RawViewport)" /></strong>.</p><p>This method will set the following states on the device.</p><p>Render States:</p><table> <tr><th>Type (<strong><see cref="T:SharpDX.Direct3D9.RenderState" /></strong>)</th><th>Value</th></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.AlphaBlendEnable" /></td><td>TRUE</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.AlphaFunc" /></td><td><see cref="F:SharpDX.Direct3D9.Compare.Greater" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.AlphaRef" /></td><td>0x00</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.AlphaTestEnable" /></td><td>AlphaCmpCaps</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.BlendOperation" /></td><td><see cref="F:SharpDX.Direct3D9.BlendOperation.Add" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.Clipping" /></td><td>TRUE</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.ClipPlaneEnable" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.ColorWriteEnable" /></td><td><see cref="F:SharpDX.Direct3D9.ColorWriteEnable.Alpha" /> | <see cref="F:SharpDX.Direct3D9.ColorWriteEnable.Blue" /> | <see cref="F:SharpDX.Direct3D9.ColorWriteEnable.Green" /> | <see cref="F:SharpDX.Direct3D9.ColorWriteEnable.Red" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.CullMode" /></td><td><see cref="F:SharpDX.Direct3D9.Cull.None" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.DestinationBlend" /></td><td><see cref="F:SharpDX.Direct3D9.Blend.InverseSourceAlpha" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.DiffuseMaterialSource" /></td><td><see cref="F:SharpDX.Direct3D9.ColorSource.Color1" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.EnableAdaptiveTessellation" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.FillMode" /></td><td><see cref="F:SharpDX.Direct3D9.FillMode.Solid" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.FogEnable" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.IndexedVertexBlendEnable" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.Lighting" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.RangeFogEnable" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.SeparateAlphaBlendEnable" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.ShadeMode" /></td><td><see cref="F:SharpDX.Direct3D9.ShadeMode.Gouraud" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.SpecularEnable" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.SourceBlend" /></td><td><see cref="F:SharpDX.Direct3D9.Blend.SourceAlpha" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.SrgbWriteEnable" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.StencilEnable" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.VertexBlend" /></td><td><see cref="F:SharpDX.Result.False" /></td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.RenderState.Wrap0" /></td><td>0</td></tr> </table><p>?</p><p>Texture Stage States:</p><table> <tr><th>Stage Identifier</th><th>Type (<strong><see cref="T:SharpDX.Direct3D9.TextureStage" /></strong>)</th><th>Value</th></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.TextureStage.AlphaArg1" /></td><td><see cref="F:SharpDX.Direct3D9.TextureArgument.Texture" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.TextureStage.AlphaArg2" /></td><td><see cref="F:SharpDX.Direct3D9.TextureArgument.Diffuse" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.TextureStage.AlphaOperation" /></td><td><see cref="F:SharpDX.Direct3D9.TextureOperation.Modulate" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.TextureStage.ColorArg1" /></td><td><see cref="F:SharpDX.Direct3D9.TextureArgument.Texture" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.TextureStage.ColorArg2" /></td><td><see cref="F:SharpDX.Direct3D9.TextureArgument.Diffuse" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" /></td><td><see cref="F:SharpDX.Direct3D9.TextureOperation.Modulate" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.TextureStage.TexCoordIndex" /></td><td>0</td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.TextureStage.TextureTransformFlags" /></td><td><see cref="F:SharpDX.Direct3D9.TextureTransform.Disable" /></td></tr> <tr><td>1</td><td><see cref="F:SharpDX.Direct3D9.TextureStage.AlphaOperation" /></td><td><see cref="F:SharpDX.Direct3D9.TextureOperation.Disable" /></td></tr> <tr><td>1</td><td><see cref="F:SharpDX.Direct3D9.TextureStage.ColorOperation" /></td><td><see cref="F:SharpDX.Direct3D9.TextureOperation.Disable" /></td></tr> </table><p>?</p><p>Sampler States:</p><table> <tr><th>Sampler Stage Index</th><th>Type (<strong><see cref="T:SharpDX.Direct3D9.SamplerState" /></strong>)</th><th>Value</th></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.SamplerState.AddressU" /></td><td><see cref="F:SharpDX.Direct3D9.TextureAddress.Clamp" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.SamplerState.AddressV" /></td><td><see cref="F:SharpDX.Direct3D9.TextureAddress.Clamp" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.SamplerState.MagFilter" /></td><td><see cref="F:SharpDX.Direct3D9.TextureFilter.Anisotropic" /> if TextureFilterCaps includes <see cref="F:SharpDX.Direct3D9.FilterCaps.MagAnisotropic" />; otherwise <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.SamplerState.MaxMipLevel" /></td><td>0</td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.SamplerState.MaxAnisotropy" /></td><td>MaxAnisotropy</td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.SamplerState.MinFilter" /></td><td><see cref="F:SharpDX.Direct3D9.TextureFilter.Anisotropic" /> if TextureFilterCaps includes <see cref="F:SharpDX.Direct3D9.FilterCaps.MinAnisotropic" />; otherwise <see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.SamplerState.MipFilter" /></td><td><see cref="F:SharpDX.Direct3D9.TextureFilter.Linear" /> if TextureFilterCaps includes <see cref="F:SharpDX.Direct3D9.FilterCaps.MipLinear" />; otherwise <see cref="F:SharpDX.Direct3D9.TextureFilter.Point" /></td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.SamplerState.MipMapLodBias" /></td><td>0</td></tr> <tr><td>0</td><td><see cref="F:SharpDX.Direct3D9.SamplerState.SrgbTexture" /></td><td>0</td></tr> </table><p>?</p><p><strong>Note</strong>??This method disables N-patches.</p>
  28130. </remarks>
  28131. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::Begin']/*" />
  28132. <msdn-id>bb174250</msdn-id>
  28133. <unmanaged>HRESULT ID3DXSprite::Begin([In] D3DXSPRITE Flags)</unmanaged>
  28134. <unmanaged-short>ID3DXSprite::Begin</unmanaged-short>
  28135. </member>
  28136. <member name="M:SharpDX.Direct3D9.Sprite.Draw(SharpDX.Direct3D9.Texture,System.IntPtr,System.IntPtr,System.IntPtr,SharpDX.Mathematics.Interop.RawColorBGRA)">
  28137. <summary>
  28138. <p>Adds a sprite to the list of batched sprites.</p>
  28139. </summary>
  28140. <param name="textureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface that represents the sprite texture.</p> </dd></param>
  28141. <param name="srcRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure that indicates the portion of the source texture to use for the sprite. If this parameter is <strong><c>null</c></strong>, then the entire source image is used for the sprite.</p> </dd></param>
  28142. <param name="centerRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> vector that identifies the center of the sprite. If this argument is <strong><c>null</c></strong>, the point (0,0,0) is used, which is the upper-left corner.</p> </dd></param>
  28143. <param name="positionRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> vector that identifies the position of the sprite. If this argument is <strong><c>null</c></strong>, the point (0,0,0) is used, which is the upper-left corner.</p> </dd></param>
  28144. <param name="color"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColorBGRA" /></strong> type. The color and alpha channels are modulated by this value. A value of 0xFFFFFFFF maintains the original source color and alpha data. Use the <strong>D3DCOLOR_RGBA</strong> macro to help generate this color.</p> </dd></param>
  28145. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  28146. <remarks>
  28147. <p>To scale, rotate, or translate a sprite, call <strong><see cref="M:SharpDX.Direct3D9.Sprite.SetTransform(SharpDX.Mathematics.Interop.RawMatrix@)" /></strong> with a matrix that contains the scale, rotate, and translate (SRT) values, before calling <see cref="M:SharpDX.Direct3D9.Sprite.Draw(SharpDX.Direct3D9.Texture,System.IntPtr,System.IntPtr,System.IntPtr,SharpDX.Mathematics.Interop.RawColorBGRA)" />. For information about setting SRT values in a matrix, see Matrix Transforms.</p>
  28148. </remarks>
  28149. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::Draw']/*" />
  28150. <msdn-id>bb174251</msdn-id>
  28151. <unmanaged>HRESULT ID3DXSprite::Draw([In] IDirect3DTexture9* pTexture,[In] const void* pSrcRect,[In] const void* pCenter,[In] const void* pPosition,[In] D3DCOLOR Color)</unmanaged>
  28152. <unmanaged-short>ID3DXSprite::Draw</unmanaged-short>
  28153. </member>
  28154. <member name="M:SharpDX.Direct3D9.Sprite.Flush">
  28155. <summary>
  28156. <p>Forces all batched sprites to be submitted to the device. Device states remain as they were after the last call to <strong><see cref="M:SharpDX.Direct3D9.Sprite.Begin(SharpDX.Direct3D9.SpriteFlags)" /></strong>. The list of batched sprites is then cleared.</p>
  28157. </summary>
  28158. <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.<see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  28159. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::Flush']/*" />
  28160. <msdn-id>bb174253</msdn-id>
  28161. <unmanaged>HRESULT ID3DXSprite::Flush()</unmanaged>
  28162. <unmanaged-short>ID3DXSprite::Flush</unmanaged-short>
  28163. </member>
  28164. <member name="M:SharpDX.Direct3D9.Sprite.End">
  28165. <summary>
  28166. <p>Calls <strong><see cref="M:SharpDX.Direct3D9.Sprite.Flush" /></strong> and restores the device state to how it was before <strong><see cref="M:SharpDX.Direct3D9.Sprite.Begin(SharpDX.Direct3D9.SpriteFlags)" /></strong> was called.</p>
  28167. </summary>
  28168. <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.<see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /></p></returns>
  28169. <remarks>
  28170. <p><strong><see cref="M:SharpDX.Direct3D9.Sprite.End" /></strong> cannot be used as a substitute for either <strong><see cref="M:SharpDX.Direct3D9.Device.EndScene" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.RenderToSurface.EndScene(SharpDX.Direct3D9.Filter)" /></strong>.</p>
  28171. </remarks>
  28172. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::End']/*" />
  28173. <msdn-id>bb174252</msdn-id>
  28174. <unmanaged>HRESULT ID3DXSprite::End()</unmanaged>
  28175. <unmanaged-short>ID3DXSprite::End</unmanaged-short>
  28176. </member>
  28177. <member name="M:SharpDX.Direct3D9.Sprite.OnLostDevice">
  28178. <summary>
  28179. <p>Use this method to release all references to video memory resources and delete all stateblocks. This method should be called whenever a device is lost or before resetting a device.</p>
  28180. </summary>
  28181. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  28182. <remarks>
  28183. <p>This method should be called whenever the device is lost or before the user calls <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>. Even if the device was not actually lost, <strong><see cref="M:SharpDX.Direct3D9.Sprite.OnLostDevice" /></strong> is responsible for freeing stateblocks and other resources that may need to be released before resetting the device. As a result, the font object cannot be used again before calling <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong> and then <strong><see cref="M:SharpDX.Direct3D9.Sprite.OnResetDevice" /></strong>.</p>
  28184. </remarks>
  28185. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::OnLostDevice']/*" />
  28186. <msdn-id>bb174256</msdn-id>
  28187. <unmanaged>HRESULT ID3DXSprite::OnLostDevice()</unmanaged>
  28188. <unmanaged-short>ID3DXSprite::OnLostDevice</unmanaged-short>
  28189. </member>
  28190. <member name="M:SharpDX.Direct3D9.Sprite.OnResetDevice">
  28191. <summary>
  28192. <p>Use this method to re-acquire resources and save initial state.</p>
  28193. </summary>
  28194. <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 <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  28195. <remarks>
  28196. <p><strong><see cref="M:SharpDX.Direct3D9.Sprite.OnResetDevice" /></strong> should be called each time the device is reset (using <strong><see cref="M:SharpDX.Direct3D9.Device.Reset(SharpDX.Direct3D9.PresentParameters[])" /></strong>), before any other methods are called. This is a good place to re-acquire video-memory resources and capture state blocks.</p>
  28197. </remarks>
  28198. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXSprite::OnResetDevice']/*" />
  28199. <msdn-id>bb174257</msdn-id>
  28200. <unmanaged>HRESULT ID3DXSprite::OnResetDevice()</unmanaged>
  28201. <unmanaged-short>ID3DXSprite::OnResetDevice</unmanaged-short>
  28202. </member>
  28203. <member name="M:SharpDX.Direct3D9.Sprite.#ctor(SharpDX.Direct3D9.Device)">
  28204. <summary>
  28205. Creates a sprite object which is associated with a particular device. Sprite objects are used to draw 2D images to the screen.
  28206. </summary>
  28207. <param name="device">A reference to the device (see <see cref="T:SharpDX.Direct3D9.Device"/>) that will draw the sprite. </param>
  28208. <remarks>
  28209. This interface can be used to draw two dimensional images in screen space of the associated device.
  28210. </remarks>
  28211. <unmanaged>HRESULT D3DXCreateSprite([In] IDirect3DDevice9* pDevice,[Out, Fast] ID3DXSprite** ppSprite)</unmanaged>
  28212. </member>
  28213. <member name="M:SharpDX.Direct3D9.Sprite.Draw(SharpDX.Direct3D9.Texture,SharpDX.Mathematics.Interop.RawColorBGRA)">
  28214. <summary>
  28215. <p>Adds a sprite to the list of batched sprites.</p>
  28216. </summary>
  28217. <param name="textureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture"/></strong> interface that represents the sprite texture.</p> </dd></param>
  28218. <param name="color"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColor4"/></strong> type. The color and alpha channels are modulated by this value. A value of 0xFFFFFFFF maintains the original source color and alpha data. Use the <strong>D3DCOLOR_RGBA</strong> macro to help generate this color.</p> </dd></param>
  28219. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall"/>, D3DXERR_INVALIDDATA.</p></returns>
  28220. <remarks>
  28221. <p>To scale, rotate, or translate a sprite, call <strong><see cref="M:SharpDX.Direct3D9.Sprite.SetTransform(SharpDX.Mathematics.Interop.RawMatrix@)"/></strong> with a matrix that contains the scale, rotate, and translate (SRT) values, before calling <see cref="M:SharpDX.Direct3D9.Sprite.Draw(SharpDX.Direct3D9.Texture,System.IntPtr,System.IntPtr,System.IntPtr,SharpDX.Mathematics.Interop.RawColorBGRA)"/>. For information about setting SRT values in a matrix, see Matrix Transforms.</p>
  28222. </remarks>
  28223. <msdn-id>bb174251</msdn-id>
  28224. <unmanaged>HRESULT ID3DXSprite::Draw([In] IDirect3DTexture9* pTexture,[In] const RECT* pSrcRect,[In] const D3DXVECTOR3* pCenter,[In] const D3DXVECTOR3* pPosition,[In] D3DCOLOR Color)</unmanaged>
  28225. <unmanaged-short>ID3DXSprite::Draw</unmanaged-short>
  28226. </member>
  28227. <member name="M:SharpDX.Direct3D9.Sprite.Draw(SharpDX.Direct3D9.Texture,SharpDX.Mathematics.Interop.RawColorBGRA,System.Nullable{SharpDX.Mathematics.Interop.RawRectangle},System.Nullable{SharpDX.Mathematics.Interop.RawVector3},System.Nullable{SharpDX.Mathematics.Interop.RawVector3})">
  28228. <summary>
  28229. <p>Adds a sprite to the list of batched sprites.</p>
  28230. </summary>
  28231. <param name="textureRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Texture"/></strong> interface that represents the sprite texture.</p> </dd></param>
  28232. <param name="srcRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle"/></strong> structure that indicates the portion of the source texture to use for the sprite. If this parameter is <strong><c>null</c></strong>, then the entire source image is used for the sprite.</p> </dd></param>
  28233. <param name="centerRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3"/></strong> vector that identifies the center of the sprite. If this argument is <strong><c>null</c></strong>, the point (0,0,0) is used, which is the upper-left corner.</p> </dd></param>
  28234. <param name="positionRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3"/></strong> vector that identifies the position of the sprite. If this argument is <strong><c>null</c></strong>, the point (0,0,0) is used, which is the upper-left corner.</p> </dd></param>
  28235. <param name="color"><dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawColor4"/></strong> type. The color and alpha channels are modulated by this value. A value of 0xFFFFFFFF maintains the original source color and alpha data. Use the <strong>D3DCOLOR_RGBA</strong> macro to help generate this color.</p> </dd></param>
  28236. <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: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall"/>, D3DXERR_INVALIDDATA.</p></returns>
  28237. <remarks>
  28238. <p>To scale, rotate, or translate a sprite, call <strong><see cref="M:SharpDX.Direct3D9.Sprite.SetTransform(SharpDX.Mathematics.Interop.RawMatrix@)"/></strong> with a matrix that contains the scale, rotate, and translate (SRT) values, before calling <see cref="M:SharpDX.Direct3D9.Sprite.Draw(SharpDX.Direct3D9.Texture,System.IntPtr,System.IntPtr,System.IntPtr,SharpDX.Mathematics.Interop.RawColorBGRA)"/>. For information about setting SRT values in a matrix, see Matrix Transforms.</p>
  28239. </remarks>
  28240. <msdn-id>bb174251</msdn-id>
  28241. <unmanaged>HRESULT ID3DXSprite::Draw([In] IDirect3DTexture9* pTexture,[In] const RECT* pSrcRect,[In] const D3DXVECTOR3* pCenter,[In] const D3DXVECTOR3* pPosition,[In] D3DCOLOR Color)</unmanaged>
  28242. <unmanaged-short>ID3DXSprite::Draw</unmanaged-short>
  28243. </member>
  28244. <member name="T:SharpDX.Direct3D9.StateBlock">
  28245. <summary>
  28246. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.StateBlock" /> interface to encapsulate render states.</p>
  28247. </summary>
  28248. <remarks>
  28249. <p>This interface can be used to save and restore pipeline state. It can also be used to capture the current state.</p><p>The LPDIRECT3DSTATEBLOCK9 and PDIRECT3DSTATEBLOCK9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.StateBlock" /></strong> interface. </p><pre>typedef struct <see cref="T:SharpDX.Direct3D9.StateBlock" /> *LPDIRECT3DSTATEBLOCK9, *PDIRECT3DSTATEBLOCK9;</pre>
  28250. </remarks>
  28251. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DStateBlock9']/*" />
  28252. <msdn-id>bb205887</msdn-id>
  28253. <unmanaged>IDirect3DStateBlock9</unmanaged>
  28254. <unmanaged-short>IDirect3DStateBlock9</unmanaged-short>
  28255. </member>
  28256. <member name="M:SharpDX.Direct3D9.StateBlock.#ctor(System.IntPtr)">
  28257. <summary>
  28258. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.StateBlock"/> class.
  28259. </summary>
  28260. <param name="nativePtr">The native pointer.</param>
  28261. </member>
  28262. <member name="M:SharpDX.Direct3D9.StateBlock.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.StateBlock">
  28263. <summary>
  28264. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.StateBlock"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  28265. </summary>
  28266. <param name="nativePointer">The native pointer.</param>
  28267. <returns>
  28268. The result of the conversion.
  28269. </returns>
  28270. </member>
  28271. <member name="P:SharpDX.Direct3D9.StateBlock.Device">
  28272. <summary>
  28273. <p>Gets the device.</p>
  28274. </summary>
  28275. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DStateBlock9::GetDevice']/*" />
  28276. <msdn-id>bb205891</msdn-id>
  28277. <unmanaged>GetDevice</unmanaged>
  28278. <unmanaged-short>GetDevice</unmanaged-short>
  28279. <unmanaged>HRESULT IDirect3DStateBlock9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  28280. </member>
  28281. <member name="M:SharpDX.Direct3D9.StateBlock.GetDevice(SharpDX.Direct3D9.Device@)">
  28282. <summary>
  28283. <p>Gets the device.</p>
  28284. </summary>
  28285. <param name="deviceOut"><dd> <p>Pointer to the <see cref="T:SharpDX.Direct3D9.Device" /> interface that is returned.</p> </dd></param>
  28286. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  28287. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DStateBlock9::GetDevice']/*" />
  28288. <msdn-id>bb205891</msdn-id>
  28289. <unmanaged>HRESULT IDirect3DStateBlock9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  28290. <unmanaged-short>IDirect3DStateBlock9::GetDevice</unmanaged-short>
  28291. </member>
  28292. <member name="M:SharpDX.Direct3D9.StateBlock.Capture">
  28293. <summary>
  28294. <p>Capture the current value of states that are included in a stateblock.</p>
  28295. </summary>
  28296. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails because capture cannot be done while in record mode, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  28297. <remarks>
  28298. <p>The Capture method captures current values for states within an existing state block. It does not capture the entire state of the device. For example:</p><pre> <see cref="T:SharpDX.Direct3D9.StateBlock" />* pStateBlock = <c>null</c>; pd3dDevice-&gt;BeginStateBlock();
  28299. // Add the ZENABLE state to the stateblock
  28300. pd3dDevice-&gt;SetRenderState ( <see cref="F:SharpDX.Direct3D9.RenderState.ZEnable" />, <see cref="F:SharpDX.Direct3D9.ZBufferType.UseZBuffer" /> );
  28301. pd3dDevice-&gt;EndStateBlock ( &amp;pStateBlock ); // Change the current value that is stored in the state block
  28302. pd3dDevice-&gt;SetRenderState ( <see cref="F:SharpDX.Direct3D9.RenderState.ZEnable" />, <see cref="F:SharpDX.Direct3D9.ZBufferType.DontUseZBuffer" /> );
  28303. pStateBlock-&gt;Capture(); pStateBlock-&gt;Release();
  28304. </pre><p>Creating an empty stateblock and calling the Capture method does nothing if no states have been set.</p><p>The Capture method will not capture information for lights that are explicitly or implicitly created after the stateblock is created.</p>
  28305. </remarks>
  28306. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DStateBlock9::Capture']/*" />
  28307. <msdn-id>bb205890</msdn-id>
  28308. <unmanaged>HRESULT IDirect3DStateBlock9::Capture()</unmanaged>
  28309. <unmanaged-short>IDirect3DStateBlock9::Capture</unmanaged-short>
  28310. </member>
  28311. <member name="M:SharpDX.Direct3D9.StateBlock.Apply">
  28312. <summary>
  28313. <p>Apply the state block to the current device state.</p>
  28314. </summary>
  28315. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails while in record mode, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  28316. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DStateBlock9::Apply']/*" />
  28317. <msdn-id>bb205889</msdn-id>
  28318. <unmanaged>HRESULT IDirect3DStateBlock9::Apply()</unmanaged>
  28319. <unmanaged-short>IDirect3DStateBlock9::Apply</unmanaged-short>
  28320. </member>
  28321. <member name="M:SharpDX.Direct3D9.StateBlock.#ctor(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.StateBlockType)">
  28322. <summary>
  28323. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.StateBlock"/> class.
  28324. </summary>
  28325. <param name="device">The device.</param>
  28326. <param name="type">The type.</param>
  28327. </member>
  28328. <member name="T:SharpDX.Direct3D9.Surface">
  28329. <summary>
  28330. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.Surface" /> interface to query and prepare surfaces.</p>
  28331. </summary>
  28332. <remarks>
  28333. <p>The LPDIRECT3DSURFACE9 and PDIRECT3DSURFACE9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.Surface" /> *LPDIRECT3DSURFACE9, *PDIRECT3DSURFACE9;
  28334. </pre>
  28335. </remarks>
  28336. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSurface9']/*" />
  28337. <msdn-id>bb205892</msdn-id>
  28338. <unmanaged>IDirect3DSurface9</unmanaged>
  28339. <unmanaged-short>IDirect3DSurface9</unmanaged-short>
  28340. </member>
  28341. <member name="M:SharpDX.Direct3D9.Surface.#ctor(System.IntPtr)">
  28342. <summary>
  28343. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Surface"/> class.
  28344. </summary>
  28345. <param name="nativePtr">The native pointer.</param>
  28346. </member>
  28347. <member name="M:SharpDX.Direct3D9.Surface.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Surface">
  28348. <summary>
  28349. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Surface"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  28350. </summary>
  28351. <param name="nativePointer">The native pointer.</param>
  28352. <returns>
  28353. The result of the conversion.
  28354. </returns>
  28355. </member>
  28356. <member name="P:SharpDX.Direct3D9.Surface.Description">
  28357. <summary>
  28358. <p>Retrieves a description of the surface.</p>
  28359. </summary>
  28360. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSurface9::GetDesc']/*" />
  28361. <msdn-id>bb205895</msdn-id>
  28362. <unmanaged>GetDesc</unmanaged>
  28363. <unmanaged-short>GetDesc</unmanaged-short>
  28364. <unmanaged>HRESULT IDirect3DSurface9::GetDesc([Out] D3DSURFACE_DESC* pDesc)</unmanaged>
  28365. </member>
  28366. <member name="M:SharpDX.Direct3D9.Surface.GetContainer(System.Guid,System.IntPtr@)">
  28367. <summary>
  28368. <p>Provides access to the parent cube texture or texture (mipmap) object, if this surface is a child level of a cube texture or a mipmap. This method can also provide access to the parent swap chain if the surface is a back-buffer child.</p>
  28369. </summary>
  28370. <param name="riid"><dd> <p>Reference identifier of the container being requested. </p> </dd></param>
  28371. <param name="containerOut"><dd> <p>Address of a reference to fill with the container reference if the query succeeds. See Remarks. </p> </dd></param>
  28372. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  28373. <remarks>
  28374. <p>If the surface is created using <strong>CreateRenderTarget</strong> or <strong>CreateOffscreenPlainSurface</strong> or <strong>CreateDepthStencilSurface</strong>, the surface is considered stand alone. In this case, <strong>GetContainer</strong> will return the Direct3D device used to create the surface.</p><p>If the call succeeds, the reference count of the container is increased by one.</p><p>Here's an example getting the parent texture of a mip surface.</p><pre> // Assumes pSurface is a valid <see cref="T:SharpDX.Direct3D9.Surface" /> reference
  28375. void *pContainer = <c>null</c>;
  28376. <see cref="T:SharpDX.Direct3D9.Texture" /> *pTexture = <c>null</c>;
  28377. <see cref="T:SharpDX.Result" /> hr = pSurface-&gt;GetContainer(IID_IDirect3DTexture9, &amp;pContainer);
  28378. if (SUCCEEDED(hr) &amp;&amp; pContainer)
  28379. { pTexture = (<see cref="T:SharpDX.Direct3D9.Texture" /> *)pContainer;
  28380. }
  28381. </pre>
  28382. </remarks>
  28383. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSurface9::GetContainer']/*" />
  28384. <msdn-id>bb205893</msdn-id>
  28385. <unmanaged>HRESULT IDirect3DSurface9::GetContainer([In] const GUID&amp; riid,[Out] void** ppContainer)</unmanaged>
  28386. <unmanaged-short>IDirect3DSurface9::GetContainer</unmanaged-short>
  28387. </member>
  28388. <member name="M:SharpDX.Direct3D9.Surface.GetDescription(SharpDX.Direct3D9.SurfaceDescription@)">
  28389. <summary>
  28390. <p>Retrieves a description of the surface.</p>
  28391. </summary>
  28392. <param name="descRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.SurfaceDescription" /></strong> structure, describing the surface. </p> </dd></param>
  28393. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />.</p><p><see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if the argument is invalid.</p></returns>
  28394. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSurface9::GetDesc']/*" />
  28395. <msdn-id>bb205895</msdn-id>
  28396. <unmanaged>HRESULT IDirect3DSurface9::GetDesc([Out] D3DSURFACE_DESC* pDesc)</unmanaged>
  28397. <unmanaged-short>IDirect3DSurface9::GetDesc</unmanaged-short>
  28398. </member>
  28399. <member name="M:SharpDX.Direct3D9.Surface.LockRectangle(SharpDX.Direct3D9.LockedRectangle@,System.IntPtr,SharpDX.Direct3D9.LockFlags)">
  28400. <summary>
  28401. <p>Locks a rectangle on a surface.</p>
  28402. </summary>
  28403. <param name="lockedRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.LockedRectangle" /></strong> structure that describes the locked region. </p> </dd></param>
  28404. <param name="rectRef"><dd> <p>Pointer to a rectangle to lock. Specified by a reference to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure. Specifying <strong><c>null</c></strong> for this parameter expands the dirty region to cover the entire surface. </p> </dd></param>
  28405. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.DoNotWait" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> </ul> <p> You may not specify a subrect when using <see cref="F:SharpDX.Direct3D9.LockFlags.Discard" />. For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />. </p> </dd></param>
  28406. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />.</p><p>If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> or <see cref="F:SharpDX.Direct3D9.ResultCode.WasStillDrawing" />.</p></returns>
  28407. <remarks>
  28408. <p>If the <see cref="F:SharpDX.Direct3D9.LockFlags.DoNotWait" /> flag is specified and the driver cannot lock the surface immediately, <strong><see cref="M:SharpDX.Direct3D9.Surface.LockRectangle(SharpDX.Direct3D9.LockedRectangle@,System.IntPtr,SharpDX.Direct3D9.LockFlags)" /></strong> will return <see cref="F:SharpDX.Direct3D9.ResultCode.WasStillDrawing" /> so that an application can use the CPU cycles while waiting for the driver to lock the surface.</p><p>The only lockable format for a depth-stencil surface is <see cref="F:SharpDX.Direct3D9.Format.D16Lockable" />. See <see cref="T:SharpDX.Direct3D9.Format" />.</p><p>For performance reasons, dirty regions are recorded only for level zero of a texture. Dirty regions are automatically recorded when <strong><see cref="M:SharpDX.Direct3D9.Surface.LockRectangle(SharpDX.Direct3D9.LockedRectangle@,System.IntPtr,SharpDX.Direct3D9.LockFlags)" /></strong> is called without <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" />. See <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong> for more information.</p><p>A multisample back buffer cannot be locked.</p><p>This method cannot retrieve data from a surface that is is contained by a texture resource created with <strong><see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /></strong> because such a texture must be assigned to <see cref="F:SharpDX.Direct3D9.Pool.Default" /> memory and is therefore not lockable. In this case, use instead <strong><see cref="M:SharpDX.Direct3D9.Device.GetRenderTargetData(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong> to copy texture data from device memory to system memory.</p>
  28409. </remarks>
  28410. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSurface9::LockRect']/*" />
  28411. <msdn-id>bb205896</msdn-id>
  28412. <unmanaged>HRESULT IDirect3DSurface9::LockRect([Out] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  28413. <unmanaged-short>IDirect3DSurface9::LockRect</unmanaged-short>
  28414. </member>
  28415. <member name="M:SharpDX.Direct3D9.Surface.UnlockRectangle">
  28416. <summary>
  28417. <p>Unlocks a rectangle on a surface.</p>
  28418. </summary>
  28419. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  28420. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSurface9::UnlockRect']/*" />
  28421. <msdn-id>bb205898</msdn-id>
  28422. <unmanaged>HRESULT IDirect3DSurface9::UnlockRect()</unmanaged>
  28423. <unmanaged-short>IDirect3DSurface9::UnlockRect</unmanaged-short>
  28424. </member>
  28425. <member name="M:SharpDX.Direct3D9.Surface.GetDC">
  28426. <summary>
  28427. <p>Retrieves a device context.</p>
  28428. </summary>
  28429. <returns><dd> <p>Pointer to the device context for the surface.</p> </dd></returns>
  28430. <remarks>
  28431. <p>The following restrictions apply.</p><ul> <li><strong><see cref="M:SharpDX.Direct3D9.Surface.GetDC" /></strong> is valid on the following formats only: <see cref="F:SharpDX.Direct3D9.Format.R5G6B5" />, <see cref="F:SharpDX.Direct3D9.Format.X1R5G5B5" />, <see cref="F:SharpDX.Direct3D9.Format.R8G8B8" />, and <see cref="F:SharpDX.Direct3D9.Format.X8R8G8B8" />. Formats that contain Alpha are not supported because the GDI implementations don't have a well-defined behavior on the alpha channel. For more information about formats, see <see cref="T:SharpDX.Direct3D9.Format" />.</li> <li>Only one device context per surface can be returned at a time.</li> <li><strong><see cref="M:SharpDX.Direct3D9.Surface.GetDC" /></strong> will fail if the surface is already locked. If the surface is a member of a mipmap or cubemap, <strong><see cref="M:SharpDX.Direct3D9.Surface.GetDC" /></strong> fails if any other mipmap or cubemap member is locked.</li> <li><strong><see cref="M:SharpDX.Direct3D9.Surface.GetDC" /></strong> fails on render targets unless they were created lockable (or, in the case of back buffers, with the <see cref="F:SharpDX.Direct3D9.PresentFlags.LockableBackBuffer" /> flag).</li> <li>For surfaces not created with <strong><see cref="M:SharpDX.Direct3D9.Device.CreateOffscreenPlainSurface(System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.IntPtr)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.Surface.GetDC" /></strong> will fail on default pool (<see cref="F:SharpDX.Direct3D9.Pool.Default" />) surfaces unless they are dynamic (<see cref="F:SharpDX.Direct3D9.Usage.Dynamic" />) or are lockable render targets.</li> <li><strong><see cref="M:SharpDX.Direct3D9.Surface.GetDC" /></strong> will fail on <see cref="F:SharpDX.Direct3D9.Pool.Scratch" /> surfaces.</li> </ul><p>When a device context is outstanding on a surface, the application may not call these methods:</p><table> <tr><td><see cref="T:SharpDX.Direct3D9.CubeTexture" /></td><td> <strong><see cref="M:SharpDX.Direct3D9.CubeTexture.LockRectangle(SharpDX.Direct3D9.CubeMapFace,System.Int32,SharpDX.Direct3D9.LockFlags)" /></strong> </td></tr> <tr><td><see cref="T:SharpDX.Direct3D9.Device" /></td><td> <strong><see cref="M:SharpDX.Direct3D9.Device.ColorFill(SharpDX.Direct3D9.Surface,SharpDX.Mathematics.Interop.RawColorBGRA)" /></strong> </td></tr> <tr><td /><td> <strong><see cref="M:SharpDX.Direct3D9.Device.StretchRectangle(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.TextureFilter)" /></strong> </td></tr> <tr><td /><td> <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong> </td></tr> <tr><td /><td> <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong> </td></tr> <tr><td><see cref="T:SharpDX.Direct3D9.Surface" /></td><td> <strong><see cref="M:SharpDX.Direct3D9.Surface.LockRectangle(SharpDX.Direct3D9.LockedRectangle@,System.IntPtr,SharpDX.Direct3D9.LockFlags)" /></strong> </td></tr> <tr><td><see cref="T:SharpDX.Direct3D9.SwapChain" /></td><td> <strong><see cref="M:SharpDX.Direct3D9.SwapChain.Present(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Int32)" /></strong> *</td></tr> <tr><td><see cref="T:SharpDX.Direct3D9.Texture" /></td><td> <strong><see cref="M:SharpDX.Direct3D9.Texture.LockRectangle(System.Int32,SharpDX.Direct3D9.LockedRectangle@,System.IntPtr,SharpDX.Direct3D9.LockFlags)" /></strong> </td></tr> </table><p>?</p><p>* (on a swap chain that contains the surface)</p><p><strong><see cref="M:SharpDX.Direct3D9.Surface.GetDC" /></strong> causes an implicit lock; do not retain the device context for later use. Call <strong><see cref="M:SharpDX.Direct3D9.Surface.ReleaseDC(System.IntPtr)" /></strong> to release it. </p><p>It is valid to call <strong><see cref="M:SharpDX.Direct3D9.Surface.GetDC" /></strong>/<strong><see cref="M:SharpDX.Direct3D9.Surface.ReleaseDC(System.IntPtr)" /></strong> on levels of a mipmap or cubemap, however, these calls will be slow to all miplevels except the topmost level, and GDI operations to these miplevels will not be accelerated.</p><p>The hdc provides access to Win32 and GDI functionality.</p>
  28432. </remarks>
  28433. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSurface9::GetDC']/*" />
  28434. <msdn-id>bb205894</msdn-id>
  28435. <unmanaged>HRESULT IDirect3DSurface9::GetDC([Out] HDC* phdc)</unmanaged>
  28436. <unmanaged-short>IDirect3DSurface9::GetDC</unmanaged-short>
  28437. </member>
  28438. <member name="M:SharpDX.Direct3D9.Surface.ReleaseDC(System.IntPtr)">
  28439. <summary>
  28440. <p>Release a device context handle.</p>
  28441. </summary>
  28442. <param name="hdc"><dd> <p>Handle to a device context.</p> </dd></param>
  28443. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if the argument is invalid.</p></returns>
  28444. <remarks>
  28445. <p>An hdc is a Windows resource. It must be released after use so Windows can return it to the pool of available resources.</p><p>This method will release only the device context returned by <strong><see cref="M:SharpDX.Direct3D9.Surface.GetDC" /></strong>. Otherwise, this method will fail.</p>
  28446. </remarks>
  28447. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSurface9::ReleaseDC']/*" />
  28448. <msdn-id>bb205897</msdn-id>
  28449. <unmanaged>HRESULT IDirect3DSurface9::ReleaseDC([In] HDC hdc)</unmanaged>
  28450. <unmanaged-short>IDirect3DSurface9::ReleaseDC</unmanaged-short>
  28451. </member>
  28452. <member name="M:SharpDX.Direct3D9.Surface.CreateDepthStencil(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,System.Boolean)">
  28453. <summary>
  28454. Creates a depth-stencil surface.
  28455. </summary>
  28456. <param name="device">The device.</param>
  28457. <param name="width">The width.</param>
  28458. <param name="height">The height.</param>
  28459. <param name="format">The format.</param>
  28460. <param name="multisampleType">Type of the multisample.</param>
  28461. <param name="multisampleQuality">The multisample quality.</param>
  28462. <param name="discard">if set to <c>true</c> [discard].</param>
  28463. <returns>A reference to a <see cref="T:SharpDX.Direct3D9.Surface"/>, representing the created depth-stencil surface resource. </returns>
  28464. <unmanaged>HRESULT IDirect3DDevice9::CreateDepthStencilSurface([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Discard,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle)</unmanaged>
  28465. </member>
  28466. <member name="M:SharpDX.Direct3D9.Surface.CreateDepthStencil(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,System.Boolean,System.IntPtr@)">
  28467. <summary>
  28468. Creates a depth-stencil surface.
  28469. </summary>
  28470. <param name="device">The device.</param>
  28471. <param name="width">The width.</param>
  28472. <param name="height">The height.</param>
  28473. <param name="format">The format.</param>
  28474. <param name="multisampleType">Type of the multisample.</param>
  28475. <param name="multisampleQuality">The multisample quality.</param>
  28476. <param name="discard">if set to <c>true</c> [discard].</param>
  28477. <param name="sharedHandle">The shared handle.</param>
  28478. <returns>A reference to a <see cref="T:SharpDX.Direct3D9.Surface"/>, representing the created depth-stencil surface resource. </returns>
  28479. <unmanaged>HRESULT IDirect3DDevice9::CreateDepthStencilSurface([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Discard,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle)</unmanaged>
  28480. </member>
  28481. <member name="M:SharpDX.Direct3D9.Surface.CreateDepthStencilEx(SharpDX.Direct3D9.DeviceEx,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,System.Boolean,SharpDX.Direct3D9.Usage)">
  28482. <summary>
  28483. Creates a depth-stencil surface.
  28484. </summary>
  28485. <param name="device">The device.</param>
  28486. <param name="width">The width.</param>
  28487. <param name="height">The height.</param>
  28488. <param name="format">The format.</param>
  28489. <param name="multisampleType">Type of the multisample.</param>
  28490. <param name="multisampleQuality">The multisample quality.</param>
  28491. <param name="discard">if set to <c>true</c> [discard].</param>
  28492. <param name="usage">The usage.</param>
  28493. <returns>A reference to a <see cref="T:SharpDX.Direct3D9.Surface"/>, representing the created depth-stencil surface resource. </returns>
  28494. <unmanaged>HRESULT IDirect3DDevice9Ex::CreateDepthStencilSurfaceEx([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Discard,[Out, Fast] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle,[In] unsigned int Usage)</unmanaged>
  28495. </member>
  28496. <member name="M:SharpDX.Direct3D9.Surface.CreateDepthStencilEx(SharpDX.Direct3D9.DeviceEx,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,System.Boolean,SharpDX.Direct3D9.Usage,System.IntPtr@)">
  28497. <summary>
  28498. Creates a depth-stencil surface.
  28499. </summary>
  28500. <param name="device">The device.</param>
  28501. <param name="width">The width.</param>
  28502. <param name="height">The height.</param>
  28503. <param name="format">The format.</param>
  28504. <param name="multisampleType">Type of the multisample.</param>
  28505. <param name="multisampleQuality">The multisample quality.</param>
  28506. <param name="discard">if set to <c>true</c> [discard].</param>
  28507. <param name="usage">The usage.</param>
  28508. <param name="sharedHandle">The shared handle.</param>
  28509. <returns>A reference to a <see cref="T:SharpDX.Direct3D9.Surface"/>, representing the created depth-stencil surface resource. </returns>
  28510. <unmanaged>HRESULT IDirect3DDevice9Ex::CreateDepthStencilSurfaceEx([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Discard,[Out, Fast] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle,[In] unsigned int Usage)</unmanaged>
  28511. </member>
  28512. <member name="M:SharpDX.Direct3D9.Surface.CreateOffscreenPlain(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool)">
  28513. <summary>
  28514. Create an off-screen surface.
  28515. </summary>
  28516. <param name="device">The device.</param>
  28517. <param name="width">The width.</param>
  28518. <param name="height">The height.</param>
  28519. <param name="format">The format.</param>
  28520. <param name="pool">The pool.</param>
  28521. <returns>A <see cref="T:SharpDX.Direct3D9.Surface"/> created.</returns>
  28522. <unmanaged>HRESULT IDirect3DDevice9::CreateOffscreenPlainSurface([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle)</unmanaged>
  28523. </member>
  28524. <member name="M:SharpDX.Direct3D9.Surface.CreateOffscreenPlain(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.IntPtr@)">
  28525. <summary>
  28526. Create an off-screen surface.
  28527. </summary>
  28528. <param name="device">The device.</param>
  28529. <param name="width">The width.</param>
  28530. <param name="height">The height.</param>
  28531. <param name="format">The format.</param>
  28532. <param name="pool">The pool.</param>
  28533. <param name="sharedHandle">The shared handle.</param>
  28534. <returns>A <see cref="T:SharpDX.Direct3D9.Surface"/> created.</returns>
  28535. <unmanaged>HRESULT IDirect3DDevice9::CreateOffscreenPlainSurface([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle)</unmanaged>
  28536. </member>
  28537. <member name="M:SharpDX.Direct3D9.Surface.CreateOffscreenPlainEx(SharpDX.Direct3D9.DeviceEx,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Usage)">
  28538. <summary>
  28539. Create an off-screen surface.
  28540. </summary>
  28541. <param name="device">The device.</param>
  28542. <param name="width">The width.</param>
  28543. <param name="height">The height.</param>
  28544. <param name="format">The format.</param>
  28545. <param name="pool">The pool.</param>
  28546. <param name="usage">The usage.</param>
  28547. <returns>
  28548. A <see cref="T:SharpDX.Direct3D9.Surface"/> created.
  28549. </returns>
  28550. <unmanaged>HRESULT IDirect3DDevice9Ex::CreateOffscreenPlainSurfaceEx([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle,[In] unsigned int Usage)</unmanaged>
  28551. </member>
  28552. <member name="M:SharpDX.Direct3D9.Surface.CreateOffscreenPlainEx(SharpDX.Direct3D9.DeviceEx,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Usage,System.IntPtr@)">
  28553. <summary>
  28554. Create an off-screen surface.
  28555. </summary>
  28556. <param name="device">The device.</param>
  28557. <param name="width">The width.</param>
  28558. <param name="height">The height.</param>
  28559. <param name="format">The format.</param>
  28560. <param name="pool">The pool.</param>
  28561. <param name="usage">The usage.</param>
  28562. <param name="sharedHandle">The shared handle.</param>
  28563. <returns>
  28564. A <see cref="T:SharpDX.Direct3D9.Surface"/> created.
  28565. </returns>
  28566. <unmanaged>HRESULT IDirect3DDevice9Ex::CreateOffscreenPlainSurfaceEx([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle,[In] unsigned int Usage)</unmanaged>
  28567. </member>
  28568. <member name="M:SharpDX.Direct3D9.Surface.CreateRenderTarget(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,System.Boolean)">
  28569. <summary>
  28570. Creates a render-target surface.
  28571. </summary>
  28572. <param name="device">The device.</param>
  28573. <param name="width">The width.</param>
  28574. <param name="height">The height.</param>
  28575. <param name="format">The format.</param>
  28576. <param name="multisampleType">Type of the multisample.</param>
  28577. <param name="multisampleQuality">The multisample quality.</param>
  28578. <param name="lockable">if set to <c>true</c> [lockable].</param>
  28579. <returns>
  28580. A render-target <see cref="T:SharpDX.Direct3D9.Surface"/>.
  28581. </returns>
  28582. <unmanaged>HRESULT IDirect3DDevice9::CreateRenderTarget([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Lockable,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle)</unmanaged>
  28583. </member>
  28584. <member name="M:SharpDX.Direct3D9.Surface.CreateRenderTarget(SharpDX.Direct3D9.Device,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,System.Boolean,System.IntPtr@)">
  28585. <summary>
  28586. Creates a render-target surface.
  28587. </summary>
  28588. <param name="device">The device.</param>
  28589. <param name="width">The width.</param>
  28590. <param name="height">The height.</param>
  28591. <param name="format">The format.</param>
  28592. <param name="multisampleType">Type of the multisample.</param>
  28593. <param name="multisampleQuality">The multisample quality.</param>
  28594. <param name="lockable">if set to <c>true</c> [lockable].</param>
  28595. <param name="sharedHandle">The shared handle.</param>
  28596. <returns>
  28597. A render-target <see cref="T:SharpDX.Direct3D9.Surface"/>.
  28598. </returns>
  28599. <unmanaged>HRESULT IDirect3DDevice9::CreateRenderTarget([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Lockable,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle)</unmanaged>
  28600. </member>
  28601. <member name="M:SharpDX.Direct3D9.Surface.CreateRenderTargetEx(SharpDX.Direct3D9.DeviceEx,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,System.Boolean,SharpDX.Direct3D9.Usage)">
  28602. <summary>
  28603. Creates a render-target surface.
  28604. </summary>
  28605. <param name="device">The device.</param>
  28606. <param name="width">The width.</param>
  28607. <param name="height">The height.</param>
  28608. <param name="format">The format.</param>
  28609. <param name="multisampleType">Type of the multisample.</param>
  28610. <param name="multisampleQuality">The multisample quality.</param>
  28611. <param name="lockable">if set to <c>true</c> [lockable].</param>
  28612. <param name="usage">The usage.</param>
  28613. <returns>A render-target <see cref="T:SharpDX.Direct3D9.Surface"/>.</returns>
  28614. <unmanaged>HRESULT IDirect3DDevice9Ex::CreateRenderTargetEx([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Lockable,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle,[In] unsigned int Usage)</unmanaged>
  28615. </member>
  28616. <member name="M:SharpDX.Direct3D9.Surface.CreateRenderTargetEx(SharpDX.Direct3D9.DeviceEx,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.MultisampleType,System.Int32,System.Boolean,SharpDX.Direct3D9.Usage,System.IntPtr@)">
  28617. <summary>
  28618. Creates a render-target surface.
  28619. </summary>
  28620. <param name="device">The device.</param>
  28621. <param name="width">The width.</param>
  28622. <param name="height">The height.</param>
  28623. <param name="format">The format.</param>
  28624. <param name="multisampleType">Type of the multisample.</param>
  28625. <param name="multisampleQuality">The multisample quality.</param>
  28626. <param name="lockable">if set to <c>true</c> [lockable].</param>
  28627. <param name="usage">The usage.</param>
  28628. <param name="sharedHandle">The shared handle.</param>
  28629. <returns>A render-target <see cref="T:SharpDX.Direct3D9.Surface"/>.</returns>
  28630. <unmanaged>HRESULT IDirect3DDevice9Ex::CreateRenderTargetEx([In] unsigned int Width,[In] unsigned int Height,[In] D3DFORMAT Format,[In] D3DMULTISAMPLE_TYPE MultiSample,[In] unsigned int MultisampleQuality,[In] BOOL Lockable,[Out] IDirect3DSurface9** ppSurface,[In] void** pSharedHandle,[In] unsigned int Usage)</unmanaged>
  28631. </member>
  28632. <member name="M:SharpDX.Direct3D9.Surface.FromFile(SharpDX.Direct3D9.Surface,System.String,SharpDX.Direct3D9.Filter,System.Int32)">
  28633. <summary>
  28634. Loads a surface from a file.
  28635. </summary>
  28636. <param name="surface">The surface.</param>
  28637. <param name="fileName">Name of the file.</param>
  28638. <param name="filter">The filter.</param>
  28639. <param name="colorKey">The color key.</param>
  28640. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  28641. <unmanaged>HRESULT D3DXLoadSurfaceFromFileW([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const wchar_t* pSrcFile,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28642. </member>
  28643. <member name="M:SharpDX.Direct3D9.Surface.FromFile(SharpDX.Direct3D9.Surface,System.String,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle)">
  28644. <summary>
  28645. Loads a surface from a file.
  28646. </summary>
  28647. <param name="surface">The surface.</param>
  28648. <param name="fileName">Name of the file.</param>
  28649. <param name="filter">The filter.</param>
  28650. <param name="colorKey">The color key.</param>
  28651. <param name="sourceRectangle">The source rectangle.</param>
  28652. <param name="destinationRectangle">The destination rectangle.</param>
  28653. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  28654. <unmanaged>HRESULT D3DXLoadSurfaceFromFileW([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const wchar_t* pSrcFile,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28655. </member>
  28656. <member name="M:SharpDX.Direct3D9.Surface.FromFile(SharpDX.Direct3D9.Surface,System.String,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.ImageInformation@)">
  28657. <summary>
  28658. Loads a surface from a file.
  28659. </summary>
  28660. <param name="surface">The surface.</param>
  28661. <param name="fileName">Name of the file.</param>
  28662. <param name="filter">The filter.</param>
  28663. <param name="colorKey">The color key.</param>
  28664. <param name="sourceRectangle">The source rectangle.</param>
  28665. <param name="destinationRectangle">The destination rectangle.</param>
  28666. <param name="imageInformation">The image information.</param>
  28667. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  28668. <unmanaged>HRESULT D3DXLoadSurfaceFromFileW([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const wchar_t* pSrcFile,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28669. </member>
  28670. <member name="M:SharpDX.Direct3D9.Surface.FromFile(SharpDX.Direct3D9.Surface,System.String,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.ImageInformation@)">
  28671. <summary>
  28672. Loads a surface from a file.
  28673. </summary>
  28674. <param name="surface">The surface.</param>
  28675. <param name="fileName">Name of the file.</param>
  28676. <param name="filter">The filter.</param>
  28677. <param name="colorKey">The color key.</param>
  28678. <param name="sourceRectangle">The source rectangle.</param>
  28679. <param name="destinationRectangle">The destination rectangle.</param>
  28680. <param name="palette">The palette.</param>
  28681. <param name="imageInformation">The image information.</param>
  28682. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  28683. <unmanaged>HRESULT D3DXLoadSurfaceFromFileW([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const wchar_t* pSrcFile,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28684. </member>
  28685. <member name="M:SharpDX.Direct3D9.Surface.FromFileInMemory(SharpDX.Direct3D9.Surface,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32)">
  28686. <summary>
  28687. Loads a surface from a file in memory.
  28688. </summary>
  28689. <param name="surface">The surface.</param>
  28690. <param name="memory">The memory.</param>
  28691. <param name="filter">The filter.</param>
  28692. <param name="colorKey">The color key.</param>
  28693. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  28694. <unmanaged>HRESULT D3DXLoadSurfaceFromFileInMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28695. </member>
  28696. <member name="M:SharpDX.Direct3D9.Surface.FromFileInMemory(SharpDX.Direct3D9.Surface,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle)">
  28697. <summary>
  28698. Loads a surface from a file in memory.
  28699. </summary>
  28700. <param name="surface">The surface.</param>
  28701. <param name="memory">The memory.</param>
  28702. <param name="filter">The filter.</param>
  28703. <param name="colorKey">The color key.</param>
  28704. <param name="sourceRectangle">The source rectangle.</param>
  28705. <param name="destinationRectangle">The destination rectangle.</param>
  28706. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  28707. <unmanaged>HRESULT D3DXLoadSurfaceFromFileInMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28708. </member>
  28709. <member name="M:SharpDX.Direct3D9.Surface.FromFileInMemory(SharpDX.Direct3D9.Surface,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.ImageInformation@)">
  28710. <summary>
  28711. Loads a surface from a file in memory.
  28712. </summary>
  28713. <param name="surface">The surface.</param>
  28714. <param name="memory">The memory.</param>
  28715. <param name="filter">The filter.</param>
  28716. <param name="colorKey">The color key.</param>
  28717. <param name="sourceRectangle">The source rectangle.</param>
  28718. <param name="destinationRectangle">The destination rectangle.</param>
  28719. <param name="imageInformation">The image information.</param>
  28720. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  28721. <unmanaged>HRESULT D3DXLoadSurfaceFromFileInMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28722. </member>
  28723. <member name="M:SharpDX.Direct3D9.Surface.FromFileInMemory(SharpDX.Direct3D9.Surface,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.ImageInformation@)">
  28724. <summary>
  28725. Loads a surface from a file in memory.
  28726. </summary>
  28727. <param name="surface">The surface.</param>
  28728. <param name="memory">The memory.</param>
  28729. <param name="filter">The filter.</param>
  28730. <param name="colorKey">The color key.</param>
  28731. <param name="sourceRectangle">The source rectangle.</param>
  28732. <param name="destinationRectangle">The destination rectangle.</param>
  28733. <param name="palette">The palette.</param>
  28734. <param name="imageInformation">The image information.</param>
  28735. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  28736. <unmanaged>HRESULT D3DXLoadSurfaceFromFileInMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28737. </member>
  28738. <member name="M:SharpDX.Direct3D9.Surface.FromFileInStream(SharpDX.Direct3D9.Surface,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32)">
  28739. <summary>
  28740. Loads a surface from a file in memory.
  28741. </summary>
  28742. <param name="surface">The surface.</param>
  28743. <param name="stream">The stream.</param>
  28744. <param name="filter">The filter.</param>
  28745. <param name="colorKey">The color key.</param>
  28746. <returns>
  28747. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28748. </returns>
  28749. <unmanaged>HRESULT D3DXLoadSurfaceFromFileInMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28750. </member>
  28751. <member name="M:SharpDX.Direct3D9.Surface.FromFileInStream(SharpDX.Direct3D9.Surface,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle)">
  28752. <summary>
  28753. Loads a surface from a file in memory.
  28754. </summary>
  28755. <param name="surface">The surface.</param>
  28756. <param name="stream">The stream.</param>
  28757. <param name="filter">The filter.</param>
  28758. <param name="colorKey">The color key.</param>
  28759. <param name="sourceRectangle">The source rectangle.</param>
  28760. <param name="destinationRectangle">The destination rectangle.</param>
  28761. <returns>
  28762. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28763. </returns>
  28764. <unmanaged>HRESULT D3DXLoadSurfaceFromFileInMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28765. </member>
  28766. <member name="M:SharpDX.Direct3D9.Surface.FromFileInStream(SharpDX.Direct3D9.Surface,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.ImageInformation@)">
  28767. <summary>
  28768. Loads a surface from a file in memory.
  28769. </summary>
  28770. <param name="surface">The surface.</param>
  28771. <param name="stream">The stream.</param>
  28772. <param name="filter">The filter.</param>
  28773. <param name="colorKey">The color key.</param>
  28774. <param name="sourceRectangle">The source rectangle.</param>
  28775. <param name="destinationRectangle">The destination rectangle.</param>
  28776. <param name="imageInformation">The image information.</param>
  28777. <returns>
  28778. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28779. </returns>
  28780. <unmanaged>HRESULT D3DXLoadSurfaceFromFileInMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28781. </member>
  28782. <member name="M:SharpDX.Direct3D9.Surface.FromFileInStream(SharpDX.Direct3D9.Surface,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.ImageInformation@)">
  28783. <summary>
  28784. Loads a surface from a file in memory.
  28785. </summary>
  28786. <param name="surface">The surface.</param>
  28787. <param name="stream">The stream.</param>
  28788. <param name="filter">The filter.</param>
  28789. <param name="colorKey">The color key.</param>
  28790. <param name="sourceRectangle">The source rectangle.</param>
  28791. <param name="destinationRectangle">The destination rectangle.</param>
  28792. <param name="palette">The palette.</param>
  28793. <param name="imageInformation">The image information.</param>
  28794. <returns>
  28795. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28796. </returns>
  28797. <unmanaged>HRESULT D3DXLoadSurfaceFromFileInMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28798. </member>
  28799. <member name="M:SharpDX.Direct3D9.Surface.CreateFromFileInStream(SharpDX.Direct3D9.Surface,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr)">
  28800. <summary>
  28801. Loads a surface from a file in memory.
  28802. </summary>
  28803. <param name="surface">The surface.</param>
  28804. <param name="stream">The stream.</param>
  28805. <param name="filter">The filter.</param>
  28806. <param name="colorKey">The color key.</param>
  28807. <param name="sourceRectangle">The source rectangle.</param>
  28808. <param name="destinationRectangle">The destination rectangle.</param>
  28809. <param name="palette">The palette.</param>
  28810. <param name="imageInformation">The image information.</param>
  28811. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  28812. <unmanaged>HRESULT D3DXLoadSurfaceFromFileInMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  28813. </member>
  28814. <member name="M:SharpDX.Direct3D9.Surface.FromMemory(SharpDX.Direct3D9.Surface,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Mathematics.Interop.RawRectangle)">
  28815. <summary>
  28816. Loads a surface from memory.
  28817. </summary>
  28818. <param name="surface">The surface.</param>
  28819. <param name="data">The data.</param>
  28820. <param name="filter">The filter.</param>
  28821. <param name="colorKey">The color key.</param>
  28822. <param name="sourceFormat">The source format.</param>
  28823. <param name="sourcePitch">The source pitch.</param>
  28824. <param name="sourceRectangle">The source rectangle.</param>
  28825. <returns>
  28826. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28827. </returns>
  28828. <unmanaged>HRESULT D3DXLoadSurfaceFromMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcPitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28829. </member>
  28830. <member name="M:SharpDX.Direct3D9.Surface.FromMemory(SharpDX.Direct3D9.Surface,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle)">
  28831. <summary>
  28832. Loads a surface from memory.
  28833. </summary>
  28834. <param name="surface">The surface.</param>
  28835. <param name="data">The data.</param>
  28836. <param name="filter">The filter.</param>
  28837. <param name="colorKey">The color key.</param>
  28838. <param name="sourceFormat">The source format.</param>
  28839. <param name="sourcePitch">The source pitch.</param>
  28840. <param name="sourceRectangle">The source rectangle.</param>
  28841. <param name="destinationRectangle">The destination rectangle.</param>
  28842. <returns>
  28843. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28844. </returns>
  28845. <unmanaged>HRESULT D3DXLoadSurfaceFromMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcPitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28846. </member>
  28847. <member name="M:SharpDX.Direct3D9.Surface.FromMemory(SharpDX.Direct3D9.Surface,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.PaletteEntry[])">
  28848. <summary>
  28849. Loads a surface from memory.
  28850. </summary>
  28851. <param name="surface">The surface.</param>
  28852. <param name="data">The data.</param>
  28853. <param name="filter">The filter.</param>
  28854. <param name="colorKey">The color key.</param>
  28855. <param name="sourceFormat">The source format.</param>
  28856. <param name="sourcePitch">The source pitch.</param>
  28857. <param name="sourceRectangle">The source rectangle.</param>
  28858. <param name="sourcePalette">The source palette.</param>
  28859. <param name="destinationPalette">The destination palette.</param>
  28860. <returns>
  28861. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28862. </returns>
  28863. <unmanaged>HRESULT D3DXLoadSurfaceFromMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcPitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28864. </member>
  28865. <member name="M:SharpDX.Direct3D9.Surface.FromMemory(SharpDX.Direct3D9.Surface,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.PaletteEntry[])">
  28866. <summary>
  28867. Loads a surface from memory.
  28868. </summary>
  28869. <param name="surface">The surface.</param>
  28870. <param name="data">The data.</param>
  28871. <param name="filter">The filter.</param>
  28872. <param name="colorKey">The color key.</param>
  28873. <param name="sourceFormat">The source format.</param>
  28874. <param name="sourcePitch">The source pitch.</param>
  28875. <param name="sourceRectangle">The source rectangle.</param>
  28876. <param name="destinationRectangle">The destination rectangle.</param>
  28877. <param name="sourcePalette">The source palette.</param>
  28878. <param name="destinationPalette">The destination palette.</param>
  28879. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  28880. <unmanaged>HRESULT D3DXLoadSurfaceFromMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcPitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28881. </member>
  28882. <member name="M:SharpDX.Direct3D9.Surface.FromStream(SharpDX.Direct3D9.Surface,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Mathematics.Interop.RawRectangle)">
  28883. <summary>
  28884. Loads a surface from memory.
  28885. </summary>
  28886. <param name="surface">The surface.</param>
  28887. <param name="stream">The stream.</param>
  28888. <param name="filter">The filter.</param>
  28889. <param name="colorKey">The color key.</param>
  28890. <param name="sourceFormat">The source format.</param>
  28891. <param name="sourcePitch">The source pitch.</param>
  28892. <param name="sourceRectangle">The source rectangle.</param>
  28893. <returns>
  28894. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28895. </returns>
  28896. <unmanaged>HRESULT D3DXLoadSurfaceFromMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcPitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28897. </member>
  28898. <member name="M:SharpDX.Direct3D9.Surface.FromStream(SharpDX.Direct3D9.Surface,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle)">
  28899. <summary>
  28900. Loads a surface from memory.
  28901. </summary>
  28902. <param name="surface">The surface.</param>
  28903. <param name="stream">The stream.</param>
  28904. <param name="filter">The filter.</param>
  28905. <param name="colorKey">The color key.</param>
  28906. <param name="sourceFormat">The source format.</param>
  28907. <param name="sourcePitch">The source pitch.</param>
  28908. <param name="sourceRectangle">The source rectangle.</param>
  28909. <param name="destinationRectangle">The destination rectangle.</param>
  28910. <returns>
  28911. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28912. </returns>
  28913. <unmanaged>HRESULT D3DXLoadSurfaceFromMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcPitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28914. </member>
  28915. <member name="M:SharpDX.Direct3D9.Surface.FromStream(SharpDX.Direct3D9.Surface,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.PaletteEntry[])">
  28916. <summary>
  28917. Loads a surface from memory.
  28918. </summary>
  28919. <param name="surface">The surface.</param>
  28920. <param name="stream">The stream.</param>
  28921. <param name="filter">The filter.</param>
  28922. <param name="colorKey">The color key.</param>
  28923. <param name="sourceFormat">The source format.</param>
  28924. <param name="sourcePitch">The source pitch.</param>
  28925. <param name="sourceRectangle">The source rectangle.</param>
  28926. <param name="sourcePalette">The source palette.</param>
  28927. <param name="destinationPalette">The destination palette.</param>
  28928. <returns>
  28929. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28930. </returns>
  28931. <unmanaged>HRESULT D3DXLoadSurfaceFromMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcPitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28932. </member>
  28933. <member name="M:SharpDX.Direct3D9.Surface.FromStream(SharpDX.Direct3D9.Surface,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.PaletteEntry[])">
  28934. <summary>
  28935. Loads a surface from memory.
  28936. </summary>
  28937. <param name="surface">The surface.</param>
  28938. <param name="stream">The stream.</param>
  28939. <param name="filter">The filter.</param>
  28940. <param name="colorKey">The color key.</param>
  28941. <param name="sourceFormat">The source format.</param>
  28942. <param name="sourcePitch">The source pitch.</param>
  28943. <param name="sourceRectangle">The source rectangle.</param>
  28944. <param name="destinationRectangle">The destination rectangle.</param>
  28945. <param name="sourcePalette">The source palette.</param>
  28946. <param name="destinationPalette">The destination palette.</param>
  28947. <returns>
  28948. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28949. </returns>
  28950. <unmanaged>HRESULT D3DXLoadSurfaceFromMemory([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcPitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28951. </member>
  28952. <member name="M:SharpDX.Direct3D9.Surface.FromSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Filter,System.Int32)">
  28953. <summary>
  28954. Loads a surface from a source surface.
  28955. </summary>
  28956. <param name="destinationSurface">The destination surface.</param>
  28957. <param name="sourceSurface">The source surface.</param>
  28958. <param name="filter">The filter.</param>
  28959. <param name="colorKey">The color key.</param>
  28960. <returns>
  28961. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28962. </returns>
  28963. <unmanaged>HRESULT D3DXLoadSurfaceFromSurface([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28964. </member>
  28965. <member name="M:SharpDX.Direct3D9.Surface.FromSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle)">
  28966. <summary>
  28967. Loads a surface from a source surface.
  28968. </summary>
  28969. <param name="destinationSurface">The destination surface.</param>
  28970. <param name="sourceSurface">The source surface.</param>
  28971. <param name="filter">The filter.</param>
  28972. <param name="colorKey">The color key.</param>
  28973. <param name="sourceRectangle">The source rectangle.</param>
  28974. <param name="destinationRectangle">The destination rectangle.</param>
  28975. <returns>
  28976. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28977. </returns>
  28978. <unmanaged>HRESULT D3DXLoadSurfaceFromSurface([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28979. </member>
  28980. <member name="M:SharpDX.Direct3D9.Surface.FromSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.PaletteEntry[])">
  28981. <summary>
  28982. Loads a surface from a source surface.
  28983. </summary>
  28984. <param name="destinationSurface">The destination surface.</param>
  28985. <param name="sourceSurface">The source surface.</param>
  28986. <param name="filter">The filter.</param>
  28987. <param name="colorKey">The color key.</param>
  28988. <param name="sourceRectangle">The source rectangle.</param>
  28989. <param name="destinationRectangle">The destination rectangle.</param>
  28990. <param name="destinationPalette">The destination palette.</param>
  28991. <param name="sourcePalette">The source palette.</param>
  28992. <returns>
  28993. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  28994. </returns>
  28995. <unmanaged>HRESULT D3DXLoadSurfaceFromSurface([In] IDirect3DSurface9* pDestSurface,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestRect,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  28996. </member>
  28997. <member name="M:SharpDX.Direct3D9.Surface.GetContainer``1(System.Guid)">
  28998. <summary>
  28999. Gets the parent cube texture or texture (mipmap) object, if this surface is a child level of a cube texture or a mipmap.
  29000. This method can also provide access to the parent swap chain if the surface is a back-buffer child.
  29001. </summary>
  29002. <typeparam name="T"></typeparam>
  29003. <param name="guid">The GUID.</param>
  29004. <returns>The parent container texture.</returns>
  29005. </member>
  29006. <member name="M:SharpDX.Direct3D9.Surface.LockRectangle(SharpDX.Direct3D9.LockFlags)">
  29007. <summary>
  29008. Locks a rectangle on a surface.
  29009. </summary>
  29010. <param name="flags">The type of lock to perform.</param>
  29011. <returns>A pointer to the locked region</returns>
  29012. <unmanaged>HRESULT IDirect3DSurface9::LockRect([Out] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  29013. </member>
  29014. <member name="M:SharpDX.Direct3D9.Surface.LockRectangle(SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.LockFlags)">
  29015. <summary>
  29016. Locks a rectangle on a surface.
  29017. </summary>
  29018. <param name="rect">The rectangle to lock.</param>
  29019. <param name="flags">The type of lock to perform.</param>
  29020. <returns>A pointer to the locked region</returns>
  29021. <unmanaged>HRESULT IDirect3DSurface9::LockRect([Out] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  29022. </member>
  29023. <member name="M:SharpDX.Direct3D9.Surface.LockRectangle(SharpDX.Direct3D9.LockFlags,SharpDX.DataStream@)">
  29024. <summary>
  29025. Locks a rectangle on a surface.
  29026. </summary>
  29027. <param name="flags">The type of lock to perform.</param>
  29028. <param name="stream">The stream pointing to the locked region.</param>
  29029. <returns>A pointer to the locked region</returns>
  29030. <unmanaged>HRESULT IDirect3DSurface9::LockRect([Out] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  29031. </member>
  29032. <member name="M:SharpDX.Direct3D9.Surface.LockRectangle(SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.LockFlags,SharpDX.DataStream@)">
  29033. <summary>
  29034. Locks a rectangle on a surface.
  29035. </summary>
  29036. <param name="rect">The rectangle to lock.</param>
  29037. <param name="flags">The type of lock to perform.</param>
  29038. <param name="stream">The stream pointing to the locked region.</param>
  29039. <returns>A pointer to the locked region</returns>
  29040. <unmanaged>HRESULT IDirect3DSurface9::LockRect([Out] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  29041. </member>
  29042. <member name="M:SharpDX.Direct3D9.Surface.ToFile(SharpDX.Direct3D9.Surface,System.String,SharpDX.Direct3D9.ImageFileFormat)">
  29043. <summary>
  29044. Saves a surface to a file.
  29045. </summary>
  29046. <param name="surface">The surface.</param>
  29047. <param name="fileName">Name of the file.</param>
  29048. <param name="format">The format.</param>
  29049. <returns>
  29050. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  29051. </returns>
  29052. <unmanaged>HRESULT D3DXSaveSurfaceToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect)</unmanaged>
  29053. </member>
  29054. <member name="M:SharpDX.Direct3D9.Surface.ToFile(SharpDX.Direct3D9.Surface,System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Mathematics.Interop.RawRectangle)">
  29055. <summary>
  29056. Saves a surface to a file.
  29057. </summary>
  29058. <param name="surface">The surface.</param>
  29059. <param name="fileName">Name of the file.</param>
  29060. <param name="format">The format.</param>
  29061. <param name="rectangle">The rectangle.</param>
  29062. <returns>
  29063. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  29064. </returns>
  29065. <unmanaged>HRESULT D3DXSaveSurfaceToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect)</unmanaged>
  29066. </member>
  29067. <member name="M:SharpDX.Direct3D9.Surface.ToFile(SharpDX.Direct3D9.Surface,System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[])">
  29068. <summary>
  29069. Saves a surface to a file.
  29070. </summary>
  29071. <param name="surface">The surface.</param>
  29072. <param name="fileName">Name of the file.</param>
  29073. <param name="format">The format.</param>
  29074. <param name="rectangle">The rectangle.</param>
  29075. <param name="palette">The palette.</param>
  29076. <returns>
  29077. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  29078. </returns>
  29079. <unmanaged>HRESULT D3DXSaveSurfaceToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect)</unmanaged>
  29080. </member>
  29081. <member name="M:SharpDX.Direct3D9.Surface.ToStream(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.ImageFileFormat)">
  29082. <summary>
  29083. Saves a surface to a stream.
  29084. </summary>
  29085. <param name="surface">The surface.</param>
  29086. <param name="format">The format.</param>
  29087. <returns>
  29088. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  29089. </returns>
  29090. <unmanaged>HRESULT D3DXSaveSurfaceToFileInMemory([In] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect)</unmanaged>
  29091. </member>
  29092. <member name="M:SharpDX.Direct3D9.Surface.ToStream(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Mathematics.Interop.RawRectangle)">
  29093. <summary>
  29094. Saves a surface to a stream.
  29095. </summary>
  29096. <param name="surface">The surface.</param>
  29097. <param name="format">The format.</param>
  29098. <param name="rectangle">The rectangle.</param>
  29099. <returns>
  29100. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  29101. </returns>
  29102. <unmanaged>HRESULT D3DXSaveSurfaceToFileInMemory([In] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect)</unmanaged>
  29103. </member>
  29104. <member name="M:SharpDX.Direct3D9.Surface.ToStream(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.PaletteEntry[])">
  29105. <summary>
  29106. Saves a surface to a stream.
  29107. </summary>
  29108. <param name="surface">The surface.</param>
  29109. <param name="format">The format.</param>
  29110. <param name="rectangle">The rectangle.</param>
  29111. <param name="palette">The palette.</param>
  29112. <returns>
  29113. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  29114. </returns>
  29115. <unmanaged>HRESULT D3DXSaveSurfaceToFileInMemory([In] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DSurface9* pSrcSurface,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcRect)</unmanaged>
  29116. </member>
  29117. <member name="T:SharpDX.Direct3D9.SwapChain">
  29118. <summary>
  29119. <p>Presents the contents of the next buffer in the sequence of back buffers owned by the swap chain.</p>
  29120. </summary>
  29121. <remarks>
  29122. <p>The <strong>Present</strong> method is a shortcut to Present. Present has been updated to take a flag allowing the application to request that the method return immediately when the driver reports that it cannot schedule a presentation.</p><p>If necessary, a stretch operation is applied to transfer the pixels within the source rectangle to the destination rectangle in the client area of the target window.</p><p>Present will fail if called between <strong>BeginScene</strong> and <strong>EndScene</strong> pairs unless the render target is not the current render target (such as the back buffer you get from creating an additional swap chain). This is a new behavior for Direct3D 9.</p>
  29123. </remarks>
  29124. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9']/*" />
  29125. <msdn-id>bb205908</msdn-id>
  29126. <unmanaged>IDirect3DSwapChain9</unmanaged>
  29127. <unmanaged-short>IDirect3DSwapChain9</unmanaged-short>
  29128. </member>
  29129. <member name="M:SharpDX.Direct3D9.SwapChain.#ctor(System.IntPtr)">
  29130. <summary>
  29131. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.SwapChain"/> class.
  29132. </summary>
  29133. <param name="nativePtr">The native pointer.</param>
  29134. </member>
  29135. <member name="M:SharpDX.Direct3D9.SwapChain.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.SwapChain">
  29136. <summary>
  29137. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.SwapChain"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  29138. </summary>
  29139. <param name="nativePointer">The native pointer.</param>
  29140. <returns>
  29141. The result of the conversion.
  29142. </returns>
  29143. </member>
  29144. <member name="P:SharpDX.Direct3D9.SwapChain.RasterStatus">
  29145. <summary>
  29146. <p>Returns information describing the raster of the monitor on which the swap chain is presented.</p>
  29147. </summary>
  29148. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::GetRasterStatus']/*" />
  29149. <msdn-id>bb205907</msdn-id>
  29150. <unmanaged>GetRasterStatus</unmanaged>
  29151. <unmanaged-short>GetRasterStatus</unmanaged-short>
  29152. <unmanaged>HRESULT IDirect3DSwapChain9::GetRasterStatus([Out] D3DRASTER_STATUS* pRasterStatus)</unmanaged>
  29153. </member>
  29154. <member name="P:SharpDX.Direct3D9.SwapChain.DisplayMode">
  29155. <summary>
  29156. <p>Retrieves the display mode's spatial resolution, color resolution, and refresh frequency.</p>
  29157. </summary>
  29158. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::GetDisplayMode']/*" />
  29159. <msdn-id>bb205904</msdn-id>
  29160. <unmanaged>GetDisplayMode</unmanaged>
  29161. <unmanaged-short>GetDisplayMode</unmanaged-short>
  29162. <unmanaged>HRESULT IDirect3DSwapChain9::GetDisplayMode([Out] D3DDISPLAYMODE* pMode)</unmanaged>
  29163. </member>
  29164. <member name="P:SharpDX.Direct3D9.SwapChain.Device">
  29165. <summary>
  29166. <p>Retrieves the device associated with the swap chain.</p>
  29167. </summary>
  29168. <remarks>
  29169. <p>This method allows navigation to the owning device object.</p><p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface results in a memory leak.</p>
  29170. </remarks>
  29171. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::GetDevice']/*" />
  29172. <msdn-id>bb205903</msdn-id>
  29173. <unmanaged>GetDevice</unmanaged>
  29174. <unmanaged-short>GetDevice</unmanaged-short>
  29175. <unmanaged>HRESULT IDirect3DSwapChain9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  29176. </member>
  29177. <member name="P:SharpDX.Direct3D9.SwapChain.PresentParameters">
  29178. <summary>
  29179. <p>Retrieves the presentation parameters associated with a swap chain.</p>
  29180. </summary>
  29181. <remarks>
  29182. <p>This method can be used to see the presentation parameters of the parent swap chain of a surface (a back buffer, for instance). The parent swap chain can be retrieved with <strong><see cref="M:SharpDX.Direct3D9.Surface.GetContainer(System.Guid,System.IntPtr@)" /></strong>.</p>
  29183. </remarks>
  29184. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::GetPresentParameters']/*" />
  29185. <msdn-id>bb205906</msdn-id>
  29186. <unmanaged>GetPresentParameters</unmanaged>
  29187. <unmanaged-short>GetPresentParameters</unmanaged-short>
  29188. <unmanaged>HRESULT IDirect3DSwapChain9::GetPresentParameters([Out] D3DPRESENT_PARAMETERS* pPresentationParameters)</unmanaged>
  29189. </member>
  29190. <member name="M:SharpDX.Direct3D9.SwapChain.Present(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.Int32)">
  29191. <summary>
  29192. <p>Presents the contents of the next buffer in the sequence of back buffers owned by the swap chain.</p>
  29193. </summary>
  29194. <param name="sourceRectRef"><dd> <p>Pointer to the source rectangle (see <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong>). Use <strong><c>null</c></strong> to present the entire surface. This value must be <strong><c>null</c></strong> unless the swap chain was created with <see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" />. If the rectangle exceeds the source surface, the rectangle is clipped to the source surface. </p> </dd></param>
  29195. <param name="destRectRef"><dd> <p>Pointer to the destination rectangle in client coordinates (see <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong>). This value must be <strong><c>null</c></strong> unless the swap chain was created with <see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" />. Use <strong><c>null</c></strong> to fill the entire client area. If the rectangle exceeds the destination client area, the rectangle is clipped to the destination client area. </p> </dd></param>
  29196. <param name="hDestWindowOverride"><dd> <p>Destination window whose client area is taken as the target for this presentation. If this value is <strong><c>null</c></strong>, the runtime uses the <strong>hDeviceWindow</strong> member of <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong> for the presentation. </p> </dd></param>
  29197. <param name="dirtyRegionRef"><dd> <p>This value must be <strong><c>null</c></strong> unless the swap chain was created with <strong><see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" /></strong>. See Flipping Surfaces (Direct3D 9). If this value is non-<strong><c>null</c></strong>, the contained region is expressed in back buffer coordinates. The rectangles within the region are the minimal set of pixels that need to be updated. This method takes these rectangles into account when optimizing the presentation by copying only the pixels within the region, or some suitably expanded set of rectangles. This is an aid to optimization only, and the application should not rely on the region being copied exactly. The implementation may choose to copy the whole source rectangle.</p> </dd></param>
  29198. <param name="dwFlags"><dd> <p>Allows the application to request that the method return immediately when the driver reports that it cannot schedule a presentation. Valid values are 0, or any combination of <see cref="F:SharpDX.Direct3D9.Present.DoNotWait" /> or <see cref="F:SharpDX.Direct3D9.Present.LinearContent" />. </p> <ul> <li>If dwFlags = 0, this method behaves as it did prior to Direct3D 9. Present will spin until the hardware is free, without returning an error.</li> <li>If dwFlags = <see cref="F:SharpDX.Direct3D9.Present.DoNotWait" />, and the hardware is busy processing or waiting for a vertical sync interval, the method will return <see cref="F:SharpDX.Direct3D9.ResultCode.WasStillDrawing" />.</li> <li>If dwFlags = <see cref="F:SharpDX.Direct3D9.Present.LinearContent" />, gamma correction is performed from linear space to sRGB for windowed swap chains. This flag will take effect only when the driver exposes <see cref="F:SharpDX.Direct3D9.Caps3.LinearToSrgbPresentation" /> (see Gamma (Direct3D 9)). Appliations should specify this flag if the backbuffer format is 16-bit floating point in order to match windowed mode present to fullscreen gamma behavior.</li> </ul> </dd></param>
  29199. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.DeviceLost" />, <see cref="F:SharpDX.Direct3D9.ResultCode.DriverInternalError" />, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.OutOfVideoMemory" />, E_OUTOFMEMORY.</p></returns>
  29200. <remarks>
  29201. <p>The <strong>Present</strong> method is a shortcut to Present. Present has been updated to take a flag allowing the application to request that the method return immediately when the driver reports that it cannot schedule a presentation.</p><p>If necessary, a stretch operation is applied to transfer the pixels within the source rectangle to the destination rectangle in the client area of the target window.</p><p>Present will fail if called between <strong>BeginScene</strong> and <strong>EndScene</strong> pairs unless the render target is not the current render target (such as the back buffer you get from creating an additional swap chain). This is a new behavior for Direct3D 9.</p>
  29202. </remarks>
  29203. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::Present']/*" />
  29204. <msdn-id>bb205908</msdn-id>
  29205. <unmanaged>HRESULT IDirect3DSwapChain9::Present([In, Optional] const void* pSourceRect,[InOut, Optional] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const RGNDATA* pDirtyRegion,[In] unsigned int dwFlags)</unmanaged>
  29206. <unmanaged-short>IDirect3DSwapChain9::Present</unmanaged-short>
  29207. </member>
  29208. <member name="M:SharpDX.Direct3D9.SwapChain.GetFrontBufferData(SharpDX.Direct3D9.Surface)">
  29209. <summary>
  29210. <p>Generates a copy of the swapchain's front buffer and places that copy in a system memory buffer provided by the application.</p>
  29211. </summary>
  29212. <param name="destSurfaceRef"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface that will receive a copy of the swapchain's front buffer. The data is returned in successive rows with no intervening space, starting from the vertically highest row to the lowest. For windowed mode, the size of the destination surface should be the size of the desktop. For full screen mode, the size of the destination surface should be the screen size. </p> </dd></param>
  29213. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If BackBuffer exceeds or equals the total number of back buffers, the function fails and returns <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  29214. <remarks>
  29215. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface results in a memory leak.</p>
  29216. </remarks>
  29217. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::GetFrontBufferData']/*" />
  29218. <msdn-id>bb205905</msdn-id>
  29219. <unmanaged>HRESULT IDirect3DSwapChain9::GetFrontBufferData([In] IDirect3DSurface9* pDestSurface)</unmanaged>
  29220. <unmanaged-short>IDirect3DSwapChain9::GetFrontBufferData</unmanaged-short>
  29221. </member>
  29222. <member name="M:SharpDX.Direct3D9.SwapChain.GetBackBuffer(System.Int32,SharpDX.Direct3D9.BackBufferType)">
  29223. <summary>
  29224. <p>Retrieves a back buffer from the swap chain of the device.</p>
  29225. </summary>
  29226. <param name="iBackBuffer"><dd> <p>Index of the back buffer object to return. Back buffers are numbered from 0 to the total number of back buffers - 1. A value of 0 returns the first back buffer, not the front buffer. The front buffer is not accessible through this method. Use <strong><see cref="M:SharpDX.Direct3D9.SwapChain.GetFrontBufferData(SharpDX.Direct3D9.Surface)" /></strong> to retrieve a copy of the front buffer.</p> </dd></param>
  29227. <param name="type"><dd> <p>Stereo view is not supported in Direct3D 9, so the only valid value for this parameter is <see cref="F:SharpDX.Direct3D9.BackBufferType.Mono" />. </p> </dd></param>
  29228. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the returned back buffer surface. </p> </dd></returns>
  29229. <remarks>
  29230. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface results in a memory leak. You must release any surfaces obtained through this method before releasing the swap chain it belongs to.</p>
  29231. </remarks>
  29232. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::GetBackBuffer']/*" />
  29233. <msdn-id>bb205902</msdn-id>
  29234. <unmanaged>HRESULT IDirect3DSwapChain9::GetBackBuffer([In] unsigned int iBackBuffer,[In] D3DBACKBUFFER_TYPE Type,[Out] IDirect3DSurface9** ppBackBuffer)</unmanaged>
  29235. <unmanaged-short>IDirect3DSwapChain9::GetBackBuffer</unmanaged-short>
  29236. </member>
  29237. <member name="M:SharpDX.Direct3D9.SwapChain.GetRasterStatus(SharpDX.Direct3D9.RasterStatus@)">
  29238. <summary>
  29239. <p>Returns information describing the raster of the monitor on which the swap chain is presented.</p>
  29240. </summary>
  29241. <param name="rasterStatusRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.RasterStatus" /></strong> structure filled with information about the position or other status of the raster on the monitor driven by this adapter. </p> </dd></param>
  29242. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if pRasterStatus is invalid or if the device does not support reading the current scan line. To determine if the device supports reading the scan line, check for the <see cref="F:SharpDX.Direct3D9.Caps.ReadScanline" /> flag in the Caps member of <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>. </p></returns>
  29243. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::GetRasterStatus']/*" />
  29244. <msdn-id>bb205907</msdn-id>
  29245. <unmanaged>HRESULT IDirect3DSwapChain9::GetRasterStatus([Out] D3DRASTER_STATUS* pRasterStatus)</unmanaged>
  29246. <unmanaged-short>IDirect3DSwapChain9::GetRasterStatus</unmanaged-short>
  29247. </member>
  29248. <member name="M:SharpDX.Direct3D9.SwapChain.GetDisplayMode(SharpDX.Direct3D9.DisplayMode@)">
  29249. <summary>
  29250. <p>Retrieves the display mode's spatial resolution, color resolution, and refresh frequency.</p>
  29251. </summary>
  29252. <param name="modeRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.DisplayMode" /></strong> structure containing data about the display mode of the adapter. As opposed to the display mode of the device, which may not be active if the device does not own full-screen mode. </p> </dd></param>
  29253. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  29254. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::GetDisplayMode']/*" />
  29255. <msdn-id>bb205904</msdn-id>
  29256. <unmanaged>HRESULT IDirect3DSwapChain9::GetDisplayMode([Out] D3DDISPLAYMODE* pMode)</unmanaged>
  29257. <unmanaged-short>IDirect3DSwapChain9::GetDisplayMode</unmanaged-short>
  29258. </member>
  29259. <member name="M:SharpDX.Direct3D9.SwapChain.GetDevice(SharpDX.Direct3D9.Device@)">
  29260. <summary>
  29261. <p>Retrieves the device associated with the swap chain.</p>
  29262. </summary>
  29263. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface to fill with the device reference, if the query succeeds. </p> </dd></param>
  29264. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  29265. <remarks>
  29266. <p>This method allows navigation to the owning device object.</p><p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface results in a memory leak.</p>
  29267. </remarks>
  29268. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::GetDevice']/*" />
  29269. <msdn-id>bb205903</msdn-id>
  29270. <unmanaged>HRESULT IDirect3DSwapChain9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  29271. <unmanaged-short>IDirect3DSwapChain9::GetDevice</unmanaged-short>
  29272. </member>
  29273. <member name="M:SharpDX.Direct3D9.SwapChain.GetPresentParameters(SharpDX.Direct3D9.PresentParameters@)">
  29274. <summary>
  29275. <p>Retrieves the presentation parameters associated with a swap chain.</p>
  29276. </summary>
  29277. <param name="presentationParametersRef"><dd> <p>Pointer to the presentation parameters. See <strong><see cref="T:SharpDX.Direct3D9.PresentParameters" /></strong>.</p> </dd></param>
  29278. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  29279. <remarks>
  29280. <p>This method can be used to see the presentation parameters of the parent swap chain of a surface (a back buffer, for instance). The parent swap chain can be retrieved with <strong><see cref="M:SharpDX.Direct3D9.Surface.GetContainer(System.Guid,System.IntPtr@)" /></strong>.</p>
  29281. </remarks>
  29282. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9::GetPresentParameters']/*" />
  29283. <msdn-id>bb205906</msdn-id>
  29284. <unmanaged>HRESULT IDirect3DSwapChain9::GetPresentParameters([Out] D3DPRESENT_PARAMETERS* pPresentationParameters)</unmanaged>
  29285. <unmanaged-short>IDirect3DSwapChain9::GetPresentParameters</unmanaged-short>
  29286. </member>
  29287. <member name="M:SharpDX.Direct3D9.SwapChain.#ctor(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.PresentParameters)">
  29288. <summary>
  29289. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.SwapChain"/> class.
  29290. </summary>
  29291. <param name="device">The device.</param>
  29292. <param name="presentParameters">The present parameters.</param>
  29293. <unmanaged>HRESULT IDirect3DDevice9::CreateAdditionalSwapChain([In] D3DPRESENT_PARAMETERS* pPresentationParameters,[In] IDirect3DSwapChain9** pSwapChain)</unmanaged>
  29294. </member>
  29295. <member name="M:SharpDX.Direct3D9.SwapChain.GetBackBuffer(System.Int32)">
  29296. <summary>
  29297. Retrieves a back buffer from the swap chain of the device.
  29298. </summary>
  29299. <param name="iBackBuffer">The i back buffer.</param>
  29300. <returns>The back buffer from the swap chain of the device.</returns>
  29301. <unmanaged>HRESULT IDirect3DSwapChain9::GetBackBuffer([In] unsigned int iBackBuffer,[In] D3DBACKBUFFER_TYPE Type,[Out] IDirect3DSurface9** ppBackBuffer)</unmanaged>
  29302. </member>
  29303. <member name="M:SharpDX.Direct3D9.SwapChain.Present(SharpDX.Direct3D9.Present)">
  29304. <summary>
  29305. Presents the contents of the next buffer in the sequence of back buffers to the screen.
  29306. </summary>
  29307. <param name="presentFlags">The present flags.</param>
  29308. <unmanaged>HRESULT IDirect3DSwapChain9::Present([In, Optional] const void* pSourceRect,[InOut, Optional] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const RGNDATA* pDirtyRegion,[In] unsigned int dwFlags)</unmanaged>
  29309. </member>
  29310. <member name="M:SharpDX.Direct3D9.SwapChain.Present(SharpDX.Direct3D9.Present,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle)">
  29311. <summary>
  29312. Presents the contents of the next buffer in the sequence of back buffers to the screen.
  29313. </summary>
  29314. <param name="presentFlags">The present flags.</param>
  29315. <param name="sourceRectangle">The area of the back buffer that should be presented.</param>
  29316. <param name="destinationRectangle">The area of the front buffer that should receive the result of the presentation.</param>
  29317. <unmanaged>HRESULT IDirect3DSwapChain9::Present([In, Optional] const void* pSourceRect,[InOut, Optional] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const RGNDATA* pDirtyRegion,[In] unsigned int dwFlags)</unmanaged>
  29318. </member>
  29319. <member name="M:SharpDX.Direct3D9.SwapChain.Present(SharpDX.Direct3D9.Present,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,System.IntPtr)">
  29320. <summary>
  29321. Presents the contents of the next buffer in the sequence of back buffers to the screen.
  29322. </summary>
  29323. <param name="presentFlags">The present flags.</param>
  29324. <param name="sourceRectangle">The area of the back buffer that should be presented.</param>
  29325. <param name="destinationRectangle">The area of the front buffer that should receive the result of the presentation.</param>
  29326. <param name="windowOverride">The destination window whose client area is taken as the target for this presentation.</param>
  29327. <unmanaged>HRESULT IDirect3DSwapChain9::Present([In, Optional] const void* pSourceRect,[InOut, Optional] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const RGNDATA* pDirtyRegion,[In] unsigned int dwFlags)</unmanaged>
  29328. </member>
  29329. <member name="M:SharpDX.Direct3D9.SwapChain.Present(SharpDX.Direct3D9.Present,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Mathematics.Interop.RawRectangle,System.IntPtr,System.IntPtr)">
  29330. <summary>
  29331. Presents the contents of the next buffer in the sequence of back buffers to the screen.
  29332. </summary>
  29333. <param name="flags">The flags.</param>
  29334. <param name="sourceRectangle">The area of the back buffer that should be presented.</param>
  29335. <param name="destinationRectangle">The area of the front buffer that should receive the result of the presentation.</param>
  29336. <param name="windowOverride">The destination window whose client area is taken as the target for this presentation.</param>
  29337. <param name="dirtyRegionRGNData">Specifies a region on the back buffer that contains the minimal amount of pixels that need to be updated.</param>
  29338. <unmanaged>HRESULT IDirect3DSwapChain9::Present([In, Optional] const void* pSourceRect,[InOut, Optional] const void* pDestRect,[In] HWND hDestWindowOverride,[In] const RGNDATA* pDirtyRegion,[In] unsigned int dwFlags)</unmanaged>
  29339. </member>
  29340. <member name="T:SharpDX.Direct3D9.SwapChain9Ex">
  29341. <summary>
  29342. <p>Applications use the methods of the <strong><see cref="T:SharpDX.Direct3D9.SwapChain9Ex" /></strong> interface to manipulate a swap chain.</p>
  29343. </summary>
  29344. <remarks>
  29345. <p>There is always at least one swap chain for each device, known as the implicit swap chain. However, an additional swap chain for rendering multiple views from the same device can be created by calling the <strong>CreateAdditionalSwapChain</strong> method.</p><p>This interface, like all COM interfaces, inherits from the <strong><see cref="T:SharpDX.ComObject" /></strong> interface.</p><p>The <strong>LPDIRECT3DSWAPCHAIN9</strong> and <strong>PDIRECT3DSWAPCHAIN9</strong> types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.SwapChain" /></strong> interface.</p><p><strong><see cref="T:SharpDX.Direct3D9.SwapChain9Ex" /></strong> objects are returned as a reference to an <strong><see cref="T:SharpDX.Direct3D9.SwapChain" /></strong> object when <strong>GetSwapChain</strong> is called on an instance of <strong><see cref="T:SharpDX.Direct3D9.DeviceEx" /></strong>.
  29346. The <strong><see cref="T:SharpDX.Direct3D9.SwapChain9Ex" /></strong> interface is obtained by calling <strong>QueryInterface</strong> on the instance of <strong><see cref="T:SharpDX.Direct3D9.SwapChain" /></strong> that was returned by <strong>GetSwapChain</strong>.</p>
  29347. </remarks>
  29348. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9Ex']/*" />
  29349. <msdn-id>bb172503</msdn-id>
  29350. <unmanaged>IDirect3DSwapChain9Ex</unmanaged>
  29351. <unmanaged-short>IDirect3DSwapChain9Ex</unmanaged-short>
  29352. </member>
  29353. <member name="M:SharpDX.Direct3D9.SwapChain9Ex.#ctor(System.IntPtr)">
  29354. <summary>
  29355. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.SwapChain9Ex"/> class.
  29356. </summary>
  29357. <param name="nativePtr">The native pointer.</param>
  29358. </member>
  29359. <member name="M:SharpDX.Direct3D9.SwapChain9Ex.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.SwapChain9Ex">
  29360. <summary>
  29361. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.SwapChain9Ex"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  29362. </summary>
  29363. <param name="nativePointer">The native pointer.</param>
  29364. <returns>
  29365. The result of the conversion.
  29366. </returns>
  29367. </member>
  29368. <member name="P:SharpDX.Direct3D9.SwapChain9Ex.LastPresentCount">
  29369. <summary>
  29370. <p>Returns the number of times the swapchain has been processed.</p>
  29371. </summary>
  29372. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9Ex::GetLastPresentCount']/*" />
  29373. <msdn-id>bb205900</msdn-id>
  29374. <unmanaged>GetLastPresentCount</unmanaged>
  29375. <unmanaged-short>GetLastPresentCount</unmanaged-short>
  29376. <unmanaged>HRESULT IDirect3DSwapChain9Ex::GetLastPresentCount([Out] unsigned int* pLastPresentCount)</unmanaged>
  29377. </member>
  29378. <member name="P:SharpDX.Direct3D9.SwapChain9Ex.PresentStats">
  29379. <summary>
  29380. No documentation.
  29381. </summary>
  29382. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9Ex::GetPresentStats']/*" />
  29383. <unmanaged>GetPresentStats</unmanaged>
  29384. <unmanaged-short>GetPresentStats</unmanaged-short>
  29385. <unmanaged>HRESULT IDirect3DSwapChain9Ex::GetPresentStats([Out] D3DPRESENTSTATS* pPresentationStatistics)</unmanaged>
  29386. </member>
  29387. <member name="M:SharpDX.Direct3D9.SwapChain9Ex.GetLastPresentCount(System.Int32@)">
  29388. <summary>
  29389. <p>Returns the number of times the swapchain has been processed.</p>
  29390. </summary>
  29391. <param name="lastPresentCountRef"><dd> <p>Pointer to a UINT to be filled with the number of times the <strong><see cref="M:SharpDX.Direct3D9.DeviceEx.PresentEx(SharpDX.Direct3D9.Present)" /></strong> method has been called. The count will also be incremented by calling some other APIs such as <strong><see cref="M:SharpDX.Direct3D9.Device.SetDialogBoxMode(SharpDX.Mathematics.Interop.RawBool)" /></strong>.</p> </dd></param>
  29392. <returns><p><see cref="F:SharpDX.Result.Ok" /> the method was successful.</p></returns>
  29393. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9Ex::GetLastPresentCount']/*" />
  29394. <msdn-id>bb205900</msdn-id>
  29395. <unmanaged>HRESULT IDirect3DSwapChain9Ex::GetLastPresentCount([Out] unsigned int* pLastPresentCount)</unmanaged>
  29396. <unmanaged-short>IDirect3DSwapChain9Ex::GetLastPresentCount</unmanaged-short>
  29397. </member>
  29398. <member name="M:SharpDX.Direct3D9.SwapChain9Ex.GetPresentStats(SharpDX.Direct3D9.PresentationStatistics@)">
  29399. <summary>
  29400. No documentation.
  29401. </summary>
  29402. <param name="presentationStatisticsRef">No documentation.</param>
  29403. <returns>No documentation.</returns>
  29404. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9Ex::GetPresentStats']/*" />
  29405. <unmanaged>HRESULT IDirect3DSwapChain9Ex::GetPresentStats([Out] D3DPRESENTSTATS* pPresentationStatistics)</unmanaged>
  29406. <unmanaged-short>IDirect3DSwapChain9Ex::GetPresentStats</unmanaged-short>
  29407. </member>
  29408. <member name="M:SharpDX.Direct3D9.SwapChain9Ex.GetDisplayModeEx(SharpDX.Direct3D9.DisplayModeEx@,SharpDX.Direct3D9.DisplayRotation@)">
  29409. <summary>
  29410. <p>Retrieves the display mode's spatial resolution, color resolution, refresh frequency, and rotation settings.</p>
  29411. </summary>
  29412. <param name="modeRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.DisplayModeEx" /></strong> structure containing data about the display mode of the adapter. As opposed to the display mode of the device, which may not be active if the device does not own full-screen mode. </p> </dd></param>
  29413. <param name="rotationRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.DisplayRotation" /></strong> indicating the type of screen rotation the application will do. The value returned through this reference is important when the <see cref="F:SharpDX.Direct3D9.PresentFlags.NoAutoRotate" /> flag is used; otherwise, it can be set to <strong><c>null</c></strong>.</p> </dd></param>
  29414. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  29415. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DSwapChain9Ex::GetDisplayModeEx']/*" />
  29416. <msdn-id>bb509715</msdn-id>
  29417. <unmanaged>HRESULT IDirect3DSwapChain9Ex::GetDisplayModeEx([Out] D3DDISPLAYMODEEX* pMode,[Out] D3DDISPLAYROTATION* pRotation)</unmanaged>
  29418. <unmanaged-short>IDirect3DSwapChain9Ex::GetDisplayModeEx</unmanaged-short>
  29419. </member>
  29420. <member name="T:SharpDX.Direct3D9.Texture">
  29421. <summary>
  29422. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.Texture" /> interface to manipulate a texture resource.</p>
  29423. </summary>
  29424. <remarks>
  29425. <p>The <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface can be obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.Device.CreateTexture(System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Texture,System.IntPtr)" /></strong> method or one of the <see cref="M:SharpDX.Direct3D9.D3DX9.CreateTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Texture@)" /><em>xxx</em> functions.</p><p>This interface inherits additional functionality from the <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface.</p><p>This interface, like all COM interfaces, inherits from the <strong><see cref="T:SharpDX.ComObject" /></strong> interface.</p><p>The LPDIRECT3DTEXTURE9 and PDIRECT3DTEXTURE9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.Texture" /></strong> interface. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.Texture" /> *LPDIRECT3DTEXTURE9, *PDIRECT3DTEXTURE9;
  29426. </pre>
  29427. </remarks>
  29428. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DTexture9']/*" />
  29429. <msdn-id>bb205909</msdn-id>
  29430. <unmanaged>IDirect3DTexture9</unmanaged>
  29431. <unmanaged-short>IDirect3DTexture9</unmanaged-short>
  29432. </member>
  29433. <member name="M:SharpDX.Direct3D9.Texture.#ctor(System.IntPtr)">
  29434. <summary>
  29435. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Texture"/> class.
  29436. </summary>
  29437. <param name="nativePtr">The native pointer.</param>
  29438. </member>
  29439. <member name="M:SharpDX.Direct3D9.Texture.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Texture">
  29440. <summary>
  29441. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Texture"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  29442. </summary>
  29443. <param name="nativePointer">The native pointer.</param>
  29444. <returns>
  29445. The result of the conversion.
  29446. </returns>
  29447. </member>
  29448. <member name="M:SharpDX.Direct3D9.Texture.GetLevelDescription(System.Int32)">
  29449. <summary>
  29450. <p>Retrieves a level description of a texture resource.</p>
  29451. </summary>
  29452. <param name="level"><dd> <p>Identifies a level of the texture resource. This method returns a surface description for the level specified by this parameter. </p> </dd></param>
  29453. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.SurfaceDescription" /></strong> structure, describing the returned level. </p> </dd></returns>
  29454. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DTexture9::GetLevelDesc']/*" />
  29455. <msdn-id>bb205911</msdn-id>
  29456. <unmanaged>HRESULT IDirect3DTexture9::GetLevelDesc([In] unsigned int Level,[Out] D3DSURFACE_DESC* pDesc)</unmanaged>
  29457. <unmanaged-short>IDirect3DTexture9::GetLevelDesc</unmanaged-short>
  29458. </member>
  29459. <member name="M:SharpDX.Direct3D9.Texture.GetSurfaceLevel(System.Int32)">
  29460. <summary>
  29461. <p>Retrieves the specified texture surface level.</p>
  29462. </summary>
  29463. <param name="level"><dd> <p>Identifies a level of the texture resource. This method returns a surface for the level specified by this parameter. The top-level surface is denoted by 0. </p> </dd></param>
  29464. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface, representing the returned surface. </p> </dd></returns>
  29465. <remarks>
  29466. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Surface" /></strong> interface results in a memory leak.</p>
  29467. </remarks>
  29468. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DTexture9::GetSurfaceLevel']/*" />
  29469. <msdn-id>bb205912</msdn-id>
  29470. <unmanaged>HRESULT IDirect3DTexture9::GetSurfaceLevel([In] unsigned int Level,[Out] IDirect3DSurface9** ppSurfaceLevel)</unmanaged>
  29471. <unmanaged-short>IDirect3DTexture9::GetSurfaceLevel</unmanaged-short>
  29472. </member>
  29473. <member name="M:SharpDX.Direct3D9.Texture.LockRectangle(System.Int32,SharpDX.Direct3D9.LockedRectangle@,System.IntPtr,SharpDX.Direct3D9.LockFlags)">
  29474. <summary>
  29475. <p>Locks a rectangle on a texture resource.</p>
  29476. </summary>
  29477. <param name="level"><dd> <p>Specifies the level of the texture resource to lock. </p> </dd></param>
  29478. <param name="lockedRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.LockedRectangle" /></strong> structure, describing the locked region. </p> </dd></param>
  29479. <param name="rectRef"><dd> <p>Pointer to a rectangle to lock. Specified by a reference to a <see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /> structure. Specifying <strong><c>null</c></strong> for this parameter expands the dirty region to cover the entire texture. </p> </dd></param>
  29480. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> </ul> <p> You may not specify a subrect when using <see cref="F:SharpDX.Direct3D9.LockFlags.Discard" />. For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />. </p> </dd></param>
  29481. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  29482. <remarks>
  29483. <p>Textures created with <see cref="F:SharpDX.Direct3D9.Pool.Default" /> are not lockable. Textures created in video memory are lockable when created with <strong>USAGE_DYNAMIC</strong>.</p><p>For performance reasons, dirty regions are recorded only for level zero of a texture. Dirty regions are automatically recorded when <strong><see cref="M:SharpDX.Direct3D9.Texture.LockRectangle(System.Int32,SharpDX.Direct3D9.LockedRectangle@,System.IntPtr,SharpDX.Direct3D9.LockFlags)" /></strong> is called without <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" />. See <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong> for more information.</p><p>The only lockable format for a depth-stencil texture is D3DLOCK_D16_LOCKABLE.</p><p>Video memory textures cannot be locked, but must be modified by calling <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong>. There are exceptions for some proprietary driver pixel formats that Direct3D 9 does not recognize. These can be locked.</p><p>This method cannot retrieve data from a texture resource created with <strong><see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /></strong> because such a texture must be assigned to <see cref="F:SharpDX.Direct3D9.Pool.Default" /> memory and is therefore not lockable. In this case, use instead <strong><see cref="M:SharpDX.Direct3D9.Device.GetRenderTargetData(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong> to copy texture data from device memory to system memory.</p>
  29484. </remarks>
  29485. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DTexture9::LockRect']/*" />
  29486. <msdn-id>bb205913</msdn-id>
  29487. <unmanaged>HRESULT IDirect3DTexture9::LockRect([In] unsigned int Level,[Out] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  29488. <unmanaged-short>IDirect3DTexture9::LockRect</unmanaged-short>
  29489. </member>
  29490. <member name="M:SharpDX.Direct3D9.Texture.UnlockRectangle(System.Int32)">
  29491. <summary>
  29492. <p>Unlocks a rectangle on a texture resource.</p>
  29493. </summary>
  29494. <param name="level"><dd> <p>Specifies the level of the texture resource to unlock. </p> </dd></param>
  29495. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  29496. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DTexture9::UnlockRect']/*" />
  29497. <msdn-id>bb205914</msdn-id>
  29498. <unmanaged>HRESULT IDirect3DTexture9::UnlockRect([In] unsigned int Level)</unmanaged>
  29499. <unmanaged-short>IDirect3DTexture9::UnlockRect</unmanaged-short>
  29500. </member>
  29501. <member name="M:SharpDX.Direct3D9.Texture.AddDirtyRectangle(System.IntPtr)">
  29502. <summary>
  29503. <p>Adds a dirty region to a texture resource.</p>
  29504. </summary>
  29505. <param name="dirtyRectRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> structure, specifying the dirty region to add. Specifying <strong><c>null</c></strong> expands the dirty region to cover the entire texture. </p> </dd></param>
  29506. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  29507. <remarks>
  29508. <p>For performance reasons, dirty regions are only recorded for level zero of a texture. For sublevels, it is assumed that the corresponding (scaled) rectangle or box is also dirty. Dirty regions are automatically recorded when <strong><see cref="M:SharpDX.Direct3D9.Texture.LockRectangle(System.Int32,SharpDX.Direct3D9.LockedRectangle@,System.IntPtr,SharpDX.Direct3D9.LockFlags)" /></strong> is called without <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" />. The destination surface of <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateSurface(SharpDX.Direct3D9.Surface,SharpDX.Direct3D9.Surface)" /></strong> is also marked dirty automatically.</p><p>Using <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> and explicitly specifying dirty regions can be used to increase the efficiency of <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong>. Using this method, applications can optimize what subset of a resource is copied by specifying dirty regions on the resource. However, the dirty regions may be expanded to optimize alignment.</p>
  29509. </remarks>
  29510. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DTexture9::AddDirtyRect']/*" />
  29511. <msdn-id>bb205910</msdn-id>
  29512. <unmanaged>HRESULT IDirect3DTexture9::AddDirtyRect([In] const void* pDirtyRect)</unmanaged>
  29513. <unmanaged-short>IDirect3DTexture9::AddDirtyRect</unmanaged-short>
  29514. </member>
  29515. <member name="M:SharpDX.Direct3D9.Texture.#ctor(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool)">
  29516. <summary>
  29517. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Texture"/> class.
  29518. </summary>
  29519. <param name="device">The device.</param>
  29520. <param name="width">The width.</param>
  29521. <param name="height">The height.</param>
  29522. <param name="levelCount">The level count.</param>
  29523. <param name="usage">The usage.</param>
  29524. <param name="format">The format.</param>
  29525. <param name="pool">The pool.</param>
  29526. <unmanaged>HRESULT IDirect3DDevice9::CreateTexture([In] unsigned int Width,[In] unsigned int Height,[In] unsigned int Levels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DTexture9** ppTexture,[In] void** pSharedHandle)</unmanaged>
  29527. </member>
  29528. <member name="M:SharpDX.Direct3D9.Texture.#ctor(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.IntPtr@)">
  29529. <summary>
  29530. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Texture"/> class.
  29531. </summary>
  29532. <param name="device">The device.</param>
  29533. <param name="width">The width.</param>
  29534. <param name="height">The height.</param>
  29535. <param name="levelCount">The level count.</param>
  29536. <param name="usage">The usage.</param>
  29537. <param name="format">The format.</param>
  29538. <param name="pool">The pool.</param>
  29539. <param name="sharedHandle">The shared handle.</param>
  29540. <unmanaged>HRESULT IDirect3DDevice9::CreateTexture([In] unsigned int Width,[In] unsigned int Height,[In] unsigned int Levels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DTexture9** ppTexture,[In] void** pSharedHandle)</unmanaged>
  29541. </member>
  29542. <member name="M:SharpDX.Direct3D9.Texture.CheckRequirements(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool)">
  29543. <summary>
  29544. Checks texture-creation parameters.
  29545. </summary>
  29546. <param name="device">Device associated with the texture.</param>
  29547. <param name="width">The width.</param>
  29548. <param name="height">The height.</param>
  29549. <param name="mipLevelCount">Requested number of mipmap levels for the texture.</param>
  29550. <param name="usage">The requested usage for the texture.</param>
  29551. <param name="format">Requested format for the texture.</param>
  29552. <param name="pool">Memory class where the resource will be placed.</param>
  29553. <returns>
  29554. A value type containing the proposed values to pass to the texture creation functions.
  29555. </returns>
  29556. <unmanaged>HRESULT D3DXCheckTextureRequirements([In] IDirect3DDevice9* pDevice,[InOut] unsigned int* pWidth,[InOut] unsigned int* pHeight,[InOut] unsigned int* pNumMipLevels,[In] unsigned int Usage,[InOut] D3DFORMAT* pFormat,[In] D3DPOOL Pool)</unmanaged>
  29557. </member>
  29558. <member name="M:SharpDX.Direct3D9.Texture.ComputeNormalMap(SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.NormalMapFlags,SharpDX.Direct3D9.Channel,System.Single)">
  29559. <summary>
  29560. Computes the normal map.
  29561. </summary>
  29562. <param name="texture">The texture.</param>
  29563. <param name="sourceTexture">The source texture.</param>
  29564. <param name="flags">The flags.</param>
  29565. <param name="channel">The channel.</param>
  29566. <param name="amplitude">The amplitude.</param>
  29567. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  29568. <unmanaged>HRESULT D3DXComputeNormalMap([In] IDirect3DTexture9* pTexture,[In] IDirect3DTexture9* pSrcTexture,[Out, Buffer] const PALETTEENTRY* pSrcPalette,[In] unsigned int Flags,[In] unsigned int Channel,[In] float Amplitude)</unmanaged>
  29569. </member>
  29570. <member name="M:SharpDX.Direct3D9.Texture.ComputeNormalMap(SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.Texture,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.NormalMapFlags,SharpDX.Direct3D9.Channel,System.Single)">
  29571. <summary>
  29572. Computes the normal map.
  29573. </summary>
  29574. <param name="texture">The texture.</param>
  29575. <param name="sourceTexture">The source texture.</param>
  29576. <param name="palette">The palette.</param>
  29577. <param name="flags">The flags.</param>
  29578. <param name="channel">The channel.</param>
  29579. <param name="amplitude">The amplitude.</param>
  29580. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  29581. <unmanaged>HRESULT D3DXComputeNormalMap([In] IDirect3DTexture9* pTexture,[In] IDirect3DTexture9* pSrcTexture,[Out, Buffer] const PALETTEENTRY* pSrcPalette,[In] unsigned int Flags,[In] unsigned int Channel,[In] float Amplitude)</unmanaged>
  29582. </member>
  29583. <member name="M:SharpDX.Direct3D9.Texture.Fill(SharpDX.Direct3D9.Fill2DCallback)">
  29584. <summary>
  29585. Uses a user-provided function to fill each texel of each mip level of a given texture.
  29586. </summary>
  29587. <param name="callback">A function that is used to fill the texture.</param>
  29588. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  29589. <unmanaged>HRESULT D3DXFillTexture([In] IDirect3DTexture9* pTexture,[In] __function__stdcall* pFunction,[In] void* pData)</unmanaged>
  29590. </member>
  29591. <member name="M:SharpDX.Direct3D9.Texture.Fill(SharpDX.Direct3D9.TextureShader)">
  29592. <summary>
  29593. Uses a compiled high-level shader language (HLSL) function to fill each texel of each mipmap level of a texture.
  29594. </summary>
  29595. <param name="shader">A texture shader object that is used to fill the texture.</param>
  29596. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  29597. <unmanaged>HRESULT D3DXFillTextureTX([In] IDirect3DTexture9* pTexture,[In] ID3DXTextureShader* pTextureShader)</unmanaged>
  29598. </member>
  29599. <member name="M:SharpDX.Direct3D9.Texture.LockRectangle(System.Int32,SharpDX.Direct3D9.LockFlags)">
  29600. <summary>
  29601. Locks a rectangle on a texture resource.
  29602. </summary>
  29603. <param name="level">The level.</param>
  29604. <param name="flags">The flags.</param>
  29605. <returns>
  29606. A <see cref="T:SharpDX.DataRectangle"/> describing the region locked.
  29607. </returns>
  29608. <unmanaged>HRESULT IDirect3DTexture9::LockRect([In] unsigned int Level,[Out] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  29609. </member>
  29610. <member name="M:SharpDX.Direct3D9.Texture.LockRectangle(System.Int32,SharpDX.Direct3D9.LockFlags,SharpDX.DataStream@)">
  29611. <summary>
  29612. Locks a rectangle on a texture resource.
  29613. </summary>
  29614. <param name="level">The level.</param>
  29615. <param name="flags">The flags.</param>
  29616. <param name="stream">The stream pointing to the locked region.</param>
  29617. <returns>
  29618. A <see cref="T:SharpDX.DataRectangle"/> describing the region locked.
  29619. </returns>
  29620. <unmanaged>HRESULT IDirect3DTexture9::LockRect([In] unsigned int Level,[Out] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  29621. </member>
  29622. <member name="M:SharpDX.Direct3D9.Texture.LockRectangle(System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.LockFlags)">
  29623. <summary>
  29624. Locks a rectangle on a texture resource.
  29625. </summary>
  29626. <param name="level">The level.</param>
  29627. <param name="rectangle">The rectangle.</param>
  29628. <param name="flags">The flags.</param>
  29629. <returns>
  29630. A <see cref="T:SharpDX.DataRectangle"/> describing the region locked.
  29631. </returns>
  29632. <unmanaged>HRESULT IDirect3DTexture9::LockRect([In] D3DCUBEMAP_FACES FaceType,[In] unsigned int Level,[In] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  29633. </member>
  29634. <member name="M:SharpDX.Direct3D9.Texture.LockRectangle(System.Int32,SharpDX.Mathematics.Interop.RawRectangle,SharpDX.Direct3D9.LockFlags,SharpDX.DataStream@)">
  29635. <summary>
  29636. Locks a rectangle on a texture resource.
  29637. </summary>
  29638. <param name="level">The level.</param>
  29639. <param name="rectangle">The rectangle.</param>
  29640. <param name="flags">The flags.</param>
  29641. <param name="stream">The stream pointing to the locked region.</param>
  29642. <returns>
  29643. A <see cref="T:SharpDX.DataRectangle"/> describing the region locked.
  29644. </returns>
  29645. <unmanaged>HRESULT IDirect3DTexture9::LockRect([In] D3DCUBEMAP_FACES FaceType,[In] unsigned int Level,[In] D3DLOCKED_RECT* pLockedRect,[In] const void* pRect,[In] D3DLOCK Flags)</unmanaged>
  29646. </member>
  29647. <member name="M:SharpDX.Direct3D9.Texture.AddDirtyRectangle">
  29648. <summary>
  29649. Adds a dirty region to a texture resource.
  29650. </summary>
  29651. <returns>
  29652. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  29653. </returns>
  29654. <unmanaged>HRESULT IDirect3DTexture9::AddDirtyRect([In] const void* pDirtyRect)</unmanaged>
  29655. </member>
  29656. <member name="M:SharpDX.Direct3D9.Texture.AddDirtyRectangle(SharpDX.Mathematics.Interop.RawRectangle)">
  29657. <summary>
  29658. Adds a dirty region to a texture resource.
  29659. </summary>
  29660. <param name="dirtyRectRef">The dirty rect ref.</param>
  29661. <returns>
  29662. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  29663. </returns>
  29664. <unmanaged>HRESULT IDirect3DTexture9::AddDirtyRect([In] const void* pDirtyRect)</unmanaged>
  29665. </member>
  29666. <member name="M:SharpDX.Direct3D9.Texture.FromFile(SharpDX.Direct3D9.Device,System.String)">
  29667. <summary>
  29668. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a file
  29669. </summary>
  29670. <param name="device">The device.</param>
  29671. <param name="filename">The filename.</param>
  29672. <returns>
  29673. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29674. </returns>
  29675. <unmanaged>HRESULT D3DXCreateTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29676. </member>
  29677. <member name="M:SharpDX.Direct3D9.Texture.FromFile(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool)">
  29678. <summary>
  29679. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a file
  29680. </summary>
  29681. <param name="device">The device.</param>
  29682. <param name="filename">The filename.</param>
  29683. <param name="usage">The usage.</param>
  29684. <param name="pool">The pool.</param>
  29685. <returns>
  29686. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29687. </returns>
  29688. <unmanaged>HRESULT D3DXCreateTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29689. </member>
  29690. <member name="M:SharpDX.Direct3D9.Texture.FromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  29691. <summary>
  29692. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a file
  29693. </summary>
  29694. <param name="device">The device.</param>
  29695. <param name="filename">The filename.</param>
  29696. <param name="width">The width.</param>
  29697. <param name="height">The height.</param>
  29698. <param name="levelCount">The level count.</param>
  29699. <param name="usage">The usage.</param>
  29700. <param name="format">The format.</param>
  29701. <param name="pool">The pool.</param>
  29702. <param name="filter">The filter.</param>
  29703. <param name="mipFilter">The mip filter.</param>
  29704. <param name="colorKey">The color key.</param>
  29705. <returns>
  29706. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29707. </returns>
  29708. <unmanaged>HRESULT D3DXCreateTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29709. </member>
  29710. <member name="M:SharpDX.Direct3D9.Texture.FromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@)">
  29711. <summary>
  29712. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a file
  29713. </summary>
  29714. <param name="device">The device.</param>
  29715. <param name="filename">The filename.</param>
  29716. <param name="width">The width.</param>
  29717. <param name="height">The height.</param>
  29718. <param name="levelCount">The level count.</param>
  29719. <param name="usage">The usage.</param>
  29720. <param name="format">The format.</param>
  29721. <param name="pool">The pool.</param>
  29722. <param name="filter">The filter.</param>
  29723. <param name="mipFilter">The mip filter.</param>
  29724. <param name="colorKey">The color key.</param>
  29725. <param name="imageInformation">The image information.</param>
  29726. <returns>
  29727. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29728. </returns>
  29729. <unmanaged>HRESULT D3DXCreateTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29730. </member>
  29731. <member name="M:SharpDX.Direct3D9.Texture.FromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry[]@)">
  29732. <summary>
  29733. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a file
  29734. </summary>
  29735. <param name="device">The device.</param>
  29736. <param name="filename">The filename.</param>
  29737. <param name="width">The width.</param>
  29738. <param name="height">The height.</param>
  29739. <param name="levelCount">The level count.</param>
  29740. <param name="usage">The usage.</param>
  29741. <param name="format">The format.</param>
  29742. <param name="pool">The pool.</param>
  29743. <param name="filter">The filter.</param>
  29744. <param name="mipFilter">The mip filter.</param>
  29745. <param name="colorKey">The color key.</param>
  29746. <param name="imageInformation">The image information.</param>
  29747. <param name="palette">The palette.</param>
  29748. <returns>
  29749. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29750. </returns>
  29751. <unmanaged>HRESULT D3DXCreateTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29752. </member>
  29753. <member name="M:SharpDX.Direct3D9.Texture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[])">
  29754. <summary>
  29755. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a memory buffer.
  29756. </summary>
  29757. <param name="device">The device.</param>
  29758. <param name="buffer">The buffer.</param>
  29759. <returns>
  29760. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29761. </returns>
  29762. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemory([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29763. </member>
  29764. <member name="M:SharpDX.Direct3D9.Texture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool)">
  29765. <summary>
  29766. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a memory buffer.
  29767. </summary>
  29768. <param name="device">The device.</param>
  29769. <param name="buffer">The buffer.</param>
  29770. <param name="usage">The usage.</param>
  29771. <param name="pool">The pool.</param>
  29772. <returns>
  29773. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29774. </returns>
  29775. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29776. </member>
  29777. <member name="M:SharpDX.Direct3D9.Texture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  29778. <summary>
  29779. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a memory buffer.
  29780. </summary>
  29781. <param name="device">The device.</param>
  29782. <param name="buffer">The buffer.</param>
  29783. <param name="width">The width.</param>
  29784. <param name="height">The height.</param>
  29785. <param name="levelCount">The level count.</param>
  29786. <param name="usage">The usage.</param>
  29787. <param name="format">The format.</param>
  29788. <param name="pool">The pool.</param>
  29789. <param name="filter">The filter.</param>
  29790. <param name="mipFilter">The mip filter.</param>
  29791. <param name="colorKey">The color key.</param>
  29792. <returns>
  29793. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29794. </returns>
  29795. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29796. </member>
  29797. <member name="M:SharpDX.Direct3D9.Texture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@)">
  29798. <summary>
  29799. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a memory buffer.
  29800. </summary>
  29801. <param name="device">The device.</param>
  29802. <param name="buffer">The buffer.</param>
  29803. <param name="width">The width.</param>
  29804. <param name="height">The height.</param>
  29805. <param name="levelCount">The level count.</param>
  29806. <param name="usage">The usage.</param>
  29807. <param name="format">The format.</param>
  29808. <param name="pool">The pool.</param>
  29809. <param name="filter">The filter.</param>
  29810. <param name="mipFilter">The mip filter.</param>
  29811. <param name="colorKey">The color key.</param>
  29812. <param name="imageInformation">The image information.</param>
  29813. <returns>
  29814. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29815. </returns>
  29816. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29817. </member>
  29818. <member name="M:SharpDX.Direct3D9.Texture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry[]@)">
  29819. <summary>
  29820. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a memory buffer.
  29821. </summary>
  29822. <param name="device">The device.</param>
  29823. <param name="buffer">The buffer.</param>
  29824. <param name="width">The width.</param>
  29825. <param name="height">The height.</param>
  29826. <param name="levelCount">The level count.</param>
  29827. <param name="usage">The usage.</param>
  29828. <param name="format">The format.</param>
  29829. <param name="pool">The pool.</param>
  29830. <param name="filter">The filter.</param>
  29831. <param name="mipFilter">The mip filter.</param>
  29832. <param name="colorKey">The color key.</param>
  29833. <param name="imageInformation">The image information.</param>
  29834. <param name="palette">The palette.</param>
  29835. <returns>
  29836. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29837. </returns>
  29838. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29839. </member>
  29840. <member name="M:SharpDX.Direct3D9.Texture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream)">
  29841. <summary>
  29842. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a stream.
  29843. </summary>
  29844. <param name="device">The device.</param>
  29845. <param name="stream">The stream.</param>
  29846. <returns>A <see cref="T:SharpDX.Direct3D9.Texture"/></returns>
  29847. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemory([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29848. </member>
  29849. <member name="M:SharpDX.Direct3D9.Texture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool)">
  29850. <summary>
  29851. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a stream.
  29852. </summary>
  29853. <param name="device">The device.</param>
  29854. <param name="stream">The stream.</param>
  29855. <param name="usage">The usage.</param>
  29856. <param name="pool">The pool.</param>
  29857. <returns>
  29858. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29859. </returns>
  29860. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29861. </member>
  29862. <member name="M:SharpDX.Direct3D9.Texture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  29863. <summary>
  29864. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a stream.
  29865. </summary>
  29866. <param name="device">The device.</param>
  29867. <param name="stream">The stream.</param>
  29868. <param name="width">The width.</param>
  29869. <param name="height">The height.</param>
  29870. <param name="levelCount">The level count.</param>
  29871. <param name="usage">The usage.</param>
  29872. <param name="format">The format.</param>
  29873. <param name="pool">The pool.</param>
  29874. <param name="filter">The filter.</param>
  29875. <param name="mipFilter">The mip filter.</param>
  29876. <param name="colorKey">The color key.</param>
  29877. <returns>
  29878. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29879. </returns>
  29880. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29881. </member>
  29882. <member name="M:SharpDX.Direct3D9.Texture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  29883. <summary>
  29884. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a stream.
  29885. </summary>
  29886. <param name="device">The device.</param>
  29887. <param name="stream">The stream.</param>
  29888. <param name="sizeBytes">The size bytes.</param>
  29889. <param name="width">The width.</param>
  29890. <param name="height">The height.</param>
  29891. <param name="levelCount">The level count.</param>
  29892. <param name="usage">The usage.</param>
  29893. <param name="format">The format.</param>
  29894. <param name="pool">The pool.</param>
  29895. <param name="filter">The filter.</param>
  29896. <param name="mipFilter">The mip filter.</param>
  29897. <param name="colorKey">The color key.</param>
  29898. <returns>
  29899. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29900. </returns>
  29901. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29902. </member>
  29903. <member name="M:SharpDX.Direct3D9.Texture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@)">
  29904. <summary>
  29905. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a stream.
  29906. </summary>
  29907. <param name="device">The device.</param>
  29908. <param name="stream">The stream.</param>
  29909. <param name="sizeBytes">The size bytes.</param>
  29910. <param name="width">The width.</param>
  29911. <param name="height">The height</param>
  29912. <param name="levelCount">The level count.</param>
  29913. <param name="usage">The usage.</param>
  29914. <param name="format">The format.</param>
  29915. <param name="pool">The pool.</param>
  29916. <param name="filter">The filter.</param>
  29917. <param name="mipFilter">The mip filter.</param>
  29918. <param name="colorKey">The color key.</param>
  29919. <param name="imageInformation">The image information.</param>
  29920. <returns>
  29921. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29922. </returns>
  29923. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29924. </member>
  29925. <member name="M:SharpDX.Direct3D9.Texture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry[]@)">
  29926. <summary>
  29927. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a stream.
  29928. </summary>
  29929. <param name="device">The device.</param>
  29930. <param name="stream">The stream.</param>
  29931. <param name="sizeBytes">The size bytes.</param>
  29932. <param name="width">The width.</param>
  29933. <param name="height">The height.</param>
  29934. <param name="levelCount">The level count.</param>
  29935. <param name="usage">The usage.</param>
  29936. <param name="format">The format.</param>
  29937. <param name="pool">The pool.</param>
  29938. <param name="filter">The filter.</param>
  29939. <param name="mipFilter">The mip filter.</param>
  29940. <param name="colorKey">The color key.</param>
  29941. <param name="imageInformation">The image information.</param>
  29942. <param name="palette">The palette.</param>
  29943. <returns>
  29944. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29945. </returns>
  29946. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29947. </member>
  29948. <member name="M:SharpDX.Direct3D9.Texture.CreateFromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  29949. <summary>
  29950. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a stream.
  29951. </summary>
  29952. <param name="device">The device.</param>
  29953. <param name="buffer">The buffer.</param>
  29954. <param name="width">The width.</param>
  29955. <param name="height">The height.</param>
  29956. <param name="levelCount">The level count.</param>
  29957. <param name="usage">The usage.</param>
  29958. <param name="format">The format.</param>
  29959. <param name="pool">The pool.</param>
  29960. <param name="filter">The filter.</param>
  29961. <param name="mipFilter">The mip filter.</param>
  29962. <param name="colorKey">The color key.</param>
  29963. <param name="imageInformation">The image information.</param>
  29964. <param name="palette">The palette.</param>
  29965. <returns>
  29966. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  29967. </returns>
  29968. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29969. </member>
  29970. <member name="M:SharpDX.Direct3D9.Texture.CreateFromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  29971. <summary>
  29972. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a stream.
  29973. </summary>
  29974. <param name="device">The device.</param>
  29975. <param name="stream">The stream.</param>
  29976. <param name="sizeBytes">The size bytes.</param>
  29977. <param name="width">The width.</param>
  29978. <param name="height">The height</param>
  29979. <param name="levelCount">The level count.</param>
  29980. <param name="usage">The usage.</param>
  29981. <param name="format">The format.</param>
  29982. <param name="pool">The pool.</param>
  29983. <param name="filter">The filter.</param>
  29984. <param name="mipFilter">The mip filter.</param>
  29985. <param name="colorKey">The color key.</param>
  29986. <param name="imageInformation">The image information.</param>
  29987. <param name="palette">The palette.</param>
  29988. <returns>A <see cref="T:SharpDX.Direct3D9.Texture"/></returns>
  29989. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  29990. </member>
  29991. <member name="M:SharpDX.Direct3D9.Texture.CreateFromPointer(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  29992. <summary>
  29993. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a stream.
  29994. </summary>
  29995. <param name="device">The device.</param>
  29996. <param name="pointer">The pointer.</param>
  29997. <param name="sizeInBytes">The size in bytes.</param>
  29998. <param name="width">The width.</param>
  29999. <param name="height">The height.</param>
  30000. <param name="levelCount">The level count.</param>
  30001. <param name="usage">The usage.</param>
  30002. <param name="format">The format.</param>
  30003. <param name="pool">The pool.</param>
  30004. <param name="filter">The filter.</param>
  30005. <param name="mipFilter">The mip filter.</param>
  30006. <param name="colorKey">The color key.</param>
  30007. <param name="imageInformation">The image information.</param>
  30008. <param name="palette">The palette.</param>
  30009. <returns>
  30010. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  30011. </returns>
  30012. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  30013. </member>
  30014. <member name="M:SharpDX.Direct3D9.Texture.CreateFromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  30015. <summary>
  30016. Creates a <see cref="T:SharpDX.Direct3D9.Texture"/> from a stream.
  30017. </summary>
  30018. <param name="device">The device.</param>
  30019. <param name="fileName">Name of the file.</param>
  30020. <param name="width">The width.</param>
  30021. <param name="height">The height.</param>
  30022. <param name="levelCount">The level count.</param>
  30023. <param name="usage">The usage.</param>
  30024. <param name="format">The format.</param>
  30025. <param name="pool">The pool.</param>
  30026. <param name="filter">The filter.</param>
  30027. <param name="mipFilter">The mip filter.</param>
  30028. <param name="colorKey">The color key.</param>
  30029. <param name="imageInformation">The image information.</param>
  30030. <param name="palette">The palette.</param>
  30031. <returns>
  30032. A <see cref="T:SharpDX.Direct3D9.Texture"/>
  30033. </returns>
  30034. <unmanaged>HRESULT D3DXCreateTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DTexture9** ppTexture)</unmanaged>
  30035. </member>
  30036. <member name="T:SharpDX.Direct3D9.TextureShader">
  30037. <summary>
  30038. <p>The <see cref="T:SharpDX.Direct3D9.TextureShader" /> interface.</p>
  30039. </summary>
  30040. <remarks>
  30041. <p>The <strong><see cref="T:SharpDX.Direct3D9.TextureShader" /></strong> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.D3DX9.CreateTextureShader(System.Int32,SharpDX.Direct3D9.TextureShader@)" /></strong> function.</p><p>The <strong><see cref="T:SharpDX.Direct3D9.TextureShader" /></strong> interface, like all COM interfaces, inherits the <strong><see cref="T:SharpDX.ComObject" /></strong> interface.</p><p>The LPD3DXTEXTURESHADER type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.TextureShader" /></strong> interface. </p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.TextureShader" /> *LPD3DXTEXTURESHADER;
  30042. </pre>
  30043. </remarks>
  30044. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader']/*" />
  30045. <msdn-id>bb174276</msdn-id>
  30046. <unmanaged>ID3DXTextureShader</unmanaged>
  30047. <unmanaged-short>ID3DXTextureShader</unmanaged-short>
  30048. </member>
  30049. <member name="M:SharpDX.Direct3D9.TextureShader.#ctor(System.IntPtr)">
  30050. <summary>
  30051. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.TextureShader"/> class.
  30052. </summary>
  30053. <param name="nativePtr">The native pointer.</param>
  30054. </member>
  30055. <member name="M:SharpDX.Direct3D9.TextureShader.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.TextureShader">
  30056. <summary>
  30057. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.TextureShader"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  30058. </summary>
  30059. <param name="nativePointer">The native pointer.</param>
  30060. <returns>
  30061. The result of the conversion.
  30062. </returns>
  30063. </member>
  30064. <member name="P:SharpDX.Direct3D9.TextureShader.Function">
  30065. <summary>
  30066. <p>Gets a reference to the function DWORD stream.</p>
  30067. </summary>
  30068. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::GetFunction']/*" />
  30069. <msdn-id>bb174283</msdn-id>
  30070. <unmanaged>GetFunction</unmanaged>
  30071. <unmanaged-short>GetFunction</unmanaged-short>
  30072. <unmanaged>HRESULT ID3DXTextureShader::GetFunction([Out] ID3DXBuffer** ppFunction)</unmanaged>
  30073. </member>
  30074. <member name="P:SharpDX.Direct3D9.TextureShader.ConstantBuffer">
  30075. <summary>
  30076. <p>Get a reference to the constant table.</p>
  30077. </summary>
  30078. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::GetConstantBuffer']/*" />
  30079. <msdn-id>bb174278</msdn-id>
  30080. <unmanaged>GetConstantBuffer</unmanaged>
  30081. <unmanaged-short>GetConstantBuffer</unmanaged-short>
  30082. <unmanaged>HRESULT ID3DXTextureShader::GetConstantBuffer([Out] ID3DXBuffer** ppConstantBuffer)</unmanaged>
  30083. </member>
  30084. <member name="P:SharpDX.Direct3D9.TextureShader.Description">
  30085. <summary>
  30086. <p>Gets a description of the constant table.</p>
  30087. </summary>
  30088. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::GetDesc']/*" />
  30089. <msdn-id>bb174282</msdn-id>
  30090. <unmanaged>GetDesc</unmanaged>
  30091. <unmanaged-short>GetDesc</unmanaged-short>
  30092. <unmanaged>HRESULT ID3DXTextureShader::GetDesc([Out] D3DXCONSTANTTABLE_DESC* pDesc)</unmanaged>
  30093. </member>
  30094. <member name="M:SharpDX.Direct3D9.TextureShader.GetFunction(SharpDX.Direct3D.Blob@)">
  30095. <summary>
  30096. <p>Gets a reference to the function DWORD stream.</p>
  30097. </summary>
  30098. <param name="functionOut"><dd> <p>A reference to the function DWORD stream. See <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong>.</p> </dd></param>
  30099. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  30100. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::GetFunction']/*" />
  30101. <msdn-id>bb174283</msdn-id>
  30102. <unmanaged>HRESULT ID3DXTextureShader::GetFunction([Out] ID3DXBuffer** ppFunction)</unmanaged>
  30103. <unmanaged-short>ID3DXTextureShader::GetFunction</unmanaged-short>
  30104. </member>
  30105. <member name="M:SharpDX.Direct3D9.TextureShader.GetConstantBuffer(SharpDX.Direct3D.Blob@)">
  30106. <summary>
  30107. <p>Get a reference to the constant table.</p>
  30108. </summary>
  30109. <param name="constantBufferOut"><dd> <p>Pointer to an <strong><see cref="T:SharpDX.Direct3D.Blob" /></strong> interface, which contains the constants.</p> </dd></param>
  30110. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  30111. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::GetConstantBuffer']/*" />
  30112. <msdn-id>bb174278</msdn-id>
  30113. <unmanaged>HRESULT ID3DXTextureShader::GetConstantBuffer([Out] ID3DXBuffer** ppConstantBuffer)</unmanaged>
  30114. <unmanaged-short>ID3DXTextureShader::GetConstantBuffer</unmanaged-short>
  30115. </member>
  30116. <member name="M:SharpDX.Direct3D9.TextureShader.GetDescription(SharpDX.Direct3D9.ConstantTableDescription@)">
  30117. <summary>
  30118. <p>Gets a description of the constant table.</p>
  30119. </summary>
  30120. <param name="descRef"><dd> <p>The attributes of the constant table. See <strong><see cref="T:SharpDX.Direct3D9.ConstantTableDescription" /></strong>.</p> </dd></param>
  30121. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  30122. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::GetDesc']/*" />
  30123. <msdn-id>bb174282</msdn-id>
  30124. <unmanaged>HRESULT ID3DXTextureShader::GetDesc([Out] D3DXCONSTANTTABLE_DESC* pDesc)</unmanaged>
  30125. <unmanaged-short>ID3DXTextureShader::GetDesc</unmanaged-short>
  30126. </member>
  30127. <member name="M:SharpDX.Direct3D9.TextureShader.GetConstantDescription(SharpDX.Direct3D9.EffectHandle,SharpDX.Direct3D9.ConstantDescription[],System.Int32@)">
  30128. <summary>
  30129. <p>Gets a reference to the array of constants in the constant table.</p>
  30130. </summary>
  30131. <param name="effectHandle"><dd> <p>Unique identifier to a constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30132. <param name="constantDescRef"><dd> <p>Returns a reference to an array of descriptions. See <strong><see cref="T:SharpDX.Direct3D9.ConstantDescription" /></strong>.</p> </dd></param>
  30133. <param name="countRef"><dd> <p>The input supplied must be the maximum size of the array. The output is the number of elements that are filled in the array when the function returns.</p> </dd></param>
  30134. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, D3DXERR_INVALIDDATA.</p></returns>
  30135. <remarks>
  30136. <p>Samplers can appear more than once in a constant table, therefore, this method can return an array of descriptions each with a different register index.</p>
  30137. </remarks>
  30138. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::GetConstantDesc']/*" />
  30139. <msdn-id>bb174280</msdn-id>
  30140. <unmanaged>HRESULT ID3DXTextureShader::GetConstantDesc([In] D3DXHANDLE hConstant,[Out, Buffer] D3DXCONSTANT_DESC* pConstantDesc,[InOut] unsigned int* pCount)</unmanaged>
  30141. <unmanaged-short>ID3DXTextureShader::GetConstantDesc</unmanaged-short>
  30142. </member>
  30143. <member name="M:SharpDX.Direct3D9.TextureShader.GetConstant(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  30144. <summary>
  30145. <p>Gets a constant by looking up its index.</p>
  30146. </summary>
  30147. <param name="effectHandle"><dd> <p>A handle to the parent data structure. If the constant is a top-level parameter (there is no parent data structure), use <strong><c>null</c></strong>.</p> </dd></param>
  30148. <param name="index"><dd> <p>Zero-based index of the constant.</p> </dd></param>
  30149. <returns><p>Returns a unique identifier to the constant.</p></returns>
  30150. <remarks>
  30151. <p>To get a constant from an array of constants, use <strong><see cref="M:SharpDX.Direct3D9.TextureShader.GetConstantElement(SharpDX.Direct3D9.EffectHandle,System.Int32)" /></strong>.</p>
  30152. </remarks>
  30153. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::GetConstant']/*" />
  30154. <msdn-id>bb174277</msdn-id>
  30155. <unmanaged>D3DXHANDLE ID3DXTextureShader::GetConstant([In] D3DXHANDLE hConstant,[In] unsigned int Index)</unmanaged>
  30156. <unmanaged-short>ID3DXTextureShader::GetConstant</unmanaged-short>
  30157. </member>
  30158. <member name="M:SharpDX.Direct3D9.TextureShader.GetConstantByName(SharpDX.Direct3D9.EffectHandle,System.String)">
  30159. <summary>
  30160. <p>Gets a constant by looking up its name.</p>
  30161. </summary>
  30162. <param name="effectHandle"><dd> <p>A handle to the parent data structure. If the constant is a top-level parameter (there is no parent data structure), use <strong><c>null</c></strong>.</p> </dd></param>
  30163. <param name="nameRef"><dd> <p>A string containing the name of the constant.</p> </dd></param>
  30164. <returns><p>Returns a unique identifier to the constant.</p></returns>
  30165. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::GetConstantByName']/*" />
  30166. <msdn-id>bb174279</msdn-id>
  30167. <unmanaged>D3DXHANDLE ID3DXTextureShader::GetConstantByName([In] D3DXHANDLE hConstant,[In] const char* pName)</unmanaged>
  30168. <unmanaged-short>ID3DXTextureShader::GetConstantByName</unmanaged-short>
  30169. </member>
  30170. <member name="M:SharpDX.Direct3D9.TextureShader.GetConstantElement(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  30171. <summary>
  30172. <p>Get a constant from the constant table.</p>
  30173. </summary>
  30174. <param name="effectHandle"><dd> <p>A handle to the array of constants. This value may not be <strong><c>null</c></strong>.</p> </dd></param>
  30175. <param name="index"><dd> <p>Zero-based index of the element in the constant table.</p> </dd></param>
  30176. <returns><p>Returns a unique identifier to the constant.</p></returns>
  30177. <remarks>
  30178. <p>To get a constant that is not part of an array, use <strong><see cref="M:SharpDX.Direct3D9.TextureShader.GetConstant(SharpDX.Direct3D9.EffectHandle,System.Int32)" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.TextureShader.GetConstantByName(SharpDX.Direct3D9.EffectHandle,System.String)" /></strong>.</p>
  30179. </remarks>
  30180. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::GetConstantElement']/*" />
  30181. <msdn-id>bb174281</msdn-id>
  30182. <unmanaged>D3DXHANDLE ID3DXTextureShader::GetConstantElement([In] D3DXHANDLE hConstant,[In] unsigned int Index)</unmanaged>
  30183. <unmanaged-short>ID3DXTextureShader::GetConstantElement</unmanaged-short>
  30184. </member>
  30185. <member name="M:SharpDX.Direct3D9.TextureShader.SetDefaults">
  30186. <summary>
  30187. <p>Sets the constants to the default values declared in the shader.</p>
  30188. </summary>
  30189. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30190. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetDefaults']/*" />
  30191. <msdn-id>bb174286</msdn-id>
  30192. <unmanaged>HRESULT ID3DXTextureShader::SetDefaults()</unmanaged>
  30193. <unmanaged-short>ID3DXTextureShader::SetDefaults</unmanaged-short>
  30194. </member>
  30195. <member name="M:SharpDX.Direct3D9.TextureShader.SetValue(SharpDX.Direct3D9.EffectHandle,System.IntPtr,System.Int32)">
  30196. <summary>
  30197. <p>Sets the constant table with the data in the buffer.</p>
  30198. </summary>
  30199. <param name="effectHandle"><dd> <p>Unique identifier to a constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30200. <param name="dataRef"><dd> <p>A reference to a buffer containing the constant data.</p> </dd></param>
  30201. <param name="bytes"><dd> <p>Size of the buffer, in bytes.</p> </dd></param>
  30202. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30203. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetValue']/*" />
  30204. <msdn-id>bb174297</msdn-id>
  30205. <unmanaged>HRESULT ID3DXTextureShader::SetValue([In] D3DXHANDLE hConstant,[In] const void* pData,[In] unsigned int Bytes)</unmanaged>
  30206. <unmanaged-short>ID3DXTextureShader::SetValue</unmanaged-short>
  30207. </member>
  30208. <member name="M:SharpDX.Direct3D9.TextureShader.SetBool(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool)">
  30209. <summary>
  30210. <p>Sets a <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> value.</p>
  30211. </summary>
  30212. <param name="effectHandle"><dd> <p>Unique identifier to the constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30213. <param name="b"><dd> <p><see cref="T:SharpDX.Mathematics.Interop.RawBool" /> value.</p> </dd></param>
  30214. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30215. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetBool']/*" />
  30216. <msdn-id>bb174284</msdn-id>
  30217. <unmanaged>HRESULT ID3DXTextureShader::SetBool([In] D3DXHANDLE hConstant,[In] BOOL b)</unmanaged>
  30218. <unmanaged-short>ID3DXTextureShader::SetBool</unmanaged-short>
  30219. </member>
  30220. <member name="M:SharpDX.Direct3D9.TextureShader.SetBoolArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawBool,System.Int32)">
  30221. <summary>
  30222. <p>Sets an array of <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> values.</p>
  30223. </summary>
  30224. <param name="effectHandle"><dd> <p>Unique identifier to the array of constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30225. <param name="bRef"><dd> <p>Array of <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> values.</p> </dd></param>
  30226. <param name="count"><dd> <p>Number of <see cref="T:SharpDX.Mathematics.Interop.RawBool" /> values in the array.</p> </dd></param>
  30227. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30228. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetBoolArray']/*" />
  30229. <msdn-id>bb174285</msdn-id>
  30230. <unmanaged>HRESULT ID3DXTextureShader::SetBoolArray([In] D3DXHANDLE hConstant,[In] const BOOL* pb,[In] unsigned int Count)</unmanaged>
  30231. <unmanaged-short>ID3DXTextureShader::SetBoolArray</unmanaged-short>
  30232. </member>
  30233. <member name="M:SharpDX.Direct3D9.TextureShader.SetInt(SharpDX.Direct3D9.EffectHandle,System.Int32)">
  30234. <summary>
  30235. <p>Sets an integer value.</p>
  30236. </summary>
  30237. <param name="effectHandle"><dd> <p>Unique identifier to the constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30238. <param name="n"><dd> <p>Integer value.</p> </dd></param>
  30239. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30240. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetInt']/*" />
  30241. <msdn-id>bb174289</msdn-id>
  30242. <unmanaged>HRESULT ID3DXTextureShader::SetInt([In] D3DXHANDLE hConstant,[In] int n)</unmanaged>
  30243. <unmanaged-short>ID3DXTextureShader::SetInt</unmanaged-short>
  30244. </member>
  30245. <member name="M:SharpDX.Direct3D9.TextureShader.SetIntArray(SharpDX.Direct3D9.EffectHandle,System.Int32,System.Int32)">
  30246. <summary>
  30247. <p>Sets an array of integers.</p>
  30248. </summary>
  30249. <param name="effectHandle"><dd> <p>Unique identifier to the array of constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30250. <param name="nRef"><dd> <p>Array of integers.</p> </dd></param>
  30251. <param name="count"><dd> <p>Number of integers in the array.</p> </dd></param>
  30252. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30253. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetIntArray']/*" />
  30254. <msdn-id>bb174290</msdn-id>
  30255. <unmanaged>HRESULT ID3DXTextureShader::SetIntArray([In] D3DXHANDLE hConstant,[In] const int* pn,[In] unsigned int Count)</unmanaged>
  30256. <unmanaged-short>ID3DXTextureShader::SetIntArray</unmanaged-short>
  30257. </member>
  30258. <member name="M:SharpDX.Direct3D9.TextureShader.SetFloat(SharpDX.Direct3D9.EffectHandle,System.Single)">
  30259. <summary>
  30260. <p>Sets a floating-point number.</p>
  30261. </summary>
  30262. <param name="effectHandle"><dd> <p>Unique identifier to the constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30263. <param name="f"><dd> <p>Floating-point number.</p> </dd></param>
  30264. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30265. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetFloat']/*" />
  30266. <msdn-id>bb174287</msdn-id>
  30267. <unmanaged>HRESULT ID3DXTextureShader::SetFloat([In] D3DXHANDLE hConstant,[In] float f)</unmanaged>
  30268. <unmanaged-short>ID3DXTextureShader::SetFloat</unmanaged-short>
  30269. </member>
  30270. <member name="M:SharpDX.Direct3D9.TextureShader.SetFloatArray(SharpDX.Direct3D9.EffectHandle,System.Single,System.Int32)">
  30271. <summary>
  30272. <p>Sets an array of floating-point numbers.</p>
  30273. </summary>
  30274. <param name="effectHandle"><dd> <p>Unique identifier to the array of constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30275. <param name="fRef"><dd> <p>Array of floating-point numbers.</p> </dd></param>
  30276. <param name="count"><dd> <p>Number of floating-point values in the array.</p> </dd></param>
  30277. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30278. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetFloatArray']/*" />
  30279. <msdn-id>bb174288</msdn-id>
  30280. <unmanaged>HRESULT ID3DXTextureShader::SetFloatArray([In] D3DXHANDLE hConstant,[In] const float* pf,[In] unsigned int Count)</unmanaged>
  30281. <unmanaged-short>ID3DXTextureShader::SetFloatArray</unmanaged-short>
  30282. </member>
  30283. <member name="M:SharpDX.Direct3D9.TextureShader.SetVector(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4)">
  30284. <summary>
  30285. <p>Sets a 4D vector.</p>
  30286. </summary>
  30287. <param name="effectHandle"><dd> <p>Unique identifier to the vector constant. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30288. <param name="vectorRef"><dd> <p>Pointer to a 4D vector. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector4" /></strong>.</p> </dd></param>
  30289. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30290. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetVector']/*" />
  30291. <msdn-id>bb174298</msdn-id>
  30292. <unmanaged>HRESULT ID3DXTextureShader::SetVector([In] D3DXHANDLE hConstant,[In] const D3DXVECTOR4* pVector)</unmanaged>
  30293. <unmanaged-short>ID3DXTextureShader::SetVector</unmanaged-short>
  30294. </member>
  30295. <member name="M:SharpDX.Direct3D9.TextureShader.SetVectorArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawVector4,System.Int32)">
  30296. <summary>
  30297. <p>Sets an array of 4D vectors.</p>
  30298. </summary>
  30299. <param name="effectHandle"><dd> <p>Unique identifier to the array of vector constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30300. <param name="vectorRef"><dd> <p>Array of 4D vectors. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector4" /></strong>.</p> </dd></param>
  30301. <param name="count"><dd> <p>Number of vectors in the array.</p> </dd></param>
  30302. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30303. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetVectorArray']/*" />
  30304. <msdn-id>bb174299</msdn-id>
  30305. <unmanaged>HRESULT ID3DXTextureShader::SetVectorArray([In] D3DXHANDLE hConstant,[In] const D3DXVECTOR4* pVector,[In] unsigned int Count)</unmanaged>
  30306. <unmanaged-short>ID3DXTextureShader::SetVectorArray</unmanaged-short>
  30307. </member>
  30308. <member name="M:SharpDX.Direct3D9.TextureShader.SetMatrix(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@)">
  30309. <summary>
  30310. <p>Sets a non-transposed matrix.</p>
  30311. </summary>
  30312. <param name="effectHandle"><dd> <p>Unique identifier to the matrix of constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30313. <param name="matrixRef"><dd> <p>Pointer to a non-transposed matrix. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  30314. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30315. <remarks>
  30316. <p>A non-transposed matrix contains row-major data; that is, each vector is contained in a row.</p>
  30317. </remarks>
  30318. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetMatrix']/*" />
  30319. <msdn-id>bb174291</msdn-id>
  30320. <unmanaged>HRESULT ID3DXTextureShader::SetMatrix([In] D3DXHANDLE hConstant,[In] const D3DXMATRIX* pMatrix)</unmanaged>
  30321. <unmanaged-short>ID3DXTextureShader::SetMatrix</unmanaged-short>
  30322. </member>
  30323. <member name="M:SharpDX.Direct3D9.TextureShader.SetMatrixArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@,System.Int32)">
  30324. <summary>
  30325. <p>Sets an array of non-transposed matrices.</p>
  30326. </summary>
  30327. <param name="effectHandle"><dd> <p>Unique identifier to the array of constant matrices. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30328. <param name="matrixRef"><dd> <p>Array of non-transposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  30329. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  30330. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30331. <remarks>
  30332. <p>A non-transposed matrix contains row-major data; that is, each vector is contained in a row.</p>
  30333. </remarks>
  30334. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetMatrixArray']/*" />
  30335. <msdn-id>bb174292</msdn-id>
  30336. <unmanaged>HRESULT ID3DXTextureShader::SetMatrixArray([In] D3DXHANDLE hConstant,[In] const D3DXMATRIX* pMatrix,[In] unsigned int Count)</unmanaged>
  30337. <unmanaged-short>ID3DXTextureShader::SetMatrixArray</unmanaged-short>
  30338. </member>
  30339. <member name="M:SharpDX.Direct3D9.TextureShader.SetMatrixPointerArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@,System.Int32)">
  30340. <summary>
  30341. <p>Sets an array of references to non-transposed matrices.</p>
  30342. </summary>
  30343. <param name="effectHandle"><dd> <p>Unique identifier to an array of constant matrices. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30344. <param name="matrixOut"><dd> <p>Array of references to non-transposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  30345. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  30346. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30347. <remarks>
  30348. <p>A non-transposed matrix contains row-major data; that is, each vector is contained in a row.</p>
  30349. </remarks>
  30350. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetMatrixPointerArray']/*" />
  30351. <msdn-id>bb174293</msdn-id>
  30352. <unmanaged>HRESULT ID3DXTextureShader::SetMatrixPointerArray([In] D3DXHANDLE hConstant,[In] const D3DXMATRIX** ppMatrix,[In] unsigned int Count)</unmanaged>
  30353. <unmanaged-short>ID3DXTextureShader::SetMatrixPointerArray</unmanaged-short>
  30354. </member>
  30355. <member name="M:SharpDX.Direct3D9.TextureShader.SetMatrixTranspose(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@)">
  30356. <summary>
  30357. <p>Sets a transposed matrix.</p>
  30358. </summary>
  30359. <param name="effectHandle"><dd> <p>Unique identifier to the matrix of constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30360. <param name="matrixRef"><dd> <p>Pointer to a transposed matrix. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  30361. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30362. <remarks>
  30363. <p>A transposed matrix contains column-major data; that is, each vector is contained in a column.</p>
  30364. </remarks>
  30365. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetMatrixTranspose']/*" />
  30366. <msdn-id>bb174294</msdn-id>
  30367. <unmanaged>HRESULT ID3DXTextureShader::SetMatrixTranspose([In] D3DXHANDLE hConstant,[In] const D3DXMATRIX* pMatrix)</unmanaged>
  30368. <unmanaged-short>ID3DXTextureShader::SetMatrixTranspose</unmanaged-short>
  30369. </member>
  30370. <member name="M:SharpDX.Direct3D9.TextureShader.SetMatrixTransposeArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@,System.Int32)">
  30371. <summary>
  30372. <p>Sets an array of transposed matrices.</p>
  30373. </summary>
  30374. <param name="effectHandle"><dd> <p>Unique identifier to the array of matrix constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30375. <param name="matrixRef"><dd> <p>Array of transposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  30376. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  30377. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30378. <remarks>
  30379. <p>A transposed matrix contains column-major data; that is, each vector is contained in a column.</p>
  30380. </remarks>
  30381. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetMatrixTransposeArray']/*" />
  30382. <msdn-id>bb174295</msdn-id>
  30383. <unmanaged>HRESULT ID3DXTextureShader::SetMatrixTransposeArray([In] D3DXHANDLE hConstant,[In] const D3DXMATRIX* pMatrix,[In] unsigned int Count)</unmanaged>
  30384. <unmanaged-short>ID3DXTextureShader::SetMatrixTransposeArray</unmanaged-short>
  30385. </member>
  30386. <member name="M:SharpDX.Direct3D9.TextureShader.SetMatrixTransposePointerArray(SharpDX.Direct3D9.EffectHandle,SharpDX.Mathematics.Interop.RawMatrix@,System.Int32)">
  30387. <summary>
  30388. <p>Sets an array of references to transposed matrices.</p>
  30389. </summary>
  30390. <param name="effectHandle"><dd> <p>Unique identifier to the array of matrix constants. See <see cref="T:SharpDX.Direct3D9.EffectHandle" />.</p> </dd></param>
  30391. <param name="matrixOut"><dd> <p>Array of references to transposed matrices. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawMatrix" /></strong>.</p> </dd></param>
  30392. <param name="count"><dd> <p>Number of matrices in the array.</p> </dd></param>
  30393. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30394. <remarks>
  30395. <p>A transposed matrix contains column-major data; that is, each vector is contained in a column.</p>
  30396. </remarks>
  30397. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXTextureShader::SetMatrixTransposePointerArray']/*" />
  30398. <msdn-id>bb174296</msdn-id>
  30399. <unmanaged>HRESULT ID3DXTextureShader::SetMatrixTransposePointerArray([In] D3DXHANDLE hConstant,[In] const D3DXMATRIX** ppMatrix,[In] unsigned int Count)</unmanaged>
  30400. <unmanaged-short>ID3DXTextureShader::SetMatrixTransposePointerArray</unmanaged-short>
  30401. </member>
  30402. <member name="T:SharpDX.Direct3D9.VertexBuffer">
  30403. <summary>
  30404. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.VertexBuffer" /> interface to manipulate vertex buffer resources.</p>
  30405. </summary>
  30406. <remarks>
  30407. <p>The <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.Device.CreateVertexBuffer(System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VertexBuffer,System.IntPtr)" /></strong> method.</p><p>This interface inherits additional functionality from the <strong><see cref="T:SharpDX.Direct3D9.Resource" /></strong> interface.</p><p>This interface, like all COM interfaces, inherits from the <strong><see cref="T:SharpDX.ComObject" /></strong> interface.</p><p>The LPDIRECT3DVERTEXBUFFER9 and PDIRECT3DVERTEXBUFFER9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.VertexBuffer" /></strong> interface. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.VertexBuffer" /> *LPDIRECT3DVERTEXBUFFER9, *PDIRECT3DVERTEXBUFFER9;
  30408. </pre>
  30409. </remarks>
  30410. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexBuffer9']/*" />
  30411. <msdn-id>bb205915</msdn-id>
  30412. <unmanaged>IDirect3DVertexBuffer9</unmanaged>
  30413. <unmanaged-short>IDirect3DVertexBuffer9</unmanaged-short>
  30414. </member>
  30415. <member name="M:SharpDX.Direct3D9.VertexBuffer.#ctor(System.IntPtr)">
  30416. <summary>
  30417. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.VertexBuffer"/> class.
  30418. </summary>
  30419. <param name="nativePtr">The native pointer.</param>
  30420. </member>
  30421. <member name="M:SharpDX.Direct3D9.VertexBuffer.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.VertexBuffer">
  30422. <summary>
  30423. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.VertexBuffer"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  30424. </summary>
  30425. <param name="nativePointer">The native pointer.</param>
  30426. <returns>
  30427. The result of the conversion.
  30428. </returns>
  30429. </member>
  30430. <member name="P:SharpDX.Direct3D9.VertexBuffer.Description">
  30431. <summary>
  30432. <p>Retrieves a description of the vertex buffer resource.</p>
  30433. </summary>
  30434. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexBuffer9::GetDesc']/*" />
  30435. <msdn-id>bb205916</msdn-id>
  30436. <unmanaged>GetDesc</unmanaged>
  30437. <unmanaged-short>GetDesc</unmanaged-short>
  30438. <unmanaged>HRESULT IDirect3DVertexBuffer9::GetDesc([Out] D3DVERTEXBUFFER_DESC* pDesc)</unmanaged>
  30439. </member>
  30440. <member name="M:SharpDX.Direct3D9.VertexBuffer.Lock_(System.Int32,System.Int32,System.IntPtr@,SharpDX.Direct3D9.LockFlags)">
  30441. <summary>
  30442. <p>Locks a range of vertex data and obtains a reference to the vertex buffer memory.</p>
  30443. </summary>
  30444. <param name="offsetToLock"><dd> <p>Offset into the vertex data to lock, in bytes. To lock the entire vertex buffer, specify 0 for both parameters, SizeToLock and OffsetToLock.</p> </dd></param>
  30445. <param name="sizeToLock"><dd> <p>Size of the vertex data to lock, in bytes. To lock the entire vertex buffer, specify 0 for both parameters, SizeToLock and OffsetToLock.</p> </dd></param>
  30446. <param name="bDataOut"><dd> <p>VOID* reference to a memory buffer containing the returned vertex data. </p> </dd></param>
  30447. <param name="lockFlags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoOverwrite" /></li> </ul> <p> For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />. </p> </dd></param>
  30448. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  30449. <remarks>
  30450. <p>As a general rule, do not hold a lock across more than one frame. When working with vertex buffers, you are allowed to make multiple lock calls; however, you must ensure that the number of lock calls match the number of unlock calls. DrawPrimitive calls will not succeed with any outstanding lock count on any currently set vertex buffer.</p><p>The <see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /> and <see cref="F:SharpDX.Direct3D9.LockFlags.NoOverwrite" /> flags are valid only on buffers created with <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" />.</p><p>For information about using <see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.NoOverwrite" /> with <strong><see cref="M:SharpDX.Direct3D9.VertexBuffer.Lock_(System.Int32,System.Int32,System.IntPtr@,SharpDX.Direct3D9.LockFlags)" /></strong>, see Using Dynamic Vertex and Index Buffers.</p>
  30451. </remarks>
  30452. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexBuffer9::Lock']/*" />
  30453. <msdn-id>bb205917</msdn-id>
  30454. <unmanaged>HRESULT IDirect3DVertexBuffer9::Lock([In] unsigned int OffsetToLock,[In] unsigned int SizeToLock,[Out] void** ppbData,[In] D3DLOCK Flags)</unmanaged>
  30455. <unmanaged-short>IDirect3DVertexBuffer9::Lock</unmanaged-short>
  30456. </member>
  30457. <member name="M:SharpDX.Direct3D9.VertexBuffer.Unlock">
  30458. <summary>
  30459. <p>Unlocks vertex data.</p>
  30460. </summary>
  30461. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  30462. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexBuffer9::Unlock']/*" />
  30463. <msdn-id>bb205918</msdn-id>
  30464. <unmanaged>HRESULT IDirect3DVertexBuffer9::Unlock()</unmanaged>
  30465. <unmanaged-short>IDirect3DVertexBuffer9::Unlock</unmanaged-short>
  30466. </member>
  30467. <member name="M:SharpDX.Direct3D9.VertexBuffer.GetDescription(SharpDX.Direct3D9.VertexBufferDescription@)">
  30468. <summary>
  30469. <p>Retrieves a description of the vertex buffer resource.</p>
  30470. </summary>
  30471. <param name="descRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.VertexBufferDescription" /></strong> structure, describing the returned vertex buffer. </p> </dd></param>
  30472. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if the argument is invalid.</p></returns>
  30473. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexBuffer9::GetDesc']/*" />
  30474. <msdn-id>bb205916</msdn-id>
  30475. <unmanaged>HRESULT IDirect3DVertexBuffer9::GetDesc([Out] D3DVERTEXBUFFER_DESC* pDesc)</unmanaged>
  30476. <unmanaged-short>IDirect3DVertexBuffer9::GetDesc</unmanaged-short>
  30477. </member>
  30478. <member name="M:SharpDX.Direct3D9.VertexBuffer.#ctor(SharpDX.Direct3D9.Device,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Pool)">
  30479. <summary>
  30480. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.VertexBuffer" /> class.
  30481. </summary>
  30482. <param name="device">The device that will be used to create the buffer.</param>
  30483. <param name="sizeInBytes">Size of the buffer, in bytes.</param>
  30484. <param name="usage">The requested usage of the buffer.</param>
  30485. <param name="format">The vertex format of the vertices in the buffer. If set to <see cref="T:SharpDX.Direct3D9.VertexFormat" />.None, the buffer will be a non-FVF buffer.</param>
  30486. <param name="pool">The memory class into which the resource will be placed.</param>
  30487. <msdn-id>bb174364</msdn-id>
  30488. <unmanaged>HRESULT IDirect3DDevice9::CreateVertexBuffer([In] unsigned int Length,[In] D3DUSAGE Usage,[In] D3DFVF FVF,[In] D3DPOOL Pool,[Out, Fast] IDirect3DVertexBuffer9** ppVertexBuffer,[In] void** pSharedHandle)</unmanaged>
  30489. <unmanaged-short>IDirect3DDevice9::CreateVertexBuffer</unmanaged-short>
  30490. </member>
  30491. <member name="M:SharpDX.Direct3D9.VertexBuffer.#ctor(SharpDX.Direct3D9.Device,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.VertexFormat,SharpDX.Direct3D9.Pool,System.IntPtr@)">
  30492. <summary>
  30493. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.VertexBuffer" /> class.
  30494. </summary>
  30495. <param name="device">The device that will be used to create the buffer.</param>
  30496. <param name="sizeInBytes">Size of the buffer, in bytes.</param>
  30497. <param name="usage">The requested usage of the buffer.</param>
  30498. <param name="format">The vertex format of the vertices in the buffer. If set to <see cref="T:SharpDX.Direct3D9.VertexFormat" />.None, the buffer will be a non-FVF buffer.</param>
  30499. <param name="pool">The memory class into which the resource will be placed.</param>
  30500. <param name="sharedHandle">The variable that will receive the shared handle for this resource.</param>
  30501. <remarks>This method is only available in Direct3D9 Ex.</remarks>
  30502. <msdn-id>bb174364</msdn-id>
  30503. <unmanaged>HRESULT IDirect3DDevice9::CreateVertexBuffer([In] unsigned int Length,[In] D3DUSAGE Usage,[In] D3DFVF FVF,[In] D3DPOOL Pool,[Out, Fast] IDirect3DVertexBuffer9** ppVertexBuffer,[In] void** pSharedHandle)</unmanaged>
  30504. <unmanaged-short>IDirect3DDevice9::CreateVertexBuffer</unmanaged-short>
  30505. </member>
  30506. <member name="M:SharpDX.Direct3D9.VertexBuffer.Lock(System.Int32,System.Int32,SharpDX.Direct3D9.LockFlags)">
  30507. <summary>
  30508. Locks a range of vertex data and obtains a pointer to the vertex buffer memory.
  30509. </summary>
  30510. <remarks>
  30511. As a general rule, do not hold a lock across more than one frame. When working with vertex buffers, you are allowed to make multiple lock calls; however, you must ensure that the number of lock calls match the number of unlock calls. DrawPrimitive calls will not succeed with any outstanding lock count on any currently set vertex buffer. The D3DLOCK_DISCARD and D3DLOCK_NOOVERWRITE flags are valid only on buffers created with D3DUSAGE_DYNAMIC. For information about using D3DLOCK_DISCARD or D3DLOCK_NOOVERWRITE with IDirect3DVertexBuffer9::Lock, see {{Using Dynamic Vertex and Index Buffers}}.
  30512. </remarks>
  30513. <param name="offsetToLock"> Offset into the vertex data to lock, in bytes. To lock the entire vertex buffer, specify 0 for both parameters, SizeToLock and OffsetToLock. </param>
  30514. <param name="sizeToLock"> Size of the vertex data to lock, in bytes. To lock the entire vertex buffer, specify 0 for both parameters, SizeToLock and OffsetToLock. </param>
  30515. <param name="lockFlags"> Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: D3DLOCK_DISCARD D3DLOCK_NO_DIRTY_UPDATE D3DLOCK_NOSYSLOCK D3DLOCK_READONLY D3DLOCK_NOOVERWRITE For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags"/>. </param>
  30516. <returns>A <see cref="T:SharpDX.DataStream"/> if the method succeeds.</returns>
  30517. <msdn-id>bb205917</msdn-id>
  30518. <unmanaged>HRESULT IDirect3DVertexBuffer9::Lock([In] unsigned int OffsetToLock,[In] unsigned int SizeToLock,[Out] void** ppbData,[In] D3DLOCK Flags)</unmanaged>
  30519. <unmanaged-short>IDirect3DVertexBuffer9::Lock</unmanaged-short>
  30520. </member>
  30521. <member name="M:SharpDX.Direct3D9.VertexBuffer.LockToPointer(System.Int32,System.Int32,SharpDX.Direct3D9.LockFlags)">
  30522. <summary>
  30523. Locks a range of vertex data and obtains a pointer to the vertex buffer memory.
  30524. </summary>
  30525. <remarks>
  30526. As a general rule, do not hold a lock across more than one frame. When working with vertex buffers, you are allowed to make multiple lock calls; however, you must ensure that the number of lock calls match the number of unlock calls. DrawPrimitive calls will not succeed with any outstanding lock count on any currently set vertex buffer. The D3DLOCK_DISCARD and D3DLOCK_NOOVERWRITE flags are valid only on buffers created with D3DUSAGE_DYNAMIC. For information about using D3DLOCK_DISCARD or D3DLOCK_NOOVERWRITE with IDirect3DVertexBuffer9::Lock, see {{Using Dynamic Vertex and Index Buffers}}.
  30527. </remarks>
  30528. <param name="offsetToLock"> Offset into the vertex data to lock, in bytes. To lock the entire vertex buffer, specify 0 for both parameters, SizeToLock and OffsetToLock. </param>
  30529. <param name="sizeToLock"> Size of the vertex data to lock, in bytes. To lock the entire vertex buffer, specify 0 for both parameters, SizeToLock and OffsetToLock. </param>
  30530. <param name="lockFlags"> Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: D3DLOCK_DISCARD D3DLOCK_NO_DIRTY_UPDATE D3DLOCK_NOSYSLOCK D3DLOCK_READONLY D3DLOCK_NOOVERWRITE For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags"/>. </param>
  30531. <returns>A <see cref="T:System.IntPtr"/> if the method succeeds.</returns>
  30532. <msdn-id>bb205917</msdn-id>
  30533. <unmanaged>HRESULT IDirect3DVertexBuffer9::Lock([In] unsigned int OffsetToLock,[In] unsigned int SizeToLock,[Out] void** ppbData,[In] D3DLOCK Flags)</unmanaged>
  30534. <unmanaged-short>IDirect3DVertexBuffer9::Lock</unmanaged-short>
  30535. </member>
  30536. <member name="T:SharpDX.Direct3D9.VertexDeclaration">
  30537. <summary>
  30538. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.VertexDeclaration" /> interface to encapsulate the vertex shader declaration.</p>
  30539. </summary>
  30540. <remarks>
  30541. <p>A vertex shader declaration is made up of an array of vertex elements.</p><p>The LPDIRECT3DVERTEXDECLARATION9 and PDIRECT3DVERTEXDECLARATION9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.VertexDeclaration" /></strong> interface. </p><pre>typedef struct <see cref="T:SharpDX.Direct3D9.VertexDeclaration" /> *LPDIRECT3DVERTEXDECLARATION9, *PDIRECT3DVERTEXDECLARATION9;</pre>
  30542. </remarks>
  30543. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexDeclaration9']/*" />
  30544. <msdn-id>bb205919</msdn-id>
  30545. <unmanaged>IDirect3DVertexDeclaration9</unmanaged>
  30546. <unmanaged-short>IDirect3DVertexDeclaration9</unmanaged-short>
  30547. </member>
  30548. <member name="M:SharpDX.Direct3D9.VertexDeclaration.#ctor(System.IntPtr)">
  30549. <summary>
  30550. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.VertexDeclaration"/> class.
  30551. </summary>
  30552. <param name="nativePtr">The native pointer.</param>
  30553. </member>
  30554. <member name="M:SharpDX.Direct3D9.VertexDeclaration.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.VertexDeclaration">
  30555. <summary>
  30556. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.VertexDeclaration"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  30557. </summary>
  30558. <param name="nativePointer">The native pointer.</param>
  30559. <returns>
  30560. The result of the conversion.
  30561. </returns>
  30562. </member>
  30563. <member name="P:SharpDX.Direct3D9.VertexDeclaration.Device">
  30564. <summary>
  30565. <p>Gets the current device.</p>
  30566. </summary>
  30567. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexDeclaration9::GetDevice']/*" />
  30568. <msdn-id>bb205921</msdn-id>
  30569. <unmanaged>GetDevice</unmanaged>
  30570. <unmanaged-short>GetDevice</unmanaged-short>
  30571. <unmanaged>HRESULT IDirect3DVertexDeclaration9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  30572. </member>
  30573. <member name="M:SharpDX.Direct3D9.VertexDeclaration.GetDevice(SharpDX.Direct3D9.Device@)">
  30574. <summary>
  30575. <p>Gets the current device.</p>
  30576. </summary>
  30577. <param name="deviceOut"><dd> <p>Pointer to the <see cref="T:SharpDX.Direct3D9.Device" /> interface that is returned.</p> </dd></param>
  30578. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30579. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexDeclaration9::GetDevice']/*" />
  30580. <msdn-id>bb205921</msdn-id>
  30581. <unmanaged>HRESULT IDirect3DVertexDeclaration9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  30582. <unmanaged-short>IDirect3DVertexDeclaration9::GetDevice</unmanaged-short>
  30583. </member>
  30584. <member name="M:SharpDX.Direct3D9.VertexDeclaration.GetDeclaration(SharpDX.Direct3D9.VertexElement[],System.Int32@)">
  30585. <summary>
  30586. <p>Gets the vertex shader declaration.</p>
  30587. </summary>
  30588. <param name="elementRef"><dd> <p>Array of vertex elements (see <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong>) that make up a vertex shader declaration. The application needs to allocate enough room for this. The vertex element array ends with the <strong>D3DDECL_END</strong> macro.</p> </dd></param>
  30589. <param name="numElementsRef"><dd> <p>Number of elements in the array. The application needs to allocate enough room for this. </p> </dd></param>
  30590. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30591. <remarks>
  30592. <p>The number of elements, pNumElements, includes the <strong>D3DDECL_END</strong> macro, which ends the declaration. So the element count is actually one higher than the number of valid vertex elements.</p><p>Here's an example that will return the vertex declaration array of up to 256 elements:</p><pre> <see cref="T:SharpDX.Direct3D9.VertexElement" /> decl[MAXD3DDECLLENGTH];
  30593. UINT numElements;
  30594. <see cref="T:SharpDX.Result" /> hr = m_pVertexDeclaration-&gt;GetDeclaration( decl, &amp;numElements);
  30595. </pre><p>Specify <strong><c>null</c></strong> for pDeclto get the number of elements in the declaration.</p>
  30596. </remarks>
  30597. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexDeclaration9::GetDeclaration']/*" />
  30598. <msdn-id>bb205920</msdn-id>
  30599. <unmanaged>HRESULT IDirect3DVertexDeclaration9::GetDeclaration([Out, Buffer] D3DVERTEXELEMENT9* pElement,[InOut] unsigned int* pNumElements)</unmanaged>
  30600. <unmanaged-short>IDirect3DVertexDeclaration9::GetDeclaration</unmanaged-short>
  30601. </member>
  30602. <member name="M:SharpDX.Direct3D9.VertexDeclaration.#ctor(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.VertexElement[])">
  30603. <summary>
  30604. Create a vertex shader declaration from the device and the vertex elements.
  30605. </summary>
  30606. <remarks>
  30607. See the {{Vertex Declaration (Direct3D 9)}} page for a detailed description of how to map vertex declarations between different versions of DirectX.
  30608. </remarks>
  30609. <param name="device">The device.</param>
  30610. <param name="elements"> An array of <see cref="T:SharpDX.Direct3D9.VertexElement"/> vertex elements. </param>
  30611. <returns><see cref="T:SharpDX.Direct3D9.VertexDeclaration"/> If the method succeeds</returns>
  30612. <unmanaged>HRESULT IDirect3DDevice9::CreateVertexDeclaration([In, Buffer] const D3DVERTEXELEMENT9* pVertexElements,[None] IDirect3DVertexDeclaration9** ppDecl)</unmanaged>
  30613. </member>
  30614. <member name="P:SharpDX.Direct3D9.VertexDeclaration.Elements">
  30615. <summary>
  30616. Gets the elements.
  30617. </summary>
  30618. <unmanaged>HRESULT IDirect3DVertexDeclaration9::GetDeclaration([Out, Buffer] D3DVERTEXELEMENT9* pElement,[InOut] unsigned int* pNumElements)</unmanaged>
  30619. </member>
  30620. <member name="T:SharpDX.Direct3D9.VertexShader">
  30621. <summary>
  30622. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.VertexShader" /> interface to encapsulate the functionality of a vertex shader.</p>
  30623. </summary>
  30624. <remarks>
  30625. <p>The LPDIRECT3DVERTEXSHADER9 and PDIRECT3DVERTEXSHADER9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.VertexShader" /></strong> interface. </p><pre>typedef struct <see cref="T:SharpDX.Direct3D9.VertexShader" /> *LPDIRECT3DVERTEXSHADER9, *PDIRECT3DVERTEXSHADER9;</pre>
  30626. </remarks>
  30627. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexShader9']/*" />
  30628. <msdn-id>bb205922</msdn-id>
  30629. <unmanaged>IDirect3DVertexShader9</unmanaged>
  30630. <unmanaged-short>IDirect3DVertexShader9</unmanaged-short>
  30631. </member>
  30632. <member name="M:SharpDX.Direct3D9.VertexShader.#ctor(System.IntPtr)">
  30633. <summary>
  30634. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.VertexShader"/> class.
  30635. </summary>
  30636. <param name="nativePtr">The native pointer.</param>
  30637. </member>
  30638. <member name="M:SharpDX.Direct3D9.VertexShader.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.VertexShader">
  30639. <summary>
  30640. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.VertexShader"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  30641. </summary>
  30642. <param name="nativePointer">The native pointer.</param>
  30643. <returns>
  30644. The result of the conversion.
  30645. </returns>
  30646. </member>
  30647. <member name="F:SharpDX.Direct3D9.VertexShader.MaxDynamicFlowControlDepth">
  30648. <summary>Constant MaxDynamicFlowControlDepth.</summary>
  30649. <unmanaged>D3DVS20_MAX_DYNAMICFLOWCONTROLDEPTH</unmanaged>
  30650. </member>
  30651. <member name="F:SharpDX.Direct3D9.VertexShader.MinDynamicFlowControlDepth">
  30652. <summary>Constant MinDynamicFlowControlDepth.</summary>
  30653. <unmanaged>D3DVS20_MIN_DYNAMICFLOWCONTROLDEPTH</unmanaged>
  30654. </member>
  30655. <member name="F:SharpDX.Direct3D9.VertexShader.MaxTemps">
  30656. <summary>Constant MaxTemps.</summary>
  30657. <unmanaged>D3DVS20_MAX_NUMTEMPS</unmanaged>
  30658. </member>
  30659. <member name="F:SharpDX.Direct3D9.VertexShader.MinTemps">
  30660. <summary>Constant MinTemps.</summary>
  30661. <unmanaged>D3DVS20_MIN_NUMTEMPS</unmanaged>
  30662. </member>
  30663. <member name="F:SharpDX.Direct3D9.VertexShader.MaxStaticFlowControlDepth">
  30664. <summary>Constant MaxStaticFlowControlDepth.</summary>
  30665. <unmanaged>D3DVS20_MAX_STATICFLOWCONTROLDEPTH</unmanaged>
  30666. </member>
  30667. <member name="F:SharpDX.Direct3D9.VertexShader.MinStaticFlowControlDepth">
  30668. <summary>Constant MinStaticFlowControlDepth.</summary>
  30669. <unmanaged>D3DVS20_MIN_STATICFLOWCONTROLDEPTH</unmanaged>
  30670. </member>
  30671. <member name="P:SharpDX.Direct3D9.VertexShader.Device">
  30672. <summary>
  30673. <p>Gets the device.</p>
  30674. </summary>
  30675. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexShader9::GetDevice']/*" />
  30676. <msdn-id>bb205923</msdn-id>
  30677. <unmanaged>GetDevice</unmanaged>
  30678. <unmanaged-short>GetDevice</unmanaged-short>
  30679. <unmanaged>HRESULT IDirect3DVertexShader9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  30680. </member>
  30681. <member name="M:SharpDX.Direct3D9.VertexShader.GetDevice(SharpDX.Direct3D9.Device@)">
  30682. <summary>
  30683. <p>Gets the device.</p>
  30684. </summary>
  30685. <param name="deviceOut"><dd> <p>Pointer to the <see cref="T:SharpDX.Direct3D9.Device" /> interface that is returned.</p> </dd></param>
  30686. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30687. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexShader9::GetDevice']/*" />
  30688. <msdn-id>bb205923</msdn-id>
  30689. <unmanaged>HRESULT IDirect3DVertexShader9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  30690. <unmanaged-short>IDirect3DVertexShader9::GetDevice</unmanaged-short>
  30691. </member>
  30692. <member name="M:SharpDX.Direct3D9.VertexShader.GetFunction(System.IntPtr,System.Int32@)">
  30693. <summary>
  30694. <p>Gets a reference to the shader data.</p>
  30695. </summary>
  30696. <param name="arg0"><dd> <p>Pointer to a buffer that contains the shader data. The application needs to allocate enough room for this. </p> </dd></param>
  30697. <param name="sizeOfDataRef"><dd> <p>Size of the data, in bytes. To get the buffer size that is needed to retrieve the data, set pData = <strong><c>null</c></strong> when calling GetFunction. Then call GetFunction with the returned size, to get the buffer data.</p> </dd></param>
  30698. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />.</p></returns>
  30699. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVertexShader9::GetFunction']/*" />
  30700. <msdn-id>bb205924</msdn-id>
  30701. <unmanaged>HRESULT IDirect3DVertexShader9::GetFunction([In] void* arg0,[InOut] unsigned int* pSizeOfData)</unmanaged>
  30702. <unmanaged-short>IDirect3DVertexShader9::GetFunction</unmanaged-short>
  30703. </member>
  30704. <member name="M:SharpDX.Direct3D9.VertexShader.#ctor(SharpDX.Direct3D9.Device,SharpDX.Direct3D9.ShaderBytecode)">
  30705. <summary>
  30706. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.VertexShader"/> class.
  30707. </summary>
  30708. <param name="device">The device.</param>
  30709. <param name="function">The function.</param>
  30710. <unmanaged>HRESULT IDirect3DDevice9::CreateVertexShader([In] const void* pFunction,[Out, Fast] IDirect3DVertexShader9** ppShader)</unmanaged>
  30711. </member>
  30712. <member name="P:SharpDX.Direct3D9.VertexShader.Function">
  30713. <summary>
  30714. Gets the bytecode associated to this shader..
  30715. </summary>
  30716. </member>
  30717. <member name="T:SharpDX.Direct3D9.Volume">
  30718. <summary>
  30719. <p>Applications use the methods of the <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface to manipulate volume resources.</p>
  30720. </summary>
  30721. <remarks>
  30722. <p>The <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.VolumeTexture.GetVolumeLevel(System.Int32)" /></strong> method.</p><p>This interface, like all COM interfaces, inherits from the <strong><see cref="T:SharpDX.ComObject" /></strong> interface.</p><p>The LPDIRECT3DVOLUME9 and PDIRECT3DVOLUME9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.Volume" /> *LPDIRECT3DVOLUME9, *PDIRECT3DVOLUME9;
  30723. </pre>
  30724. </remarks>
  30725. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9']/*" />
  30726. <msdn-id>bb205932</msdn-id>
  30727. <unmanaged>IDirect3DVolume9</unmanaged>
  30728. <unmanaged-short>IDirect3DVolume9</unmanaged-short>
  30729. </member>
  30730. <member name="M:SharpDX.Direct3D9.Volume.#ctor(System.IntPtr)">
  30731. <summary>
  30732. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Volume"/> class.
  30733. </summary>
  30734. <param name="nativePtr">The native pointer.</param>
  30735. </member>
  30736. <member name="M:SharpDX.Direct3D9.Volume.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.Volume">
  30737. <summary>
  30738. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.Volume"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  30739. </summary>
  30740. <param name="nativePointer">The native pointer.</param>
  30741. <returns>
  30742. The result of the conversion.
  30743. </returns>
  30744. </member>
  30745. <member name="P:SharpDX.Direct3D9.Volume.Device">
  30746. <summary>
  30747. <p>Retrieves the device associated with a volume.</p>
  30748. </summary>
  30749. <remarks>
  30750. <p>This method allows navigation to the owning device object. </p><p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface results in a memory leak.</p>
  30751. </remarks>
  30752. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9::GetDevice']/*" />
  30753. <msdn-id>bb205936</msdn-id>
  30754. <unmanaged>GetDevice</unmanaged>
  30755. <unmanaged-short>GetDevice</unmanaged-short>
  30756. <unmanaged>HRESULT IDirect3DVolume9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  30757. </member>
  30758. <member name="P:SharpDX.Direct3D9.Volume.Description">
  30759. <summary>
  30760. <p>Retrieves a description of the volume.</p>
  30761. </summary>
  30762. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9::GetDesc']/*" />
  30763. <msdn-id>bb205935</msdn-id>
  30764. <unmanaged>GetDesc</unmanaged>
  30765. <unmanaged-short>GetDesc</unmanaged-short>
  30766. <unmanaged>HRESULT IDirect3DVolume9::GetDesc([Out] D3DVOLUME_DESC* pDesc)</unmanaged>
  30767. </member>
  30768. <member name="M:SharpDX.Direct3D9.Volume.GetDevice(SharpDX.Direct3D9.Device@)">
  30769. <summary>
  30770. <p>Retrieves the device associated with a volume.</p>
  30771. </summary>
  30772. <param name="deviceOut"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface to fill with the device reference, if the query succeeds. </p> </dd></param>
  30773. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  30774. <remarks>
  30775. <p>This method allows navigation to the owning device object. </p><p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface results in a memory leak.</p>
  30776. </remarks>
  30777. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9::GetDevice']/*" />
  30778. <msdn-id>bb205936</msdn-id>
  30779. <unmanaged>HRESULT IDirect3DVolume9::GetDevice([Out] IDirect3DDevice9** ppDevice)</unmanaged>
  30780. <unmanaged-short>IDirect3DVolume9::GetDevice</unmanaged-short>
  30781. </member>
  30782. <member name="M:SharpDX.Direct3D9.Volume.SetPrivateData(System.Guid,System.IntPtr,System.Int32,System.Int32)">
  30783. <summary>
  30784. <p>Associates data with the volume that is intended for use by the application, not by Direct3D.</p>
  30785. </summary>
  30786. <param name="refguid"><dd> <p>Reference to the globally unique identifier that identifies the private data to set.</p> </dd></param>
  30787. <param name="dataRef"><dd> <p>Pointer to a buffer that contains the data to associate with the volume. </p> </dd></param>
  30788. <param name="sizeOfData"><dd> <p>Size of the buffer at pData in bytes. </p> </dd></param>
  30789. <param name="flags"><dd> <p>Value that describes the type of data being passed, or indicates to the application that the data should be invalidated when the resource changes. </p> <p /> <table> <tr><th>Item</th><th>Description</th></tr> <tr><td> <p>(none)</p> </td><td> <p>If no flags are specified, Direct3D allocates memory to hold the data within the buffer and copies the data into the new buffer. The buffer allocated by Direct3D is automatically freed, as appropriate.</p> </td></tr> <tr><td> <p>D3DSPD_IUNKNOWN</p> </td><td> <p>The data at pData is a reference to an <strong><see cref="T:SharpDX.ComObject" /></strong> interface. SizeOfData must be set to the size of a reference to an <strong><see cref="T:SharpDX.ComObject" /></strong> interface, sizeof(<see cref="T:SharpDX.ComObject" />*). Direct3D automatically calls <strong><see cref="T:SharpDX.ComObject" /></strong> through pData and <see cref="T:SharpDX.ComObject" /> when the private data is destroyed. Private data will be destroyed by a subsequent call to <strong><see cref="M:SharpDX.Direct3D9.Volume.SetPrivateData(System.Guid,System.IntPtr,System.Int32,System.Int32)" /></strong> with the same <see cref="T:System.Guid" />, a subsequent call to <strong><see cref="M:SharpDX.Direct3D9.Volume.FreePrivateData(System.Guid)" /></strong>, or when the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> object is released. For more information, see Remarks.</p> </td></tr> </table> <p>?</p> </dd></param>
  30790. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, E_OUTOFMEMORY.</p></returns>
  30791. <remarks>
  30792. <p>Direct3D does not manage the memory at pData. If this buffer was dynamically allocated, it is the calling application's responsibility to free the memory.</p><p>Data is passed by value, and multiple sets of data can be associated with a single volume.</p>
  30793. </remarks>
  30794. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9::SetPrivateData']/*" />
  30795. <msdn-id>bb205939</msdn-id>
  30796. <unmanaged>HRESULT IDirect3DVolume9::SetPrivateData([In] const GUID&amp; refguid,[In] const void* pData,[In] unsigned int SizeOfData,[In] unsigned int Flags)</unmanaged>
  30797. <unmanaged-short>IDirect3DVolume9::SetPrivateData</unmanaged-short>
  30798. </member>
  30799. <member name="M:SharpDX.Direct3D9.Volume.GetPrivateData(System.Guid,System.IntPtr,System.Int32@)">
  30800. <summary>
  30801. <p>Copies the private data associated with the volume to a provided buffer.</p>
  30802. </summary>
  30803. <param name="refguid"><dd> <p>Reference to (C++) or address of (C) the globally unique identifier that identifies the private data to retrieve. </p> </dd></param>
  30804. <param name="dataRef"><dd> <p>Pointer to a previously allocated buffer to fill with the requested private data if the call succeeds. The application calling this method is responsible for allocating and releasing this buffer. If this parameter is <strong><c>null</c></strong>, this method will return the buffer size in pSizeOfData.</p> </dd></param>
  30805. <param name="sizeOfDataRef"><dd> <p>Pointer to the size of the buffer at pData, in bytes. If this value is less than the actual size of the private data, such as 0, the method sets this parameter to the required buffer size, and the method returns <see cref="F:SharpDX.Direct3D9.ResultCode.MoreData" />. </p> </dd></param>
  30806. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.MoreData" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotFound" />.</p></returns>
  30807. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9::GetPrivateData']/*" />
  30808. <msdn-id>bb205937</msdn-id>
  30809. <unmanaged>HRESULT IDirect3DVolume9::GetPrivateData([In] const GUID&amp; refguid,[In] void* pData,[Out] unsigned int* pSizeOfData)</unmanaged>
  30810. <unmanaged-short>IDirect3DVolume9::GetPrivateData</unmanaged-short>
  30811. </member>
  30812. <member name="M:SharpDX.Direct3D9.Volume.FreePrivateData(System.Guid)">
  30813. <summary>
  30814. <p>Frees the specified private data associated with this volume.</p>
  30815. </summary>
  30816. <param name="refguid"><dd> <p>Reference to the globally unique identifier that identifies the private data to free.</p> </dd></param>
  30817. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be one of the following: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />, <see cref="F:SharpDX.Direct3D9.ResultCode.NotFound" />.</p></returns>
  30818. <remarks>
  30819. <p>Direct3D calls this method automatically when a volume is released. </p>
  30820. </remarks>
  30821. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9::FreePrivateData']/*" />
  30822. <msdn-id>bb205933</msdn-id>
  30823. <unmanaged>HRESULT IDirect3DVolume9::FreePrivateData([In] const GUID&amp; refguid)</unmanaged>
  30824. <unmanaged-short>IDirect3DVolume9::FreePrivateData</unmanaged-short>
  30825. </member>
  30826. <member name="M:SharpDX.Direct3D9.Volume.GetContainer(System.Guid,System.IntPtr)">
  30827. <summary>
  30828. <p>Provides access to the parent volume texture object, if this surface is a child level of a volume texture.</p>
  30829. </summary>
  30830. <param name="riid"><dd> <p>Reference identifier of the volume being requested. </p> </dd></param>
  30831. <param name="containerOut"><dd> <p>Address of a reference to fill with the container reference, if the query succeeds. </p> </dd></param>
  30832. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  30833. <remarks>
  30834. <p>If the call succeeds, the reference count of the container is increased by one.</p><p>Here's an example getting the parent volume texture of a volume texture.</p><pre> // Assumes pSurface is a valid <see cref="T:SharpDX.Direct3D9.Volume" /> reference
  30835. void *pContainer = <c>null</c>;
  30836. <see cref="T:SharpDX.Direct3D9.VolumeTexture" /> *pVolumeTexture = <c>null</c>;
  30837. <see cref="T:SharpDX.Result" /> hr = pVolume-&gt;GetContainer(IID_IDirect3DVolumeTexture9, &amp;pContainer);
  30838. if (SUCCEEDED(hr) &amp;&amp; pContainer)
  30839. { pVolumeTexture = (<see cref="T:SharpDX.Direct3D9.VolumeTexture" /> *)pContainer;
  30840. </pre>
  30841. </remarks>
  30842. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9::GetContainer']/*" />
  30843. <msdn-id>bb205934</msdn-id>
  30844. <unmanaged>HRESULT IDirect3DVolume9::GetContainer([In] const GUID&amp; riid,[In] void** ppContainer)</unmanaged>
  30845. <unmanaged-short>IDirect3DVolume9::GetContainer</unmanaged-short>
  30846. </member>
  30847. <member name="M:SharpDX.Direct3D9.Volume.GetDescription(SharpDX.Direct3D9.VolumeDescription@)">
  30848. <summary>
  30849. <p>Retrieves a description of the volume.</p>
  30850. </summary>
  30851. <param name="descRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.VolumeDescription" /></strong> structure, describing the volume. </p> </dd></param>
  30852. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" /> is returned if the argument is invalid.</p></returns>
  30853. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9::GetDesc']/*" />
  30854. <msdn-id>bb205935</msdn-id>
  30855. <unmanaged>HRESULT IDirect3DVolume9::GetDesc([Out] D3DVOLUME_DESC* pDesc)</unmanaged>
  30856. <unmanaged-short>IDirect3DVolume9::GetDesc</unmanaged-short>
  30857. </member>
  30858. <member name="M:SharpDX.Direct3D9.Volume.LockBox(SharpDX.Direct3D9.LockedBox@,System.IntPtr,SharpDX.Direct3D9.LockFlags)">
  30859. <summary>
  30860. <p>Locks a box on a volume resource.</p>
  30861. </summary>
  30862. <param name="lockedVolumeRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.LockedBox" /></strong> structure, describing the locked region. </p> </dd></param>
  30863. <param name="boxRef"><dd> <p>Pointer to a box to lock. Specified by a reference to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifying <strong><c>null</c></strong> for this parameter locks the entire volume. </p> </dd></param>
  30864. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> </ul> <p> For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />. </p> </dd></param>
  30865. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  30866. <remarks>
  30867. <p>For performance reasons, dirty regions are only recorded for level zero of a texture. Dirty regions are automatically recorded when <strong><see cref="M:SharpDX.Direct3D9.Volume.LockBox(SharpDX.Direct3D9.LockedBox@,System.IntPtr,SharpDX.Direct3D9.LockFlags)" /></strong> is called without <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" />. See <strong><see cref="M:SharpDX.Direct3D9.Device.UpdateTexture(SharpDX.Direct3D9.BaseTexture,SharpDX.Direct3D9.BaseTexture)" /></strong> for more information.</p>
  30868. </remarks>
  30869. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9::LockBox']/*" />
  30870. <msdn-id>bb205938</msdn-id>
  30871. <unmanaged>HRESULT IDirect3DVolume9::LockBox([Out] D3DLOCKED_BOX* pLockedVolume,[In] const void* pBox,[In] D3DLOCK Flags)</unmanaged>
  30872. <unmanaged-short>IDirect3DVolume9::LockBox</unmanaged-short>
  30873. </member>
  30874. <member name="M:SharpDX.Direct3D9.Volume.UnlockBox">
  30875. <summary>
  30876. <p>Unlocks a box on a volume resource.</p>
  30877. </summary>
  30878. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  30879. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolume9::UnlockBox']/*" />
  30880. <msdn-id>bb205940</msdn-id>
  30881. <unmanaged>HRESULT IDirect3DVolume9::UnlockBox()</unmanaged>
  30882. <unmanaged-short>IDirect3DVolume9::UnlockBox</unmanaged-short>
  30883. </member>
  30884. <member name="M:SharpDX.Direct3D9.Volume.LoadFromMemory(SharpDX.Direct3D9.PaletteEntry[],System.Nullable{SharpDX.Direct3D9.Box},System.IntPtr,SharpDX.Direct3D9.Format,System.Int32,System.Int32,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Filter,SharpDX.Mathematics.Interop.RawColorBGRA)">
  30885. <summary>
  30886. Loads a volume from memory.
  30887. </summary>
  30888. <param name="destPaletteRef"><para>Pointer to a <see cref="T:SharpDX.Direct3D9.PaletteEntry"/> structure, the destination palette of 256 colors or <c>null</c>.</para></param>
  30889. <param name="destBox"><para>Pointer to a <see cref="T:SharpDX.Direct3D9.Box"/> structure. Specifies the destination box. Set this parameter to <c>null</c> to specify the entire volume.</para></param>
  30890. <param name="srcMemoryPointer"><para>Pointer to the top-left corner of the source volume in memory.</para></param>
  30891. <param name="srcFormat"><para>Member of the <see cref="T:SharpDX.Direct3D9.Format"/> enumerated type, the pixel format of the source volume.</para></param>
  30892. <param name="srcRowPitch"><para>Pitch of source image, in bytes. For DXT formats (compressed texture formats), this number should represent the size of one row of cells, in bytes.</para></param>
  30893. <param name="srcSlicePitch"><para>Pitch of source image, in bytes. For DXT formats (compressed texture formats), this number should represent the size of one slice of cells, in bytes.</para></param>
  30894. <param name="srcPaletteRef"><para>Pointer to a <see cref="T:SharpDX.Direct3D9.PaletteEntry"/> structure, the source palette of 256 colors or <c>null</c>.</para></param>
  30895. <param name="srcBox"><para>Pointer to a <see cref="T:SharpDX.Direct3D9.Box"/> structure. Specifies the source box. <c>null</c> is not a valid value for this parameter.</para></param>
  30896. <param name="filter"><para>A combination of one or more <see cref="T:SharpDX.Direct3D9.Filter"/> controlling how the image is filtered. Specifying D3DX_DEFAULT for this parameter is the equivalent of specifying <see cref="F:SharpDX.Direct3D9.Filter.Triangle"/> | <see cref="F:SharpDX.Direct3D9.Filter.Dither"/>.</para></param>
  30897. <param name="colorKey"><para> <see cref="T:SharpDX.Mathematics.Interop.RawColor4"/> value to replace with transparent black, or 0 to disable the color key. This is always a 32-bit ARGB color, independent of the source image format. Alpha is significant and should usually be set to FF for opaque color keys. Thus, for opaque black, the value would be equal to 0xFF000000.</para></param>
  30898. <returns>If the function succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success"/>. If the function fails, the return value can be one of the following values: <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall"/>, D3DXERR_INVALIDDATA.</returns>
  30899. <remarks>
  30900. Writing to a non-level-zero surface of the volume texture will not cause the dirty rectangle to be updated. If <see cref="M:SharpDX.Direct3D9.D3DX9.LoadVolumeFromMemory(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,System.IntPtr,SharpDX.Direct3D9.Format,System.Int32,System.Int32,SharpDX.Direct3D9.PaletteEntry[],System.IntPtr,SharpDX.Direct3D9.Filter,System.Int32)"/> is called and the texture was not already dirty (this is unlikely under normal usage scenarios), the application needs to explicitly call <see cref="M:SharpDX.Direct3D9.VolumeTexture.AddDirtyBox(System.IntPtr)"/> on the volume texture.
  30901. </remarks>
  30902. <unmanaged>HRESULT D3DXLoadVolumeFromMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcMemory,[In] D3DFORMAT SrcFormat,[In] unsigned int SrcRowPitch,[In] unsigned int SrcSlicePitch,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey)</unmanaged>
  30903. </member>
  30904. <member name="M:SharpDX.Direct3D9.Volume.FromFile(SharpDX.Direct3D9.Volume,System.String,SharpDX.Direct3D9.Filter,System.Int32)">
  30905. <summary>
  30906. Loads a volume from a file on the disk.
  30907. </summary>
  30908. <param name="volume">The volume.</param>
  30909. <param name="fileName">Name of the file.</param>
  30910. <param name="filter">The filter.</param>
  30911. <param name="colorKey">The color key.</param>
  30912. <returns>
  30913. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  30914. </returns>
  30915. <unmanaged>HRESULT D3DXLoadVolumeFromFileW([In] IDirect3DVolume9* pDestVolume,[In] const PALETTEENTRY* pDestPalette,[In] const D3DBOX* pDestBox,[In] const wchar_t* pSrcFile,[In] const D3DBOX* pSrcBox,[In] unsigned int Filter,[In] D3DCOLOR ColorKey,[In] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  30916. </member>
  30917. <member name="M:SharpDX.Direct3D9.Volume.FromFile(SharpDX.Direct3D9.Volume,System.String,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box)">
  30918. <summary>
  30919. Loads a volume from a file on the disk.
  30920. </summary>
  30921. <param name="volume">The volume.</param>
  30922. <param name="fileName">Name of the file.</param>
  30923. <param name="filter">The filter.</param>
  30924. <param name="colorKey">The color key.</param>
  30925. <param name="sourceBox">The source box.</param>
  30926. <param name="destinationBox">The destination box.</param>
  30927. <returns>
  30928. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  30929. </returns>
  30930. <unmanaged>HRESULT D3DXLoadVolumeFromFileW([In] IDirect3DVolume9* pDestVolume,[In] const PALETTEENTRY* pDestPalette,[In] const D3DBOX* pDestBox,[In] const wchar_t* pSrcFile,[In] const D3DBOX* pSrcBox,[In] unsigned int Filter,[In] D3DCOLOR ColorKey,[In] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  30931. </member>
  30932. <member name="M:SharpDX.Direct3D9.Volume.FromFile(SharpDX.Direct3D9.Volume,System.String,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.ImageInformation@)">
  30933. <summary>
  30934. Loads a volume from a file on the disk.
  30935. </summary>
  30936. <param name="volume">The volume.</param>
  30937. <param name="fileName">Name of the file.</param>
  30938. <param name="filter">The filter.</param>
  30939. <param name="colorKey">The color key.</param>
  30940. <param name="sourceBox">The source box.</param>
  30941. <param name="destinationBox">The destination box.</param>
  30942. <param name="imageInformation">The image information.</param>
  30943. <returns>
  30944. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  30945. </returns>
  30946. <unmanaged>HRESULT D3DXLoadVolumeFromFileW([In] IDirect3DVolume9* pDestVolume,[In] const PALETTEENTRY* pDestPalette,[In] const D3DBOX* pDestBox,[In] const wchar_t* pSrcFile,[In] const D3DBOX* pSrcBox,[In] unsigned int Filter,[In] D3DCOLOR ColorKey,[In] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  30947. </member>
  30948. <member name="M:SharpDX.Direct3D9.Volume.FromFile(SharpDX.Direct3D9.Volume,System.String,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.ImageInformation@)">
  30949. <summary>
  30950. Loads a volume from a file on the disk.
  30951. </summary>
  30952. <param name="volume">The volume.</param>
  30953. <param name="fileName">Name of the file.</param>
  30954. <param name="filter">The filter.</param>
  30955. <param name="colorKey">The color key.</param>
  30956. <param name="sourceBox">The source box.</param>
  30957. <param name="destinationBox">The destination box.</param>
  30958. <param name="palette">The palette.</param>
  30959. <param name="imageInformation">The image information.</param>
  30960. <returns>
  30961. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  30962. </returns>
  30963. <unmanaged>HRESULT D3DXLoadVolumeFromFileW([In] IDirect3DVolume9* pDestVolume,[In] const PALETTEENTRY* pDestPalette,[In] const D3DBOX* pDestBox,[In] const wchar_t* pSrcFile,[In] const D3DBOX* pSrcBox,[In] unsigned int Filter,[In] D3DCOLOR ColorKey,[In] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  30964. </member>
  30965. <member name="M:SharpDX.Direct3D9.Volume.FromFileInMemory(SharpDX.Direct3D9.Volume,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32)">
  30966. <summary>
  30967. Loads a volume from a file in memory.
  30968. </summary>
  30969. <param name="volume">The volume.</param>
  30970. <param name="memory">The memory.</param>
  30971. <param name="filter">The filter.</param>
  30972. <param name="colorKey">The color key.</param>
  30973. <returns>
  30974. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  30975. </returns>
  30976. <unmanaged>HRESULT D3DXLoadVolumeFromFileInMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  30977. </member>
  30978. <member name="M:SharpDX.Direct3D9.Volume.FromFileInMemory(SharpDX.Direct3D9.Volume,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box)">
  30979. <summary>
  30980. Loads a volume from a file in memory.
  30981. </summary>
  30982. <param name="volume">The volume.</param>
  30983. <param name="memory">The memory.</param>
  30984. <param name="filter">The filter.</param>
  30985. <param name="colorKey">The color key.</param>
  30986. <param name="sourceBox">The source box.</param>
  30987. <param name="destinationBox">The destination box.</param>
  30988. <returns>
  30989. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  30990. </returns>
  30991. <unmanaged>HRESULT D3DXLoadVolumeFromFileInMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  30992. </member>
  30993. <member name="M:SharpDX.Direct3D9.Volume.FromFileInMemory(SharpDX.Direct3D9.Volume,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.ImageInformation@)">
  30994. <summary>
  30995. Loads a volume from a file in memory.
  30996. </summary>
  30997. <param name="volume">The volume.</param>
  30998. <param name="memory">The memory.</param>
  30999. <param name="filter">The filter.</param>
  31000. <param name="colorKey">The color key.</param>
  31001. <param name="sourceBox">The source box.</param>
  31002. <param name="destinationBox">The destination box.</param>
  31003. <param name="imageInformation">The image information.</param>
  31004. <returns>
  31005. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31006. </returns>
  31007. <unmanaged>HRESULT D3DXLoadVolumeFromFileInMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  31008. </member>
  31009. <member name="M:SharpDX.Direct3D9.Volume.FromFileInMemory(SharpDX.Direct3D9.Volume,System.Byte[],SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.ImageInformation@)">
  31010. <summary>
  31011. Loads a volume from a file in memory.
  31012. </summary>
  31013. <param name="volume">The volume.</param>
  31014. <param name="memory">The memory.</param>
  31015. <param name="filter">The filter.</param>
  31016. <param name="colorKey">The color key.</param>
  31017. <param name="sourceBox">The source box.</param>
  31018. <param name="destinationBox">The destination box.</param>
  31019. <param name="palette">The palette.</param>
  31020. <param name="imageInformation">The image information.</param>
  31021. <returns>
  31022. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31023. </returns>
  31024. <unmanaged>HRESULT D3DXLoadVolumeFromFileInMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  31025. </member>
  31026. <member name="M:SharpDX.Direct3D9.Volume.FromFileInStream(SharpDX.Direct3D9.Volume,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32)">
  31027. <summary>
  31028. Loads a volume from a file in a stream.
  31029. </summary>
  31030. <param name="volume">The volume.</param>
  31031. <param name="stream">The stream.</param>
  31032. <param name="filter">The filter.</param>
  31033. <param name="colorKey">The color key.</param>
  31034. <returns>
  31035. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31036. </returns>
  31037. <unmanaged>HRESULT D3DXLoadVolumeFromFileInMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  31038. </member>
  31039. <member name="M:SharpDX.Direct3D9.Volume.FromFileInStream(SharpDX.Direct3D9.Volume,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box)">
  31040. <summary>
  31041. Loads a volume from a file in a stream.
  31042. </summary>
  31043. <param name="volume">The volume.</param>
  31044. <param name="stream">The stream.</param>
  31045. <param name="filter">The filter.</param>
  31046. <param name="colorKey">The color key.</param>
  31047. <param name="sourceBox">The source box.</param>
  31048. <param name="destinationBox">The destination box.</param>
  31049. <returns>
  31050. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31051. </returns>
  31052. <unmanaged>HRESULT D3DXLoadVolumeFromFileInMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  31053. </member>
  31054. <member name="M:SharpDX.Direct3D9.Volume.FromFileInStream(SharpDX.Direct3D9.Volume,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.ImageInformation@)">
  31055. <summary>
  31056. Loads a volume from a file in a stream.
  31057. </summary>
  31058. <param name="volume">The volume.</param>
  31059. <param name="stream">The stream.</param>
  31060. <param name="filter">The filter.</param>
  31061. <param name="colorKey">The color key.</param>
  31062. <param name="sourceBox">The source box.</param>
  31063. <param name="destinationBox">The destination box.</param>
  31064. <param name="imageInformation">The image information.</param>
  31065. <returns>
  31066. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31067. </returns>
  31068. <unmanaged>HRESULT D3DXLoadVolumeFromFileInMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  31069. </member>
  31070. <member name="M:SharpDX.Direct3D9.Volume.FromFileInStream(SharpDX.Direct3D9.Volume,System.IO.Stream,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.ImageInformation@)">
  31071. <summary>
  31072. Loads a volume from a file in a stream.
  31073. </summary>
  31074. <param name="volume">The volume.</param>
  31075. <param name="stream">The stream.</param>
  31076. <param name="filter">The filter.</param>
  31077. <param name="colorKey">The color key.</param>
  31078. <param name="sourceBox">The source box.</param>
  31079. <param name="destinationBox">The destination box.</param>
  31080. <param name="palette">The palette.</param>
  31081. <param name="imageInformation">The image information.</param>
  31082. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  31083. <unmanaged>HRESULT D3DXLoadVolumeFromFileInMemory([In] IDirect3DVolume9* pDestVolume,[Out, Buffer] const PALETTEENTRY* pDestPalette,[In] const void* pDestBox,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] const void* pSrcBox,[In] D3DX_FILTER Filter,[In] int ColorKey,[In] void* pSrcInfo)</unmanaged>
  31084. </member>
  31085. <member name="M:SharpDX.Direct3D9.Volume.FromVolume(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.Filter,System.Int32)">
  31086. <summary>
  31087. Loads a volume from a source volume.
  31088. </summary>
  31089. <param name="destinationVolume">The destination volume.</param>
  31090. <param name="sourceVolume">The source volume.</param>
  31091. <param name="filter">The filter.</param>
  31092. <param name="colorKey">The color key.</param>
  31093. <returns>
  31094. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31095. </returns>
  31096. <unmanaged>HRESULT D3DXLoadVolumeFromVolume([In] IDirect3DVolume9* pDestVolume,[In] const PALETTEENTRY* pDestPalette,[In] const D3DBOX* pDestBox,[In] IDirect3DVolume9* pSrcVolume,[In] const PALETTEENTRY* pSrcPalette,[In] const D3DBOX* pSrcBox,[In] unsigned int Filter,[In] D3DCOLOR ColorKey)</unmanaged>
  31097. </member>
  31098. <member name="M:SharpDX.Direct3D9.Volume.FromVolume(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box)">
  31099. <summary>
  31100. Loads a volume from a source volume.
  31101. </summary>
  31102. <param name="destinationVolume">The destination volume.</param>
  31103. <param name="sourceVolume">The source volume.</param>
  31104. <param name="filter">The filter.</param>
  31105. <param name="colorKey">The color key.</param>
  31106. <param name="sourceBox">The source box.</param>
  31107. <param name="destinationBox">The destination box.</param>
  31108. <returns>
  31109. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31110. </returns>
  31111. <unmanaged>HRESULT D3DXLoadVolumeFromVolume([In] IDirect3DVolume9* pDestVolume,[In] const PALETTEENTRY* pDestPalette,[In] const D3DBOX* pDestBox,[In] IDirect3DVolume9* pSrcVolume,[In] const PALETTEENTRY* pSrcPalette,[In] const D3DBOX* pSrcBox,[In] unsigned int Filter,[In] D3DCOLOR ColorKey)</unmanaged>
  31112. </member>
  31113. <member name="M:SharpDX.Direct3D9.Volume.FromVolume(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.PaletteEntry[],SharpDX.Direct3D9.PaletteEntry[])">
  31114. <summary>
  31115. Loads a volume from a source volume.
  31116. </summary>
  31117. <param name="destinationVolume">The destination volume.</param>
  31118. <param name="sourceVolume">The source volume.</param>
  31119. <param name="filter">The filter.</param>
  31120. <param name="colorKey">The color key.</param>
  31121. <param name="sourceBox">The source box.</param>
  31122. <param name="destinationBox">The destination box.</param>
  31123. <param name="destinationPalette">The destination palette.</param>
  31124. <param name="sourcePalette">The source palette.</param>
  31125. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  31126. <unmanaged>HRESULT D3DXLoadVolumeFromVolume([In] IDirect3DVolume9* pDestVolume,[In] const PALETTEENTRY* pDestPalette,[In] const D3DBOX* pDestBox,[In] IDirect3DVolume9* pSrcVolume,[In] const PALETTEENTRY* pSrcPalette,[In] const D3DBOX* pSrcBox,[In] unsigned int Filter,[In] D3DCOLOR ColorKey)</unmanaged>
  31127. </member>
  31128. <member name="M:SharpDX.Direct3D9.Volume.LockBox(SharpDX.Direct3D9.LockFlags)">
  31129. <summary>
  31130. Locks a box on a volume resource.
  31131. </summary>
  31132. <param name="flags">The flags.</param>
  31133. <returns>
  31134. The locked region of this resource
  31135. </returns>
  31136. <unmanaged>HRESULT IDirect3DVolume9::LockBox([Out] D3DLOCKED_BOX* pLockedVolume,[In] const void* pBox,[In] D3DLOCK Flags)</unmanaged>
  31137. </member>
  31138. <member name="M:SharpDX.Direct3D9.Volume.LockBox(SharpDX.Direct3D9.Box,SharpDX.Direct3D9.LockFlags)">
  31139. <summary>
  31140. Locks a box on a volume resource.
  31141. </summary>
  31142. <param name="box">The box.</param>
  31143. <param name="flags">The flags.</param>
  31144. <returns>The locked region of this resource</returns>
  31145. <unmanaged>HRESULT IDirect3DVolume9::LockBox([Out] D3DLOCKED_BOX* pLockedVolume,[In] const void* pBox,[In] D3DLOCK Flags)</unmanaged>
  31146. </member>
  31147. <member name="M:SharpDX.Direct3D9.Volume.ToFile(SharpDX.Direct3D9.Volume,System.String,SharpDX.Direct3D9.ImageFileFormat)">
  31148. <summary>
  31149. Saves a volume to a file on disk.
  31150. </summary>
  31151. <param name="volume">The volume.</param>
  31152. <param name="fileName">Name of the file.</param>
  31153. <param name="format">The format.</param>
  31154. <returns>
  31155. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31156. </returns>
  31157. <unmanaged>HRESULT D3DXSaveVolumeToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DVolume9* pSrcVolume,[In] const PALETTEENTRY* pSrcPalette,[In] const D3DBOX* pSrcBox)</unmanaged>
  31158. </member>
  31159. <member name="M:SharpDX.Direct3D9.Volume.ToFile(SharpDX.Direct3D9.Volume,System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.Box)">
  31160. <summary>
  31161. Saves a volume to a file on disk.
  31162. </summary>
  31163. <param name="volume">The volume.</param>
  31164. <param name="fileName">Name of the file.</param>
  31165. <param name="format">The format.</param>
  31166. <param name="box">The box.</param>
  31167. <returns>
  31168. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31169. </returns>
  31170. <unmanaged>HRESULT D3DXSaveVolumeToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DVolume9* pSrcVolume,[In] const PALETTEENTRY* pSrcPalette,[In] const D3DBOX* pSrcBox)</unmanaged>
  31171. </member>
  31172. <member name="M:SharpDX.Direct3D9.Volume.ToFile(SharpDX.Direct3D9.Volume,System.String,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.PaletteEntry[])">
  31173. <summary>
  31174. Saves a volume to a file on disk.
  31175. </summary>
  31176. <param name="volume">The volume.</param>
  31177. <param name="fileName">Name of the file.</param>
  31178. <param name="format">The format.</param>
  31179. <param name="box">The box.</param>
  31180. <param name="palette">The palette.</param>
  31181. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  31182. <unmanaged>HRESULT D3DXSaveVolumeToFileW([In] const wchar_t* pDestFile,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DVolume9* pSrcVolume,[In] const PALETTEENTRY* pSrcPalette,[In] const D3DBOX* pSrcBox)</unmanaged>
  31183. </member>
  31184. <member name="M:SharpDX.Direct3D9.Volume.ToStream(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.ImageFileFormat)">
  31185. <summary>
  31186. Saves a volume to a <see cref="T:SharpDX.DataStream"/>.
  31187. </summary>
  31188. <param name="volume">The volume.</param>
  31189. <param name="format">The format.</param>
  31190. <returns>
  31191. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31192. </returns>
  31193. <unmanaged>HRESULT D3DXSaveVolumeToFileInMemory([In] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DVolume9* pSrcVolume,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcBox)</unmanaged>
  31194. </member>
  31195. <member name="M:SharpDX.Direct3D9.Volume.ToStream(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.Box)">
  31196. <summary>
  31197. Saves a volume to a <see cref="T:SharpDX.DataStream"/>.
  31198. </summary>
  31199. <param name="volume">The volume.</param>
  31200. <param name="format">The format.</param>
  31201. <param name="box">The box.</param>
  31202. <returns>
  31203. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31204. </returns>
  31205. <unmanaged>HRESULT D3DXSaveVolumeToFileInMemory([In] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DVolume9* pSrcVolume,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcBox)</unmanaged>
  31206. </member>
  31207. <member name="M:SharpDX.Direct3D9.Volume.ToStream(SharpDX.Direct3D9.Volume,SharpDX.Direct3D9.ImageFileFormat,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.PaletteEntry[])">
  31208. <summary>
  31209. Saves a volume to a <see cref="T:SharpDX.DataStream"/>.
  31210. </summary>
  31211. <param name="volume">The volume.</param>
  31212. <param name="format">The format.</param>
  31213. <param name="box">The box.</param>
  31214. <param name="palette">The palette.</param>
  31215. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  31216. <unmanaged>HRESULT D3DXSaveVolumeToFileInMemory([In] ID3DXBuffer** ppDestBuf,[In] D3DXIMAGE_FILEFORMAT DestFormat,[In] IDirect3DVolume9* pSrcVolume,[In, Buffer] const PALETTEENTRY* pSrcPalette,[In] const void* pSrcBox)</unmanaged>
  31217. </member>
  31218. <member name="T:SharpDX.Direct3D9.VolumeTexture">
  31219. <summary>
  31220. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.VolumeTexture" /> interface to manipulate a volume texture resource.</p>
  31221. </summary>
  31222. <remarks>
  31223. <p>The <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> interface can be obtained by calling the <strong>CreateVolumeTexture</strong> method or one of the <see cref="M:SharpDX.Direct3D9.D3DX9.CreateVolumeTexture(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.VolumeTexture@)" /><em>xxx</em> functions.</p><p>This interface inherits additional functionality from the <strong><see cref="T:SharpDX.Direct3D9.BaseTexture" /></strong> interface.</p><p>This interface, like all COM interfaces, inherits from the <strong><see cref="T:SharpDX.ComObject" /></strong> interface.</p><p>The LPDIRECT3DVOLUMETEXTURE9 and PDIRECT3DVOLUMETEXTURE9 types are defined as references to the <strong><see cref="T:SharpDX.Direct3D9.VolumeTexture" /></strong> interface. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.VolumeTexture" /> *LPDIRECT3DVOLUMETEXTURE9, *PDIRECT3DVOLUMETEXTURE9;
  31224. </pre>
  31225. </remarks>
  31226. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolumeTexture9']/*" />
  31227. <msdn-id>bb205941</msdn-id>
  31228. <unmanaged>IDirect3DVolumeTexture9</unmanaged>
  31229. <unmanaged-short>IDirect3DVolumeTexture9</unmanaged-short>
  31230. </member>
  31231. <member name="M:SharpDX.Direct3D9.VolumeTexture.#ctor(System.IntPtr)">
  31232. <summary>
  31233. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> class.
  31234. </summary>
  31235. <param name="nativePtr">The native pointer.</param>
  31236. </member>
  31237. <member name="M:SharpDX.Direct3D9.VolumeTexture.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.VolumeTexture">
  31238. <summary>
  31239. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  31240. </summary>
  31241. <param name="nativePointer">The native pointer.</param>
  31242. <returns>
  31243. The result of the conversion.
  31244. </returns>
  31245. </member>
  31246. <member name="M:SharpDX.Direct3D9.VolumeTexture.GetLevelDescription(System.Int32)">
  31247. <summary>
  31248. <p>Retrieves a level description of a volume texture resource.</p>
  31249. </summary>
  31250. <param name="level"><dd> <p>Identifies a level of the volume texture resource. This method returns a volume description for the level specified by this parameter. </p> </dd></param>
  31251. <returns><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.VolumeDescription" /></strong> structure, describing the returned volume texture level. </p> </dd></returns>
  31252. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolumeTexture9::GetLevelDesc']/*" />
  31253. <msdn-id>bb205943</msdn-id>
  31254. <unmanaged>HRESULT IDirect3DVolumeTexture9::GetLevelDesc([In] unsigned int Level,[Out] D3DVOLUME_DESC* pDesc)</unmanaged>
  31255. <unmanaged-short>IDirect3DVolumeTexture9::GetLevelDesc</unmanaged-short>
  31256. </member>
  31257. <member name="M:SharpDX.Direct3D9.VolumeTexture.GetVolumeLevel(System.Int32)">
  31258. <summary>
  31259. <p>Retrieves the specified volume texture level.</p>
  31260. </summary>
  31261. <param name="level"><dd> <p>Identifies a level of the volume texture resource. This method returns a volume for the level specified by this parameter. </p> </dd></param>
  31262. <returns><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface, representing the returned volume level. </p> </dd></returns>
  31263. <remarks>
  31264. <p>Calling this method will increase the internal reference count on the <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface. Failure to call <strong>IUnknown::Release</strong> when finished using this <strong><see cref="T:SharpDX.Direct3D9.Volume" /></strong> interface results in a memory leak.</p>
  31265. </remarks>
  31266. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolumeTexture9::GetVolumeLevel']/*" />
  31267. <msdn-id>bb205944</msdn-id>
  31268. <unmanaged>HRESULT IDirect3DVolumeTexture9::GetVolumeLevel([In] unsigned int Level,[Out] IDirect3DVolume9** ppVolumeLevel)</unmanaged>
  31269. <unmanaged-short>IDirect3DVolumeTexture9::GetVolumeLevel</unmanaged-short>
  31270. </member>
  31271. <member name="M:SharpDX.Direct3D9.VolumeTexture.LockBox(System.Int32,SharpDX.Direct3D9.LockedBox@,System.IntPtr,SharpDX.Direct3D9.LockFlags)">
  31272. <summary>
  31273. <p>Locks a box on a volume texture resource.</p>
  31274. </summary>
  31275. <param name="level"><dd> <p>Specifies the level of the volume texture resource to lock. </p> </dd></param>
  31276. <param name="lockedVolumeRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.LockedBox" /></strong> structure, describing the locked region. </p> </dd></param>
  31277. <param name="boxRef"><dd> <p>Pointer to the volume to lock. This parameter is specified by a reference to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure. Specifying <strong><c>null</c></strong> for this parameter locks the entire volume level. </p> </dd></param>
  31278. <param name="flags"><dd> <p>Combination of zero or more locking flags that describe the type of lock to perform. For this method, the valid flags are: </p> <ul> <li><see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.NoSystemLock" /></li> <li><see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" /></li> </ul> <p> For a description of the flags, see <see cref="T:SharpDX.Direct3D9.LockFlags" />. </p> </dd></param>
  31279. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  31280. <remarks>
  31281. <p>For performance reasons, dirty regions are only recorded for level zero of a texture. Dirty regions are automatically recorded when <strong>LockBox</strong> is called without <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" />. For more information, see <strong>UpdateTexture</strong>.</p>
  31282. </remarks>
  31283. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolumeTexture9::LockBox']/*" />
  31284. <msdn-id>bb205945</msdn-id>
  31285. <unmanaged>HRESULT IDirect3DVolumeTexture9::LockBox([In] unsigned int Level,[Out] D3DLOCKED_BOX* pLockedVolume,[In] const void* pBox,[In] D3DLOCK Flags)</unmanaged>
  31286. <unmanaged-short>IDirect3DVolumeTexture9::LockBox</unmanaged-short>
  31287. </member>
  31288. <member name="M:SharpDX.Direct3D9.VolumeTexture.UnlockBox(System.Int32)">
  31289. <summary>
  31290. <p>Unlocks a box on a volume texture resource.</p>
  31291. </summary>
  31292. <param name="level"><dd> <p>Specifies the level of the volume texture resource to unlock. </p> </dd></param>
  31293. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  31294. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolumeTexture9::UnlockBox']/*" />
  31295. <msdn-id>bb205946</msdn-id>
  31296. <unmanaged>HRESULT IDirect3DVolumeTexture9::UnlockBox([In] unsigned int Level)</unmanaged>
  31297. <unmanaged-short>IDirect3DVolumeTexture9::UnlockBox</unmanaged-short>
  31298. </member>
  31299. <member name="M:SharpDX.Direct3D9.VolumeTexture.AddDirtyBox(System.IntPtr)">
  31300. <summary>
  31301. <p>Adds a dirty region to a volume texture resource.</p>
  31302. </summary>
  31303. <param name="dirtyBoxRef"><dd> <p>Pointer to a <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> structure, specifying the dirty region to add. Specifying <strong><c>null</c></strong> expands the dirty region to cover the entire volume texture. </p> </dd></param>
  31304. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Direct3D9.ResultCode.Success" />. If the method fails, the return value can be <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. </p></returns>
  31305. <remarks>
  31306. <p>For performance reasons, dirty regions are only recorded for level zero of a texture. For sublevels, it is assumed that the corresponding (scaled) box is also dirty. Dirty regions are automatically recorded when <strong>LockBox</strong> is called without <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> or <see cref="F:SharpDX.Direct3D9.LockFlags.ReadOnly" />.</p><p>Using <see cref="F:SharpDX.Direct3D9.LockFlags.NoDirtyUpdate" /> and explicitly specifying dirty regions can be used to increase the efficiency of <strong>UpdateTexture</strong>. Using this method, applications can optimize what subset of a resource is copied by specifying dirty boxes on the resource. However, the dirty regions may be expanded to optimize alignment.</p>
  31307. </remarks>
  31308. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='IDirect3DVolumeTexture9::AddDirtyBox']/*" />
  31309. <msdn-id>bb205942</msdn-id>
  31310. <unmanaged>HRESULT IDirect3DVolumeTexture9::AddDirtyBox([In] const void* pDirtyBox)</unmanaged>
  31311. <unmanaged-short>IDirect3DVolumeTexture9::AddDirtyBox</unmanaged-short>
  31312. </member>
  31313. <member name="M:SharpDX.Direct3D9.VolumeTexture.#ctor(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool)">
  31314. <summary>
  31315. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> class.
  31316. </summary>
  31317. <param name="device">The device.</param>
  31318. <param name="width">The width.</param>
  31319. <param name="height">The height.</param>
  31320. <param name="depth">The depth.</param>
  31321. <param name="levelCount">The level count.</param>
  31322. <param name="usage">The usage.</param>
  31323. <param name="format">The format.</param>
  31324. <param name="pool">The pool.</param>
  31325. <unmanaged>HRESULT IDirect3DDevice9::CreateVolumeTexture([In] unsigned int Width,[In] unsigned int Height,[In] unsigned int Levels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DVolumeTexture9** ppVolumeTexture,[In] void** pSharedHandle)</unmanaged>
  31326. </member>
  31327. <member name="M:SharpDX.Direct3D9.VolumeTexture.#ctor(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,System.IntPtr@)">
  31328. <summary>
  31329. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> class.
  31330. </summary>
  31331. <param name="device">The device.</param>
  31332. <param name="width">The width.</param>
  31333. <param name="height">The height.</param>
  31334. <param name="depth">The depth.</param>
  31335. <param name="levelCount">The level count.</param>
  31336. <param name="usage">The usage.</param>
  31337. <param name="format">The format.</param>
  31338. <param name="pool">The pool.</param>
  31339. <param name="sharedHandle">The shared handle.</param>
  31340. <unmanaged>HRESULT IDirect3DDevice9::CreateVolumeTexture([In] unsigned int Width,[In] unsigned int Height,[In] unsigned int Levels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[Out, Fast] IDirect3DVolumeTexture9** ppVolumeTexture,[In] void** pSharedHandle)</unmanaged>
  31341. </member>
  31342. <member name="M:SharpDX.Direct3D9.VolumeTexture.CheckRequirements(SharpDX.Direct3D9.Device,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool)">
  31343. <summary>
  31344. Checks texture-creation parameters.
  31345. </summary>
  31346. <param name="device">Device associated with the texture.</param>
  31347. <param name="width">The width.</param>
  31348. <param name="height">The height.</param>
  31349. <param name="depth">The depth.</param>
  31350. <param name="mipLevelCount">Requested number of mipmap levels for the texture.</param>
  31351. <param name="usage">The requested usage for the texture.</param>
  31352. <param name="format">Requested format for the texture.</param>
  31353. <param name="pool">Memory class where the resource will be placed.</param>
  31354. <returns>
  31355. A value type containing the proposed values to pass to the texture creation functions.
  31356. </returns>
  31357. <unmanaged>HRESULT D3DXCheckVolumeTextureRequirements([In] IDirect3DDevice9* pDevice,[InOut] unsigned int* pWidth,[InOut] unsigned int* pHeight,[InOut] unsigned int* pDepth,[InOut] unsigned int* pNumMipLevels,[In] unsigned int Usage,[InOut] D3DFORMAT* pFormat,[In] D3DPOOL Pool)</unmanaged>
  31358. </member>
  31359. <member name="M:SharpDX.Direct3D9.VolumeTexture.Fill(SharpDX.Direct3D9.Fill3DCallback)">
  31360. <summary>
  31361. Uses a user-provided function to fill each texel of each mip level of a given texture.
  31362. </summary>
  31363. <param name="callback">A function that is used to fill the texture.</param>
  31364. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  31365. <unmanaged>HRESULT D3DXFillVolumeTexture([In] IDirect3DVolumeTexture9* pVolumeTexture,[In] __function__stdcall* pFunction,[In] void* pData)</unmanaged>
  31366. </member>
  31367. <member name="M:SharpDX.Direct3D9.VolumeTexture.Fill(SharpDX.Direct3D9.TextureShader)">
  31368. <summary>
  31369. Uses a compiled high-level shader language (HLSL) function to fill each texel of each mipmap level of a texture.
  31370. </summary>
  31371. <param name="shader">A texture shader object that is used to fill the texture.</param>
  31372. <returns>A <see cref="T:SharpDX.Result" /> object describing the result of the operation.</returns>
  31373. <unmanaged>HRESULT D3DXFillVolumeTextureTX([In] IDirect3DVolumeTexture9* pVolumeTexture,[In] ID3DXVolumeTextureShader* pVolumeTextureShader)</unmanaged>
  31374. </member>
  31375. <member name="M:SharpDX.Direct3D9.VolumeTexture.LockBox(System.Int32,SharpDX.Direct3D9.LockFlags)">
  31376. <summary>
  31377. Locks a box on a volume texture resource.
  31378. </summary>
  31379. <param name="level">The level.</param>
  31380. <param name="flags">The flags.</param>
  31381. <returns>
  31382. A <see cref="T:SharpDX.DataBox"/> describing the region locked.
  31383. </returns>
  31384. <unmanaged>HRESULT IDirect3DVolumeTexture9::LockBox([In] unsigned int Level,[Out] D3DLOCKED_BOX* pLockedVolume,[In] const void* pBox,[In] D3DLOCK Flags)</unmanaged>
  31385. </member>
  31386. <member name="M:SharpDX.Direct3D9.VolumeTexture.LockBox(System.Int32,SharpDX.Direct3D9.Box,SharpDX.Direct3D9.LockFlags)">
  31387. <summary>
  31388. Locks a box on a volume texture resource.
  31389. </summary>
  31390. <param name="level">The level.</param>
  31391. <param name="box">The box.</param>
  31392. <param name="flags">The flags.</param>
  31393. <returns>
  31394. A <see cref="T:SharpDX.DataRectangle"/> describing the region locked.
  31395. </returns>
  31396. <unmanaged>HRESULT IDirect3DVolumeTexture9::LockBox([In] unsigned int Level,[Out] D3DLOCKED_BOX* pLockedVolume,[In] const void* pBox,[In] D3DLOCK Flags)</unmanaged>
  31397. </member>
  31398. <member name="M:SharpDX.Direct3D9.VolumeTexture.AddDirtyBox">
  31399. <summary>
  31400. Adds a dirty region to a texture resource.
  31401. </summary>
  31402. <returns>
  31403. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31404. </returns>
  31405. <unmanaged>HRESULT IDirect3DVolumeTexture9::AddDirtyBox([In] const void* pDirtyBox)</unmanaged>
  31406. </member>
  31407. <member name="M:SharpDX.Direct3D9.VolumeTexture.AddDirtyBox(SharpDX.Direct3D9.Box)">
  31408. <summary>
  31409. Adds a dirty region to a texture resource.
  31410. </summary>
  31411. <param name="directBoxRef">The direct box ref.</param>
  31412. <returns>
  31413. A <see cref="T:SharpDX.Result"/> object describing the result of the operation.
  31414. </returns>
  31415. <unmanaged>HRESULT IDirect3DVolumeTexture9::AddDirtyBox([In] const void* pDirtyBox)</unmanaged>
  31416. </member>
  31417. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromFile(SharpDX.Direct3D9.Device,System.String)">
  31418. <summary>
  31419. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a file
  31420. </summary>
  31421. <param name="device">The device.</param>
  31422. <param name="filename">The filename.</param>
  31423. <returns>
  31424. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31425. </returns>
  31426. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31427. </member>
  31428. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromFile(SharpDX.Direct3D9.Device,System.String,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool)">
  31429. <summary>
  31430. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a file
  31431. </summary>
  31432. <param name="device">The device.</param>
  31433. <param name="filename">The filename.</param>
  31434. <param name="usage">The usage.</param>
  31435. <param name="pool">The pool.</param>
  31436. <returns>
  31437. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31438. </returns>
  31439. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31440. </member>
  31441. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  31442. <summary>
  31443. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a file
  31444. </summary>
  31445. <param name="device">The device.</param>
  31446. <param name="filename">The filename.</param>
  31447. <param name="width">The width.</param>
  31448. <param name="height">The height.</param>
  31449. <param name="depth">The depth.</param>
  31450. <param name="levelCount">The level count.</param>
  31451. <param name="usage">The usage.</param>
  31452. <param name="format">The format.</param>
  31453. <param name="pool">The pool.</param>
  31454. <param name="filter">The filter.</param>
  31455. <param name="mipFilter">The mip filter.</param>
  31456. <param name="colorKey">The color key.</param>
  31457. <returns>
  31458. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31459. </returns>
  31460. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31461. </member>
  31462. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@)">
  31463. <summary>
  31464. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a file
  31465. </summary>
  31466. <param name="device">The device.</param>
  31467. <param name="filename">The filename.</param>
  31468. <param name="width">The width.</param>
  31469. <param name="height">The height.</param>
  31470. <param name="depth">The depth.</param>
  31471. <param name="levelCount">The level count.</param>
  31472. <param name="usage">The usage.</param>
  31473. <param name="format">The format.</param>
  31474. <param name="pool">The pool.</param>
  31475. <param name="filter">The filter.</param>
  31476. <param name="mipFilter">The mip filter.</param>
  31477. <param name="colorKey">The color key.</param>
  31478. <param name="imageInformation">The image information.</param>
  31479. <returns>
  31480. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31481. </returns>
  31482. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31483. </member>
  31484. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry[]@)">
  31485. <summary>
  31486. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a file
  31487. </summary>
  31488. <param name="device">The device.</param>
  31489. <param name="filename">The filename.</param>
  31490. <param name="width">The width.</param>
  31491. <param name="height">The height.</param>
  31492. <param name="depth">The depth.</param>
  31493. <param name="levelCount">The level count.</param>
  31494. <param name="usage">The usage.</param>
  31495. <param name="format">The format.</param>
  31496. <param name="pool">The pool.</param>
  31497. <param name="filter">The filter.</param>
  31498. <param name="mipFilter">The mip filter.</param>
  31499. <param name="colorKey">The color key.</param>
  31500. <param name="imageInformation">The image information.</param>
  31501. <param name="palette">The palette.</param>
  31502. <returns>
  31503. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31504. </returns>
  31505. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileExW([In] IDirect3DDevice9* pDevice,[In] const wchar_t* pSrcFile,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[In] void* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31506. </member>
  31507. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[])">
  31508. <summary>
  31509. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a memory buffer.
  31510. </summary>
  31511. <param name="device">The device.</param>
  31512. <param name="buffer">The buffer.</param>
  31513. <returns>
  31514. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31515. </returns>
  31516. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemory([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31517. </member>
  31518. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool)">
  31519. <summary>
  31520. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a memory buffer.
  31521. </summary>
  31522. <param name="device">The device.</param>
  31523. <param name="buffer">The buffer.</param>
  31524. <param name="usage">The usage.</param>
  31525. <param name="pool">The pool.</param>
  31526. <returns>
  31527. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31528. </returns>
  31529. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31530. </member>
  31531. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  31532. <summary>
  31533. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a memory buffer.
  31534. </summary>
  31535. <param name="device">The device.</param>
  31536. <param name="buffer">The buffer.</param>
  31537. <param name="width">The width.</param>
  31538. <param name="height">The height.</param>
  31539. <param name="depth">The depth.</param>
  31540. <param name="levelCount">The level count.</param>
  31541. <param name="usage">The usage.</param>
  31542. <param name="format">The format.</param>
  31543. <param name="pool">The pool.</param>
  31544. <param name="filter">The filter.</param>
  31545. <param name="mipFilter">The mip filter.</param>
  31546. <param name="colorKey">The color key.</param>
  31547. <returns>
  31548. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31549. </returns>
  31550. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31551. </member>
  31552. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@)">
  31553. <summary>
  31554. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a memory buffer.
  31555. </summary>
  31556. <param name="device">The device.</param>
  31557. <param name="buffer">The buffer.</param>
  31558. <param name="width">The width.</param>
  31559. <param name="height">The height.</param>
  31560. <param name="depth">The depth.</param>
  31561. <param name="levelCount">The level count.</param>
  31562. <param name="usage">The usage.</param>
  31563. <param name="format">The format.</param>
  31564. <param name="pool">The pool.</param>
  31565. <param name="filter">The filter.</param>
  31566. <param name="mipFilter">The mip filter.</param>
  31567. <param name="colorKey">The color key.</param>
  31568. <param name="imageInformation">The image information.</param>
  31569. <returns>
  31570. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31571. </returns>
  31572. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31573. </member>
  31574. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry[]@)">
  31575. <summary>
  31576. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a memory buffer.
  31577. </summary>
  31578. <param name="device">The device.</param>
  31579. <param name="buffer">The buffer.</param>
  31580. <param name="width">The width.</param>
  31581. <param name="height">The height.</param>
  31582. <param name="depth">The depth.</param>
  31583. <param name="levelCount">The level count.</param>
  31584. <param name="usage">The usage.</param>
  31585. <param name="format">The format.</param>
  31586. <param name="pool">The pool.</param>
  31587. <param name="filter">The filter.</param>
  31588. <param name="mipFilter">The mip filter.</param>
  31589. <param name="colorKey">The color key.</param>
  31590. <param name="imageInformation">The image information.</param>
  31591. <param name="palette">The palette.</param>
  31592. <returns>
  31593. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31594. </returns>
  31595. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31596. </member>
  31597. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream)">
  31598. <summary>
  31599. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a stream.
  31600. </summary>
  31601. <param name="device">The device.</param>
  31602. <param name="stream">The stream.</param>
  31603. <returns>A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/></returns>
  31604. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemory([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31605. </member>
  31606. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Pool)">
  31607. <summary>
  31608. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a stream.
  31609. </summary>
  31610. <param name="device">The device.</param>
  31611. <param name="stream">The stream.</param>
  31612. <param name="usage">The usage.</param>
  31613. <param name="pool">The pool.</param>
  31614. <returns>
  31615. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31616. </returns>
  31617. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31618. </member>
  31619. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  31620. <summary>
  31621. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a stream.
  31622. </summary>
  31623. <param name="device">The device.</param>
  31624. <param name="stream">The stream.</param>
  31625. <param name="width">The width.</param>
  31626. <param name="height">The height.</param>
  31627. <param name="depth">The depth.</param>
  31628. <param name="levelCount">The level count.</param>
  31629. <param name="usage">The usage.</param>
  31630. <param name="format">The format.</param>
  31631. <param name="pool">The pool.</param>
  31632. <param name="filter">The filter.</param>
  31633. <param name="mipFilter">The mip filter.</param>
  31634. <param name="colorKey">The color key.</param>
  31635. <returns>
  31636. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31637. </returns>
  31638. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31639. </member>
  31640. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32)">
  31641. <summary>
  31642. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a stream.
  31643. </summary>
  31644. <param name="device">The device.</param>
  31645. <param name="stream">The stream.</param>
  31646. <param name="sizeBytes">The size bytes.</param>
  31647. <param name="width">The width.</param>
  31648. <param name="height">The height.</param>
  31649. <param name="depth">The depth.</param>
  31650. <param name="levelCount">The level count.</param>
  31651. <param name="usage">The usage.</param>
  31652. <param name="format">The format.</param>
  31653. <param name="pool">The pool.</param>
  31654. <param name="filter">The filter.</param>
  31655. <param name="mipFilter">The mip filter.</param>
  31656. <param name="colorKey">The color key.</param>
  31657. <returns>
  31658. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31659. </returns>
  31660. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31661. </member>
  31662. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@)">
  31663. <summary>
  31664. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a stream.
  31665. </summary>
  31666. <param name="device">The device.</param>
  31667. <param name="stream">The stream.</param>
  31668. <param name="sizeBytes">The size bytes.</param>
  31669. <param name="width">The width.</param>
  31670. <param name="height">The height.</param>
  31671. <param name="depth">The depth.</param>
  31672. <param name="levelCount">The level count.</param>
  31673. <param name="usage">The usage.</param>
  31674. <param name="format">The format.</param>
  31675. <param name="pool">The pool.</param>
  31676. <param name="filter">The filter.</param>
  31677. <param name="mipFilter">The mip filter.</param>
  31678. <param name="colorKey">The color key.</param>
  31679. <param name="imageInformation">The image information.</param>
  31680. <returns>
  31681. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31682. </returns>
  31683. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31684. </member>
  31685. <member name="M:SharpDX.Direct3D9.VolumeTexture.FromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,SharpDX.Direct3D9.ImageInformation@,SharpDX.Direct3D9.PaletteEntry[]@)">
  31686. <summary>
  31687. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a stream.
  31688. </summary>
  31689. <param name="device">The device.</param>
  31690. <param name="stream">The stream.</param>
  31691. <param name="sizeBytes">The size bytes.</param>
  31692. <param name="width">The width.</param>
  31693. <param name="height">The height.</param>
  31694. <param name="depth">The depth.</param>
  31695. <param name="levelCount">The level count.</param>
  31696. <param name="usage">The usage.</param>
  31697. <param name="format">The format.</param>
  31698. <param name="pool">The pool.</param>
  31699. <param name="filter">The filter.</param>
  31700. <param name="mipFilter">The mip filter.</param>
  31701. <param name="colorKey">The color key.</param>
  31702. <param name="imageInformation">The image information.</param>
  31703. <param name="palette">The palette.</param>
  31704. <returns>
  31705. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31706. </returns>
  31707. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31708. </member>
  31709. <member name="M:SharpDX.Direct3D9.VolumeTexture.CreateFromMemory(SharpDX.Direct3D9.Device,System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  31710. <summary>
  31711. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a stream.
  31712. </summary>
  31713. <param name="device">The device.</param>
  31714. <param name="buffer">The buffer.</param>
  31715. <param name="width">The width.</param>
  31716. <param name="height">The height.</param>
  31717. <param name="depth">The depth.</param>
  31718. <param name="levelCount">The level count.</param>
  31719. <param name="usage">The usage.</param>
  31720. <param name="format">The format.</param>
  31721. <param name="pool">The pool.</param>
  31722. <param name="filter">The filter.</param>
  31723. <param name="mipFilter">The mip filter.</param>
  31724. <param name="colorKey">The color key.</param>
  31725. <param name="imageInformation">The image information.</param>
  31726. <param name="palette">The palette.</param>
  31727. <returns>
  31728. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31729. </returns>
  31730. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31731. </member>
  31732. <member name="M:SharpDX.Direct3D9.VolumeTexture.CreateFromStream(SharpDX.Direct3D9.Device,System.IO.Stream,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  31733. <summary>
  31734. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a stream.
  31735. </summary>
  31736. <param name="device">The device.</param>
  31737. <param name="stream">The stream.</param>
  31738. <param name="sizeBytes">The size bytes.</param>
  31739. <param name="width">The width.</param>
  31740. <param name="height">The height.</param>
  31741. <param name="depth">The depth.</param>
  31742. <param name="levelCount">The level count.</param>
  31743. <param name="usage">The usage.</param>
  31744. <param name="format">The format.</param>
  31745. <param name="pool">The pool.</param>
  31746. <param name="filter">The filter.</param>
  31747. <param name="mipFilter">The mip filter.</param>
  31748. <param name="colorKey">The color key.</param>
  31749. <param name="imageInformation">The image information.</param>
  31750. <param name="palette">The palette.</param>
  31751. <returns>A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/></returns>
  31752. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31753. </member>
  31754. <member name="M:SharpDX.Direct3D9.VolumeTexture.CreateFromPointer(SharpDX.Direct3D9.Device,System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  31755. <summary>
  31756. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a stream.
  31757. </summary>
  31758. <param name="device">The device.</param>
  31759. <param name="pointer">The pointer.</param>
  31760. <param name="sizeInBytes">The size in bytes.</param>
  31761. <param name="width">The width.</param>
  31762. <param name="height">The height.</param>
  31763. <param name="depth">The depth.</param>
  31764. <param name="levelCount">The level count.</param>
  31765. <param name="usage">The usage.</param>
  31766. <param name="format">The format.</param>
  31767. <param name="pool">The pool.</param>
  31768. <param name="filter">The filter.</param>
  31769. <param name="mipFilter">The mip filter.</param>
  31770. <param name="colorKey">The color key.</param>
  31771. <param name="imageInformation">The image information.</param>
  31772. <param name="palette">The palette.</param>
  31773. <returns>
  31774. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31775. </returns>
  31776. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31777. </member>
  31778. <member name="M:SharpDX.Direct3D9.VolumeTexture.CreateFromFile(SharpDX.Direct3D9.Device,System.String,System.Int32,System.Int32,System.Int32,System.Int32,SharpDX.Direct3D9.Usage,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.Pool,SharpDX.Direct3D9.Filter,SharpDX.Direct3D9.Filter,System.Int32,System.IntPtr,SharpDX.Direct3D9.PaletteEntry[])">
  31779. <summary>
  31780. Creates a <see cref="T:SharpDX.Direct3D9.VolumeTexture"/> from a stream.
  31781. </summary>
  31782. <param name="device">The device.</param>
  31783. <param name="fileName">Name of the file.</param>
  31784. <param name="width">The width.</param>
  31785. <param name="height">The height.</param>
  31786. <param name="depth">The depth.</param>
  31787. <param name="levelCount">The level count.</param>
  31788. <param name="usage">The usage.</param>
  31789. <param name="format">The format.</param>
  31790. <param name="pool">The pool.</param>
  31791. <param name="filter">The filter.</param>
  31792. <param name="mipFilter">The mip filter.</param>
  31793. <param name="colorKey">The color key.</param>
  31794. <param name="imageInformation">The image information.</param>
  31795. <param name="palette">The palette.</param>
  31796. <returns>
  31797. A <see cref="T:SharpDX.Direct3D9.VolumeTexture"/>
  31798. </returns>
  31799. <unmanaged>HRESULT D3DXCreateVolumeTextureFromFileInMemoryEx([In] IDirect3DDevice9* pDevice,[In] const void* pSrcData,[In] unsigned int SrcDataSize,[In] unsigned int Size,[In] unsigned int MipLevels,[In] unsigned int Usage,[In] D3DFORMAT Format,[In] D3DPOOL Pool,[In] unsigned int Filter,[In] unsigned int MipFilter,[In] D3DCOLOR ColorKey,[Out] D3DXIMAGE_INFO* pSrcInfo,[Out, Buffer] PALETTEENTRY* pPalette,[In] IDirect3DVolumeTexture9** ppVolumeTexture)</unmanaged>
  31800. </member>
  31801. <member name="T:SharpDX.Direct3D9.XFile">
  31802. <summary>
  31803. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.XFile" /> interface to create instances of the <strong><see cref="T:SharpDX.Direct3D9.XFileEnumObject" /></strong> and <strong><see cref="T:SharpDX.Direct3D9.XFileSaveObject" /></strong> interfaces, and to register templates. </p>
  31804. </summary>
  31805. <remarks>
  31806. <p>An <see cref="T:SharpDX.Direct3D9.XFile" /> object also contains a local template store. This local storage may be added to only with the <strong><see cref="M:SharpDX.Direct3D9.XFile.RegisterEnumTemplates(SharpDX.Direct3D9.XFileEnumObject)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.XFile.RegisterTemplates(System.IntPtr,SharpDX.PointerSize)" /></strong> methods.</p><p> <strong><see cref="T:SharpDX.Direct3D9.XFileEnumObject" /></strong> and <strong><see cref="T:SharpDX.Direct3D9.XFileSaveObject" /></strong> objects created with <strong><see cref="M:SharpDX.Direct3D9.XFile.CreateEnumObject(System.IntPtr,System.Int32,SharpDX.Direct3D9.XFileEnumObject@)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.XFile.CreateSaveObject(System.IntPtr,System.Int32,System.Int32,SharpDX.Direct3D9.XFileSaveObject@)" /></strong> also utilize the template store of the parent <see cref="T:SharpDX.Direct3D9.XFile" /> object.</p><p>The <see cref="T:SharpDX.Direct3D9.XFile" /> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.D3DX9.FileCreate(SharpDX.Direct3D9.XFile@)" /></strong> function.</p><p>The globally unique identifier (<see cref="T:System.Guid" />) for the <see cref="T:SharpDX.Direct3D9.XFile" /> interface is IID_ID3DXFile.</p><p>The LPD3DXFILE type is defined as a reference to the <see cref="T:SharpDX.Direct3D9.XFile" /> interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.XFile" /> *LPD3DXFILE;
  31807. </pre>
  31808. </remarks>
  31809. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFile']/*" />
  31810. <msdn-id>bb205836</msdn-id>
  31811. <unmanaged>ID3DXFile</unmanaged>
  31812. <unmanaged-short>ID3DXFile</unmanaged-short>
  31813. </member>
  31814. <member name="M:SharpDX.Direct3D9.XFile.#ctor(System.IntPtr)">
  31815. <summary>
  31816. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.XFile"/> class.
  31817. </summary>
  31818. <param name="nativePtr">The native pointer.</param>
  31819. </member>
  31820. <member name="M:SharpDX.Direct3D9.XFile.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.XFile">
  31821. <summary>
  31822. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.XFile"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  31823. </summary>
  31824. <param name="nativePointer">The native pointer.</param>
  31825. <returns>
  31826. The result of the conversion.
  31827. </returns>
  31828. </member>
  31829. <member name="M:SharpDX.Direct3D9.XFile.CreateEnumObject(System.IntPtr,System.Int32,SharpDX.Direct3D9.XFileEnumObject@)">
  31830. <summary>
  31831. <p>Creates an enumerator object that will read a .x file.</p>
  31832. </summary>
  31833. <param name="arg0"><dd> <p>The data source. Either:</p> <ul> <li>A file name</li> <li>A <strong>D3DXF_FILELOADMEMORY</strong> structure</li> <li>A <strong>D3DXF_FILELOADRESOURCE</strong> structure</li> </ul> <p> Depending on the value of loadflags.</p> </dd></param>
  31834. <param name="arg1"><dd> <p>Value that specifies the source of the data. This value can be one of the D3DXF_FILELOADOPTIONS flags.</p> </dd></param>
  31835. <param name="arg2"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.XFileEnumObject" /></strong> interface, representing the created enumerator object. </p> </dd></param>
  31836. <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: D3DXFERR_BADVALUE, D3DXFERR_PARSEERROR.</p></returns>
  31837. <remarks>
  31838. <p>After using this method, use one of the <strong><see cref="T:SharpDX.Direct3D9.XFileEnumObject" /></strong> methods to retrieve a data object.</p>
  31839. </remarks>
  31840. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFile::CreateEnumObject']/*" />
  31841. <msdn-id>bb173957</msdn-id>
  31842. <unmanaged>HRESULT ID3DXFile::CreateEnumObject([In] const void* arg0,[In] unsigned int arg1,[In] ID3DXFileEnumObject** arg2)</unmanaged>
  31843. <unmanaged-short>ID3DXFile::CreateEnumObject</unmanaged-short>
  31844. </member>
  31845. <member name="M:SharpDX.Direct3D9.XFile.CreateSaveObject(System.IntPtr,System.Int32,System.Int32,SharpDX.Direct3D9.XFileSaveObject@)">
  31846. <summary>
  31847. <p>Creates a save object that will be used to save data to a .x file.</p>
  31848. </summary>
  31849. <param name="arg0"><dd> <p>Pointer to the name of the file to use for saving data.</p> </dd></param>
  31850. <param name="arg1"><dd> <p>Value that specifies the name of the file to which data is to be saved. This value can be one of the File Save Options flags.</p> </dd></param>
  31851. <param name="arg2"><dd> <p>Indicates the format to use when saving the .x file. This value can be one of the File Formats flags. For more information, see Remarks.</p> </dd></param>
  31852. <param name="arg3"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.XFileSaveObject" /></strong> interface, representing the created save object.</p> </dd></param>
  31853. <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: D3DXFERR_BADVALUE, D3DXFERR_PARSEERROR.</p></returns>
  31854. <remarks>
  31855. <p>After using this method, use methods of the <strong><see cref="T:SharpDX.Direct3D9.XFileSaveObject" /></strong> interface to create data objects and to save templates or data.</p><p>For the saved file format <em>dwFileFormat</em>, one of the binary, legacy binary, or text flags in File Formats must be specified. The file can be compressed by using the optional <see cref="F:SharpDX.Direct3D9.XFileFormat.Compressed" /> flag.</p><p>The file format values can be combined in a logical OR to create compressed text or compressed binary files. If you indicate that the file format should be text and compressed, the file will be written out first as text and then compressed. However, compressed text files are not as efficient as binary text files; in most cases, therefore, you will want to indicate binary and compressed.</p>
  31856. </remarks>
  31857. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFile::CreateSaveObject']/*" />
  31858. <msdn-id>bb173958</msdn-id>
  31859. <unmanaged>HRESULT ID3DXFile::CreateSaveObject([In] const void* arg0,[In] unsigned int arg1,[In] unsigned int arg2,[In] ID3DXFileSaveObject** arg3)</unmanaged>
  31860. <unmanaged-short>ID3DXFile::CreateSaveObject</unmanaged-short>
  31861. </member>
  31862. <member name="M:SharpDX.Direct3D9.XFile.RegisterTemplates(System.IntPtr,SharpDX.PointerSize)">
  31863. <summary>
  31864. <p>Registers custom templates.</p>
  31865. </summary>
  31866. <param name="arg0"><dd> <p>Pointer to a buffer consisting of a .x file in text or binary format that contains templates.</p> </dd></param>
  31867. <param name="arg1"><dd> <p>Size of the buffer pointed to by pvData, in bytes.</p> </dd></param>
  31868. <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: D3DXFERR_BADVALUE, D3DXFERR_PARSEERROR.</p></returns>
  31869. <remarks>
  31870. <p>The following code fragment provides an example call to <strong>RegisterTemplates</strong> And example contents for the buffer to which <strong>pvData</strong> points.</p><pre> #define XSKINEXP_TEMPLATES \ "xof 0303txt 0032\ template XSkinMeshHeader \ { \ &lt;3CF169CE-FF7C-44ab-93C0-F78F62D172E2&gt; \ WORD nMaxSkinWeightsPerVertex; \ WORD nMaxSkinWeightsPerFace; \ WORD nBones; \ } \ template VertexDuplicationIndices \ { \ &lt;B8D65549-D7C9-4995-89CF-53A9A8B031E3&gt; \ DWORD nIndices; \ DWORD nOriginalVertices; \ array DWORD indices[nIndices]; \ } \ template SkinWeights \ { \ &lt;6F0D123B-BAD2-4167-A0D0-80224F25FABB&gt; \ STRING transformNodeName;\ DWORD nWeights; \ array DWORD vertexIndices[nWeights]; \ array float weights[nWeights]; \ Matrix4x4 matrixOffset; \ }"
  31871. .
  31872. .
  31873. . LPD3DXFILE pD3DXFile = <c>null</c>; if ( FAILED (hr = pD3DXFile-&gt;RegisterTemplates( (LPVOID)XSKINEXP_TEMPLATES, sizeof( XSKINEXP_TEMPLATES ) - 1 ) ) )
  31874. goto End;
  31875. </pre><p>All templates must specify a name and a UUID.</p><p>This method calls the <strong>RegisterEnumTemplates</strong> method, obtaining an <strong><see cref="T:SharpDX.Direct3D9.XFileEnumObject" /></strong> interface reference by calling <strong>CreateEnumObject</strong> with <strong>pvData</strong> as the first parameter.</p>
  31876. </remarks>
  31877. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFile::RegisterTemplates']/*" />
  31878. <msdn-id>bb173960</msdn-id>
  31879. <unmanaged>HRESULT ID3DXFile::RegisterTemplates([In] const void* arg0,[In] SIZE_T arg1)</unmanaged>
  31880. <unmanaged-short>ID3DXFile::RegisterTemplates</unmanaged-short>
  31881. </member>
  31882. <member name="M:SharpDX.Direct3D9.XFile.RegisterEnumTemplates(SharpDX.Direct3D9.XFileEnumObject)">
  31883. <summary>
  31884. <p>Registers custom templates, given an <strong><see cref="T:SharpDX.Direct3D9.XFileEnumObject" /></strong> enumeration object.</p>
  31885. </summary>
  31886. <param name="arg0">No documentation.</param>
  31887. <returns><p>If the method succeeds, the return value is <see cref="F:SharpDX.Result.Ok" /> .</p><p>If the method fails, the following value will be returned: D3DXFERR_BADVALUE.</p></returns>
  31888. <remarks>
  31889. <p>When this method is called, it copies templates stored with the <see cref="T:SharpDX.Direct3D9.XFileEnumObject" />, representing the file, to the local template store of the <strong><see cref="T:SharpDX.Direct3D9.XFile" /></strong> object.</p><p>If an <strong><see cref="T:SharpDX.Direct3D9.XFileEnumObject" /></strong> reference is not available, call the <strong>RegisterTemplates</strong> method instead.</p>
  31890. </remarks>
  31891. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFile::RegisterEnumTemplates']/*" />
  31892. <msdn-id>bb173959</msdn-id>
  31893. <unmanaged>HRESULT ID3DXFile::RegisterEnumTemplates([In] ID3DXFileEnumObject* arg0)</unmanaged>
  31894. <unmanaged-short>ID3DXFile::RegisterEnumTemplates</unmanaged-short>
  31895. </member>
  31896. <member name="T:SharpDX.Direct3D9.XFileData">
  31897. <summary>
  31898. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.XFileData" /> interface to build or to access the immediate hierarchy of the data object. Template restrictions determine the hierarchy.</p>
  31899. </summary>
  31900. <remarks>
  31901. <p>Data types allowed by the template are called optional members. The optional members are not required, but an object might miss important information without them. These optional members are saved as children of the data object. A child can be another data object or a reference to an earlier data object.</p><p>The <see cref="T:System.Guid" /> for the <see cref="T:SharpDX.Direct3D9.XFileData" /> interface is IID_ID3DXFileData.</p><p>The LPD3DXFILEDATA type is defined as a reference to this interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.XFileData" /> *LPD3DXFILEDATA;
  31902. </pre>
  31903. </remarks>
  31904. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData']/*" />
  31905. <msdn-id>bb205837</msdn-id>
  31906. <unmanaged>ID3DXFileData</unmanaged>
  31907. <unmanaged-short>ID3DXFileData</unmanaged-short>
  31908. </member>
  31909. <member name="M:SharpDX.Direct3D9.XFileData.#ctor(System.IntPtr)">
  31910. <summary>
  31911. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.XFileData"/> class.
  31912. </summary>
  31913. <param name="nativePtr">The native pointer.</param>
  31914. </member>
  31915. <member name="M:SharpDX.Direct3D9.XFileData.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.XFileData">
  31916. <summary>
  31917. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.XFileData"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  31918. </summary>
  31919. <param name="nativePointer">The native pointer.</param>
  31920. <returns>
  31921. The result of the conversion.
  31922. </returns>
  31923. </member>
  31924. <member name="P:SharpDX.Direct3D9.XFileData.Enum">
  31925. <summary>
  31926. <p>Retrieves the enumeration object in this file data object.</p>
  31927. </summary>
  31928. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::GetEnum']/*" />
  31929. <msdn-id>bb205840</msdn-id>
  31930. <unmanaged>GetEnum</unmanaged>
  31931. <unmanaged-short>GetEnum</unmanaged-short>
  31932. <unmanaged>HRESULT ID3DXFileData::GetEnum([Out] ID3DXFileEnumObject** arg0)</unmanaged>
  31933. </member>
  31934. <member name="P:SharpDX.Direct3D9.XFileData.TypeInfo">
  31935. <summary>
  31936. <p>Retrieves the template ID in this file data object.</p>
  31937. </summary>
  31938. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::GetType']/*" />
  31939. <msdn-id>bb205843</msdn-id>
  31940. <unmanaged>GetType</unmanaged>
  31941. <unmanaged-short>GetType</unmanaged-short>
  31942. <unmanaged>HRESULT ID3DXFileData::GetType([Out] GUID* arg0)</unmanaged>
  31943. </member>
  31944. <member name="P:SharpDX.Direct3D9.XFileData.IsReference">
  31945. <summary>
  31946. <p>Indicates whether this file data object is a reference object that points to another child data object.</p>
  31947. </summary>
  31948. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::IsReference']/*" />
  31949. <msdn-id>bb205844</msdn-id>
  31950. <unmanaged>IsReference</unmanaged>
  31951. <unmanaged-short>IsReference</unmanaged-short>
  31952. <unmanaged>BOOL ID3DXFileData::IsReference()</unmanaged>
  31953. </member>
  31954. <member name="P:SharpDX.Direct3D9.XFileData.Children">
  31955. <summary>
  31956. <p>Retrieves the number of children in this file data object.</p>
  31957. </summary>
  31958. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::GetChildren']/*" />
  31959. <msdn-id>bb205839</msdn-id>
  31960. <unmanaged>GetChildren</unmanaged>
  31961. <unmanaged-short>GetChildren</unmanaged-short>
  31962. <unmanaged>HRESULT ID3DXFileData::GetChildren([Out] SIZE_T* arg0)</unmanaged>
  31963. </member>
  31964. <member name="M:SharpDX.Direct3D9.XFileData.GetEnum(SharpDX.Direct3D9.XFileEnumObject@)">
  31965. <summary>
  31966. <p>Retrieves the enumeration object in this file data object.</p>
  31967. </summary>
  31968. <param name="arg0"><dd> <p>Address of a reference to receive the enumeration object in this file data object.</p> </dd></param>
  31969. <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: D3DXFERR_BADVALUE.</p></returns>
  31970. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::GetEnum']/*" />
  31971. <msdn-id>bb205840</msdn-id>
  31972. <unmanaged>HRESULT ID3DXFileData::GetEnum([Out] ID3DXFileEnumObject** arg0)</unmanaged>
  31973. <unmanaged-short>ID3DXFileData::GetEnum</unmanaged-short>
  31974. </member>
  31975. <member name="M:SharpDX.Direct3D9.XFileData.GetName(System.String,SharpDX.PointerSize@)">
  31976. <summary>
  31977. <p>Retrieves the name of this file data object.</p>
  31978. </summary>
  31979. <param name="arg0"><dd> <p>Address of a reference to receive the name of this file data object. If this parameter is <strong><c>null</c></strong>, then puiSize will return the size of the string. If szName points to valid memory, the name of this file data object will be copied into szName up to the number of characters given by puiSize. </p> </dd></param>
  31980. <param name="arg1"><dd> <p>Pointer to the size of the string that represents the name of this file data object. This parameter can be <strong><c>null</c></strong> if szName provides a reference to the name. This parameter will return the size of the string if szName is <strong><c>null</c></strong>.</p> </dd></param>
  31981. <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: D3DXFERR_BADVALUE.</p></returns>
  31982. <remarks>
  31983. <p>For this method to succeed, either szName or <em>puiSize</em> must be non-<strong><c>null</c></strong>.</p>
  31984. </remarks>
  31985. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::GetName']/*" />
  31986. <msdn-id>bb205842</msdn-id>
  31987. <unmanaged>HRESULT ID3DXFileData::GetName([In] char* arg0,[Out] SIZE_T* arg1)</unmanaged>
  31988. <unmanaged-short>ID3DXFileData::GetName</unmanaged-short>
  31989. </member>
  31990. <member name="M:SharpDX.Direct3D9.XFileData.GetId(System.Guid)">
  31991. <summary>
  31992. <p>Retrieves the <see cref="T:System.Guid" /> of this file data object.</p>
  31993. </summary>
  31994. <param name="arg0"><dd> <p>Pointer to a <see cref="T:System.Guid" /> to receive the ID of this file data object. If the file data object has no ID, the returned parameter value will be GUID_NULL.</p> </dd></param>
  31995. <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: D3DXFERR_BADVALUE.</p></returns>
  31996. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::GetId']/*" />
  31997. <msdn-id>bb205841</msdn-id>
  31998. <unmanaged>HRESULT ID3DXFileData::GetId([In] GUID* arg0)</unmanaged>
  31999. <unmanaged-short>ID3DXFileData::GetId</unmanaged-short>
  32000. </member>
  32001. <member name="M:SharpDX.Direct3D9.XFileData.Lock(SharpDX.PointerSize,System.IntPtr)">
  32002. <summary>
  32003. <p>Accesses the .x file data.</p>
  32004. </summary>
  32005. <param name="arg0"><dd> <p>Pointer to the size of the .x file data.</p> </dd></param>
  32006. <param name="arg1"><dd> <p>Address of a reference to receive the <strong><see cref="T:SharpDX.Direct3D9.XFileData" /></strong> file data object's interface reference. See Remarks.</p> </dd></param>
  32007. <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: D3DXFERR_BADVALUE.</p></returns>
  32008. <remarks>
  32009. <p>The <em>ppData</em> reference is only valid during a <strong><see cref="M:SharpDX.Direct3D9.XFileData.Lock(SharpDX.PointerSize,System.IntPtr)" /></strong> ... <strong><see cref="M:SharpDX.Direct3D9.XFileData.Unlock" /></strong> sequence. You can make multiple lock calls. However, you must ensure that the number of lock calls matches the number of unlock calls.</p><p>Because file data is not guaranteed to be aligned properly with byte boundaries, you should access <em>ppData</em> with UNALIGNED references.</p><p>Returned parameter values are not guaranteed to be valid due to possible file corruption; therefore, your code should verify the returned parameter values.</p>
  32010. </remarks>
  32011. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::Lock']/*" />
  32012. <msdn-id>bb205845</msdn-id>
  32013. <unmanaged>HRESULT ID3DXFileData::Lock([In] SIZE_T* arg0,[In] const void** arg1)</unmanaged>
  32014. <unmanaged-short>ID3DXFileData::Lock</unmanaged-short>
  32015. </member>
  32016. <member name="M:SharpDX.Direct3D9.XFileData.Unlock">
  32017. <summary>
  32018. <p>Ends the lifespan of the <em>ppData</em> reference returned by <strong><see cref="M:SharpDX.Direct3D9.XFileData.Lock(SharpDX.PointerSize,System.IntPtr)" /></strong>.</p>
  32019. </summary>
  32020. <returns><p>The return value is <see cref="F:SharpDX.Result.Ok" />.</p></returns>
  32021. <remarks>
  32022. <p>You must ensure that the number of <strong><see cref="M:SharpDX.Direct3D9.XFileData.Lock(SharpDX.PointerSize,System.IntPtr)" /></strong> calls matches the number of <strong><see cref="M:SharpDX.Direct3D9.XFileData.Unlock" /></strong> calls. After calling Unlock, the ppData reference returned by <strong><see cref="M:SharpDX.Direct3D9.XFileData.Lock(SharpDX.PointerSize,System.IntPtr)" /></strong> should no longer be used.</p>
  32023. </remarks>
  32024. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::Unlock']/*" />
  32025. <msdn-id>bb205846</msdn-id>
  32026. <unmanaged>HRESULT ID3DXFileData::Unlock()</unmanaged>
  32027. <unmanaged-short>ID3DXFileData::Unlock</unmanaged-short>
  32028. </member>
  32029. <member name="M:SharpDX.Direct3D9.XFileData.GetTypeInfo(System.Guid@)">
  32030. <summary>
  32031. <p>Retrieves the template ID in this file data object.</p>
  32032. </summary>
  32033. <param name="arg0"><dd> <p>Pointer to the <see cref="T:System.Guid" /> representing the template in this file data object.</p> </dd></param>
  32034. <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: D3DXFERR_BADVALUE.</p></returns>
  32035. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::GetType']/*" />
  32036. <msdn-id>bb205843</msdn-id>
  32037. <unmanaged>HRESULT ID3DXFileData::GetType([Out] GUID* arg0)</unmanaged>
  32038. <unmanaged-short>ID3DXFileData::GetType</unmanaged-short>
  32039. </member>
  32040. <member name="M:SharpDX.Direct3D9.XFileData.IsReference_">
  32041. <summary>
  32042. <p>Indicates whether this file data object is a reference object that points to another child data object.</p>
  32043. </summary>
  32044. <returns><p>Returns <strong>TRUE</strong> if the file data object is a reference object; returns <strong><see cref="F:SharpDX.Result.False" /></strong> otherwise.</p></returns>
  32045. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::IsReference']/*" />
  32046. <msdn-id>bb205844</msdn-id>
  32047. <unmanaged>BOOL ID3DXFileData::IsReference()</unmanaged>
  32048. <unmanaged-short>ID3DXFileData::IsReference</unmanaged-short>
  32049. </member>
  32050. <member name="M:SharpDX.Direct3D9.XFileData.GetChildren(SharpDX.PointerSize@)">
  32051. <summary>
  32052. <p>Retrieves the number of children in this file data object.</p>
  32053. </summary>
  32054. <param name="arg0"><dd> <p>Address of a reference to receive the number of children in this file data object.</p> </dd></param>
  32055. <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: D3DXFERR_BADVALUE.</p></returns>
  32056. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::GetChildren']/*" />
  32057. <msdn-id>bb205839</msdn-id>
  32058. <unmanaged>HRESULT ID3DXFileData::GetChildren([Out] SIZE_T* arg0)</unmanaged>
  32059. <unmanaged-short>ID3DXFileData::GetChildren</unmanaged-short>
  32060. </member>
  32061. <member name="M:SharpDX.Direct3D9.XFileData.GetChild(SharpDX.PointerSize,SharpDX.Direct3D9.XFileData@)">
  32062. <summary>
  32063. <p>Retrieves a child object in this file data object.</p>
  32064. </summary>
  32065. <param name="arg0"><dd> <p>ID of the child object to retrieve.</p> </dd></param>
  32066. <param name="arg1"><dd> <p>Address of a reference to receive the child object's interface reference.</p> </dd></param>
  32067. <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 values: D3DXFERR_BADVALUE, D3DXFERR_NOMOREOBJECTS.</p></returns>
  32068. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileData::GetChild']/*" />
  32069. <msdn-id>bb205838</msdn-id>
  32070. <unmanaged>HRESULT ID3DXFileData::GetChild([In] SIZE_T arg0,[Out] ID3DXFileData** arg1)</unmanaged>
  32071. <unmanaged-short>ID3DXFileData::GetChild</unmanaged-short>
  32072. </member>
  32073. <member name="T:SharpDX.Direct3D9.XFileEnumObject">
  32074. <summary>
  32075. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.XFileEnumObject" /> interface to cycle through the child file data objects in the file and to retrieve a child object by its globally unique identifier (<see cref="T:System.Guid" />) or by its name.</p>
  32076. </summary>
  32077. <remarks>
  32078. <p>The <see cref="T:System.Guid" /> for the <see cref="T:SharpDX.Direct3D9.XFileEnumObject" /> interface is IID_ID3DXFileEnumObject.</p><p>The LPD3DXFILEENUMOBJECT type is defined as a reference to this interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.XFileEnumObject" /> *LPD3DXFILEENUMOBJECT;
  32079. </pre>
  32080. </remarks>
  32081. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileEnumObject']/*" />
  32082. <msdn-id>bb205847</msdn-id>
  32083. <unmanaged>ID3DXFileEnumObject</unmanaged>
  32084. <unmanaged-short>ID3DXFileEnumObject</unmanaged-short>
  32085. </member>
  32086. <member name="M:SharpDX.Direct3D9.XFileEnumObject.#ctor(System.IntPtr)">
  32087. <summary>
  32088. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.XFileEnumObject"/> class.
  32089. </summary>
  32090. <param name="nativePtr">The native pointer.</param>
  32091. </member>
  32092. <member name="M:SharpDX.Direct3D9.XFileEnumObject.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.XFileEnumObject">
  32093. <summary>
  32094. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.XFileEnumObject"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  32095. </summary>
  32096. <param name="nativePointer">The native pointer.</param>
  32097. <returns>
  32098. The result of the conversion.
  32099. </returns>
  32100. </member>
  32101. <member name="P:SharpDX.Direct3D9.XFileEnumObject.File">
  32102. <summary>
  32103. <p>Retrieves the <strong><see cref="T:SharpDX.Direct3D9.XFile" /></strong> object.</p>
  32104. </summary>
  32105. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileEnumObject::GetFile']/*" />
  32106. <msdn-id>bb205852</msdn-id>
  32107. <unmanaged>GetFile</unmanaged>
  32108. <unmanaged-short>GetFile</unmanaged-short>
  32109. <unmanaged>HRESULT ID3DXFileEnumObject::GetFile([Out] ID3DXFile** arg0)</unmanaged>
  32110. </member>
  32111. <member name="P:SharpDX.Direct3D9.XFileEnumObject.Children">
  32112. <summary>
  32113. <p>Retrieves the number of child objects in this file data object.</p>
  32114. </summary>
  32115. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileEnumObject::GetChildren']/*" />
  32116. <msdn-id>bb205849</msdn-id>
  32117. <unmanaged>GetChildren</unmanaged>
  32118. <unmanaged-short>GetChildren</unmanaged-short>
  32119. <unmanaged>HRESULT ID3DXFileEnumObject::GetChildren([Out] SIZE_T* arg0)</unmanaged>
  32120. </member>
  32121. <member name="M:SharpDX.Direct3D9.XFileEnumObject.GetFile(SharpDX.Direct3D9.XFile@)">
  32122. <summary>
  32123. <p>Retrieves the <strong><see cref="T:SharpDX.Direct3D9.XFile" /></strong> object.</p>
  32124. </summary>
  32125. <param name="arg0">No documentation.</param>
  32126. <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: D3DXFERR_BADVALUE.</p></returns>
  32127. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileEnumObject::GetFile']/*" />
  32128. <msdn-id>bb205852</msdn-id>
  32129. <unmanaged>HRESULT ID3DXFileEnumObject::GetFile([Out] ID3DXFile** arg0)</unmanaged>
  32130. <unmanaged-short>ID3DXFileEnumObject::GetFile</unmanaged-short>
  32131. </member>
  32132. <member name="M:SharpDX.Direct3D9.XFileEnumObject.GetChildren(SharpDX.PointerSize@)">
  32133. <summary>
  32134. <p>Retrieves the number of child objects in this file data object.</p>
  32135. </summary>
  32136. <param name="arg0"><dd> <p>Address of a reference to receive the number of child objects in this file data object.</p> </dd></param>
  32137. <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: D3DXFERR_BADVALUE.</p></returns>
  32138. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileEnumObject::GetChildren']/*" />
  32139. <msdn-id>bb205849</msdn-id>
  32140. <unmanaged>HRESULT ID3DXFileEnumObject::GetChildren([Out] SIZE_T* arg0)</unmanaged>
  32141. <unmanaged-short>ID3DXFileEnumObject::GetChildren</unmanaged-short>
  32142. </member>
  32143. <member name="M:SharpDX.Direct3D9.XFileEnumObject.GetChild(SharpDX.PointerSize,SharpDX.Direct3D9.XFileData@)">
  32144. <summary>
  32145. <p>Retrieves a child object in this file data object.</p>
  32146. </summary>
  32147. <param name="arg0"><dd> <p>ID of the child object to retrieve.</p> </dd></param>
  32148. <param name="arg1"><dd> <p>Address of a reference to receive the child object's interface reference.</p> </dd></param>
  32149. <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: D3DXFERR_BADVALUE, D3DXFERR_NOMOREOBJECTS.</p></returns>
  32150. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileEnumObject::GetChild']/*" />
  32151. <msdn-id>bb205848</msdn-id>
  32152. <unmanaged>HRESULT ID3DXFileEnumObject::GetChild([In] SIZE_T arg0,[Out] ID3DXFileData** arg1)</unmanaged>
  32153. <unmanaged-short>ID3DXFileEnumObject::GetChild</unmanaged-short>
  32154. </member>
  32155. <member name="M:SharpDX.Direct3D9.XFileEnumObject.GetDataObjectById(System.Guid,SharpDX.Direct3D9.XFileData@)">
  32156. <summary>
  32157. <p>Retrieves the data object that has the specified <see cref="T:System.Guid" />.</p>
  32158. </summary>
  32159. <param name="arg0"><dd> <p>Reference to the requested <see cref="T:System.Guid" />. </p> </dd></param>
  32160. <param name="arg1"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.XFileData" /></strong> interface, representing the returned file data object. </p> </dd></param>
  32161. <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:DXFILEERR_BADVALUE, DXFILEERR_NOTFOUND.</p></returns>
  32162. <remarks>
  32163. <p>Obtain the <see cref="T:System.Guid" /> rguid of the current file data object with the <strong><see cref="M:SharpDX.Direct3D9.XFileData.GetId(System.Guid)" /></strong> method.</p>
  32164. </remarks>
  32165. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileEnumObject::GetDataObjectById']/*" />
  32166. <msdn-id>bb205850</msdn-id>
  32167. <unmanaged>HRESULT ID3DXFileEnumObject::GetDataObjectById([In] const GUID&amp; arg0,[In] ID3DXFileData** arg1)</unmanaged>
  32168. <unmanaged-short>ID3DXFileEnumObject::GetDataObjectById</unmanaged-short>
  32169. </member>
  32170. <member name="M:SharpDX.Direct3D9.XFileEnumObject.GetDataObjectByName(System.String,SharpDX.Direct3D9.XFileData@)">
  32171. <summary>
  32172. <p>Retrieves the data object that has the specified name.</p>
  32173. </summary>
  32174. <param name="arg0"><dd> <p>Pointer to the requested name. </p> </dd></param>
  32175. <param name="arg1"><dd> <p>Address of a reference to an <strong><see cref="T:SharpDX.Direct3D9.XFileData" /></strong> interface, representing the returned file data object.</p> </dd></param>
  32176. <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:DXFILEERR_BADVALUE, DXFILEERR_NOTFOUND.</p></returns>
  32177. <remarks>
  32178. <p>Obtain the name szName of the current file data object with the <strong><see cref="M:SharpDX.Direct3D9.XFileData.GetName(System.String,SharpDX.PointerSize@)" /></strong> method.</p>
  32179. </remarks>
  32180. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileEnumObject::GetDataObjectByName']/*" />
  32181. <msdn-id>bb205851</msdn-id>
  32182. <unmanaged>HRESULT ID3DXFileEnumObject::GetDataObjectByName([In] const char* arg0,[In] ID3DXFileData** arg1)</unmanaged>
  32183. <unmanaged-short>ID3DXFileEnumObject::GetDataObjectByName</unmanaged-short>
  32184. </member>
  32185. <member name="T:SharpDX.Direct3D9.XFileSaveData">
  32186. <summary>
  32187. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.XFileSaveData" /> interface to add data objects as children of a .x file data node.</p>
  32188. </summary>
  32189. <remarks>
  32190. <p>The <see cref="T:System.Guid" /> for the <see cref="T:SharpDX.Direct3D9.XFileSaveObject" /> interface is IID_ID3DXFileSaveObject.</p><p>The LPD3DXFileSaveData type is defined as a reference to this interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.XFileSaveData" /> *LPD3DXFILESAVEDATA;
  32191. </pre>
  32192. </remarks>
  32193. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveData']/*" />
  32194. <msdn-id>bb205853</msdn-id>
  32195. <unmanaged>ID3DXFileSaveData</unmanaged>
  32196. <unmanaged-short>ID3DXFileSaveData</unmanaged-short>
  32197. </member>
  32198. <member name="M:SharpDX.Direct3D9.XFileSaveData.#ctor(System.IntPtr)">
  32199. <summary>
  32200. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.XFileSaveData"/> class.
  32201. </summary>
  32202. <param name="nativePtr">The native pointer.</param>
  32203. </member>
  32204. <member name="M:SharpDX.Direct3D9.XFileSaveData.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.XFileSaveData">
  32205. <summary>
  32206. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.XFileSaveData"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  32207. </summary>
  32208. <param name="nativePointer">The native pointer.</param>
  32209. <returns>
  32210. The result of the conversion.
  32211. </returns>
  32212. </member>
  32213. <member name="P:SharpDX.Direct3D9.XFileSaveData.Save">
  32214. <summary>
  32215. <p>Retrieves a reference to this <strong><see cref="T:SharpDX.Direct3D9.XFileSaveObject" /></strong> file data node.</p>
  32216. </summary>
  32217. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveData::GetSave']/*" />
  32218. <msdn-id>bb173951</msdn-id>
  32219. <unmanaged>GetSave</unmanaged>
  32220. <unmanaged-short>GetSave</unmanaged-short>
  32221. <unmanaged>HRESULT ID3DXFileSaveData::GetSave([Out] ID3DXFileSaveObject** arg0)</unmanaged>
  32222. </member>
  32223. <member name="P:SharpDX.Direct3D9.XFileSaveData.TypeInfo">
  32224. <summary>
  32225. <p>Retrieves the template ID of this file data node.</p>
  32226. </summary>
  32227. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveData::GetType']/*" />
  32228. <msdn-id>bb173952</msdn-id>
  32229. <unmanaged>GetType</unmanaged>
  32230. <unmanaged-short>GetType</unmanaged-short>
  32231. <unmanaged>HRESULT ID3DXFileSaveData::GetType([Out] GUID* arg0)</unmanaged>
  32232. </member>
  32233. <member name="M:SharpDX.Direct3D9.XFileSaveData.GetSave(SharpDX.Direct3D9.XFileSaveObject@)">
  32234. <summary>
  32235. <p>Retrieves a reference to this <strong><see cref="T:SharpDX.Direct3D9.XFileSaveObject" /></strong> file data node.</p>
  32236. </summary>
  32237. <param name="arg0">No documentation.</param>
  32238. <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: D3DXFERR_BADVALUE.</p></returns>
  32239. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveData::GetSave']/*" />
  32240. <msdn-id>bb173951</msdn-id>
  32241. <unmanaged>HRESULT ID3DXFileSaveData::GetSave([Out] ID3DXFileSaveObject** arg0)</unmanaged>
  32242. <unmanaged-short>ID3DXFileSaveData::GetSave</unmanaged-short>
  32243. </member>
  32244. <member name="M:SharpDX.Direct3D9.XFileSaveData.GetName(System.String,SharpDX.PointerSize@)">
  32245. <summary>
  32246. <p>Retrieves the name of this <strong><see cref="T:SharpDX.Direct3D9.XFileSaveData" /></strong> file data node.</p>
  32247. </summary>
  32248. <param name="arg0">No documentation.</param>
  32249. <param name="arg1">No documentation.</param>
  32250. <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: D3DXFERR_BADVALUE.</p></returns>
  32251. <remarks>
  32252. <p>For this method to succeed, either <em>szName</em> or <em>puiSize</em> must be non-<strong><c>null</c></strong>.</p>
  32253. </remarks>
  32254. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveData::GetName']/*" />
  32255. <msdn-id>bb173950</msdn-id>
  32256. <unmanaged>HRESULT ID3DXFileSaveData::GetName([In] char* arg0,[Out] SIZE_T* arg1)</unmanaged>
  32257. <unmanaged-short>ID3DXFileSaveData::GetName</unmanaged-short>
  32258. </member>
  32259. <member name="M:SharpDX.Direct3D9.XFileSaveData.GetId(System.Guid)">
  32260. <summary>
  32261. <p>Retrieves the <see cref="T:System.Guid" /> of this <strong><see cref="T:SharpDX.Direct3D9.XFileSaveData" /></strong> file data node.</p>
  32262. </summary>
  32263. <param name="arg0">No documentation.</param>
  32264. <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: D3DXFERR_BADVALUE.</p></returns>
  32265. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveData::GetId']/*" />
  32266. <msdn-id>bb205856</msdn-id>
  32267. <unmanaged>HRESULT ID3DXFileSaveData::GetId([In] GUID* arg0)</unmanaged>
  32268. <unmanaged-short>ID3DXFileSaveData::GetId</unmanaged-short>
  32269. </member>
  32270. <member name="M:SharpDX.Direct3D9.XFileSaveData.GetTypeInfo(System.Guid@)">
  32271. <summary>
  32272. <p>Retrieves the template ID of this file data node.</p>
  32273. </summary>
  32274. <param name="arg0"><dd> <p>Pointer to the <see cref="T:System.Guid" /> representing the template in this file data node.</p> </dd></param>
  32275. <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: D3DXFERR_BADOBJECT, D3DXFERR_BADVALUE.</p></returns>
  32276. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveData::GetType']/*" />
  32277. <msdn-id>bb173952</msdn-id>
  32278. <unmanaged>HRESULT ID3DXFileSaveData::GetType([Out] GUID* arg0)</unmanaged>
  32279. <unmanaged-short>ID3DXFileSaveData::GetType</unmanaged-short>
  32280. </member>
  32281. <member name="M:SharpDX.Direct3D9.XFileSaveData.AddDataObject(System.Guid,System.String,System.Guid,SharpDX.PointerSize,System.IntPtr,SharpDX.Direct3D9.XFileSaveData@)">
  32282. <summary>
  32283. <p>Adds a data object as a child of the <strong><see cref="T:SharpDX.Direct3D9.XFileSaveData" /></strong> file data node.</p>
  32284. </summary>
  32285. <param name="arg0">No documentation.</param>
  32286. <param name="arg1">No documentation.</param>
  32287. <param name="arg2">No documentation.</param>
  32288. <param name="arg3">No documentation.</param>
  32289. <param name="arg4">No documentation.</param>
  32290. <param name="arg5">No documentation.</param>
  32291. <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: D3DXFERR_BADOBJECT, D3DXFERR_BADVALUE, E_OUTOFMEMORY.</p></returns>
  32292. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveData::AddDataObject']/*" />
  32293. <msdn-id>bb205854</msdn-id>
  32294. <unmanaged>HRESULT ID3DXFileSaveData::AddDataObject([In] const GUID&amp; arg0,[In] const char* arg1,[In] const GUID* arg2,[In] SIZE_T arg3,[In] const void* arg4,[In] ID3DXFileSaveData** arg5)</unmanaged>
  32295. <unmanaged-short>ID3DXFileSaveData::AddDataObject</unmanaged-short>
  32296. </member>
  32297. <member name="M:SharpDX.Direct3D9.XFileSaveData.AddDataReference(System.String,System.Guid)">
  32298. <summary>
  32299. <p>Adds a data reference as a child of this <strong><see cref="T:SharpDX.Direct3D9.XFileSaveData" /></strong> file data node. The data reference points to a file data object.</p>
  32300. </summary>
  32301. <param name="arg0">No documentation.</param>
  32302. <param name="arg1">No documentation.</param>
  32303. <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: D3DXFERR_BADOBJECT, D3DXFERR_BADVALUE, E_OUTOFMEMORY.</p></returns>
  32304. <remarks>
  32305. <p>The file data object being referenced must have either a name or a <see cref="T:System.Guid" />. The file data object must also derive from a different parent <strong><see cref="T:SharpDX.Direct3D9.XFileSaveData" /></strong> object.</p>
  32306. </remarks>
  32307. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveData::AddDataReference']/*" />
  32308. <msdn-id>bb205855</msdn-id>
  32309. <unmanaged>HRESULT ID3DXFileSaveData::AddDataReference([In] const char* arg0,[In] const GUID* arg1)</unmanaged>
  32310. <unmanaged-short>ID3DXFileSaveData::AddDataReference</unmanaged-short>
  32311. </member>
  32312. <member name="T:SharpDX.Direct3D9.XFileSaveObject">
  32313. <summary>
  32314. <p>Applications use the methods of the <see cref="T:SharpDX.Direct3D9.XFileSaveObject" /> interface to write a .x file to disk, and to add and save data objects and templates. </p>
  32315. </summary>
  32316. <remarks>
  32317. <p>Templates are not required in every file. For example, you could put all templates into a single .x file rather than duplicating them in every .x file.</p><p>The <see cref="T:SharpDX.Direct3D9.XFileSaveObject" /> interface is obtained by calling the <strong><see cref="M:SharpDX.Direct3D9.XFile.CreateSaveObject(System.IntPtr,System.Int32,System.Int32,SharpDX.Direct3D9.XFileSaveObject@)" /></strong> method.</p><p>The globally unique identifier (<see cref="T:System.Guid" />) for the <see cref="T:SharpDX.Direct3D9.XFileSaveObject" /> interface is IID_ID3DXFileSaveObject.</p><p>The LPD3DXFILESAVEOBJECT type is defined as a reference to this interface.</p><pre> typedef interface <see cref="T:SharpDX.Direct3D9.XFileSaveObject" /> *LPD3DXFILESAVEOBJECT;
  32318. </pre>
  32319. </remarks>
  32320. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveObject']/*" />
  32321. <msdn-id>bb173953</msdn-id>
  32322. <unmanaged>ID3DXFileSaveObject</unmanaged>
  32323. <unmanaged-short>ID3DXFileSaveObject</unmanaged-short>
  32324. </member>
  32325. <member name="M:SharpDX.Direct3D9.XFileSaveObject.#ctor(System.IntPtr)">
  32326. <summary>
  32327. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.XFileSaveObject"/> class.
  32328. </summary>
  32329. <param name="nativePtr">The native pointer.</param>
  32330. </member>
  32331. <member name="M:SharpDX.Direct3D9.XFileSaveObject.op_Explicit(System.IntPtr)~SharpDX.Direct3D9.XFileSaveObject">
  32332. <summary>
  32333. Performs an explicit conversion from <see cref="T:System.IntPtr"/> to <see cref="T:SharpDX.Direct3D9.XFileSaveObject"/>. (This method is a shortcut to <see cref="P:SharpDX.CppObject.NativePointer"/>)
  32334. </summary>
  32335. <param name="nativePointer">The native pointer.</param>
  32336. <returns>
  32337. The result of the conversion.
  32338. </returns>
  32339. </member>
  32340. <member name="P:SharpDX.Direct3D9.XFileSaveObject.File">
  32341. <summary>
  32342. <p>Gets the <strong><see cref="T:SharpDX.Direct3D9.XFile" /></strong> interface of the object that created this <strong><see cref="T:SharpDX.Direct3D9.XFileSaveObject" /></strong> object.</p>
  32343. </summary>
  32344. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveObject::GetFile']/*" />
  32345. <msdn-id>bb173955</msdn-id>
  32346. <unmanaged>GetFile</unmanaged>
  32347. <unmanaged-short>GetFile</unmanaged-short>
  32348. <unmanaged>HRESULT ID3DXFileSaveObject::GetFile([Out] ID3DXFile** arg0)</unmanaged>
  32349. </member>
  32350. <member name="M:SharpDX.Direct3D9.XFileSaveObject.GetFile(SharpDX.Direct3D9.XFile@)">
  32351. <summary>
  32352. <p>Gets the <strong><see cref="T:SharpDX.Direct3D9.XFile" /></strong> interface of the object that created this <strong><see cref="T:SharpDX.Direct3D9.XFileSaveObject" /></strong> object.</p>
  32353. </summary>
  32354. <param name="arg0">No documentation.</param>
  32355. <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: D3DXFERR_BADVALUE, E_NOINTERFACE, E_POINTER.</p></returns>
  32356. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveObject::GetFile']/*" />
  32357. <msdn-id>bb173955</msdn-id>
  32358. <unmanaged>HRESULT ID3DXFileSaveObject::GetFile([Out] ID3DXFile** arg0)</unmanaged>
  32359. <unmanaged-short>ID3DXFileSaveObject::GetFile</unmanaged-short>
  32360. </member>
  32361. <member name="M:SharpDX.Direct3D9.XFileSaveObject.AddDataObject(System.Guid,System.String,System.Guid,SharpDX.PointerSize,System.IntPtr,SharpDX.Direct3D9.XFileSaveData@)">
  32362. <summary>
  32363. <p>Adds a data object as a child of the <strong><see cref="T:SharpDX.Direct3D9.XFileSaveData" /></strong> object.</p>
  32364. </summary>
  32365. <param name="arg0">No documentation.</param>
  32366. <param name="arg1">No documentation.</param>
  32367. <param name="arg2">No documentation.</param>
  32368. <param name="arg3">No documentation.</param>
  32369. <param name="arg4">No documentation.</param>
  32370. <param name="arg5">No documentation.</param>
  32371. <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: D3DXFERR_BADOBJECT, DXFILEERR_BADVALUE, E_OUTOFMEMORY.</p></returns>
  32372. <remarks>
  32373. <p>If a data reference object will reference the data object, either the szName or pId parameter must be non-<strong><c>null</c></strong>.</p><p>Save the created data to disk by using the <strong><see cref="M:SharpDX.Direct3D9.XFileSaveObject.Save" /></strong> method.</p>
  32374. </remarks>
  32375. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveObject::AddDataObject']/*" />
  32376. <msdn-id>bb173954</msdn-id>
  32377. <unmanaged>HRESULT ID3DXFileSaveObject::AddDataObject([In] const GUID&amp; arg0,[In] const char* arg1,[In] const GUID* arg2,[In] SIZE_T arg3,[In] const void* arg4,[In] ID3DXFileSaveData** arg5)</unmanaged>
  32378. <unmanaged-short>ID3DXFileSaveObject::AddDataObject</unmanaged-short>
  32379. </member>
  32380. <member name="M:SharpDX.Direct3D9.XFileSaveObject.Save">
  32381. <summary>
  32382. <p>Saves a data object and its children to a .x file on disk.</p>
  32383. </summary>
  32384. <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 the following: D3DXFERR_BADOBJECT.</p></returns>
  32385. <remarks>
  32386. <p>After this method succeeds, <strong><see cref="M:SharpDX.Direct3D9.XFileSaveObject.AddDataObject(System.Guid,System.String,System.Guid,SharpDX.PointerSize,System.IntPtr,SharpDX.Direct3D9.XFileSaveData@)" /></strong>, <strong><see cref="M:SharpDX.Direct3D9.XFileSaveData.AddDataObject(System.Guid,System.String,System.Guid,SharpDX.PointerSize,System.IntPtr,SharpDX.Direct3D9.XFileSaveData@)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.XFileSaveData.AddDataReference(System.String,System.Guid)" /></strong> can no longer be called until a new <strong><see cref="T:SharpDX.Direct3D9.XFile" /></strong> object is created.</p>
  32387. </remarks>
  32388. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='ID3DXFileSaveObject::Save']/*" />
  32389. <msdn-id>bb173956</msdn-id>
  32390. <unmanaged>HRESULT ID3DXFileSaveObject::Save()</unmanaged>
  32391. <unmanaged-short>ID3DXFileSaveObject::Save</unmanaged-short>
  32392. </member>
  32393. <member name="T:SharpDX.Direct3D9.AttributeRange">
  32394. <summary>
  32395. <p>Stores an attribute table entry.</p>
  32396. </summary>
  32397. <remarks>
  32398. <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 LPD3DXATTRIBUTERANGE type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.AttributeRange" /></strong> structure. </p><pre> typedef <see cref="T:SharpDX.Direct3D9.AttributeRange" />* LPD3DXATTRIBUTERANGE;
  32399. </pre>
  32400. </remarks>
  32401. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTERANGE']/*" />
  32402. <msdn-id>bb172710</msdn-id>
  32403. <unmanaged>D3DXATTRIBUTERANGE</unmanaged>
  32404. <unmanaged-short>D3DXATTRIBUTERANGE</unmanaged-short>
  32405. </member>
  32406. <member name="F:SharpDX.Direct3D9.AttributeRange.AttribId">
  32407. <summary>
  32408. <dd> <p>Attribute table identifier.</p> </dd>
  32409. </summary>
  32410. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTERANGE::AttribId']/*" />
  32411. <msdn-id>bb172710</msdn-id>
  32412. <unmanaged>unsigned int AttribId</unmanaged>
  32413. <unmanaged-short>unsigned int AttribId</unmanaged-short>
  32414. </member>
  32415. <member name="F:SharpDX.Direct3D9.AttributeRange.FaceStart">
  32416. <summary>
  32417. <dd> <p>Starting face.</p> </dd>
  32418. </summary>
  32419. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTERANGE::FaceStart']/*" />
  32420. <msdn-id>bb172710</msdn-id>
  32421. <unmanaged>unsigned int FaceStart</unmanaged>
  32422. <unmanaged-short>unsigned int FaceStart</unmanaged-short>
  32423. </member>
  32424. <member name="F:SharpDX.Direct3D9.AttributeRange.FaceCount">
  32425. <summary>
  32426. <dd> <p>Face count.</p> </dd>
  32427. </summary>
  32428. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTERANGE::FaceCount']/*" />
  32429. <msdn-id>bb172710</msdn-id>
  32430. <unmanaged>unsigned int FaceCount</unmanaged>
  32431. <unmanaged-short>unsigned int FaceCount</unmanaged-short>
  32432. </member>
  32433. <member name="F:SharpDX.Direct3D9.AttributeRange.VertexStart">
  32434. <summary>
  32435. <dd> <p>Starting vertex.</p> </dd>
  32436. </summary>
  32437. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTERANGE::VertexStart']/*" />
  32438. <msdn-id>bb172710</msdn-id>
  32439. <unmanaged>unsigned int VertexStart</unmanaged>
  32440. <unmanaged-short>unsigned int VertexStart</unmanaged-short>
  32441. </member>
  32442. <member name="F:SharpDX.Direct3D9.AttributeRange.VertexCount">
  32443. <summary>
  32444. <dd> <p>Vertex count.</p> </dd>
  32445. </summary>
  32446. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTERANGE::VertexCount']/*" />
  32447. <msdn-id>bb172710</msdn-id>
  32448. <unmanaged>unsigned int VertexCount</unmanaged>
  32449. <unmanaged-short>unsigned int VertexCount</unmanaged-short>
  32450. </member>
  32451. <member name="T:SharpDX.Direct3D9.AttributeWeights">
  32452. <summary>
  32453. <p>Specifies mesh weight attributes.</p>
  32454. </summary>
  32455. <remarks>
  32456. <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 LPD3DXATTRIBUTEWEIGHTS type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.AttributeWeights" /></strong> structure. </p><pre> typedef <see cref="T:SharpDX.Direct3D9.AttributeWeights" />* LPD3DXATTRIBUTEWEIGHTS;
  32457. </pre>
  32458. </remarks>
  32459. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTEWEIGHTS']/*" />
  32460. <msdn-id>bb172711</msdn-id>
  32461. <unmanaged>D3DXATTRIBUTEWEIGHTS</unmanaged>
  32462. <unmanaged-short>D3DXATTRIBUTEWEIGHTS</unmanaged-short>
  32463. </member>
  32464. <member name="F:SharpDX.Direct3D9.AttributeWeights.Position">
  32465. <summary>
  32466. <dd> <p>Position.</p> </dd>
  32467. </summary>
  32468. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTEWEIGHTS::Position']/*" />
  32469. <msdn-id>bb172711</msdn-id>
  32470. <unmanaged>float Position</unmanaged>
  32471. <unmanaged-short>float Position</unmanaged-short>
  32472. </member>
  32473. <member name="F:SharpDX.Direct3D9.AttributeWeights.Boundary">
  32474. <summary>
  32475. <dd> <p>Blend weight.</p> </dd>
  32476. </summary>
  32477. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTEWEIGHTS::Boundary']/*" />
  32478. <msdn-id>bb172711</msdn-id>
  32479. <unmanaged>float Boundary</unmanaged>
  32480. <unmanaged-short>float Boundary</unmanaged-short>
  32481. </member>
  32482. <member name="F:SharpDX.Direct3D9.AttributeWeights.Normal">
  32483. <summary>
  32484. <dd> <p>Normal.</p> </dd>
  32485. </summary>
  32486. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTEWEIGHTS::Normal']/*" />
  32487. <msdn-id>bb172711</msdn-id>
  32488. <unmanaged>float Normal</unmanaged>
  32489. <unmanaged-short>float Normal</unmanaged-short>
  32490. </member>
  32491. <member name="F:SharpDX.Direct3D9.AttributeWeights.Diffuse">
  32492. <summary>
  32493. <dd> <p>Diffuse lighting value.</p> </dd>
  32494. </summary>
  32495. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTEWEIGHTS::Diffuse']/*" />
  32496. <msdn-id>bb172711</msdn-id>
  32497. <unmanaged>float Diffuse</unmanaged>
  32498. <unmanaged-short>float Diffuse</unmanaged-short>
  32499. </member>
  32500. <member name="F:SharpDX.Direct3D9.AttributeWeights.Specular">
  32501. <summary>
  32502. <dd> <p>Specular lighting value.</p> </dd>
  32503. </summary>
  32504. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTEWEIGHTS::Specular']/*" />
  32505. <msdn-id>bb172711</msdn-id>
  32506. <unmanaged>float Specular</unmanaged>
  32507. <unmanaged-short>float Specular</unmanaged-short>
  32508. </member>
  32509. <member name="P:SharpDX.Direct3D9.AttributeWeights.TextureCoordinate">
  32510. <summary>
  32511. <dd> <p>Eight texture coordinates.</p> </dd>
  32512. </summary>
  32513. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTEWEIGHTS::Texcoord']/*" />
  32514. <msdn-id>bb172711</msdn-id>
  32515. <unmanaged>float Texcoord[8]</unmanaged>
  32516. <unmanaged-short>float Texcoord</unmanaged-short>
  32517. </member>
  32518. <member name="F:SharpDX.Direct3D9.AttributeWeights.Tangent">
  32519. <summary>
  32520. <dd> <p>Tangent.</p> </dd>
  32521. </summary>
  32522. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTEWEIGHTS::Tangent']/*" />
  32523. <msdn-id>bb172711</msdn-id>
  32524. <unmanaged>float Tangent</unmanaged>
  32525. <unmanaged-short>float Tangent</unmanaged-short>
  32526. </member>
  32527. <member name="F:SharpDX.Direct3D9.AttributeWeights.Binormal">
  32528. <summary>
  32529. <dd> <p>Binormal.</p> </dd>
  32530. </summary>
  32531. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXATTRIBUTEWEIGHTS::Binormal']/*" />
  32532. <msdn-id>bb172711</msdn-id>
  32533. <unmanaged>float Binormal</unmanaged>
  32534. <unmanaged-short>float Binormal</unmanaged-short>
  32535. </member>
  32536. <member name="T:SharpDX.Direct3D9.BandwidthTimings">
  32537. <summary>
  32538. <p>Throughput metrics for help in understanding the performance of an application.</p>
  32539. </summary>
  32540. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9BANDWIDTHTIMINGS']/*" />
  32541. <msdn-id>bb172539</msdn-id>
  32542. <unmanaged>D3DDEVINFO_D3D9BANDWIDTHTIMINGS</unmanaged>
  32543. <unmanaged-short>D3DDEVINFO_D3D9BANDWIDTHTIMINGS</unmanaged-short>
  32544. </member>
  32545. <member name="F:SharpDX.Direct3D9.BandwidthTimings.MaxBandwidthUtilized">
  32546. <summary>
  32547. <dd> <p>The bandwidth or maximum data transfer rate from the host CPU to the GPU. This is typically the bandwidth of the PCI or AGP bus which connects the CPU and the GPU.</p> </dd>
  32548. </summary>
  32549. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9BANDWIDTHTIMINGS::MaxBandwidthUtilized']/*" />
  32550. <msdn-id>bb172539</msdn-id>
  32551. <unmanaged>float MaxBandwidthUtilized</unmanaged>
  32552. <unmanaged-short>float MaxBandwidthUtilized</unmanaged-short>
  32553. </member>
  32554. <member name="F:SharpDX.Direct3D9.BandwidthTimings.FrontEndUploadMemoryUtilizedPercent">
  32555. <summary>
  32556. <dd> <p>Memory utilized percentage when uploading data from the host CPU to the GPU. </p> </dd>
  32557. </summary>
  32558. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9BANDWIDTHTIMINGS::FrontEndUploadMemoryUtilizedPercent']/*" />
  32559. <msdn-id>bb172539</msdn-id>
  32560. <unmanaged>float FrontEndUploadMemoryUtilizedPercent</unmanaged>
  32561. <unmanaged-short>float FrontEndUploadMemoryUtilizedPercent</unmanaged-short>
  32562. </member>
  32563. <member name="F:SharpDX.Direct3D9.BandwidthTimings.VertexRateUtilizedPercent">
  32564. <summary>
  32565. <dd> <p>Vertex throughput percentage. This is the number of vertices processed compared to the theoretical maximum vertex processing rate.</p> </dd>
  32566. </summary>
  32567. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9BANDWIDTHTIMINGS::VertexRateUtilizedPercent']/*" />
  32568. <msdn-id>bb172539</msdn-id>
  32569. <unmanaged>float VertexRateUtilizedPercent</unmanaged>
  32570. <unmanaged-short>float VertexRateUtilizedPercent</unmanaged-short>
  32571. </member>
  32572. <member name="F:SharpDX.Direct3D9.BandwidthTimings.TriangleSetupRateUtilizedPercent">
  32573. <summary>
  32574. <dd> <p>Triangle set-up throughput percentage. This is the number of triangles that are set up for rasterization compared to the theoretical maximum triangle set-up rate.</p> </dd>
  32575. </summary>
  32576. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9BANDWIDTHTIMINGS::TriangleSetupRateUtilizedPercent']/*" />
  32577. <msdn-id>bb172539</msdn-id>
  32578. <unmanaged>float TriangleSetupRateUtilizedPercent</unmanaged>
  32579. <unmanaged-short>float TriangleSetupRateUtilizedPercent</unmanaged-short>
  32580. </member>
  32581. <member name="F:SharpDX.Direct3D9.BandwidthTimings.FillRateUtilizedPercent">
  32582. <summary>
  32583. <dd> <p>Pixel fill throughput percentage. This is the number of pixels that are filled compared to the theoretical pixel fill.</p> </dd>
  32584. </summary>
  32585. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9BANDWIDTHTIMINGS::FillRateUtilizedPercent']/*" />
  32586. <msdn-id>bb172539</msdn-id>
  32587. <unmanaged>float FillRateUtilizedPercent</unmanaged>
  32588. <unmanaged-short>float FillRateUtilizedPercent</unmanaged-short>
  32589. </member>
  32590. <member name="T:SharpDX.Direct3D9.Box">
  32591. <summary>
  32592. <p>Defines a volume.</p>
  32593. </summary>
  32594. <remarks>
  32595. <p><strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> includes the left, top, and front edges; however, the right, bottom, and back edges are not included. For example, a box that is 100 units wide and begins at 0 (thus, including the points up to and including 99) would be expressed with a value of 0 for the Left member and a value of 100 for the Right member. Note that a value of 99 is not used for the Right member.</p><p>The restrictions on side ordering observed for <strong><see cref="T:SharpDX.Direct3D9.Box" /></strong> are left to right, top to bottom, and front to back.</p>
  32596. </remarks>
  32597. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBOX']/*" />
  32598. <msdn-id>bb172510</msdn-id>
  32599. <unmanaged>D3DBOX</unmanaged>
  32600. <unmanaged-short>D3DBOX</unmanaged-short>
  32601. </member>
  32602. <member name="F:SharpDX.Direct3D9.Box.Left">
  32603. <summary>
  32604. <dd> <p>Position of the left side of the box on the x-axis.</p> </dd>
  32605. </summary>
  32606. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBOX::Left']/*" />
  32607. <msdn-id>bb172510</msdn-id>
  32608. <unmanaged>unsigned int Left</unmanaged>
  32609. <unmanaged-short>unsigned int Left</unmanaged-short>
  32610. </member>
  32611. <member name="F:SharpDX.Direct3D9.Box.Top">
  32612. <summary>
  32613. <dd> <p>Position of the top of the box on the y-axis.</p> </dd>
  32614. </summary>
  32615. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBOX::Top']/*" />
  32616. <msdn-id>bb172510</msdn-id>
  32617. <unmanaged>unsigned int Top</unmanaged>
  32618. <unmanaged-short>unsigned int Top</unmanaged-short>
  32619. </member>
  32620. <member name="F:SharpDX.Direct3D9.Box.Right">
  32621. <summary>
  32622. <dd> <p>Position of the right side of the box on the x-axis.</p> </dd>
  32623. </summary>
  32624. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBOX::Right']/*" />
  32625. <msdn-id>bb172510</msdn-id>
  32626. <unmanaged>unsigned int Right</unmanaged>
  32627. <unmanaged-short>unsigned int Right</unmanaged-short>
  32628. </member>
  32629. <member name="F:SharpDX.Direct3D9.Box.Bottom">
  32630. <summary>
  32631. <dd> <p>Position of the bottom of the box on the y-axis.</p> </dd>
  32632. </summary>
  32633. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBOX::Bottom']/*" />
  32634. <msdn-id>bb172510</msdn-id>
  32635. <unmanaged>unsigned int Bottom</unmanaged>
  32636. <unmanaged-short>unsigned int Bottom</unmanaged-short>
  32637. </member>
  32638. <member name="F:SharpDX.Direct3D9.Box.Front">
  32639. <summary>
  32640. <dd> <p>Position of the front of the box on the z-axis.</p> </dd>
  32641. </summary>
  32642. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBOX::Front']/*" />
  32643. <msdn-id>bb172510</msdn-id>
  32644. <unmanaged>unsigned int Front</unmanaged>
  32645. <unmanaged-short>unsigned int Front</unmanaged-short>
  32646. </member>
  32647. <member name="F:SharpDX.Direct3D9.Box.Back">
  32648. <summary>
  32649. <dd> <p>Position of the back of the box on the z-axis.</p> </dd>
  32650. </summary>
  32651. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DBOX::Back']/*" />
  32652. <msdn-id>bb172510</msdn-id>
  32653. <unmanaged>unsigned int Back</unmanaged>
  32654. <unmanaged-short>unsigned int Back</unmanaged-short>
  32655. </member>
  32656. <member name="T:SharpDX.Direct3D9.CacheUtilization">
  32657. <summary>
  32658. <p>Measure the cache hit rate performance for textures and indexed vertices.</p>
  32659. </summary>
  32660. <remarks>
  32661. <p>An efficient cache is typically closer to a 90 percent hit rate, and an inefficient cache is typically closer to a 10 percent hit rate (although a low percentage is not necessarily a problem).</p>
  32662. </remarks>
  32663. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9CACHEUTILIZATION']/*" />
  32664. <msdn-id>bb172540</msdn-id>
  32665. <unmanaged>D3DDEVINFO_D3D9CACHEUTILIZATION</unmanaged>
  32666. <unmanaged-short>D3DDEVINFO_D3D9CACHEUTILIZATION</unmanaged-short>
  32667. </member>
  32668. <member name="F:SharpDX.Direct3D9.CacheUtilization.TextureCacheHitRate">
  32669. <summary>
  32670. <dd> <p>The hit rate for finding a texture in the texture cache. This assumes there is a texture cache. Increasing the level-of-detail bias to use the most detailed texture, using many large textures, or producing a near random texture access pattern on large textures with custom shader code can dramatically affect the texture cache hit rate.</p> </dd>
  32671. </summary>
  32672. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9CACHEUTILIZATION::TextureCacheHitRate']/*" />
  32673. <msdn-id>bb172540</msdn-id>
  32674. <unmanaged>float TextureCacheHitRate</unmanaged>
  32675. <unmanaged-short>float TextureCacheHitRate</unmanaged-short>
  32676. </member>
  32677. <member name="F:SharpDX.Direct3D9.CacheUtilization.PostTransformVertexCacheHitRate">
  32678. <summary>
  32679. <dd> <p>The hit rate for finding transformed vertices in the vertex cache. The GPU is designed to transform indexed vertices and may store them in a vertex cache. If you are using meshes, <strong><see cref="M:SharpDX.Direct3D9.D3DX9.OptimizeFaces(System.IntPtr,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32[])" /></strong> or <strong><see cref="M:SharpDX.Direct3D9.D3DX9.OptimizeVertices(System.IntPtr,System.Int32,System.Int32,SharpDX.Mathematics.Interop.RawBool,System.Int32[])" /></strong> may result in better vertex cache utilization.</p> </dd>
  32680. </summary>
  32681. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9CACHEUTILIZATION::PostTransformVertexCacheHitRate']/*" />
  32682. <msdn-id>bb172540</msdn-id>
  32683. <unmanaged>float PostTransformVertexCacheHitRate</unmanaged>
  32684. <unmanaged-short>float PostTransformVertexCacheHitRate</unmanaged-short>
  32685. </member>
  32686. <member name="T:SharpDX.Direct3D9.CallbackKey">
  32687. <summary>
  32688. <p>Describes a callback key for use in key frame animation.</p>
  32689. </summary>
  32690. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXKEY_CALLBACK']/*" />
  32691. <msdn-id>bb172886</msdn-id>
  32692. <unmanaged>D3DXKEY_CALLBACK</unmanaged>
  32693. <unmanaged-short>D3DXKEY_CALLBACK</unmanaged-short>
  32694. </member>
  32695. <member name="F:SharpDX.Direct3D9.CallbackKey.Time">
  32696. <summary>
  32697. <dd> <p>Key frame time stamp.</p> </dd>
  32698. </summary>
  32699. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXKEY_CALLBACK::Time']/*" />
  32700. <msdn-id>bb172886</msdn-id>
  32701. <unmanaged>float Time</unmanaged>
  32702. <unmanaged-short>float Time</unmanaged-short>
  32703. </member>
  32704. <member name="F:SharpDX.Direct3D9.CallbackKey.Data">
  32705. <summary>
  32706. <dd> <p>Pointer to user callback data.</p> </dd>
  32707. </summary>
  32708. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXKEY_CALLBACK::pCallbackData']/*" />
  32709. <msdn-id>bb172886</msdn-id>
  32710. <unmanaged>void* pCallbackData</unmanaged>
  32711. <unmanaged-short>void pCallbackData</unmanaged-short>
  32712. </member>
  32713. <member name="T:SharpDX.Direct3D9.ClipStatus">
  32714. <summary>
  32715. <p>Describes the current clip status.</p>
  32716. </summary>
  32717. <remarks>
  32718. <p>When clipping is enabled during vertex processing (by <strong>ProcessVertices</strong>, <strong>DrawPrimitive</strong>, or other drawing functions), Direct3D computes a clip code for every vertex. The clip code is a combination of D3DCS_* bits. When a vertex is outside a particular clipping plane, the corresponding bit is set in the clipping code. Direct3D maintains the clip status using <strong><see cref="T:SharpDX.Direct3D9.ClipStatus" /></strong>, which has ClipUnion and ClipIntersection members. ClipUnion is a bitwise OR of all vertex clip codes and ClipIntersection is a bitwise AND of all vertex clip codes. Initial values are zero for ClipUnion and 0xFFFFFFFF for ClipIntersection. When <see cref="F:SharpDX.Direct3D9.RenderState.Clipping" /> is set to <strong><see cref="F:SharpDX.Result.False" /></strong>, ClipUnion and ClipIntersection are set to zero. Direct3D updates the clip status during drawing calls. To compute clip status for a particular object, set ClipUnion and ClipIntersection to their initial value and continue drawing.</p><p> Clip status is not updated by <strong>DrawRectPatch</strong> and <strong>DrawTriPatch</strong> because there is no software emulation for them.</p>
  32719. </remarks>
  32720. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCLIPSTATUS9']/*" />
  32721. <msdn-id>bb172516</msdn-id>
  32722. <unmanaged>D3DCLIPSTATUS9</unmanaged>
  32723. <unmanaged-short>D3DCLIPSTATUS9</unmanaged-short>
  32724. </member>
  32725. <member name="F:SharpDX.Direct3D9.ClipStatus.ClipUnion">
  32726. <summary>
  32727. <dd> <p>Clip union flags that describe the current clip status. This member can be one or more of the following flags:</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.All" /></strong></dt> </dl> </td><td> <p>Combination of all clip flags.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Left" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the left plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Right" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the right plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Top" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the top plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Bottom" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the bottom plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Front" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the front plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Back" /></strong></dt> </dl> </td><td> <p>All vertices are clipped by the back plane of the viewing frustum.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane0" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane1" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane2" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane3" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane4" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.ClipFlags.Plane5" /></strong></dt> </dl> </td><td> <p>Application-defined clipping planes.</p> </td></tr> </table> <p>?</p> </dd>
  32728. </summary>
  32729. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCLIPSTATUS9::ClipUnion']/*" />
  32730. <msdn-id>bb172516</msdn-id>
  32731. <unmanaged>unsigned int ClipUnion</unmanaged>
  32732. <unmanaged-short>unsigned int ClipUnion</unmanaged-short>
  32733. </member>
  32734. <member name="F:SharpDX.Direct3D9.ClipStatus.ClipIntersection">
  32735. <summary>
  32736. <dd> <p>Clip intersection flags that describe the current clip status. This member can take the same flags as ClipUnion. </p> </dd>
  32737. </summary>
  32738. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DCLIPSTATUS9::ClipIntersection']/*" />
  32739. <msdn-id>bb172516</msdn-id>
  32740. <unmanaged>unsigned int ClipIntersection</unmanaged>
  32741. <unmanaged-short>unsigned int ClipIntersection</unmanaged-short>
  32742. </member>
  32743. <member name="T:SharpDX.Direct3D9.ConstantDescription">
  32744. <summary>
  32745. <p>A description of a constant in a constant table.</p>
  32746. </summary>
  32747. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC']/*" />
  32748. <msdn-id>bb172748</msdn-id>
  32749. <unmanaged>D3DXCONSTANT_DESC</unmanaged>
  32750. <unmanaged-short>D3DXCONSTANT_DESC</unmanaged-short>
  32751. </member>
  32752. <member name="F:SharpDX.Direct3D9.ConstantDescription.Name">
  32753. <summary>
  32754. <dd> <p>Name of the constant.</p> </dd>
  32755. </summary>
  32756. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::Name']/*" />
  32757. <msdn-id>bb172748</msdn-id>
  32758. <unmanaged>const char* Name</unmanaged>
  32759. <unmanaged-short>char Name</unmanaged-short>
  32760. </member>
  32761. <member name="F:SharpDX.Direct3D9.ConstantDescription.RegisterSet">
  32762. <summary>
  32763. <dd> <p>Constant data type. See <strong><see cref="T:SharpDX.Direct3D9.RegisterSet" /></strong>.</p> </dd>
  32764. </summary>
  32765. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::RegisterSet']/*" />
  32766. <msdn-id>bb172748</msdn-id>
  32767. <unmanaged>D3DXREGISTER_SET RegisterSet</unmanaged>
  32768. <unmanaged-short>D3DXREGISTER_SET RegisterSet</unmanaged-short>
  32769. </member>
  32770. <member name="F:SharpDX.Direct3D9.ConstantDescription.RegisterIndex">
  32771. <summary>
  32772. <dd> <p>Zero-based index of the constant in the table.</p> </dd>
  32773. </summary>
  32774. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::RegisterIndex']/*" />
  32775. <msdn-id>bb172748</msdn-id>
  32776. <unmanaged>unsigned int RegisterIndex</unmanaged>
  32777. <unmanaged-short>unsigned int RegisterIndex</unmanaged-short>
  32778. </member>
  32779. <member name="F:SharpDX.Direct3D9.ConstantDescription.RegisterCount">
  32780. <summary>
  32781. <dd> <p>Number of registers that contain data.</p> </dd>
  32782. </summary>
  32783. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::RegisterCount']/*" />
  32784. <msdn-id>bb172748</msdn-id>
  32785. <unmanaged>unsigned int RegisterCount</unmanaged>
  32786. <unmanaged-short>unsigned int RegisterCount</unmanaged-short>
  32787. </member>
  32788. <member name="F:SharpDX.Direct3D9.ConstantDescription.Class">
  32789. <summary>
  32790. <dd> <p>Parameter class. See <strong><see cref="T:SharpDX.Direct3D9.ParameterClass" /></strong>.</p> </dd>
  32791. </summary>
  32792. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::Class']/*" />
  32793. <msdn-id>bb172748</msdn-id>
  32794. <unmanaged>D3DXPARAMETER_CLASS Class</unmanaged>
  32795. <unmanaged-short>D3DXPARAMETER_CLASS Class</unmanaged-short>
  32796. </member>
  32797. <member name="F:SharpDX.Direct3D9.ConstantDescription.Type">
  32798. <summary>
  32799. <dd> <p>Parameter type. See <strong><see cref="T:SharpDX.Direct3D9.ParameterType" /></strong>.</p> </dd>
  32800. </summary>
  32801. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::Type']/*" />
  32802. <msdn-id>bb172748</msdn-id>
  32803. <unmanaged>D3DXPARAMETER_TYPE Type</unmanaged>
  32804. <unmanaged-short>D3DXPARAMETER_TYPE Type</unmanaged-short>
  32805. </member>
  32806. <member name="F:SharpDX.Direct3D9.ConstantDescription.Rows">
  32807. <summary>
  32808. <dd> <p>Number of rows.</p> </dd>
  32809. </summary>
  32810. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::Rows']/*" />
  32811. <msdn-id>bb172748</msdn-id>
  32812. <unmanaged>unsigned int Rows</unmanaged>
  32813. <unmanaged-short>unsigned int Rows</unmanaged-short>
  32814. </member>
  32815. <member name="F:SharpDX.Direct3D9.ConstantDescription.Columns">
  32816. <summary>
  32817. <dd> <p>Number of columns.</p> </dd>
  32818. </summary>
  32819. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::Columns']/*" />
  32820. <msdn-id>bb172748</msdn-id>
  32821. <unmanaged>unsigned int Columns</unmanaged>
  32822. <unmanaged-short>unsigned int Columns</unmanaged-short>
  32823. </member>
  32824. <member name="F:SharpDX.Direct3D9.ConstantDescription.Elements">
  32825. <summary>
  32826. <dd> <p>Number of elements in the array.</p> </dd>
  32827. </summary>
  32828. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::Elements']/*" />
  32829. <msdn-id>bb172748</msdn-id>
  32830. <unmanaged>unsigned int Elements</unmanaged>
  32831. <unmanaged-short>unsigned int Elements</unmanaged-short>
  32832. </member>
  32833. <member name="F:SharpDX.Direct3D9.ConstantDescription.StructMembers">
  32834. <summary>
  32835. <dd> <p>Number of structure member sub-parameters.</p> </dd>
  32836. </summary>
  32837. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::StructMembers']/*" />
  32838. <msdn-id>bb172748</msdn-id>
  32839. <unmanaged>unsigned int StructMembers</unmanaged>
  32840. <unmanaged-short>unsigned int StructMembers</unmanaged-short>
  32841. </member>
  32842. <member name="F:SharpDX.Direct3D9.ConstantDescription.Bytes">
  32843. <summary>
  32844. <dd> <p>Data size in number of bytes.</p> </dd>
  32845. </summary>
  32846. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::Bytes']/*" />
  32847. <msdn-id>bb172748</msdn-id>
  32848. <unmanaged>unsigned int Bytes</unmanaged>
  32849. <unmanaged-short>unsigned int Bytes</unmanaged-short>
  32850. </member>
  32851. <member name="F:SharpDX.Direct3D9.ConstantDescription.DefaultValue">
  32852. <summary>
  32853. <dd> <p>Pointer to the default value.</p> </dd>
  32854. </summary>
  32855. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANT_DESC::DefaultValue']/*" />
  32856. <msdn-id>bb172748</msdn-id>
  32857. <unmanaged>const void* DefaultValue</unmanaged>
  32858. <unmanaged-short>void DefaultValue</unmanaged-short>
  32859. </member>
  32860. <member name="T:SharpDX.Direct3D9.ConstantTableDescription">
  32861. <summary>
  32862. <p>A description of the constant table.</p>
  32863. </summary>
  32864. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANTTABLE_DESC']/*" />
  32865. <msdn-id>bb172747</msdn-id>
  32866. <unmanaged>D3DXCONSTANTTABLE_DESC</unmanaged>
  32867. <unmanaged-short>D3DXCONSTANTTABLE_DESC</unmanaged-short>
  32868. </member>
  32869. <member name="F:SharpDX.Direct3D9.ConstantTableDescription.Creator">
  32870. <summary>
  32871. <dd> <p>Name of the constant table creator.</p> </dd>
  32872. </summary>
  32873. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANTTABLE_DESC::Creator']/*" />
  32874. <msdn-id>bb172747</msdn-id>
  32875. <unmanaged>const char* Creator</unmanaged>
  32876. <unmanaged-short>char Creator</unmanaged-short>
  32877. </member>
  32878. <member name="F:SharpDX.Direct3D9.ConstantTableDescription.Version">
  32879. <summary>
  32880. <dd> <p>Shader version.</p> </dd>
  32881. </summary>
  32882. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANTTABLE_DESC::Version']/*" />
  32883. <msdn-id>bb172747</msdn-id>
  32884. <unmanaged>unsigned int Version</unmanaged>
  32885. <unmanaged-short>unsigned int Version</unmanaged-short>
  32886. </member>
  32887. <member name="F:SharpDX.Direct3D9.ConstantTableDescription.Constants">
  32888. <summary>
  32889. <dd> <p>Number of constants in the constant table.</p> </dd>
  32890. </summary>
  32891. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXCONSTANTTABLE_DESC::Constants']/*" />
  32892. <msdn-id>bb172747</msdn-id>
  32893. <unmanaged>unsigned int Constants</unmanaged>
  32894. <unmanaged-short>unsigned int Constants</unmanaged-short>
  32895. </member>
  32896. <member name="T:SharpDX.Direct3D9.CreationParameters">
  32897. <summary>
  32898. <p>Describes the creation parameters for a device.</p>
  32899. </summary>
  32900. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVICE_CREATION_PARAMETERS']/*" />
  32901. <msdn-id>bb172538</msdn-id>
  32902. <unmanaged>D3DDEVICE_CREATION_PARAMETERS</unmanaged>
  32903. <unmanaged-short>D3DDEVICE_CREATION_PARAMETERS</unmanaged-short>
  32904. </member>
  32905. <member name="F:SharpDX.Direct3D9.CreationParameters.AdapterOrdinal">
  32906. <summary>
  32907. <dd> <p>Ordinal number that denotes the display adapter. D3DADAPTER_DEFAULT is always the primary display adapter. Use this ordinal as the Adapter parameter for any of the <strong><see cref="T:SharpDX.Direct3D9.Direct3D" /></strong> methods. Note that different instances of Direct3D 9.0 objects can use different ordinals. Adapters can enter or leave a system when users, for example, add or remove monitors from a multiple-monitor system or when they hot-swap a laptop. Consequently, use this ordinal only in a Direct3D 9.0 instance known to be valid, that is, either the Direct3D 9.0 that created this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface or the Direct3D 9.0 returned from <strong>GetDirect3D</strong>, as called through this <strong><see cref="T:SharpDX.Direct3D9.Device" /></strong> interface.</p> </dd>
  32908. </summary>
  32909. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVICE_CREATION_PARAMETERS::AdapterOrdinal']/*" />
  32910. <msdn-id>bb172538</msdn-id>
  32911. <unmanaged>unsigned int AdapterOrdinal</unmanaged>
  32912. <unmanaged-short>unsigned int AdapterOrdinal</unmanaged-short>
  32913. </member>
  32914. <member name="F:SharpDX.Direct3D9.CreationParameters.DeviceType">
  32915. <summary>
  32916. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.DeviceType" /></strong> enumerated type. Denotes the amount of emulated functionality for this device. The value of this parameter mirrors the value passed to the <strong>CreateDevice</strong> call that created this device.</p> </dd>
  32917. </summary>
  32918. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVICE_CREATION_PARAMETERS::DeviceType']/*" />
  32919. <msdn-id>bb172538</msdn-id>
  32920. <unmanaged>D3DDEVTYPE DeviceType</unmanaged>
  32921. <unmanaged-short>D3DDEVTYPE DeviceType</unmanaged-short>
  32922. </member>
  32923. <member name="F:SharpDX.Direct3D9.CreationParameters.HFocusWindow">
  32924. <summary>
  32925. <dd> <p>Window handle to which focus belongs for this Direct3D device. The value of this parameter mirrors the value passed to the <strong>CreateDevice</strong> call that created this device.</p> </dd>
  32926. </summary>
  32927. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVICE_CREATION_PARAMETERS::hFocusWindow']/*" />
  32928. <msdn-id>bb172538</msdn-id>
  32929. <unmanaged>HWND hFocusWindow</unmanaged>
  32930. <unmanaged-short>HWND hFocusWindow</unmanaged-short>
  32931. </member>
  32932. <member name="F:SharpDX.Direct3D9.CreationParameters.BehaviorFlags">
  32933. <summary>
  32934. <dd> <p>A combination of one or more <see cref="T:SharpDX.Direct3D9.CreateFlags" /> constants that control global behavior of the device. These constants mirror the constants passed to <strong>CreateDevice</strong> when the device was created.</p> </dd>
  32935. </summary>
  32936. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVICE_CREATION_PARAMETERS::BehaviorFlags']/*" />
  32937. <msdn-id>bb172538</msdn-id>
  32938. <unmanaged>unsigned int BehaviorFlags</unmanaged>
  32939. <unmanaged-short>unsigned int BehaviorFlags</unmanaged-short>
  32940. </member>
  32941. <member name="T:SharpDX.Direct3D9.DisplayModeFilter">
  32942. <summary>
  32943. <p>Specifies types of display modes to filter out.</p>
  32944. </summary>
  32945. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEFILTER']/*" />
  32946. <msdn-id>bb172550</msdn-id>
  32947. <unmanaged>D3DDISPLAYMODEFILTER</unmanaged>
  32948. <unmanaged-short>D3DDISPLAYMODEFILTER</unmanaged-short>
  32949. </member>
  32950. <member name="F:SharpDX.Direct3D9.DisplayModeFilter.Size">
  32951. <summary>
  32952. <dd> <p>The size of this structure. This should always be set to sizeof(<see cref="T:SharpDX.Direct3D9.DisplayModeFilter" />).</p> </dd>
  32953. </summary>
  32954. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEFILTER::Size']/*" />
  32955. <msdn-id>bb172550</msdn-id>
  32956. <unmanaged>unsigned int Size</unmanaged>
  32957. <unmanaged-short>unsigned int Size</unmanaged-short>
  32958. </member>
  32959. <member name="F:SharpDX.Direct3D9.DisplayModeFilter.Format">
  32960. <summary>
  32961. <dd> <p>The display mode format to filter out. See <see cref="T:SharpDX.Direct3D9.Format" />.</p> </dd>
  32962. </summary>
  32963. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEFILTER::Format']/*" />
  32964. <msdn-id>bb172550</msdn-id>
  32965. <unmanaged>D3DFORMAT Format</unmanaged>
  32966. <unmanaged-short>D3DFORMAT Format</unmanaged-short>
  32967. </member>
  32968. <member name="F:SharpDX.Direct3D9.DisplayModeFilter.ScanLineOrdering">
  32969. <summary>
  32970. <dd> <p>Whether the scanline ordering is interlaced or progressive. See <strong><see cref="T:SharpDX.Direct3D9.ScanlineOrdering" /></strong>.</p> </dd>
  32971. </summary>
  32972. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDISPLAYMODEFILTER::ScanLineOrdering']/*" />
  32973. <msdn-id>bb172550</msdn-id>
  32974. <unmanaged>D3DSCANLINEORDERING ScanLineOrdering</unmanaged>
  32975. <unmanaged-short>D3DSCANLINEORDERING ScanLineOrdering</unmanaged-short>
  32976. </member>
  32977. <member name="T:SharpDX.Direct3D9.EffectDescription">
  32978. <summary>
  32979. <p>Describes an effect object.</p>
  32980. </summary>
  32981. <remarks>
  32982. <p>An effect object can contain multiple rendering techniques and parameters for the same effect.</p>
  32983. </remarks>
  32984. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECT_DESC']/*" />
  32985. <msdn-id>bb172824</msdn-id>
  32986. <unmanaged>D3DXEFFECT_DESC</unmanaged>
  32987. <unmanaged-short>D3DXEFFECT_DESC</unmanaged-short>
  32988. </member>
  32989. <member name="F:SharpDX.Direct3D9.EffectDescription.Creator">
  32990. <summary>
  32991. <dd> <p>String that contains the name of the effect creator.</p> </dd>
  32992. </summary>
  32993. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECT_DESC::Creator']/*" />
  32994. <msdn-id>bb172824</msdn-id>
  32995. <unmanaged>const char* Creator</unmanaged>
  32996. <unmanaged-short>char Creator</unmanaged-short>
  32997. </member>
  32998. <member name="F:SharpDX.Direct3D9.EffectDescription.Parameters">
  32999. <summary>
  33000. <dd> <p>Number of parameters used for effect.</p> </dd>
  33001. </summary>
  33002. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECT_DESC::Parameters']/*" />
  33003. <msdn-id>bb172824</msdn-id>
  33004. <unmanaged>unsigned int Parameters</unmanaged>
  33005. <unmanaged-short>unsigned int Parameters</unmanaged-short>
  33006. </member>
  33007. <member name="F:SharpDX.Direct3D9.EffectDescription.Techniques">
  33008. <summary>
  33009. <dd> <p>Number of techniques that can render the effect.</p> </dd>
  33010. </summary>
  33011. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECT_DESC::Techniques']/*" />
  33012. <msdn-id>bb172824</msdn-id>
  33013. <unmanaged>unsigned int Techniques</unmanaged>
  33014. <unmanaged-short>unsigned int Techniques</unmanaged-short>
  33015. </member>
  33016. <member name="F:SharpDX.Direct3D9.EffectDescription.Functions">
  33017. <summary>
  33018. <dd> <p>Number of functions that can render the effect.</p> </dd>
  33019. </summary>
  33020. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEFFECT_DESC::Functions']/*" />
  33021. <msdn-id>bb172824</msdn-id>
  33022. <unmanaged>unsigned int Functions</unmanaged>
  33023. <unmanaged-short>unsigned int Functions</unmanaged-short>
  33024. </member>
  33025. <member name="T:SharpDX.Direct3D9.EventDescription">
  33026. <summary>
  33027. <p>Describes an animation event.</p>
  33028. </summary>
  33029. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_DESC']/*" />
  33030. <msdn-id>bb172826</msdn-id>
  33031. <unmanaged>D3DXEVENT_DESC</unmanaged>
  33032. <unmanaged-short>D3DXEVENT_DESC</unmanaged-short>
  33033. </member>
  33034. <member name="F:SharpDX.Direct3D9.EventDescription.Type">
  33035. <summary>
  33036. <dd> <p>Event type, as defined in <strong><see cref="T:SharpDX.Direct3D9.EventType" /></strong>.</p> </dd>
  33037. </summary>
  33038. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_DESC::Type']/*" />
  33039. <msdn-id>bb172826</msdn-id>
  33040. <unmanaged>D3DXEVENT_TYPE Type</unmanaged>
  33041. <unmanaged-short>D3DXEVENT_TYPE Type</unmanaged-short>
  33042. </member>
  33043. <member name="F:SharpDX.Direct3D9.EventDescription.Track">
  33044. <summary>
  33045. <dd> <p>Event track identifier.</p> </dd>
  33046. </summary>
  33047. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_DESC::Track']/*" />
  33048. <msdn-id>bb172826</msdn-id>
  33049. <unmanaged>unsigned int Track</unmanaged>
  33050. <unmanaged-short>unsigned int Track</unmanaged-short>
  33051. </member>
  33052. <member name="F:SharpDX.Direct3D9.EventDescription.StartTime">
  33053. <summary>
  33054. <dd> <p>Start time of the event in global time.</p> </dd>
  33055. </summary>
  33056. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_DESC::StartTime']/*" />
  33057. <msdn-id>bb172826</msdn-id>
  33058. <unmanaged>double StartTime</unmanaged>
  33059. <unmanaged-short>double StartTime</unmanaged-short>
  33060. </member>
  33061. <member name="F:SharpDX.Direct3D9.EventDescription.Duration">
  33062. <summary>
  33063. <dd> <p>Duration of the event in global time.</p> </dd>
  33064. </summary>
  33065. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_DESC::Duration']/*" />
  33066. <msdn-id>bb172826</msdn-id>
  33067. <unmanaged>double Duration</unmanaged>
  33068. <unmanaged-short>double Duration</unmanaged-short>
  33069. </member>
  33070. <member name="F:SharpDX.Direct3D9.EventDescription.Transition">
  33071. <summary>
  33072. <dd> <p>Transition style of the event, as defined in <strong><see cref="T:SharpDX.Direct3D9.TransitionType" /></strong>.</p> </dd>
  33073. </summary>
  33074. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_DESC::Transition']/*" />
  33075. <msdn-id>bb172826</msdn-id>
  33076. <unmanaged>D3DXTRANSITION_TYPE Transition</unmanaged>
  33077. <unmanaged-short>D3DXTRANSITION_TYPE Transition</unmanaged-short>
  33078. </member>
  33079. <member name="F:SharpDX.Direct3D9.EventDescription.Weight">
  33080. <summary>
  33081. <dd> <p>Track weight for the event.</p> </dd>
  33082. </summary>
  33083. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_DESC::Weight']/*" />
  33084. <msdn-id>bb172826</msdn-id>
  33085. <unmanaged>float Weight</unmanaged>
  33086. <unmanaged-short>float Weight</unmanaged-short>
  33087. </member>
  33088. <member name="F:SharpDX.Direct3D9.EventDescription.Speed">
  33089. <summary>
  33090. <dd> <p>Track speed for the event.</p> </dd>
  33091. </summary>
  33092. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_DESC::Speed']/*" />
  33093. <msdn-id>bb172826</msdn-id>
  33094. <unmanaged>float Speed</unmanaged>
  33095. <unmanaged-short>float Speed</unmanaged-short>
  33096. </member>
  33097. <member name="F:SharpDX.Direct3D9.EventDescription.Position">
  33098. <summary>
  33099. <dd> <p>Track position for the event.</p> </dd>
  33100. </summary>
  33101. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_DESC::Position']/*" />
  33102. <msdn-id>bb172826</msdn-id>
  33103. <unmanaged>double Position</unmanaged>
  33104. <unmanaged-short>double Position</unmanaged-short>
  33105. </member>
  33106. <member name="F:SharpDX.Direct3D9.EventDescription.Enable">
  33107. <summary>
  33108. <dd> <p>Enable flag.</p> </dd>
  33109. </summary>
  33110. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXEVENT_DESC::Enable']/*" />
  33111. <msdn-id>bb172826</msdn-id>
  33112. <unmanaged>BOOL Enable</unmanaged>
  33113. <unmanaged-short>BOOL Enable</unmanaged-short>
  33114. </member>
  33115. <member name="T:SharpDX.Direct3D9.ExtendedMaterial">
  33116. <summary>
  33117. <p>Returns material information saved in Direct3D (.x) files.</p>
  33118. </summary>
  33119. <remarks>
  33120. <p>The <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXW(System.String,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)" /></strong> and <strong><see cref="M:SharpDX.Direct3D9.D3DX9.LoadMeshFromXof(SharpDX.Direct3D9.XFileData,System.Int32,SharpDX.Direct3D9.Device,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,SharpDX.Direct3D.Blob@,System.Int32,SharpDX.Direct3D9.Mesh@)" /></strong> functions return an array of <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structures that specify the material color and name of the texture for each material in the mesh. The application is then required to load the texture.</p><p>The LPD3DXMATERIAL type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.ExtendedMaterial" /></strong> structure. </p><pre> typedef struct <see cref="T:SharpDX.Direct3D9.ExtendedMaterial" />* LPD3DXMATERIAL;
  33121. </pre>
  33122. </remarks>
  33123. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMATERIAL']/*" />
  33124. <msdn-id>bb172911</msdn-id>
  33125. <unmanaged>D3DXMATERIAL</unmanaged>
  33126. <unmanaged-short>D3DXMATERIAL</unmanaged-short>
  33127. </member>
  33128. <member name="F:SharpDX.Direct3D9.ExtendedMaterial.MaterialD3D">
  33129. <summary>
  33130. <dd> <p> <strong><see cref="T:SharpDX.Direct3D9.Material" /></strong> structure that describes the material properties.</p> </dd>
  33131. </summary>
  33132. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMATERIAL::MatD3D']/*" />
  33133. <msdn-id>bb172911</msdn-id>
  33134. <unmanaged>D3DMATERIAL9 MatD3D</unmanaged>
  33135. <unmanaged-short>D3DMATERIAL9 MatD3D</unmanaged-short>
  33136. </member>
  33137. <member name="F:SharpDX.Direct3D9.ExtendedMaterial.TextureFileName">
  33138. <summary>
  33139. <dd> <p>Pointer to a string that specifies the file name of the texture.</p> </dd>
  33140. </summary>
  33141. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMATERIAL::pTextureFilename']/*" />
  33142. <msdn-id>bb172911</msdn-id>
  33143. <unmanaged>char* pTextureFilename</unmanaged>
  33144. <unmanaged-short>char pTextureFilename</unmanaged-short>
  33145. </member>
  33146. <member name="T:SharpDX.Direct3D9.FontDescription">
  33147. <summary>
  33148. <p>Defines the attributes of a font.</p>
  33149. </summary>
  33150. <remarks>
  33151. <p>The compiler setting also determines the structure type. If Unicode is defined, the <see cref="T:SharpDX.Direct3D9.FontDescription" /> structure type resolves to a <see cref="T:SharpDX.Direct3D9.FontDescription" />; otherwise the structure type resolves to a D3DXFONT_DESCA.</p><p>Possible values of the above members are given in the GDI <strong><see cref="!:SharpDX.DirectWrite.GdiInterop.LogFont" /></strong> structure.</p>
  33152. </remarks>
  33153. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW']/*" />
  33154. <msdn-id>bb172843</msdn-id>
  33155. <unmanaged>D3DXFONT_DESCW</unmanaged>
  33156. <unmanaged-short>D3DXFONT_DESCW</unmanaged-short>
  33157. </member>
  33158. <member name="F:SharpDX.Direct3D9.FontDescription.Height">
  33159. <summary>
  33160. <dd> <p>Height, in logical units, of the font's character cell or character.</p> </dd>
  33161. </summary>
  33162. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW::Height']/*" />
  33163. <msdn-id>bb172843</msdn-id>
  33164. <unmanaged>int Height</unmanaged>
  33165. <unmanaged-short>int Height</unmanaged-short>
  33166. </member>
  33167. <member name="F:SharpDX.Direct3D9.FontDescription.Width">
  33168. <summary>
  33169. <dd> <p>Width, in logical units, of characters in the font.</p> </dd>
  33170. </summary>
  33171. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW::Width']/*" />
  33172. <msdn-id>bb172843</msdn-id>
  33173. <unmanaged>unsigned int Width</unmanaged>
  33174. <unmanaged-short>unsigned int Width</unmanaged-short>
  33175. </member>
  33176. <member name="F:SharpDX.Direct3D9.FontDescription.Weight">
  33177. <summary>
  33178. <dd> <p>Weight of the font in the range from 0 through 1000.</p> </dd>
  33179. </summary>
  33180. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW::Weight']/*" />
  33181. <msdn-id>bb172843</msdn-id>
  33182. <unmanaged>D3DX9_FONT_WEIGHT Weight</unmanaged>
  33183. <unmanaged-short>D3DX9_FONT_WEIGHT Weight</unmanaged-short>
  33184. </member>
  33185. <member name="F:SharpDX.Direct3D9.FontDescription.MipLevels">
  33186. <summary>
  33187. <dd> <p>Number of mip 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>
  33188. </summary>
  33189. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW::MipLevels']/*" />
  33190. <msdn-id>bb172843</msdn-id>
  33191. <unmanaged>unsigned int MipLevels</unmanaged>
  33192. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  33193. </member>
  33194. <member name="F:SharpDX.Direct3D9.FontDescription.Italic">
  33195. <summary>
  33196. <dd> <p>Set to <strong>TRUE</strong> for an Italic font.</p> </dd>
  33197. </summary>
  33198. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW::Italic']/*" />
  33199. <msdn-id>bb172843</msdn-id>
  33200. <unmanaged>BOOL Italic</unmanaged>
  33201. <unmanaged-short>BOOL Italic</unmanaged-short>
  33202. </member>
  33203. <member name="F:SharpDX.Direct3D9.FontDescription.CharacterSet">
  33204. <summary>
  33205. <dd> <p>Character set.</p> </dd>
  33206. </summary>
  33207. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW::CharSet']/*" />
  33208. <msdn-id>bb172843</msdn-id>
  33209. <unmanaged>D3DX9_FONT_CHARSET CharSet</unmanaged>
  33210. <unmanaged-short>D3DX9_FONT_CHARSET CharSet</unmanaged-short>
  33211. </member>
  33212. <member name="F:SharpDX.Direct3D9.FontDescription.OutputPrecision">
  33213. <summary>
  33214. <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>
  33215. </summary>
  33216. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW::OutputPrecision']/*" />
  33217. <msdn-id>bb172843</msdn-id>
  33218. <unmanaged>D3DX9_FONT_PRECISION OutputPrecision</unmanaged>
  33219. <unmanaged-short>D3DX9_FONT_PRECISION OutputPrecision</unmanaged-short>
  33220. </member>
  33221. <member name="F:SharpDX.Direct3D9.FontDescription.Quality">
  33222. <summary>
  33223. <dd> <p>Output quality.</p> </dd>
  33224. </summary>
  33225. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW::Quality']/*" />
  33226. <msdn-id>bb172843</msdn-id>
  33227. <unmanaged>D3DX9_FONT_QUALITY Quality</unmanaged>
  33228. <unmanaged-short>D3DX9_FONT_QUALITY Quality</unmanaged-short>
  33229. </member>
  33230. <member name="F:SharpDX.Direct3D9.FontDescription.PitchAndFamily">
  33231. <summary>
  33232. <dd> <p>Pitch and family of the font.</p> </dd>
  33233. </summary>
  33234. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW::PitchAndFamily']/*" />
  33235. <msdn-id>bb172843</msdn-id>
  33236. <unmanaged>D3DX9_FONT_PITCHFAMILY PitchAndFamily</unmanaged>
  33237. <unmanaged-short>D3DX9_FONT_PITCHFAMILY PitchAndFamily</unmanaged-short>
  33238. </member>
  33239. <member name="F:SharpDX.Direct3D9.FontDescription.FaceName">
  33240. <summary>
  33241. <dd> <p>A null-terminated string or characters that specifies the typeface name of the font. The length of the string must not exceed 32 characters, including the terminating null 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>
  33242. </summary>
  33243. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFONT_DESCW::FaceName']/*" />
  33244. <msdn-id>bb172843</msdn-id>
  33245. <unmanaged>wchar_t FaceName[32]</unmanaged>
  33246. <unmanaged-short>wchar_t FaceName</unmanaged-short>
  33247. </member>
  33248. <member name="T:SharpDX.Direct3D9.Frame">
  33249. <summary>
  33250. <p>Encapsulates a transform frame in a transformation frame hierarchy.</p>
  33251. </summary>
  33252. <remarks>
  33253. <p>An application can derive from this structure to add other data.</p>
  33254. </remarks>
  33255. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFRAME']/*" />
  33256. <msdn-id>bb172845</msdn-id>
  33257. <unmanaged>D3DXFRAME</unmanaged>
  33258. <unmanaged-short>D3DXFRAME</unmanaged-short>
  33259. </member>
  33260. <member name="F:SharpDX.Direct3D9.Frame.Name">
  33261. <summary>
  33262. <dd> <p>Name of the frame.</p> </dd>
  33263. </summary>
  33264. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFRAME::Name']/*" />
  33265. <msdn-id>bb172845</msdn-id>
  33266. <unmanaged>char* Name</unmanaged>
  33267. <unmanaged-short>char Name</unmanaged-short>
  33268. </member>
  33269. <member name="F:SharpDX.Direct3D9.Frame.TransformationMatrix">
  33270. <summary>
  33271. <dd> <p>Transformation matrix.</p> </dd>
  33272. </summary>
  33273. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFRAME::TransformationMatrix']/*" />
  33274. <msdn-id>bb172845</msdn-id>
  33275. <unmanaged>D3DXMATRIX TransformationMatrix</unmanaged>
  33276. <unmanaged-short>D3DXMATRIX TransformationMatrix</unmanaged-short>
  33277. </member>
  33278. <member name="F:SharpDX.Direct3D9.Frame.PMeshContainer">
  33279. <summary>
  33280. <dd> <p>Pointer to the mesh container.</p> </dd>
  33281. </summary>
  33282. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFRAME::pMeshContainer']/*" />
  33283. <msdn-id>bb172845</msdn-id>
  33284. <unmanaged>D3DXMESHCONTAINER* pMeshContainer</unmanaged>
  33285. <unmanaged-short>D3DXMESHCONTAINER pMeshContainer</unmanaged-short>
  33286. </member>
  33287. <member name="F:SharpDX.Direct3D9.Frame.PFrameSibling">
  33288. <summary>
  33289. <dd> <p>Pointer to a sibling frame.</p> </dd>
  33290. </summary>
  33291. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFRAME::pFrameSibling']/*" />
  33292. <msdn-id>bb172845</msdn-id>
  33293. <unmanaged>D3DXFRAME* pFrameSibling</unmanaged>
  33294. <unmanaged-short>D3DXFRAME pFrameSibling</unmanaged-short>
  33295. </member>
  33296. <member name="F:SharpDX.Direct3D9.Frame.PFrameFirstChild">
  33297. <summary>
  33298. <dd> <p>Pointer to a child frame.</p> </dd>
  33299. </summary>
  33300. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFRAME::pFrameFirstChild']/*" />
  33301. <msdn-id>bb172845</msdn-id>
  33302. <unmanaged>D3DXFRAME* pFrameFirstChild</unmanaged>
  33303. <unmanaged-short>D3DXFRAME pFrameFirstChild</unmanaged-short>
  33304. </member>
  33305. <member name="T:SharpDX.Direct3D9.FunctionDescription">
  33306. <summary>
  33307. No documentation.
  33308. </summary>
  33309. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFUNCTION_DESC']/*" />
  33310. <msdn-id>bb280311</msdn-id>
  33311. <unmanaged>D3DXFUNCTION_DESC</unmanaged>
  33312. <unmanaged-short>D3DXFUNCTION_DESC</unmanaged-short>
  33313. </member>
  33314. <member name="F:SharpDX.Direct3D9.FunctionDescription.Name">
  33315. <summary>
  33316. No documentation.
  33317. </summary>
  33318. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFUNCTION_DESC::Name']/*" />
  33319. <msdn-id>bb280311</msdn-id>
  33320. <unmanaged>const char* Name</unmanaged>
  33321. <unmanaged-short>char Name</unmanaged-short>
  33322. </member>
  33323. <member name="F:SharpDX.Direct3D9.FunctionDescription.Annotations">
  33324. <summary>
  33325. No documentation.
  33326. </summary>
  33327. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXFUNCTION_DESC::Annotations']/*" />
  33328. <msdn-id>bb280311</msdn-id>
  33329. <unmanaged>unsigned int Annotations</unmanaged>
  33330. <unmanaged-short>unsigned int Annotations</unmanaged-short>
  33331. </member>
  33332. <member name="T:SharpDX.Direct3D9.GammaRamp">
  33333. <summary>
  33334. <p>Contains red, green, and blue ramp data.</p>
  33335. </summary>
  33336. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DGAMMARAMP']/*" />
  33337. <msdn-id>bb172561</msdn-id>
  33338. <unmanaged>D3DGAMMARAMP</unmanaged>
  33339. <unmanaged-short>D3DGAMMARAMP</unmanaged-short>
  33340. </member>
  33341. <member name="P:SharpDX.Direct3D9.GammaRamp.Red">
  33342. <summary>
  33343. <dd> <p>Array of 256 WORD element that describes the red gamma ramp. </p> </dd>
  33344. </summary>
  33345. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DGAMMARAMP::red']/*" />
  33346. <msdn-id>bb172561</msdn-id>
  33347. <unmanaged>unsigned short red[256]</unmanaged>
  33348. <unmanaged-short>unsigned short red</unmanaged-short>
  33349. </member>
  33350. <member name="P:SharpDX.Direct3D9.GammaRamp.Green">
  33351. <summary>
  33352. <dd> <p>Array of 256 WORD element that describes the green gamma ramp. </p> </dd>
  33353. </summary>
  33354. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DGAMMARAMP::green']/*" />
  33355. <msdn-id>bb172561</msdn-id>
  33356. <unmanaged>unsigned short green[256]</unmanaged>
  33357. <unmanaged-short>unsigned short green</unmanaged-short>
  33358. </member>
  33359. <member name="P:SharpDX.Direct3D9.GammaRamp.Blue">
  33360. <summary>
  33361. <dd> <p>Array of 256 WORD element that describes the blue gamma ramp. </p> </dd>
  33362. </summary>
  33363. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DGAMMARAMP::blue']/*" />
  33364. <msdn-id>bb172561</msdn-id>
  33365. <unmanaged>unsigned short blue[256]</unmanaged>
  33366. <unmanaged-short>unsigned short blue</unmanaged-short>
  33367. </member>
  33368. <member name="T:SharpDX.Direct3D9.ImageInformation">
  33369. <summary>
  33370. <p>Returns a description of the original contents of an image file.</p>
  33371. </summary>
  33372. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMAGE_INFO']/*" />
  33373. <msdn-id>bb172879</msdn-id>
  33374. <unmanaged>D3DXIMAGE_INFO</unmanaged>
  33375. <unmanaged-short>D3DXIMAGE_INFO</unmanaged-short>
  33376. </member>
  33377. <member name="F:SharpDX.Direct3D9.ImageInformation.Width">
  33378. <summary>
  33379. <dd> <p>Width of original image in pixels.</p> </dd>
  33380. </summary>
  33381. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMAGE_INFO::Width']/*" />
  33382. <msdn-id>bb172879</msdn-id>
  33383. <unmanaged>unsigned int Width</unmanaged>
  33384. <unmanaged-short>unsigned int Width</unmanaged-short>
  33385. </member>
  33386. <member name="F:SharpDX.Direct3D9.ImageInformation.Height">
  33387. <summary>
  33388. <dd> <p>Height of original image in pixels.</p> </dd>
  33389. </summary>
  33390. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMAGE_INFO::Height']/*" />
  33391. <msdn-id>bb172879</msdn-id>
  33392. <unmanaged>unsigned int Height</unmanaged>
  33393. <unmanaged-short>unsigned int Height</unmanaged-short>
  33394. </member>
  33395. <member name="F:SharpDX.Direct3D9.ImageInformation.Depth">
  33396. <summary>
  33397. <dd> <p>Depth of original image in pixels.</p> </dd>
  33398. </summary>
  33399. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMAGE_INFO::Depth']/*" />
  33400. <msdn-id>bb172879</msdn-id>
  33401. <unmanaged>unsigned int Depth</unmanaged>
  33402. <unmanaged-short>unsigned int Depth</unmanaged-short>
  33403. </member>
  33404. <member name="F:SharpDX.Direct3D9.ImageInformation.MipLevels">
  33405. <summary>
  33406. <dd> <p>Number of mip levels in original image.</p> </dd>
  33407. </summary>
  33408. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMAGE_INFO::MipLevels']/*" />
  33409. <msdn-id>bb172879</msdn-id>
  33410. <unmanaged>unsigned int MipLevels</unmanaged>
  33411. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  33412. </member>
  33413. <member name="F:SharpDX.Direct3D9.ImageInformation.Format">
  33414. <summary>
  33415. <dd> <p>A value from the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type that most closely describes the data in the original image.</p> </dd>
  33416. </summary>
  33417. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMAGE_INFO::Format']/*" />
  33418. <msdn-id>bb172879</msdn-id>
  33419. <unmanaged>D3DFORMAT Format</unmanaged>
  33420. <unmanaged-short>D3DFORMAT Format</unmanaged-short>
  33421. </member>
  33422. <member name="F:SharpDX.Direct3D9.ImageInformation.ResourceType">
  33423. <summary>
  33424. <dd> <p>Represents the type of the texture stored in the file. It is either <see cref="F:SharpDX.Direct3D9.ResourceType.Texture" />, <see cref="F:SharpDX.Direct3D9.ResourceType.VolumeTexture" />, or D3DRTYPE_CubeTexture.</p> </dd>
  33425. </summary>
  33426. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMAGE_INFO::ResourceType']/*" />
  33427. <msdn-id>bb172879</msdn-id>
  33428. <unmanaged>D3DRESOURCETYPE ResourceType</unmanaged>
  33429. <unmanaged-short>D3DRESOURCETYPE ResourceType</unmanaged-short>
  33430. </member>
  33431. <member name="F:SharpDX.Direct3D9.ImageInformation.ImageFileFormat">
  33432. <summary>
  33433. <dd> <p>Represents the format of the image file.</p> </dd>
  33434. </summary>
  33435. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXIMAGE_INFO::ImageFileFormat']/*" />
  33436. <msdn-id>bb172879</msdn-id>
  33437. <unmanaged>D3DXIMAGE_FILEFORMAT ImageFileFormat</unmanaged>
  33438. <unmanaged-short>D3DXIMAGE_FILEFORMAT ImageFileFormat</unmanaged-short>
  33439. </member>
  33440. <member name="M:SharpDX.Direct3D9.ImageInformation.FromFile(System.String)">
  33441. <summary>
  33442. Retrieves information about a given image file on the disk.
  33443. </summary>
  33444. <param name="fileName">The filename.</param>
  33445. <returns>A <see cref="T:SharpDX.Direct3D9.ImageInformation"/> structure</returns>
  33446. <unmanaged>HRESULT D3DXGetImageInfoFromFileInMemory([In] const void* pSrcData,[In] unsigned int SrcDataSize,[Out] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  33447. </member>
  33448. <member name="M:SharpDX.Direct3D9.ImageInformation.FromMemory(System.Byte[])">
  33449. <summary>
  33450. Retrieves information about a given image file in memory.
  33451. </summary>
  33452. <param name="memory">The memory.</param>
  33453. <returns>A <see cref="T:SharpDX.Direct3D9.ImageInformation"/> structure</returns>
  33454. <unmanaged>HRESULT D3DXGetImageInfoFromFileInMemory([In] const void* pSrcData,[In] unsigned int SrcDataSize,[Out] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  33455. </member>
  33456. <member name="M:SharpDX.Direct3D9.ImageInformation.FromStream(System.IO.Stream)">
  33457. <summary>
  33458. Retrieves information about a given image file from a stream.
  33459. </summary>
  33460. <param name="stream">The stream.</param>
  33461. <returns>A <see cref="T:SharpDX.Direct3D9.ImageInformation"/> structure</returns>
  33462. <remarks>This method keeps the position of the stream</remarks>
  33463. <unmanaged>HRESULT D3DXGetImageInfoFromFileInMemory([In] const void* pSrcData,[In] unsigned int SrcDataSize,[Out] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  33464. </member>
  33465. <member name="M:SharpDX.Direct3D9.ImageInformation.FromStream(System.IO.Stream,System.Boolean)">
  33466. <summary>
  33467. Retrieves information about a given image file from a stream.
  33468. </summary>
  33469. <param name="stream">The stream.</param>
  33470. <param name="keepPosition">if set to <c>true</c> preserve the stream position; <c>false</c> will move the stream pointer.</param>
  33471. <returns>A <see cref="T:SharpDX.Direct3D9.ImageInformation"/> structure</returns>
  33472. <unmanaged>HRESULT D3DXGetImageInfoFromFileInMemory([In] const void* pSrcData,[In] unsigned int SrcDataSize,[Out] D3DXIMAGE_INFO* pSrcInfo)</unmanaged>
  33473. </member>
  33474. <member name="T:SharpDX.Direct3D9.IndexBufferDescription">
  33475. <summary>
  33476. <p>Describes an index buffer.</p>
  33477. </summary>
  33478. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DINDEXBUFFER_DESC']/*" />
  33479. <msdn-id>bb172563</msdn-id>
  33480. <unmanaged>D3DINDEXBUFFER_DESC</unmanaged>
  33481. <unmanaged-short>D3DINDEXBUFFER_DESC</unmanaged-short>
  33482. </member>
  33483. <member name="F:SharpDX.Direct3D9.IndexBufferDescription.Format">
  33484. <summary>
  33485. <dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the surface format of the index buffer data.</p> </dd>
  33486. </summary>
  33487. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DINDEXBUFFER_DESC::Format']/*" />
  33488. <msdn-id>bb172563</msdn-id>
  33489. <unmanaged>D3DFORMAT Format</unmanaged>
  33490. <unmanaged-short>D3DFORMAT Format</unmanaged-short>
  33491. </member>
  33492. <member name="F:SharpDX.Direct3D9.IndexBufferDescription.Type">
  33493. <summary>
  33494. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.ResourceType" /></strong> enumerated type, identifying this resource as an index buffer.</p> </dd>
  33495. </summary>
  33496. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DINDEXBUFFER_DESC::Type']/*" />
  33497. <msdn-id>bb172563</msdn-id>
  33498. <unmanaged>D3DRESOURCETYPE Type</unmanaged>
  33499. <unmanaged-short>D3DRESOURCETYPE Type</unmanaged-short>
  33500. </member>
  33501. <member name="F:SharpDX.Direct3D9.IndexBufferDescription.Usage">
  33502. <summary>
  33503. <dd> <p>Combination of one or more of the following flags, specifying the usage for this resource.</p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Usage.DoNotClip" /></strong></dt> </dl> </td><td> <p>Set to indicate that the index buffer content will never require clipping.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /></strong></dt> </dl> </td><td> <p>Set to indicate that the index buffer requires dynamic memory use. This is useful for drivers because it enables them to decide where to place the buffer. In general, static index buffers are placed in video memory and dynamic index buffers are placed in AGP memory. Note that there is no separate static usage; if you do not specify <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /> the index buffer is made static. <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /> is strictly enforced through the <see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /> and <see cref="F:SharpDX.Direct3D9.LockFlags.NoOverwrite" /> locking flags. As a result, <see cref="F:SharpDX.Direct3D9.LockFlags.Discard" /> and <see cref="F:SharpDX.Direct3D9.LockFlags.NoOverwrite" /> are only valid on index buffers created with <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" />; they are not valid flags on static vertex buffers.</p> <p>For more information about using dynamic index buffers, see Using Dynamic Vertex and Index Buffers.</p> <p>Note that <see cref="F:SharpDX.Direct3D9.Usage.Dynamic" /> cannot be specified on managed index buffers. For more information, see Managing Resources (Direct3D 9).</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Usage.RTPatches" /></strong></dt> </dl> </td><td> <p>Set to indicate when the index buffer is to be used for drawing high-order primitives.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Usage.NPatches" /></strong></dt> </dl> </td><td> <p>Set to indicate when the index buffer is to be used for drawing N patches.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Usage.Points" /></strong></dt> </dl> </td><td> <p>Set to indicate when the index buffer is to be used for drawing point sprites or indexed point lists.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Usage.SoftwareProcessing" /></strong></dt> </dl> </td><td> <p>Set to indicate that the buffer is to be used with software processing.</p> </td></tr> <tr><td><dl> <dt><strong><see cref="F:SharpDX.Direct3D9.Usage.WriteOnly" /></strong></dt> </dl> </td><td> <p>Informs the system that the application writes only to the index buffer. Using this flag enables the driver to choose the best memory location for efficient write operations and rendering. Attempts to read from an index buffer that is created with this capability can result in degraded performance.</p> </td></tr> </table> <p>?</p> </dd>
  33504. </summary>
  33505. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DINDEXBUFFER_DESC::Usage']/*" />
  33506. <msdn-id>bb172563</msdn-id>
  33507. <unmanaged>D3DUSAGE Usage</unmanaged>
  33508. <unmanaged-short>D3DUSAGE Usage</unmanaged-short>
  33509. </member>
  33510. <member name="F:SharpDX.Direct3D9.IndexBufferDescription.Pool">
  33511. <summary>
  33512. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, specifying the class of memory allocated for this index buffer.</p> </dd>
  33513. </summary>
  33514. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DINDEXBUFFER_DESC::Pool']/*" />
  33515. <msdn-id>bb172563</msdn-id>
  33516. <unmanaged>D3DPOOL Pool</unmanaged>
  33517. <unmanaged-short>D3DPOOL Pool</unmanaged-short>
  33518. </member>
  33519. <member name="F:SharpDX.Direct3D9.IndexBufferDescription.Size">
  33520. <summary>
  33521. <dd> <p>Size of the index buffer, in bytes.</p> </dd>
  33522. </summary>
  33523. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DINDEXBUFFER_DESC::Size']/*" />
  33524. <msdn-id>bb172563</msdn-id>
  33525. <unmanaged>unsigned int Size</unmanaged>
  33526. <unmanaged-short>unsigned int Size</unmanaged-short>
  33527. </member>
  33528. <member name="T:SharpDX.Direct3D9.InterfaceTimings">
  33529. <summary>
  33530. <p>Percent of time processing data in the driver. These statistics may help identify cases when the driver is waiting for other resources.</p>
  33531. </summary>
  33532. <remarks>
  33533. <p>These metrics help identify when a driver is waiting and what it is waiting for. High percentages are not necessarily a problem.</p><p>These system-global metrics may or may not be implemented. Depending on the specific hardware, these metrics may not support multiple queries simultaneously.</p>
  33534. </remarks>
  33535. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9INTERFACETIMINGS']/*" />
  33536. <msdn-id>bb172541</msdn-id>
  33537. <unmanaged>D3DDEVINFO_D3D9INTERFACETIMINGS</unmanaged>
  33538. <unmanaged-short>D3DDEVINFO_D3D9INTERFACETIMINGS</unmanaged-short>
  33539. </member>
  33540. <member name="F:SharpDX.Direct3D9.InterfaceTimings.WaitingForGPUToUseApplicationResourceTimePercent">
  33541. <summary>
  33542. <dd> <p>Percentage of time the driver spent waiting for the GPU to finish using a locked resource (and <see cref="F:SharpDX.Direct3D9.LockFlags.DoNotWait" /> wasn't specified).</p> </dd>
  33543. </summary>
  33544. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9INTERFACETIMINGS::WaitingForGPUToUseApplicationResourceTimePercent']/*" />
  33545. <msdn-id>bb172541</msdn-id>
  33546. <unmanaged>float WaitingForGPUToUseApplicationResourceTimePercent</unmanaged>
  33547. <unmanaged-short>float WaitingForGPUToUseApplicationResourceTimePercent</unmanaged-short>
  33548. </member>
  33549. <member name="F:SharpDX.Direct3D9.InterfaceTimings.WaitingForGPUToAcceptMoreCommandsTimePercent">
  33550. <summary>
  33551. <dd> <p>Percentage of time the driver spent waiting for the GPU to finish processing some commands before the driver could send more. This indicates the driver has run out of room to send commands to the GPU.</p> </dd>
  33552. </summary>
  33553. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9INTERFACETIMINGS::WaitingForGPUToAcceptMoreCommandsTimePercent']/*" />
  33554. <msdn-id>bb172541</msdn-id>
  33555. <unmanaged>float WaitingForGPUToAcceptMoreCommandsTimePercent</unmanaged>
  33556. <unmanaged-short>float WaitingForGPUToAcceptMoreCommandsTimePercent</unmanaged-short>
  33557. </member>
  33558. <member name="F:SharpDX.Direct3D9.InterfaceTimings.WaitingForGPUToStayWithinLatencyTimePercent">
  33559. <summary>
  33560. <dd> <p>Percentage of time the driver spent waiting for the GPU latency to reduce to less than three rendering frames. </p> <p /> <p>If an application is GPU-limited, the driver must stall the CPU until the GPU gets within three frames. This prevents an application from queuing up many seconds' worth of rendering calls which may dramatically increase the latency between when the user inputs new data and when the user sees the results of that input. In general, the driver can track the number of times <strong>Present</strong> is called to prevent queuing up more than three frames of rendering work.</p> </dd>
  33561. </summary>
  33562. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9INTERFACETIMINGS::WaitingForGPUToStayWithinLatencyTimePercent']/*" />
  33563. <msdn-id>bb172541</msdn-id>
  33564. <unmanaged>float WaitingForGPUToStayWithinLatencyTimePercent</unmanaged>
  33565. <unmanaged-short>float WaitingForGPUToStayWithinLatencyTimePercent</unmanaged-short>
  33566. </member>
  33567. <member name="F:SharpDX.Direct3D9.InterfaceTimings.WaitingForGPUExclusiveResourceTimePercent">
  33568. <summary>
  33569. <dd> <p>Percentage of time the driver spent waiting for a resource that cannot be pipelined (that is operated in parallel). An application may want to avoid using a non-pipelined resource for performance reasons.</p> </dd>
  33570. </summary>
  33571. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9INTERFACETIMINGS::WaitingForGPUExclusiveResourceTimePercent']/*" />
  33572. <msdn-id>bb172541</msdn-id>
  33573. <unmanaged>float WaitingForGPUExclusiveResourceTimePercent</unmanaged>
  33574. <unmanaged-short>float WaitingForGPUExclusiveResourceTimePercent</unmanaged-short>
  33575. </member>
  33576. <member name="F:SharpDX.Direct3D9.InterfaceTimings.WaitingForGPUOtherTimePercent">
  33577. <summary>
  33578. <dd> <p>Percentage of time the driver spent waiting for other GPU processing.</p> </dd>
  33579. </summary>
  33580. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9INTERFACETIMINGS::WaitingForGPUOtherTimePercent']/*" />
  33581. <msdn-id>bb172541</msdn-id>
  33582. <unmanaged>float WaitingForGPUOtherTimePercent</unmanaged>
  33583. <unmanaged-short>float WaitingForGPUOtherTimePercent</unmanaged-short>
  33584. </member>
  33585. <member name="T:SharpDX.Direct3D9.Light">
  33586. <summary>
  33587. <p>Defines a set of lighting properties.</p>
  33588. </summary>
  33589. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9']/*" />
  33590. <msdn-id>bb172566</msdn-id>
  33591. <unmanaged>D3DLIGHT9</unmanaged>
  33592. <unmanaged-short>D3DLIGHT9</unmanaged-short>
  33593. </member>
  33594. <member name="F:SharpDX.Direct3D9.Light.Type">
  33595. <summary>
  33596. <dd> <p>Type of the light source. This value is one of the members of the <strong><see cref="T:SharpDX.Direct3D9.LightType" /></strong> enumerated type. </p> </dd>
  33597. </summary>
  33598. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Type']/*" />
  33599. <msdn-id>bb172566</msdn-id>
  33600. <unmanaged>D3DLIGHTTYPE Type</unmanaged>
  33601. <unmanaged-short>D3DLIGHTTYPE Type</unmanaged-short>
  33602. </member>
  33603. <member name="F:SharpDX.Direct3D9.Light.Diffuse">
  33604. <summary>
  33605. <dd> <p>Diffuse color emitted by the light. This member is a <strong><see cref="T:SharpDX.Mathematics.Interop.RawColor4" /></strong> structure. </p> </dd>
  33606. </summary>
  33607. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Diffuse']/*" />
  33608. <msdn-id>bb172566</msdn-id>
  33609. <unmanaged>D3DCOLORVALUE Diffuse</unmanaged>
  33610. <unmanaged-short>D3DCOLORVALUE Diffuse</unmanaged-short>
  33611. </member>
  33612. <member name="F:SharpDX.Direct3D9.Light.Specular">
  33613. <summary>
  33614. <dd> <p>Specular color emitted by the light. This member is a <strong><see cref="T:SharpDX.Mathematics.Interop.RawColor4" /></strong> structure. </p> </dd>
  33615. </summary>
  33616. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Specular']/*" />
  33617. <msdn-id>bb172566</msdn-id>
  33618. <unmanaged>D3DCOLORVALUE Specular</unmanaged>
  33619. <unmanaged-short>D3DCOLORVALUE Specular</unmanaged-short>
  33620. </member>
  33621. <member name="F:SharpDX.Direct3D9.Light.Ambient">
  33622. <summary>
  33623. <dd> <p>Ambient color emitted by the light. This member is a <strong><see cref="T:SharpDX.Mathematics.Interop.RawColor4" /></strong> structure. </p> </dd>
  33624. </summary>
  33625. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Ambient']/*" />
  33626. <msdn-id>bb172566</msdn-id>
  33627. <unmanaged>D3DCOLORVALUE Ambient</unmanaged>
  33628. <unmanaged-short>D3DCOLORVALUE Ambient</unmanaged-short>
  33629. </member>
  33630. <member name="F:SharpDX.Direct3D9.Light.Position">
  33631. <summary>
  33632. <dd> <p>Position of the light in world space, specified by a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure. This member has no meaning for directional lights and is ignored in that case. </p> </dd>
  33633. </summary>
  33634. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Position']/*" />
  33635. <msdn-id>bb172566</msdn-id>
  33636. <unmanaged>D3DVECTOR Position</unmanaged>
  33637. <unmanaged-short>D3DVECTOR Position</unmanaged-short>
  33638. </member>
  33639. <member name="F:SharpDX.Direct3D9.Light.Direction">
  33640. <summary>
  33641. <dd> <p>Direction that the light is pointing in world space, specified by a <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> structure. This member has meaning only for directional and spotlights. This vector need not be normalized, but it should have a nonzero length. </p> </dd>
  33642. </summary>
  33643. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Direction']/*" />
  33644. <msdn-id>bb172566</msdn-id>
  33645. <unmanaged>D3DVECTOR Direction</unmanaged>
  33646. <unmanaged-short>D3DVECTOR Direction</unmanaged-short>
  33647. </member>
  33648. <member name="F:SharpDX.Direct3D9.Light.Range">
  33649. <summary>
  33650. <dd> <p>Distance beyond which the light has no effect. The maximum allowable value for this member is the square root of FLT_MAX. This member does not affect directional lights. </p> </dd>
  33651. </summary>
  33652. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Range']/*" />
  33653. <msdn-id>bb172566</msdn-id>
  33654. <unmanaged>float Range</unmanaged>
  33655. <unmanaged-short>float Range</unmanaged-short>
  33656. </member>
  33657. <member name="F:SharpDX.Direct3D9.Light.Falloff">
  33658. <summary>
  33659. <dd> <p>Decrease in illumination between a spotlight's inner cone (the angle specified by Theta) and the outer edge of the outer cone (the angle specified by Phi). </p> <p>The effect of falloff on the lighting is subtle. Furthermore, a small performance penalty is incurred by shaping the falloff curve. For these reasons, most developers set this value to 1.0.</p> </dd>
  33660. </summary>
  33661. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Falloff']/*" />
  33662. <msdn-id>bb172566</msdn-id>
  33663. <unmanaged>float Falloff</unmanaged>
  33664. <unmanaged-short>float Falloff</unmanaged-short>
  33665. </member>
  33666. <member name="F:SharpDX.Direct3D9.Light.Attenuation0">
  33667. <summary>
  33668. <dd> <p>Value specifying how the light intensity changes over distance. Attenuation values are ignored for directional lights. This member represents an attenuation constant. For information about attenuation, see Light Properties (Direct3D 9). Valid values for this member range from 0.0 to infinity. For non-directional lights, all three attenuation values should not be set to 0.0 at the same time. </p> </dd>
  33669. </summary>
  33670. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Attenuation0']/*" />
  33671. <msdn-id>bb172566</msdn-id>
  33672. <unmanaged>float Attenuation0</unmanaged>
  33673. <unmanaged-short>float Attenuation0</unmanaged-short>
  33674. </member>
  33675. <member name="F:SharpDX.Direct3D9.Light.Attenuation1">
  33676. <summary>
  33677. <dd> <p>Value specifying how the light intensity changes over distance. Attenuation values are ignored for directional lights. This member represents an attenuation constant. For information about attenuation, see Light Properties (Direct3D 9). Valid values for this member range from 0.0 to infinity. For non-directional lights, all three attenuation values should not be set to 0.0 at the same time.</p> </dd>
  33678. </summary>
  33679. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Attenuation1']/*" />
  33680. <msdn-id>bb172566</msdn-id>
  33681. <unmanaged>float Attenuation1</unmanaged>
  33682. <unmanaged-short>float Attenuation1</unmanaged-short>
  33683. </member>
  33684. <member name="F:SharpDX.Direct3D9.Light.Attenuation2">
  33685. <summary>
  33686. <dd> <p>Value specifying how the light intensity changes over distance. Attenuation values are ignored for directional lights. This member represents an attenuation constant. For information about attenuation, see Light Properties (Direct3D 9). Valid values for this member range from 0.0 to infinity. For non-directional lights, all three attenuation values should not be set to 0.0 at the same time.</p> </dd>
  33687. </summary>
  33688. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Attenuation2']/*" />
  33689. <msdn-id>bb172566</msdn-id>
  33690. <unmanaged>float Attenuation2</unmanaged>
  33691. <unmanaged-short>float Attenuation2</unmanaged-short>
  33692. </member>
  33693. <member name="F:SharpDX.Direct3D9.Light.Theta">
  33694. <summary>
  33695. <dd> <p>Angle, in radians, of a spotlight's inner cone - that is, the fully illuminated spotlight cone. This value must be in the range from 0 through the value specified by Phi.</p> </dd>
  33696. </summary>
  33697. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Theta']/*" />
  33698. <msdn-id>bb172566</msdn-id>
  33699. <unmanaged>float Theta</unmanaged>
  33700. <unmanaged-short>float Theta</unmanaged-short>
  33701. </member>
  33702. <member name="F:SharpDX.Direct3D9.Light.Phi">
  33703. <summary>
  33704. <dd> <p>Angle, in radians, defining the outer edge of the spotlight's outer cone. Points outside this cone are not lit by the spotlight. This value must be between 0 and pi. </p> </dd>
  33705. </summary>
  33706. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLIGHT9::Phi']/*" />
  33707. <msdn-id>bb172566</msdn-id>
  33708. <unmanaged>float Phi</unmanaged>
  33709. <unmanaged-short>float Phi</unmanaged-short>
  33710. </member>
  33711. <member name="T:SharpDX.Direct3D9.LockedBox">
  33712. <summary>
  33713. No documentation.
  33714. </summary>
  33715. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLOCKED_BOX']/*" />
  33716. <msdn-id>bb280342</msdn-id>
  33717. <unmanaged>D3DLOCKED_BOX</unmanaged>
  33718. <unmanaged-short>D3DLOCKED_BOX</unmanaged-short>
  33719. </member>
  33720. <member name="F:SharpDX.Direct3D9.LockedBox.RowPitch">
  33721. <summary>
  33722. No documentation.
  33723. </summary>
  33724. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLOCKED_BOX::RowPitch']/*" />
  33725. <msdn-id>bb280342</msdn-id>
  33726. <unmanaged>int RowPitch</unmanaged>
  33727. <unmanaged-short>int RowPitch</unmanaged-short>
  33728. </member>
  33729. <member name="F:SharpDX.Direct3D9.LockedBox.SlicePitch">
  33730. <summary>
  33731. No documentation.
  33732. </summary>
  33733. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLOCKED_BOX::SlicePitch']/*" />
  33734. <msdn-id>bb280342</msdn-id>
  33735. <unmanaged>int SlicePitch</unmanaged>
  33736. <unmanaged-short>int SlicePitch</unmanaged-short>
  33737. </member>
  33738. <member name="F:SharpDX.Direct3D9.LockedBox.PBits">
  33739. <summary>
  33740. No documentation.
  33741. </summary>
  33742. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLOCKED_BOX::pBits']/*" />
  33743. <msdn-id>bb280342</msdn-id>
  33744. <unmanaged>void* pBits</unmanaged>
  33745. <unmanaged-short>void pBits</unmanaged-short>
  33746. </member>
  33747. <member name="T:SharpDX.Direct3D9.LockedRectangle">
  33748. <summary>
  33749. <p>Describes a locked rectangular region.</p>
  33750. </summary>
  33751. <remarks>
  33752. <p>The pitch for DXTn formats is different from what was returned in DirectX 7. It now refers to the number of bytes in a row of blocks. For example, if you have a width of 16, then you will have a pitch of 4 blocks (4*8 for DXT1, 4*16 for DXT2-5.)</p>
  33753. </remarks>
  33754. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLOCKED_RECT']/*" />
  33755. <msdn-id>bb172570</msdn-id>
  33756. <unmanaged>D3DLOCKED_RECT</unmanaged>
  33757. <unmanaged-short>D3DLOCKED_RECT</unmanaged-short>
  33758. </member>
  33759. <member name="F:SharpDX.Direct3D9.LockedRectangle.Pitch">
  33760. <summary>
  33761. <dd> <p>Number of bytes in one row of the surface.</p> </dd>
  33762. </summary>
  33763. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLOCKED_RECT::Pitch']/*" />
  33764. <msdn-id>bb172570</msdn-id>
  33765. <unmanaged>int Pitch</unmanaged>
  33766. <unmanaged-short>int Pitch</unmanaged-short>
  33767. </member>
  33768. <member name="F:SharpDX.Direct3D9.LockedRectangle.PBits">
  33769. <summary>
  33770. <dd> <p>Pointer to the locked bits. If a <strong><see cref="T:SharpDX.Mathematics.Interop.RawRectangle" /></strong> was provided to the <strong>LockRect</strong> call, pBits will be appropriately offset from the start of the surface.</p> </dd>
  33771. </summary>
  33772. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DLOCKED_RECT::pBits']/*" />
  33773. <msdn-id>bb172570</msdn-id>
  33774. <unmanaged>void* pBits</unmanaged>
  33775. <unmanaged-short>void pBits</unmanaged-short>
  33776. </member>
  33777. <member name="T:SharpDX.Direct3D9.Macro">
  33778. <summary>
  33779. <p>Describes preprocessor definitions used by an effect object.</p>
  33780. </summary>
  33781. <remarks>
  33782. <p>To use <strong><see cref="T:SharpDX.Direct3D9.Macro" /></strong>s in more than one line, prefix each new line character with a backslash (like a #define in the C language). For example:</p><pre> sample=
  33783. macro.Name = "DO_CODE_BLOCK";
  33784. macro.Definition = "/* here is a block of code */\\\n" "{ do something ... }\\\n";
  33785. </pre><p>Notice the 3 backslash characters at the end of the line. The first two are required to output a single '\', followed by the newline character "\n". Optionally, you may also want to terminate your lines using "\\\r\n".</p>
  33786. </remarks>
  33787. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMACRO']/*" />
  33788. <msdn-id>bb172910</msdn-id>
  33789. <unmanaged>D3DXMACRO</unmanaged>
  33790. <unmanaged-short>D3DXMACRO</unmanaged-short>
  33791. </member>
  33792. <member name="F:SharpDX.Direct3D9.Macro.Name">
  33793. <summary>
  33794. <dd> <p>Preprocessor name.</p> </dd>
  33795. </summary>
  33796. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMACRO::Name']/*" />
  33797. <msdn-id>bb172910</msdn-id>
  33798. <unmanaged>const char* Name</unmanaged>
  33799. <unmanaged-short>char Name</unmanaged-short>
  33800. </member>
  33801. <member name="F:SharpDX.Direct3D9.Macro.Definition">
  33802. <summary>
  33803. <dd> <p>Definition name.</p> </dd>
  33804. </summary>
  33805. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMACRO::Definition']/*" />
  33806. <msdn-id>bb172910</msdn-id>
  33807. <unmanaged>const char* Definition</unmanaged>
  33808. <unmanaged-short>char Definition</unmanaged-short>
  33809. </member>
  33810. <member name="M:SharpDX.Direct3D9.Macro.#ctor(System.String,System.String)">
  33811. <summary>
  33812. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.Macro"/> struct.
  33813. </summary>
  33814. <param name="name">The name.</param>
  33815. <param name="definition">The definition.</param>
  33816. </member>
  33817. <member name="T:SharpDX.Direct3D9.Material">
  33818. <summary>
  33819. <p>Specifies material properties.</p>
  33820. </summary>
  33821. <remarks>
  33822. <p>To turn off specular highlights, set <see cref="F:SharpDX.Direct3D9.RenderState.SpecularEnable" /> to <strong><see cref="F:SharpDX.Result.False" /></strong>, using <strong><see cref="T:SharpDX.Direct3D9.RenderState" /></strong>. This is the fastest option because no specular highlights will be calculated.</p><p>For more information about using the lighting engine to calculate specular lighting, see Specular Lighting (Direct3D 9).</p>
  33823. </remarks>
  33824. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMATERIAL9']/*" />
  33825. <msdn-id>bb172571</msdn-id>
  33826. <unmanaged>D3DMATERIAL9</unmanaged>
  33827. <unmanaged-short>D3DMATERIAL9</unmanaged-short>
  33828. </member>
  33829. <member name="F:SharpDX.Direct3D9.Material.Diffuse">
  33830. <summary>
  33831. <dd> <p>Value specifying the diffuse color of the material. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawColor4" /></strong>. </p> </dd>
  33832. </summary>
  33833. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMATERIAL9::Diffuse']/*" />
  33834. <msdn-id>bb172571</msdn-id>
  33835. <unmanaged>D3DCOLORVALUE Diffuse</unmanaged>
  33836. <unmanaged-short>D3DCOLORVALUE Diffuse</unmanaged-short>
  33837. </member>
  33838. <member name="F:SharpDX.Direct3D9.Material.Ambient">
  33839. <summary>
  33840. <dd> <p>Value specifying the ambient color of the material. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawColor4" /></strong>. </p> </dd>
  33841. </summary>
  33842. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMATERIAL9::Ambient']/*" />
  33843. <msdn-id>bb172571</msdn-id>
  33844. <unmanaged>D3DCOLORVALUE Ambient</unmanaged>
  33845. <unmanaged-short>D3DCOLORVALUE Ambient</unmanaged-short>
  33846. </member>
  33847. <member name="F:SharpDX.Direct3D9.Material.Specular">
  33848. <summary>
  33849. <dd> <p>Value specifying the specular color of the material. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawColor4" /></strong>. </p> </dd>
  33850. </summary>
  33851. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMATERIAL9::Specular']/*" />
  33852. <msdn-id>bb172571</msdn-id>
  33853. <unmanaged>D3DCOLORVALUE Specular</unmanaged>
  33854. <unmanaged-short>D3DCOLORVALUE Specular</unmanaged-short>
  33855. </member>
  33856. <member name="F:SharpDX.Direct3D9.Material.Emissive">
  33857. <summary>
  33858. <dd> <p>Value specifying the emissive color of the material. See <strong><see cref="T:SharpDX.Mathematics.Interop.RawColor4" /></strong>. </p> </dd>
  33859. </summary>
  33860. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMATERIAL9::Emissive']/*" />
  33861. <msdn-id>bb172571</msdn-id>
  33862. <unmanaged>D3DCOLORVALUE Emissive</unmanaged>
  33863. <unmanaged-short>D3DCOLORVALUE Emissive</unmanaged-short>
  33864. </member>
  33865. <member name="F:SharpDX.Direct3D9.Material.Power">
  33866. <summary>
  33867. <dd> <p>Floating-point value specifying the sharpness of specular highlights. The higher the value, the sharper the highlight.</p> </dd>
  33868. </summary>
  33869. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DMATERIAL9::Power']/*" />
  33870. <msdn-id>bb172571</msdn-id>
  33871. <unmanaged>float Power</unmanaged>
  33872. <unmanaged-short>float Power</unmanaged-short>
  33873. </member>
  33874. <member name="T:SharpDX.Direct3D9.MeshContainer">
  33875. <summary>
  33876. No documentation.
  33877. </summary>
  33878. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHCONTAINER']/*" />
  33879. <msdn-id>bb280302</msdn-id>
  33880. <unmanaged>D3DXMESHCONTAINER</unmanaged>
  33881. <unmanaged-short>D3DXMESHCONTAINER</unmanaged-short>
  33882. </member>
  33883. <member name="F:SharpDX.Direct3D9.MeshContainer.Name">
  33884. <summary>
  33885. No documentation.
  33886. </summary>
  33887. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHCONTAINER::Name']/*" />
  33888. <msdn-id>bb280302</msdn-id>
  33889. <unmanaged>char* Name</unmanaged>
  33890. <unmanaged-short>char Name</unmanaged-short>
  33891. </member>
  33892. <member name="F:SharpDX.Direct3D9.MeshContainer.MeshData">
  33893. <summary>
  33894. No documentation.
  33895. </summary>
  33896. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHCONTAINER::MeshData']/*" />
  33897. <msdn-id>bb280302</msdn-id>
  33898. <unmanaged>D3DXMESHDATA MeshData</unmanaged>
  33899. <unmanaged-short>D3DXMESHDATA MeshData</unmanaged-short>
  33900. </member>
  33901. <member name="F:SharpDX.Direct3D9.MeshContainer.MaterialPointer">
  33902. <summary>
  33903. No documentation.
  33904. </summary>
  33905. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHCONTAINER::pMaterials']/*" />
  33906. <msdn-id>bb280302</msdn-id>
  33907. <unmanaged>D3DXMATERIAL* pMaterials</unmanaged>
  33908. <unmanaged-short>D3DXMATERIAL pMaterials</unmanaged-short>
  33909. </member>
  33910. <member name="F:SharpDX.Direct3D9.MeshContainer.PEffects">
  33911. <summary>
  33912. No documentation.
  33913. </summary>
  33914. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHCONTAINER::pEffects']/*" />
  33915. <msdn-id>bb280302</msdn-id>
  33916. <unmanaged>D3DXEFFECTINSTANCE* pEffects</unmanaged>
  33917. <unmanaged-short>D3DXEFFECTINSTANCE pEffects</unmanaged-short>
  33918. </member>
  33919. <member name="F:SharpDX.Direct3D9.MeshContainer.MaterialCount">
  33920. <summary>
  33921. No documentation.
  33922. </summary>
  33923. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHCONTAINER::NumMaterials']/*" />
  33924. <msdn-id>bb280302</msdn-id>
  33925. <unmanaged>unsigned int NumMaterials</unmanaged>
  33926. <unmanaged-short>unsigned int NumMaterials</unmanaged-short>
  33927. </member>
  33928. <member name="F:SharpDX.Direct3D9.MeshContainer.PAdjacency">
  33929. <summary>
  33930. No documentation.
  33931. </summary>
  33932. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHCONTAINER::pAdjacency']/*" />
  33933. <msdn-id>bb280302</msdn-id>
  33934. <unmanaged>unsigned int* pAdjacency</unmanaged>
  33935. <unmanaged-short>unsigned int pAdjacency</unmanaged-short>
  33936. </member>
  33937. <member name="F:SharpDX.Direct3D9.MeshContainer.PSkinInfo">
  33938. <summary>
  33939. No documentation.
  33940. </summary>
  33941. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHCONTAINER::pSkinInfo']/*" />
  33942. <msdn-id>bb280302</msdn-id>
  33943. <unmanaged>ID3DXSkinInfo* pSkinInfo</unmanaged>
  33944. <unmanaged-short>ID3DXSkinInfo pSkinInfo</unmanaged-short>
  33945. </member>
  33946. <member name="F:SharpDX.Direct3D9.MeshContainer.PNextMeshContainer">
  33947. <summary>
  33948. No documentation.
  33949. </summary>
  33950. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHCONTAINER::pNextMeshContainer']/*" />
  33951. <msdn-id>bb280302</msdn-id>
  33952. <unmanaged>D3DXMESHCONTAINER* pNextMeshContainer</unmanaged>
  33953. <unmanaged-short>D3DXMESHCONTAINER pNextMeshContainer</unmanaged-short>
  33954. </member>
  33955. <member name="P:SharpDX.Direct3D9.MeshContainer.Materials">
  33956. <summary>
  33957. Gets or sets the materials.
  33958. </summary>
  33959. <value>
  33960. The materials.
  33961. </value>
  33962. </member>
  33963. <member name="T:SharpDX.Direct3D9.MeshData">
  33964. <summary>
  33965. <p>Mesh data structure.</p>
  33966. </summary>
  33967. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHDATA']/*" />
  33968. <msdn-id>bb205372</msdn-id>
  33969. <unmanaged>D3DXMESHDATA</unmanaged>
  33970. <unmanaged-short>D3DXMESHDATA</unmanaged-short>
  33971. </member>
  33972. <member name="F:SharpDX.Direct3D9.MeshData.Type">
  33973. <summary>
  33974. <dd> <p>Defines the mesh data type. See <strong><see cref="T:SharpDX.Direct3D9.MeshDataType" /></strong>.</p> </dd>
  33975. </summary>
  33976. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHDATA::Type']/*" />
  33977. <msdn-id>bb205372</msdn-id>
  33978. <unmanaged>D3DXMESHDATATYPE Type</unmanaged>
  33979. <unmanaged-short>D3DXMESHDATATYPE Type</unmanaged-short>
  33980. </member>
  33981. <member name="F:SharpDX.Direct3D9.MeshData.PMesh">
  33982. <summary>
  33983. <dd> <p>Pointer to a mesh. See <strong><see cref="T:SharpDX.Direct3D9.Mesh" /></strong>.</p> </dd>
  33984. </summary>
  33985. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHDATA::pMesh']/*" />
  33986. <msdn-id>bb205372</msdn-id>
  33987. <unmanaged>ID3DXMesh* pMesh</unmanaged>
  33988. <unmanaged-short>ID3DXMesh pMesh</unmanaged-short>
  33989. </member>
  33990. <member name="F:SharpDX.Direct3D9.MeshData.PPMesh">
  33991. <summary>
  33992. <dd> <p>Pointer to a patch mesh. See <strong><see cref="T:SharpDX.Direct3D9.PatchMesh" /></strong>.</p> </dd>
  33993. </summary>
  33994. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHDATA::pPMesh']/*" />
  33995. <msdn-id>bb205372</msdn-id>
  33996. <unmanaged>ID3DXPMesh* pPMesh</unmanaged>
  33997. <unmanaged-short>ID3DXPMesh pPMesh</unmanaged-short>
  33998. </member>
  33999. <member name="F:SharpDX.Direct3D9.MeshData.PPatchMesh">
  34000. <summary>
  34001. <dd> <p>Pointer to a patch mesh. See <strong><see cref="T:SharpDX.Direct3D9.PatchMesh" /></strong>.</p> </dd>
  34002. </summary>
  34003. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXMESHDATA::pPatchMesh']/*" />
  34004. <msdn-id>bb205372</msdn-id>
  34005. <unmanaged>ID3DXPatchMesh* pPatchMesh</unmanaged>
  34006. <unmanaged-short>ID3DXPatchMesh pPatchMesh</unmanaged-short>
  34007. </member>
  34008. <member name="T:SharpDX.Direct3D9.ParameterDescription">
  34009. <summary>
  34010. <p>Describes a parameter used for an effect object.</p>
  34011. </summary>
  34012. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC']/*" />
  34013. <msdn-id>bb205379</msdn-id>
  34014. <unmanaged>D3DXPARAMETER_DESC</unmanaged>
  34015. <unmanaged-short>D3DXPARAMETER_DESC</unmanaged-short>
  34016. </member>
  34017. <member name="F:SharpDX.Direct3D9.ParameterDescription.Name">
  34018. <summary>
  34019. <dd> <p>Name of the parameter.</p> </dd>
  34020. </summary>
  34021. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::Name']/*" />
  34022. <msdn-id>bb205379</msdn-id>
  34023. <unmanaged>const char* Name</unmanaged>
  34024. <unmanaged-short>char Name</unmanaged-short>
  34025. </member>
  34026. <member name="F:SharpDX.Direct3D9.ParameterDescription.Semantic">
  34027. <summary>
  34028. <dd> <p>Semantic meaning, also called the usage.</p> </dd>
  34029. </summary>
  34030. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::Semantic']/*" />
  34031. <msdn-id>bb205379</msdn-id>
  34032. <unmanaged>const char* Semantic</unmanaged>
  34033. <unmanaged-short>char Semantic</unmanaged-short>
  34034. </member>
  34035. <member name="F:SharpDX.Direct3D9.ParameterDescription.Class">
  34036. <summary>
  34037. <dd> <p>Parameter class. Set this to one of the values in <strong><see cref="T:SharpDX.Direct3D9.ParameterClass" /></strong>. </p> </dd>
  34038. </summary>
  34039. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::Class']/*" />
  34040. <msdn-id>bb205379</msdn-id>
  34041. <unmanaged>D3DXPARAMETER_CLASS Class</unmanaged>
  34042. <unmanaged-short>D3DXPARAMETER_CLASS Class</unmanaged-short>
  34043. </member>
  34044. <member name="F:SharpDX.Direct3D9.ParameterDescription.Type">
  34045. <summary>
  34046. <dd> <p>Parameter type. Set this to one of the values in <strong><see cref="T:SharpDX.Direct3D9.ParameterType" /></strong>. </p> </dd>
  34047. </summary>
  34048. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::Type']/*" />
  34049. <msdn-id>bb205379</msdn-id>
  34050. <unmanaged>D3DXPARAMETER_TYPE Type</unmanaged>
  34051. <unmanaged-short>D3DXPARAMETER_TYPE Type</unmanaged-short>
  34052. </member>
  34053. <member name="F:SharpDX.Direct3D9.ParameterDescription.Rows">
  34054. <summary>
  34055. <dd> <p>Number of rows in the array.</p> </dd>
  34056. </summary>
  34057. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::Rows']/*" />
  34058. <msdn-id>bb205379</msdn-id>
  34059. <unmanaged>unsigned int Rows</unmanaged>
  34060. <unmanaged-short>unsigned int Rows</unmanaged-short>
  34061. </member>
  34062. <member name="F:SharpDX.Direct3D9.ParameterDescription.Columns">
  34063. <summary>
  34064. <dd> <p>Number of columns in the array.</p> </dd>
  34065. </summary>
  34066. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::Columns']/*" />
  34067. <msdn-id>bb205379</msdn-id>
  34068. <unmanaged>unsigned int Columns</unmanaged>
  34069. <unmanaged-short>unsigned int Columns</unmanaged-short>
  34070. </member>
  34071. <member name="F:SharpDX.Direct3D9.ParameterDescription.Elements">
  34072. <summary>
  34073. <dd> <p>Number of elements in the array.</p> </dd>
  34074. </summary>
  34075. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::Elements']/*" />
  34076. <msdn-id>bb205379</msdn-id>
  34077. <unmanaged>unsigned int Elements</unmanaged>
  34078. <unmanaged-short>unsigned int Elements</unmanaged-short>
  34079. </member>
  34080. <member name="F:SharpDX.Direct3D9.ParameterDescription.Annotations">
  34081. <summary>
  34082. <dd> <p>Number of annotations.</p> </dd>
  34083. </summary>
  34084. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::Annotations']/*" />
  34085. <msdn-id>bb205379</msdn-id>
  34086. <unmanaged>unsigned int Annotations</unmanaged>
  34087. <unmanaged-short>unsigned int Annotations</unmanaged-short>
  34088. </member>
  34089. <member name="F:SharpDX.Direct3D9.ParameterDescription.StructMembers">
  34090. <summary>
  34091. <dd> <p>Number of structure members.</p> </dd>
  34092. </summary>
  34093. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::StructMembers']/*" />
  34094. <msdn-id>bb205379</msdn-id>
  34095. <unmanaged>unsigned int StructMembers</unmanaged>
  34096. <unmanaged-short>unsigned int StructMembers</unmanaged-short>
  34097. </member>
  34098. <member name="F:SharpDX.Direct3D9.ParameterDescription.Flags">
  34099. <summary>
  34100. <dd> <p>Parameter attributes. See Effect Constants.</p> </dd>
  34101. </summary>
  34102. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::Flags']/*" />
  34103. <msdn-id>bb205379</msdn-id>
  34104. <unmanaged>unsigned int Flags</unmanaged>
  34105. <unmanaged-short>unsigned int Flags</unmanaged-short>
  34106. </member>
  34107. <member name="F:SharpDX.Direct3D9.ParameterDescription.Bytes">
  34108. <summary>
  34109. <dd> <p>The size of the parameter, in bytes. </p> </dd>
  34110. </summary>
  34111. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPARAMETER_DESC::Bytes']/*" />
  34112. <msdn-id>bb205379</msdn-id>
  34113. <unmanaged>unsigned int Bytes</unmanaged>
  34114. <unmanaged-short>unsigned int Bytes</unmanaged-short>
  34115. </member>
  34116. <member name="T:SharpDX.Direct3D9.PassDescription">
  34117. <summary>
  34118. <p>Describes a pass for an effect object.</p>
  34119. </summary>
  34120. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPASS_DESC']/*" />
  34121. <msdn-id>bb205381</msdn-id>
  34122. <unmanaged>D3DXPASS_DESC</unmanaged>
  34123. <unmanaged-short>D3DXPASS_DESC</unmanaged-short>
  34124. </member>
  34125. <member name="F:SharpDX.Direct3D9.PassDescription.Name">
  34126. <summary>
  34127. <dd> <p>String value used for the pass.</p> </dd>
  34128. </summary>
  34129. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPASS_DESC::Name']/*" />
  34130. <msdn-id>bb205381</msdn-id>
  34131. <unmanaged>const char* Name</unmanaged>
  34132. <unmanaged-short>char Name</unmanaged-short>
  34133. </member>
  34134. <member name="F:SharpDX.Direct3D9.PassDescription.Annotations">
  34135. <summary>
  34136. <dd> <p>Annotations are user-specific data that can be attached to any technique, pass, or parameter. See Add Information to Effect Parameters with_Annotations.</p> </dd>
  34137. </summary>
  34138. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPASS_DESC::Annotations']/*" />
  34139. <msdn-id>bb205381</msdn-id>
  34140. <unmanaged>unsigned int Annotations</unmanaged>
  34141. <unmanaged-short>unsigned int Annotations</unmanaged-short>
  34142. </member>
  34143. <member name="F:SharpDX.Direct3D9.PassDescription.PVertexShaderFunction">
  34144. <summary>
  34145. <dd> <p>Pointer to the vertex shader function. If an effect is created with <see cref="F:SharpDX.Direct3D9.FX.NotCloneable" />, this structure will return a <strong><c>null</c></strong> reference when called by <strong>GetPassDesc</strong>.</p> </dd>
  34146. </summary>
  34147. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPASS_DESC::pVertexShaderFunction']/*" />
  34148. <msdn-id>bb205381</msdn-id>
  34149. <unmanaged>const unsigned int* pVertexShaderFunction</unmanaged>
  34150. <unmanaged-short>unsigned int pVertexShaderFunction</unmanaged-short>
  34151. </member>
  34152. <member name="F:SharpDX.Direct3D9.PassDescription.PPixelShaderFunction">
  34153. <summary>
  34154. <dd> <p>Pointer to the pixel shader function. If an effect is created with <see cref="F:SharpDX.Direct3D9.FX.NotCloneable" />, this structure will return a <strong><c>null</c></strong> reference when called by <strong>GetPassDesc</strong>.</p> </dd>
  34155. </summary>
  34156. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPASS_DESC::pPixelShaderFunction']/*" />
  34157. <msdn-id>bb205381</msdn-id>
  34158. <unmanaged>const unsigned int* pPixelShaderFunction</unmanaged>
  34159. <unmanaged-short>unsigned int pPixelShaderFunction</unmanaged-short>
  34160. </member>
  34161. <member name="T:SharpDX.Direct3D9.PatchInfo">
  34162. <summary>
  34163. <p>Structure that contains the attributes of a patch mesh.</p>
  34164. </summary>
  34165. <remarks>
  34166. <p>A mesh is a set of faces, each of which is described by a simple polygon. Objects can be created by connecting several meshes together. A patch mesh is constructed from patches. A patch is a four-sided piece of geometry constructed from curves. The type of curve used and the order of the curve can be varied so that the patch surface will fit almost any surface shape.</p><p>The following types of patch combinations are supported:</p><table> <tr><th>Patch Type</th><th>Basis</th><th>Degree</th></tr> <tr><td>Rectangle</td><td>Bezier</td><td>2,3,5</td></tr> <tr><td>Rectangle</td><td>B-Spline</td><td>2,3,5</td></tr> <tr><td>Rectangle</td><td>Catmull-Rom</td><td>3</td></tr> <tr><td>Triangle</td><td>Bezier</td><td>2,3,5</td></tr> <tr><td>N-patch</td><td>N/A</td><td>3</td></tr> </table><p>?</p>
  34167. </remarks>
  34168. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPATCHINFO']/*" />
  34169. <msdn-id>bb205382</msdn-id>
  34170. <unmanaged>D3DXPATCHINFO</unmanaged>
  34171. <unmanaged-short>D3DXPATCHINFO</unmanaged-short>
  34172. </member>
  34173. <member name="F:SharpDX.Direct3D9.PatchInfo.PatchType">
  34174. <summary>
  34175. <dd> <p>The patch type. For information about patch types, see <strong><see cref="T:SharpDX.Direct3D9.PatchMeshType" /></strong>.</p> </dd>
  34176. </summary>
  34177. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPATCHINFO::PatchType']/*" />
  34178. <msdn-id>bb205382</msdn-id>
  34179. <unmanaged>D3DXPATCHMESHTYPE PatchType</unmanaged>
  34180. <unmanaged-short>D3DXPATCHMESHTYPE PatchType</unmanaged-short>
  34181. </member>
  34182. <member name="F:SharpDX.Direct3D9.PatchInfo.Degree">
  34183. <summary>
  34184. <dd> <p>Degree of the curves used to construct the patch. For information about the degrees supported, see <strong><see cref="T:SharpDX.Direct3D9.Degree" /></strong>.</p> </dd>
  34185. </summary>
  34186. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPATCHINFO::Degree']/*" />
  34187. <msdn-id>bb205382</msdn-id>
  34188. <unmanaged>D3DDEGREETYPE Degree</unmanaged>
  34189. <unmanaged-short>D3DDEGREETYPE Degree</unmanaged-short>
  34190. </member>
  34191. <member name="F:SharpDX.Direct3D9.PatchInfo.Basis">
  34192. <summary>
  34193. <dd> <p>Type of curve used to construct the patch. For information about the basis types supported, see <strong><see cref="T:SharpDX.Direct3D9.Basis" /></strong>.</p> </dd>
  34194. </summary>
  34195. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXPATCHINFO::Basis']/*" />
  34196. <msdn-id>bb205382</msdn-id>
  34197. <unmanaged>D3DBASISTYPE Basis</unmanaged>
  34198. <unmanaged-short>D3DBASISTYPE Basis</unmanaged-short>
  34199. </member>
  34200. <member name="T:SharpDX.Direct3D9.PipelineTimings">
  34201. <summary>
  34202. <p>Percent of time processing data in the pipeline.</p>
  34203. </summary>
  34204. <remarks>
  34205. <p>For best performance, a balanced load is recommended.</p>
  34206. </remarks>
  34207. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9PIPELINETIMINGS']/*" />
  34208. <msdn-id>bb172542</msdn-id>
  34209. <unmanaged>D3DDEVINFO_D3D9PIPELINETIMINGS</unmanaged>
  34210. <unmanaged-short>D3DDEVINFO_D3D9PIPELINETIMINGS</unmanaged-short>
  34211. </member>
  34212. <member name="F:SharpDX.Direct3D9.PipelineTimings.VertexProcessingTimePercent">
  34213. <summary>
  34214. <dd> <p>Percent of time spent running vertex shaders.</p> </dd>
  34215. </summary>
  34216. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9PIPELINETIMINGS::VertexProcessingTimePercent']/*" />
  34217. <msdn-id>bb172542</msdn-id>
  34218. <unmanaged>float VertexProcessingTimePercent</unmanaged>
  34219. <unmanaged-short>float VertexProcessingTimePercent</unmanaged-short>
  34220. </member>
  34221. <member name="F:SharpDX.Direct3D9.PipelineTimings.PixelProcessingTimePercent">
  34222. <summary>
  34223. <dd> <p>Percent of time spent running pixel shaders.</p> </dd>
  34224. </summary>
  34225. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9PIPELINETIMINGS::PixelProcessingTimePercent']/*" />
  34226. <msdn-id>bb172542</msdn-id>
  34227. <unmanaged>float PixelProcessingTimePercent</unmanaged>
  34228. <unmanaged-short>float PixelProcessingTimePercent</unmanaged-short>
  34229. </member>
  34230. <member name="F:SharpDX.Direct3D9.PipelineTimings.OtherGPUProcessingTimePercent">
  34231. <summary>
  34232. <dd> <p>Percent of time spent doing other processing.</p> </dd>
  34233. </summary>
  34234. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9PIPELINETIMINGS::OtherGPUProcessingTimePercent']/*" />
  34235. <msdn-id>bb172542</msdn-id>
  34236. <unmanaged>float OtherGPUProcessingTimePercent</unmanaged>
  34237. <unmanaged-short>float OtherGPUProcessingTimePercent</unmanaged-short>
  34238. </member>
  34239. <member name="F:SharpDX.Direct3D9.PipelineTimings.GPUIdleTimePercent">
  34240. <summary>
  34241. <dd> <p>Percent of time not processing anything.</p> </dd>
  34242. </summary>
  34243. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9PIPELINETIMINGS::GPUIdleTimePercent']/*" />
  34244. <msdn-id>bb172542</msdn-id>
  34245. <unmanaged>float GPUIdleTimePercent</unmanaged>
  34246. <unmanaged-short>float GPUIdleTimePercent</unmanaged-short>
  34247. </member>
  34248. <member name="T:SharpDX.Direct3D9.PixelShader20Caps">
  34249. <summary>
  34250. <p>Pixel shader driver caps.</p>
  34251. </summary>
  34252. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADERCAPS2_0']/*" />
  34253. <msdn-id>bb172591</msdn-id>
  34254. <unmanaged>D3DPSHADERCAPS2_0</unmanaged>
  34255. <unmanaged-short>D3DPSHADERCAPS2_0</unmanaged-short>
  34256. </member>
  34257. <member name="F:SharpDX.Direct3D9.PixelShader20Caps.Caps">
  34258. <summary>
  34259. <dd> <p>Instruction predication is supported if this value is nonzero. See setp_comp - vs.</p> </dd>
  34260. </summary>
  34261. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADERCAPS2_0::Caps']/*" />
  34262. <msdn-id>bb172591</msdn-id>
  34263. <unmanaged>D3DPS20CAPS Caps</unmanaged>
  34264. <unmanaged-short>D3DPS20CAPS Caps</unmanaged-short>
  34265. </member>
  34266. <member name="F:SharpDX.Direct3D9.PixelShader20Caps.DynamicFlowControlDepth">
  34267. <summary>
  34268. <dd> <p>Either 0 or 24, which represents the depth of the dynamic flow control instruction nesting. See <strong><see cref="T:SharpDX.Direct3D9.PixelShader20Caps" /></strong>.</p> </dd>
  34269. </summary>
  34270. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADERCAPS2_0::DynamicFlowControlDepth']/*" />
  34271. <msdn-id>bb172591</msdn-id>
  34272. <unmanaged>int DynamicFlowControlDepth</unmanaged>
  34273. <unmanaged-short>int DynamicFlowControlDepth</unmanaged-short>
  34274. </member>
  34275. <member name="F:SharpDX.Direct3D9.PixelShader20Caps.TempCount">
  34276. <summary>
  34277. <dd> <p>The number of temporary registers supported. See <strong><see cref="T:SharpDX.Direct3D9.PixelShader20Caps" /></strong>.</p> </dd>
  34278. </summary>
  34279. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADERCAPS2_0::NumTemps']/*" />
  34280. <msdn-id>bb172591</msdn-id>
  34281. <unmanaged>int NumTemps</unmanaged>
  34282. <unmanaged-short>int NumTemps</unmanaged-short>
  34283. </member>
  34284. <member name="F:SharpDX.Direct3D9.PixelShader20Caps.StaticFlowControlDepth">
  34285. <summary>
  34286. <dd> <p>The depth of nesting of the loop - vs/rep - vs and call - vs/callnz bool - vs instructions. See <strong><see cref="T:SharpDX.Direct3D9.PixelShader20Caps" /></strong>.</p> </dd>
  34287. </summary>
  34288. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADERCAPS2_0::StaticFlowControlDepth']/*" />
  34289. <msdn-id>bb172591</msdn-id>
  34290. <unmanaged>int StaticFlowControlDepth</unmanaged>
  34291. <unmanaged-short>int StaticFlowControlDepth</unmanaged-short>
  34292. </member>
  34293. <member name="F:SharpDX.Direct3D9.PixelShader20Caps.InstructionSlotCount">
  34294. <summary>
  34295. <dd> <p>The number of instruction slots supported. See <strong><see cref="T:SharpDX.Direct3D9.PixelShader20Caps" /></strong>.</p> </dd>
  34296. </summary>
  34297. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPSHADERCAPS2_0::NumInstructionSlots']/*" />
  34298. <msdn-id>bb172591</msdn-id>
  34299. <unmanaged>int NumInstructionSlots</unmanaged>
  34300. <unmanaged-short>int NumInstructionSlots</unmanaged-short>
  34301. </member>
  34302. <member name="T:SharpDX.Direct3D9.PresentationStatistics">
  34303. <summary>
  34304. <p>Describes swapchain statistics relating to <strong>PresentEx</strong> calls.</p>
  34305. </summary>
  34306. <remarks>
  34307. <p>When a 9Ex application adopts Flip Mode present (<see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" />), applications can detect frame dropping by calling GetPresentStatistics at any point in time. In effect, they can do the following.</p><ol> <li>Render to the back buffer</li> <li>Call Present</li> <li>Call GetPresentStats and store the resulting <see cref="T:SharpDX.Direct3D9.PresentationStatistics" /> structure</li> <li>Render the next frame to the back buffer</li> <li>Call Present</li> <li>Repeat steps 4 and 5 one or more times</li> <li>Call GetPresentStats and store the resulting <see cref="T:SharpDX.Direct3D9.PresentationStatistics" /> structure </li> <li>Compare the values of PresentRefreshCount from the two stored <see cref="T:SharpDX.Direct3D9.PresentationStatistics" /> structures. The application can calculate the corresponding PresentRefreshCount of a particular PresentCount parameter based on the assumptions of PresentRefreshCount increment and PresentCount assignment of frame presents. If the PresentRefreshCount last sampled does not match the PresentCount (i.e. if the PresentRefreshCount has incremented but PresentCount has not, then there was frame dropping.) </li> </ol><p>Applications can determine whether a frame has been dropped by sampling any two instances of PresentCount and GetPresentStats (by calling GetPresentStats API at any two points in time). For example, a media application that is presenting at the same rate as the monitor refresh rate (for example, monitor refresh rate is 60Hz, the application presents a frame every 1/60 seconds) wants to present frames A, B, C, D, E, each corresponding to Present IDs (PresentCount) 1, 2, 3, 7, 8.</p><p>The application code looks like the following sequence.</p><ol> <li>Render frame A to the back buffer</li> <li>Call Present, PresentCount = 1</li> <li>Call GetPresentStats and store the resulting <see cref="T:SharpDX.Direct3D9.PresentationStatistics" /> structure</li> <li>Render the next 4 frames, B, C, D, E, respectively</li> <li>Call Present 4 times, PresentCounts = 2, 3, 7, 8, respectively</li> <li>Call GetPresentStats and store the resulting <see cref="T:SharpDX.Direct3D9.PresentationStatistics" /> structure </li> <li>Compare the values of PresentRefreshCount from the two stored <see cref="T:SharpDX.Direct3D9.PresentationStatistics" /> structures. If the difference is 2, i.e. 2 vblank intervals has elapsed between the two GetPresentStats API calls, then the last presented frame should be frame C. Because the application presents once very vblank interval (the refresh rate of the monitor), the time elapsed between when frame A is presented and when frame C is presented should be 2 vblanks. </li> <li> Compare the values of PresentCount from the two stored <see cref="T:SharpDX.Direct3D9.PresentationStatistics" /> structures. If the first PresentCount is 1 (corresponding to frame A) and the second PresentCount is 3 (corresponding to frame C), then no frames have been dropped. If the second PresentCount is 3, which corresponds to frame D, then the application knows that one frame has been dropped.</li> </ol><p>Note that GetPresentStatistics will be processed after it is called, regardless of the state of FLIPEX mode PresentEx calls.</p><p><strong>Windows?Vista:??</strong>The Present calls will be queued and then processed before GetPresentStats call will be processed.</p><p>When an application detects that the presentation of certain frames are behind, it can skip those frames and correct the presentation to re-synchronize with the vblank. To do this, an application can simply not render the late frames and start rendering with the next correct frame in the queue. However, if an application has already started the rendering of late frames, it can use a new Present parameter in D3D9Ex called <see cref="F:SharpDX.Direct3D9.Present.ForceImmediate" />. The flag will be passed in the parameters of Present API call and indicates to the runtime that the frame will be processed immediately within the next vblank interval, effectively not visible on screen at all. Here is the application usage example after the last step in the previous example.</p><ol> <li>Render the next frame to the back buffer</li> <li>Discover from PresentRefreshCount that the next frame is already late</li> <li>Set Present interval to <see cref="F:SharpDX.Direct3D9.Present.ForceImmediate" /></li> <li>Call Present on the next frame</li> </ol><p>Applications can synchronize video and audio streams in the same manner because the behavior of GetPresentStatistics does not change in that scenario.</p><p>D3D9Ex Flip Mode provides frame statistics information to windowed applications and full screen 9Ex applications. </p><p><strong>Windows?Vista:??</strong>Use the DWM APIs for retrieving present statistics.</p><p>When Desktop Window Manager is turned off, windowed mode 9Ex applications using flip mode will receive present statistics information of limited accuracy.</p><p><strong>Windows?Vista:??</strong></p><p>If an application is not fast enough to keep up with the monitor's refresh rate, possibly due to slow hardware or lack of system resources, then it can experience a graphics glitch. A glitch is a so-called visual hiccup. If a monitor is set to refresh at 60 Hz, and the application can only manage 30 fps, then half of the frames will have glitches.</p><p>Applications can detect a glitch by keeping track of SynchRefreshCount. For example, an application might perform the following sequence of actions.</p><ol> <li>Render to the back buffer.</li> <li>Call Present. </li> <li>Call GetPresentStats and store the resulting <see cref="T:SharpDX.Direct3D9.PresentationStatistics" /> structure. </li> <li>Render the next frame to the back buffer. </li> <li>Call Present. </li> <li>Call GetPresentStats and store the resulting <see cref="T:SharpDX.Direct3D9.PresentationStatistics" /> structure.</li> <li>Compare the values of SyncRefreshCount from the two stored <see cref="T:SharpDX.Direct3D9.PresentationStatistics" /> structures. If the difference is greater than one, then a frame was skipped. </li> </ol>
  34308. </remarks>
  34309. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTSTATS']/*" />
  34310. <msdn-id>bb172587</msdn-id>
  34311. <unmanaged>D3DPRESENTSTATS</unmanaged>
  34312. <unmanaged-short>D3DPRESENTSTATS</unmanaged-short>
  34313. </member>
  34314. <member name="F:SharpDX.Direct3D9.PresentationStatistics.PresentCount">
  34315. <summary>
  34316. No documentation.
  34317. </summary>
  34318. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTSTATS::PresentCount']/*" />
  34319. <msdn-id>bb172587</msdn-id>
  34320. <unmanaged>unsigned int PresentCount</unmanaged>
  34321. <unmanaged-short>unsigned int PresentCount</unmanaged-short>
  34322. </member>
  34323. <member name="F:SharpDX.Direct3D9.PresentationStatistics.PresentRefreshCount">
  34324. <summary>
  34325. No documentation.
  34326. </summary>
  34327. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTSTATS::PresentRefreshCount']/*" />
  34328. <msdn-id>bb172587</msdn-id>
  34329. <unmanaged>unsigned int PresentRefreshCount</unmanaged>
  34330. <unmanaged-short>unsigned int PresentRefreshCount</unmanaged-short>
  34331. </member>
  34332. <member name="F:SharpDX.Direct3D9.PresentationStatistics.SyncRefreshCount">
  34333. <summary>
  34334. No documentation.
  34335. </summary>
  34336. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTSTATS::SyncRefreshCount']/*" />
  34337. <msdn-id>bb172587</msdn-id>
  34338. <unmanaged>unsigned int SyncRefreshCount</unmanaged>
  34339. <unmanaged-short>unsigned int SyncRefreshCount</unmanaged-short>
  34340. </member>
  34341. <member name="F:SharpDX.Direct3D9.PresentationStatistics.SyncQPCTime">
  34342. <summary>
  34343. No documentation.
  34344. </summary>
  34345. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTSTATS::SyncQPCTime']/*" />
  34346. <msdn-id>bb172587</msdn-id>
  34347. <unmanaged>LARGE_INTEGER SyncQPCTime</unmanaged>
  34348. <unmanaged-short>LARGE_INTEGER SyncQPCTime</unmanaged-short>
  34349. </member>
  34350. <member name="F:SharpDX.Direct3D9.PresentationStatistics.SyncGPUTime">
  34351. <summary>
  34352. No documentation.
  34353. </summary>
  34354. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENTSTATS::SyncGPUTime']/*" />
  34355. <msdn-id>bb172587</msdn-id>
  34356. <unmanaged>LARGE_INTEGER SyncGPUTime</unmanaged>
  34357. <unmanaged-short>LARGE_INTEGER SyncGPUTime</unmanaged-short>
  34358. </member>
  34359. <member name="T:SharpDX.Direct3D9.PresentParameters">
  34360. <summary>
  34361. <p>Describes the presentation parameters.</p>
  34362. </summary>
  34363. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS']/*" />
  34364. <msdn-id>bb172588</msdn-id>
  34365. <unmanaged>D3DPRESENT_PARAMETERS</unmanaged>
  34366. <unmanaged-short>D3DPRESENT_PARAMETERS</unmanaged-short>
  34367. </member>
  34368. <member name="F:SharpDX.Direct3D9.PresentParameters.BackBufferWidth">
  34369. <summary>
  34370. <dd> <p>Width of the new swap chain's back buffers, in pixels. If <strong>Windowed</strong> is <strong><see cref="F:SharpDX.Result.False" /></strong> (the presentation is full-screen), this value must equal the width of one of the enumerated display modes found through <strong>EnumAdapterModes</strong>. If <strong>Windowed</strong> is <strong>TRUE</strong> and either <strong>BackBufferWidth</strong> or <strong>BackBufferHeight</strong> is zero, the corresponding dimension of the client area of the <strong>hDeviceWindow</strong> (or the focus window, if <strong>hDeviceWindow</strong> is <strong><c>null</c></strong>) is taken.</p> </dd>
  34371. </summary>
  34372. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::BackBufferWidth']/*" />
  34373. <msdn-id>bb172588</msdn-id>
  34374. <unmanaged>unsigned int BackBufferWidth</unmanaged>
  34375. <unmanaged-short>unsigned int BackBufferWidth</unmanaged-short>
  34376. </member>
  34377. <member name="F:SharpDX.Direct3D9.PresentParameters.BackBufferHeight">
  34378. <summary>
  34379. <dd> <p>Height of the new swap chain's back buffers, in pixels. If <strong>Windowed</strong> is <strong><see cref="F:SharpDX.Result.False" /></strong> (the presentation is full-screen), this value must equal the height of one of the enumerated display modes found through <strong>EnumAdapterModes</strong>. If <strong>Windowed</strong> is <strong>TRUE</strong> and either <strong>BackBufferWidth</strong> or <strong>BackBufferHeight</strong> is zero, the corresponding dimension of the client area of the <strong>hDeviceWindow</strong> (or the focus window, if <strong>hDeviceWindow</strong> is <strong><c>null</c></strong>) is taken.</p> </dd>
  34380. </summary>
  34381. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::BackBufferHeight']/*" />
  34382. <msdn-id>bb172588</msdn-id>
  34383. <unmanaged>unsigned int BackBufferHeight</unmanaged>
  34384. <unmanaged-short>unsigned int BackBufferHeight</unmanaged-short>
  34385. </member>
  34386. <member name="F:SharpDX.Direct3D9.PresentParameters.BackBufferFormat">
  34387. <summary>
  34388. <dd> <p>The back buffer format. For more information about formats, see <see cref="T:SharpDX.Direct3D9.Format" />. This value must be one of the render-target formats as validated by <strong>CheckDeviceType</strong>. You can use <strong>GetDisplayMode</strong> to obtain the current format.</p> <p>In fact, <see cref="F:SharpDX.Direct3D9.Format.Unknown" /> can be specified for the <strong>BackBufferFormat</strong> while in windowed mode. This tells the runtime to use the current display-mode format and eliminates the need to call <strong>GetDisplayMode</strong>.</p> <p>For windowed applications, the back buffer format no longer needs to match the display-mode format because color conversion can now be done by the hardware (if the hardware supports color conversion). The set of possible back buffer formats is constrained, but the runtime will allow any valid back buffer format to be presented to any desktop format. (There is the additional requirement that the device be operable in the desktop; devices typically do not operate in 8 bits per pixel modes.)</p> <p>Full-screen applications cannot do color conversion.</p> </dd>
  34389. </summary>
  34390. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::BackBufferFormat']/*" />
  34391. <msdn-id>bb172588</msdn-id>
  34392. <unmanaged>D3DFORMAT BackBufferFormat</unmanaged>
  34393. <unmanaged-short>D3DFORMAT BackBufferFormat</unmanaged-short>
  34394. </member>
  34395. <member name="F:SharpDX.Direct3D9.PresentParameters.BackBufferCount">
  34396. <summary>
  34397. <dd> <p>This value can be between 0 and <see cref="F:SharpDX.Direct3D9.Present.BackBuffersMaximum" /> (or <see cref="F:SharpDX.Direct3D9.Present.BackBuffersMaximumEx" /> when using Direct3D 9Ex). Values of 0 are treated as 1. If the number of back buffers cannot be created, the runtime will fail the method call and fill this value with the number of back buffers that could be created. As a result, an application can call the method twice with the same <see cref="T:SharpDX.Direct3D9.PresentParameters" /> structure and expect it to work the second time.</p> <p>The method fails if one back buffer cannot be created. The value of <strong>BackBufferCount</strong> influences what set of swap effects are allowed. Specifically, any <see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" /> swap effect requires that there be exactly one back buffer.</p> </dd>
  34398. </summary>
  34399. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::BackBufferCount']/*" />
  34400. <msdn-id>bb172588</msdn-id>
  34401. <unmanaged>unsigned int BackBufferCount</unmanaged>
  34402. <unmanaged-short>unsigned int BackBufferCount</unmanaged-short>
  34403. </member>
  34404. <member name="F:SharpDX.Direct3D9.PresentParameters.MultiSampleType">
  34405. <summary>
  34406. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.MultisampleType" /></strong> enumerated type. The value must be <see cref="F:SharpDX.Direct3D9.MultisampleType.None" /> unless <strong>SwapEffect</strong> has been set to <see cref="F:SharpDX.Direct3D9.SwapEffect.Discard" />. Multisampling is supported only if the swap effect is <see cref="F:SharpDX.Direct3D9.SwapEffect.Discard" />.</p> </dd>
  34407. </summary>
  34408. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::MultiSampleType']/*" />
  34409. <msdn-id>bb172588</msdn-id>
  34410. <unmanaged>D3DMULTISAMPLE_TYPE MultiSampleType</unmanaged>
  34411. <unmanaged-short>D3DMULTISAMPLE_TYPE MultiSampleType</unmanaged-short>
  34412. </member>
  34413. <member name="F:SharpDX.Direct3D9.PresentParameters.MultiSampleQuality">
  34414. <summary>
  34415. <dd> <p>Quality level. The valid range is between zero and one less than the level returned by pQualityLevels used by <strong>CheckDeviceMultiSampleType</strong>. Passing a larger value returns the error <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. Paired values of render targets or of depth stencil surfaces and <strong><see cref="T:SharpDX.Direct3D9.MultisampleType" /></strong> must match.</p> </dd>
  34416. </summary>
  34417. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::MultiSampleQuality']/*" />
  34418. <msdn-id>bb172588</msdn-id>
  34419. <unmanaged>unsigned int MultiSampleQuality</unmanaged>
  34420. <unmanaged-short>unsigned int MultiSampleQuality</unmanaged-short>
  34421. </member>
  34422. <member name="F:SharpDX.Direct3D9.PresentParameters.SwapEffect">
  34423. <summary>
  34424. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.SwapEffect" /></strong> enumerated type. The runtime will guarantee the implied semantics concerning buffer swap behavior; therefore, if <strong>Windowed</strong> is <strong>TRUE</strong> and <strong>SwapEffect</strong> is set to <see cref="F:SharpDX.Direct3D9.SwapEffect.Flip" />, the runtime will create one extra back buffer and copy whichever becomes the front buffer at presentation time.</p> <p><see cref="F:SharpDX.Direct3D9.SwapEffect.Copy" /> requires that <strong>BackBufferCount</strong> be set to 1.</p> <p><see cref="F:SharpDX.Direct3D9.SwapEffect.Discard" /> will be enforced in the debug runtime by filling any buffer with noise after it is presented.</p> <table> <tr><td> <p>Differences between Direct3D9 and Direct3D9Ex</p> <p>In Direct3D9Ex, <see cref="F:SharpDX.Direct3D9.SwapEffect.FlipEx" /> is added to designate when an application is adopting flip mode. That is, whan an application's frame is passed in window's mode (instead of copied) to the Desktop Window Manager(DWM) for composition. Flip mode provides more efficient memory bandwidth and enables an application to take advantage of full-screen-present statistics. It does not change full screen behavior. Flip mode behavior is available beginning with Windows 7.</p> </td></tr> </table> <p>?</p> </dd>
  34425. </summary>
  34426. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::SwapEffect']/*" />
  34427. <msdn-id>bb172588</msdn-id>
  34428. <unmanaged>D3DSWAPEFFECT SwapEffect</unmanaged>
  34429. <unmanaged-short>D3DSWAPEFFECT SwapEffect</unmanaged-short>
  34430. </member>
  34431. <member name="F:SharpDX.Direct3D9.PresentParameters.DeviceWindowHandle">
  34432. <summary>
  34433. <dd> <p>The device window determines the location and size of the back buffer on screen. This is used by Direct3D when the back buffer contents are copied to the front buffer during <strong>Present</strong>.</p> <ul> <li> <p>For a full-screen application, this is a handle to the top window (which is the focus window). </p> <p>For applications that use multiple full-screen devices (such as a multimonitor system), exactly one device can use the focus window as the device window. All other devices must have unique device windows.</p> </li> <li>For a windowed-mode application, this handle will be the default target window for <strong>Present</strong>. If this handle is <strong><c>null</c></strong>, the focus window will be taken.</li> </ul> <p>Note that no attempt is made by the runtime to reflect user changes in window size. The back buffer is not implicitly reset when this window is reset. However, the <strong>Present</strong> method does automatically track window position changes.</p> </dd>
  34434. </summary>
  34435. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::hDeviceWindow']/*" />
  34436. <msdn-id>bb172588</msdn-id>
  34437. <unmanaged>HWND hDeviceWindow</unmanaged>
  34438. <unmanaged-short>HWND hDeviceWindow</unmanaged-short>
  34439. </member>
  34440. <member name="F:SharpDX.Direct3D9.PresentParameters.Windowed">
  34441. <summary>
  34442. <dd> <p><strong>TRUE</strong> if the application runs windowed; <strong><see cref="F:SharpDX.Result.False" /></strong> if the application runs full-screen.</p> </dd>
  34443. </summary>
  34444. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::Windowed']/*" />
  34445. <msdn-id>bb172588</msdn-id>
  34446. <unmanaged>BOOL Windowed</unmanaged>
  34447. <unmanaged-short>BOOL Windowed</unmanaged-short>
  34448. </member>
  34449. <member name="F:SharpDX.Direct3D9.PresentParameters.EnableAutoDepthStencil">
  34450. <summary>
  34451. <dd> <p>If this value is <strong>TRUE</strong>, Direct3D will manage depth buffers for the application. The device will create a depth-stencil buffer when it is created. The depth-stencil buffer will be automatically set as the render target of the device. When the device is reset, the depth-stencil buffer will be automatically destroyed and recreated in the new size.</p> <p>If EnableAutoDepthStencil is <strong>TRUE</strong>, then AutoDepthStencilFormat must be a valid depth-stencil format.</p> </dd>
  34452. </summary>
  34453. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::EnableAutoDepthStencil']/*" />
  34454. <msdn-id>bb172588</msdn-id>
  34455. <unmanaged>BOOL EnableAutoDepthStencil</unmanaged>
  34456. <unmanaged-short>BOOL EnableAutoDepthStencil</unmanaged-short>
  34457. </member>
  34458. <member name="F:SharpDX.Direct3D9.PresentParameters.AutoDepthStencilFormat">
  34459. <summary>
  34460. <dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type. The format of the automatic depth-stencil surface that the device will create. This member is ignored unless <strong>EnableAutoDepthStencil</strong> is <strong>TRUE</strong>.</p> </dd>
  34461. </summary>
  34462. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::AutoDepthStencilFormat']/*" />
  34463. <msdn-id>bb172588</msdn-id>
  34464. <unmanaged>D3DFORMAT AutoDepthStencilFormat</unmanaged>
  34465. <unmanaged-short>D3DFORMAT AutoDepthStencilFormat</unmanaged-short>
  34466. </member>
  34467. <member name="F:SharpDX.Direct3D9.PresentParameters.PresentFlags">
  34468. <summary>
  34469. <dd> <p>One of the <see cref="T:SharpDX.Direct3D9.PresentFlags" /> constants.</p> </dd>
  34470. </summary>
  34471. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::Flags']/*" />
  34472. <msdn-id>bb172588</msdn-id>
  34473. <unmanaged>D3DPRESENTFLAG Flags</unmanaged>
  34474. <unmanaged-short>D3DPRESENTFLAG Flags</unmanaged-short>
  34475. </member>
  34476. <member name="F:SharpDX.Direct3D9.PresentParameters.FullScreenRefreshRateInHz">
  34477. <summary>
  34478. <dd> <p>The rate at which the display adapter refreshes the screen. The value depends on the mode in which the application is running:</p> <ul> <li>For windowed mode, the refresh rate must be 0.</li> <li>For full-screen mode, the refresh rate is one of the refresh rates returned by <strong>EnumAdapterModes</strong>.</li> </ul> </dd>
  34479. </summary>
  34480. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::FullScreen_RefreshRateInHz']/*" />
  34481. <msdn-id>bb172588</msdn-id>
  34482. <unmanaged>unsigned int FullScreen_RefreshRateInHz</unmanaged>
  34483. <unmanaged-short>unsigned int FullScreen_RefreshRateInHz</unmanaged-short>
  34484. </member>
  34485. <member name="F:SharpDX.Direct3D9.PresentParameters.PresentationInterval">
  34486. <summary>
  34487. <dd> <p>The maximum rate at which the swap chain's back buffers can be presented to the front buffer. For a detailed explanation of the modes and the intervals that are supported, see <see cref="T:SharpDX.Direct3D9.Present" />.</p> </dd>
  34488. </summary>
  34489. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DPRESENT_PARAMETERS::PresentationInterval']/*" />
  34490. <msdn-id>bb172588</msdn-id>
  34491. <unmanaged>D3DPRESENT_INTERVAL PresentationInterval</unmanaged>
  34492. <unmanaged-short>D3DPRESENT_INTERVAL PresentationInterval</unmanaged-short>
  34493. </member>
  34494. <member name="M:SharpDX.Direct3D9.PresentParameters.#ctor(System.Int32,System.Int32)">
  34495. <summary>
  34496. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.PresentParameters"/> struct.
  34497. </summary>
  34498. <param name="backBufferWidth">Width of the back buffer.</param>
  34499. <param name="backBufferHeight">Height of the back buffer.</param>
  34500. </member>
  34501. <member name="M:SharpDX.Direct3D9.PresentParameters.#ctor(System.Int32,System.Int32,SharpDX.Direct3D9.Format,System.Int32,SharpDX.Direct3D9.MultisampleType,System.Int32,SharpDX.Direct3D9.SwapEffect,System.IntPtr,System.Boolean,System.Boolean,SharpDX.Direct3D9.Format,SharpDX.Direct3D9.PresentFlags,System.Int32,SharpDX.Direct3D9.PresentInterval)">
  34502. <summary>
  34503. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.PresentParameters"/> struct.
  34504. </summary>
  34505. <param name="backBufferWidth">Width of the back buffer.</param>
  34506. <param name="backBufferHeight">Height of the back buffer.</param>
  34507. <param name="backBufferFormat">The back buffer format.</param>
  34508. <param name="backBufferCount">The back buffer count.</param>
  34509. <param name="multiSampleType">Type of the multi sample.</param>
  34510. <param name="multiSampleQuality">The multi sample quality.</param>
  34511. <param name="swapEffect">The swap effect.</param>
  34512. <param name="deviceWindowHandle">The device window handle.</param>
  34513. <param name="windowed">if set to <c>true</c> [windowed].</param>
  34514. <param name="enableAutoDepthStencil">if set to <c>true</c> [enable auto depth stencil].</param>
  34515. <param name="autoDepthStencilFormat">The auto depth stencil format.</param>
  34516. <param name="presentFlags">The present flags.</param>
  34517. <param name="fullScreenRefreshRateInHz">The full screen refresh rate in Hz.</param>
  34518. <param name="presentationInterval">The presentation interval.</param>
  34519. </member>
  34520. <member name="M:SharpDX.Direct3D9.PresentParameters.InitDefaults">
  34521. <summary>
  34522. Init this structure to defaults
  34523. </summary>
  34524. </member>
  34525. <member name="T:SharpDX.Direct3D9.RasterStatus">
  34526. <summary>
  34527. <p>Describes the raster status.</p>
  34528. </summary>
  34529. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRASTER_STATUS']/*" />
  34530. <msdn-id>bb172596</msdn-id>
  34531. <unmanaged>D3DRASTER_STATUS</unmanaged>
  34532. <unmanaged-short>D3DRASTER_STATUS</unmanaged-short>
  34533. </member>
  34534. <member name="F:SharpDX.Direct3D9.RasterStatus.InVBlank">
  34535. <summary>
  34536. <dd> <p><strong>TRUE</strong> if the raster is in the vertical blank period. <strong><see cref="F:SharpDX.Result.False" /></strong> if the raster is not in the vertical blank period. </p> </dd>
  34537. </summary>
  34538. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRASTER_STATUS::InVBlank']/*" />
  34539. <msdn-id>bb172596</msdn-id>
  34540. <unmanaged>BOOL InVBlank</unmanaged>
  34541. <unmanaged-short>BOOL InVBlank</unmanaged-short>
  34542. </member>
  34543. <member name="F:SharpDX.Direct3D9.RasterStatus.ScanLine">
  34544. <summary>
  34545. <dd> <p>If InVBlank is <strong><see cref="F:SharpDX.Result.False" /></strong>, then this value is an integer roughly corresponding to the current scan line painted by the raster. Scan lines are numbered in the same way as Direct3D surface coordinates: 0 is the top of the primary surface, extending to the value (height of the surface - 1) at the bottom of the display.</p> <p>If InVBlank is <strong>TRUE</strong>, then this value is set to zero and can be ignored.</p> </dd>
  34546. </summary>
  34547. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRASTER_STATUS::ScanLine']/*" />
  34548. <msdn-id>bb172596</msdn-id>
  34549. <unmanaged>unsigned int ScanLine</unmanaged>
  34550. <unmanaged-short>unsigned int ScanLine</unmanaged-short>
  34551. </member>
  34552. <member name="T:SharpDX.Direct3D9.RectanglePatchInfo">
  34553. <summary>
  34554. <p>Describes a rectangular high-order patch.</p>
  34555. </summary>
  34556. <remarks>
  34557. <p>The following diagram identifies the parameters that specify a rectangle patch.</p><p>Each of the vertices in the vertex buffer is shown as a black dot. In this case, the vertex buffer has 20 vertices in it, 16 of which are in the rectangle patch. The stride is the number of vertices in the width of the vertex buffer, in this case five. The x offset to the first vertex is called the StartIndexVertexWidth and is in this case 1. The y offset to the first patch vertex is called the StartIndexVertexHeight and is in this case 0.</p><p>To render a stream of individual rectangular patches (non-mosaic), you should interpret your geometry as a long narrow (1 x N) rectangular patch. The <strong><see cref="T:SharpDX.Direct3D9.RectanglePatchInfo" /></strong> structure for such a strip (cubic B?zier) would be set up in the following manner.</p><pre> <see cref="T:SharpDX.Direct3D9.RectanglePatchInfo" /> RectInfo; RectInfo.Width = 4;
  34558. RectInfo.Height = 4;
  34559. RectInfo.Stride = 4;
  34560. RectInfo.Basis = <see cref="F:SharpDX.Direct3D9.Basis.Bezier" />;
  34561. RectInfo.Order = D3DORDER_CUBIC;
  34562. RectInfo.StartVertexOffsetWidth = 0;
  34563. RectInfo.StartVertexOffsetHeight = 4*i; // The variable i is the index of the
  34564. // patch you want to render.
  34565. </pre>
  34566. </remarks>
  34567. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRECTPATCH_INFO']/*" />
  34568. <msdn-id>bb172598</msdn-id>
  34569. <unmanaged>D3DRECTPATCH_INFO</unmanaged>
  34570. <unmanaged-short>D3DRECTPATCH_INFO</unmanaged-short>
  34571. </member>
  34572. <member name="F:SharpDX.Direct3D9.RectanglePatchInfo.StartVertexOffsetWidth">
  34573. <summary>
  34574. <dd> <p>Starting vertex offset width, in number of vertices. </p> </dd>
  34575. </summary>
  34576. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRECTPATCH_INFO::StartVertexOffsetWidth']/*" />
  34577. <msdn-id>bb172598</msdn-id>
  34578. <unmanaged>unsigned int StartVertexOffsetWidth</unmanaged>
  34579. <unmanaged-short>unsigned int StartVertexOffsetWidth</unmanaged-short>
  34580. </member>
  34581. <member name="F:SharpDX.Direct3D9.RectanglePatchInfo.StartVertexOffsetHeight">
  34582. <summary>
  34583. <dd> <p>Starting vertex offset height, in number of vertices. </p> </dd>
  34584. </summary>
  34585. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRECTPATCH_INFO::StartVertexOffsetHeight']/*" />
  34586. <msdn-id>bb172598</msdn-id>
  34587. <unmanaged>unsigned int StartVertexOffsetHeight</unmanaged>
  34588. <unmanaged-short>unsigned int StartVertexOffsetHeight</unmanaged-short>
  34589. </member>
  34590. <member name="F:SharpDX.Direct3D9.RectanglePatchInfo.Width">
  34591. <summary>
  34592. <dd> <p>Width of each vertex, in number of vertices. </p> </dd>
  34593. </summary>
  34594. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRECTPATCH_INFO::Width']/*" />
  34595. <msdn-id>bb172598</msdn-id>
  34596. <unmanaged>unsigned int Width</unmanaged>
  34597. <unmanaged-short>unsigned int Width</unmanaged-short>
  34598. </member>
  34599. <member name="F:SharpDX.Direct3D9.RectanglePatchInfo.Height">
  34600. <summary>
  34601. <dd> <p>Height of each vertex, in number of vertices. </p> </dd>
  34602. </summary>
  34603. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRECTPATCH_INFO::Height']/*" />
  34604. <msdn-id>bb172598</msdn-id>
  34605. <unmanaged>unsigned int Height</unmanaged>
  34606. <unmanaged-short>unsigned int Height</unmanaged-short>
  34607. </member>
  34608. <member name="F:SharpDX.Direct3D9.RectanglePatchInfo.Stride">
  34609. <summary>
  34610. <dd> <p>Width of the imaginary two-dimensional vertex array, which occupies the same space as the vertex buffer. For an example, see the diagram below. </p> </dd>
  34611. </summary>
  34612. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRECTPATCH_INFO::Stride']/*" />
  34613. <msdn-id>bb172598</msdn-id>
  34614. <unmanaged>unsigned int Stride</unmanaged>
  34615. <unmanaged-short>unsigned int Stride</unmanaged-short>
  34616. </member>
  34617. <member name="F:SharpDX.Direct3D9.RectanglePatchInfo.Basis">
  34618. <summary>
  34619. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Basis" /></strong> enumerated type, defining the basis type for the rectangular high-order patch. </p> <table> <tr><th>Value</th><th>Order supported</th><th>Width and height</th></tr> <tr><td><see cref="F:SharpDX.Direct3D9.Basis.Bezier" /></td><td>Linear, cubic, and quintic</td><td>Width = height = (DWORD)order + 1</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.Basis.BSpline" /></td><td>Linear, cubic, and quintic</td><td>Width = height &gt; (DWORD)order</td></tr> <tr><td>D3DBASIS_INTERPOLATE</td><td>Cubic</td><td>Width = height &gt; (DWORD)order</td></tr> </table> <p>?</p> </dd>
  34620. </summary>
  34621. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRECTPATCH_INFO::Basis']/*" />
  34622. <msdn-id>bb172598</msdn-id>
  34623. <unmanaged>D3DBASISTYPE Basis</unmanaged>
  34624. <unmanaged-short>D3DBASISTYPE Basis</unmanaged-short>
  34625. </member>
  34626. <member name="F:SharpDX.Direct3D9.RectanglePatchInfo.Degree">
  34627. <summary>
  34628. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Degree" /></strong> enumerated type, defining the degree for the rectangular patch. </p> </dd>
  34629. </summary>
  34630. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRECTPATCH_INFO::Degree']/*" />
  34631. <msdn-id>bb172598</msdn-id>
  34632. <unmanaged>D3DDEGREETYPE Degree</unmanaged>
  34633. <unmanaged-short>D3DDEGREETYPE Degree</unmanaged-short>
  34634. </member>
  34635. <member name="T:SharpDX.Direct3D9.RenderToEnvironmentMapDescription">
  34636. <summary>
  34637. <p>Describes an off-screen render target used by an instance of <strong><see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap" /></strong>.</p>
  34638. </summary>
  34639. <remarks>
  34640. <p>This method is used to return the creation parameters used when creating an <strong><see cref="T:SharpDX.Direct3D9.RenderToEnvironmentMap" /></strong> object.</p>
  34641. </remarks>
  34642. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTE_DESC']/*" />
  34643. <msdn-id>bb205425</msdn-id>
  34644. <unmanaged>D3DXRTE_DESC</unmanaged>
  34645. <unmanaged-short>D3DXRTE_DESC</unmanaged-short>
  34646. </member>
  34647. <member name="F:SharpDX.Direct3D9.RenderToEnvironmentMapDescription.Size">
  34648. <summary>
  34649. No documentation.
  34650. </summary>
  34651. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTE_DESC::Size']/*" />
  34652. <msdn-id>bb205425</msdn-id>
  34653. <unmanaged>unsigned int Size</unmanaged>
  34654. <unmanaged-short>unsigned int Size</unmanaged-short>
  34655. </member>
  34656. <member name="F:SharpDX.Direct3D9.RenderToEnvironmentMapDescription.MipLevels">
  34657. <summary>
  34658. No documentation.
  34659. </summary>
  34660. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTE_DESC::MipLevels']/*" />
  34661. <msdn-id>bb205425</msdn-id>
  34662. <unmanaged>unsigned int MipLevels</unmanaged>
  34663. <unmanaged-short>unsigned int MipLevels</unmanaged-short>
  34664. </member>
  34665. <member name="F:SharpDX.Direct3D9.RenderToEnvironmentMapDescription.Format">
  34666. <summary>
  34667. No documentation.
  34668. </summary>
  34669. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTE_DESC::Format']/*" />
  34670. <msdn-id>bb205425</msdn-id>
  34671. <unmanaged>D3DFORMAT Format</unmanaged>
  34672. <unmanaged-short>D3DFORMAT Format</unmanaged-short>
  34673. </member>
  34674. <member name="F:SharpDX.Direct3D9.RenderToEnvironmentMapDescription.DepthStencil">
  34675. <summary>
  34676. No documentation.
  34677. </summary>
  34678. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTE_DESC::DepthStencil']/*" />
  34679. <msdn-id>bb205425</msdn-id>
  34680. <unmanaged>BOOL DepthStencil</unmanaged>
  34681. <unmanaged-short>BOOL DepthStencil</unmanaged-short>
  34682. </member>
  34683. <member name="F:SharpDX.Direct3D9.RenderToEnvironmentMapDescription.DepthStencilFormat">
  34684. <summary>
  34685. No documentation.
  34686. </summary>
  34687. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTE_DESC::DepthStencilFormat']/*" />
  34688. <msdn-id>bb205425</msdn-id>
  34689. <unmanaged>D3DFORMAT DepthStencilFormat</unmanaged>
  34690. <unmanaged-short>D3DFORMAT DepthStencilFormat</unmanaged-short>
  34691. </member>
  34692. <member name="T:SharpDX.Direct3D9.RenderToSurfaceDescription">
  34693. <summary>
  34694. <p>Describes a render surface.</p>
  34695. </summary>
  34696. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTS_DESC']/*" />
  34697. <msdn-id>bb205426</msdn-id>
  34698. <unmanaged>D3DXRTS_DESC</unmanaged>
  34699. <unmanaged-short>D3DXRTS_DESC</unmanaged-short>
  34700. </member>
  34701. <member name="F:SharpDX.Direct3D9.RenderToSurfaceDescription.Width">
  34702. <summary>
  34703. <dd> <p>Width of the render surface, in pixels.</p> </dd>
  34704. </summary>
  34705. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTS_DESC::Width']/*" />
  34706. <msdn-id>bb205426</msdn-id>
  34707. <unmanaged>unsigned int Width</unmanaged>
  34708. <unmanaged-short>unsigned int Width</unmanaged-short>
  34709. </member>
  34710. <member name="F:SharpDX.Direct3D9.RenderToSurfaceDescription.Height">
  34711. <summary>
  34712. <dd> <p>Height of the render surface, in pixels.</p> </dd>
  34713. </summary>
  34714. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTS_DESC::Height']/*" />
  34715. <msdn-id>bb205426</msdn-id>
  34716. <unmanaged>unsigned int Height</unmanaged>
  34717. <unmanaged-short>unsigned int Height</unmanaged-short>
  34718. </member>
  34719. <member name="F:SharpDX.Direct3D9.RenderToSurfaceDescription.Format">
  34720. <summary>
  34721. <dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the pixel format of the render surface.</p> </dd>
  34722. </summary>
  34723. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTS_DESC::Format']/*" />
  34724. <msdn-id>bb205426</msdn-id>
  34725. <unmanaged>D3DFORMAT Format</unmanaged>
  34726. <unmanaged-short>D3DFORMAT Format</unmanaged-short>
  34727. </member>
  34728. <member name="F:SharpDX.Direct3D9.RenderToSurfaceDescription.DepthStencil">
  34729. <summary>
  34730. <dd> <p>If <strong>TRUE</strong>, the render surface supports a depth-stencil surface; otherwise this member is set to <strong><see cref="F:SharpDX.Result.False" /></strong>.</p> </dd>
  34731. </summary>
  34732. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTS_DESC::DepthStencil']/*" />
  34733. <msdn-id>bb205426</msdn-id>
  34734. <unmanaged>BOOL DepthStencil</unmanaged>
  34735. <unmanaged-short>BOOL DepthStencil</unmanaged-short>
  34736. </member>
  34737. <member name="F:SharpDX.Direct3D9.RenderToSurfaceDescription.DepthStencilFormat">
  34738. <summary>
  34739. <dd> <p>If DepthStencil is set to <strong>TRUE</strong>, this parameter is a member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the depth-stencil format of the render surface.</p> </dd>
  34740. </summary>
  34741. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXRTS_DESC::DepthStencilFormat']/*" />
  34742. <msdn-id>bb205426</msdn-id>
  34743. <unmanaged>D3DFORMAT DepthStencilFormat</unmanaged>
  34744. <unmanaged-short>D3DFORMAT DepthStencilFormat</unmanaged-short>
  34745. </member>
  34746. <member name="T:SharpDX.Direct3D9.ResourceManager">
  34747. <summary>
  34748. No documentation.
  34749. </summary>
  34750. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_RESOURCEMANAGER']/*" />
  34751. <msdn-id>bb280347</msdn-id>
  34752. <unmanaged>D3DDEVINFO_RESOURCEMANAGER</unmanaged>
  34753. <unmanaged-short>D3DDEVINFO_RESOURCEMANAGER</unmanaged-short>
  34754. </member>
  34755. <member name="P:SharpDX.Direct3D9.ResourceManager.Stats">
  34756. <summary>
  34757. No documentation.
  34758. </summary>
  34759. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_RESOURCEMANAGER::stats']/*" />
  34760. <msdn-id>bb280347</msdn-id>
  34761. <unmanaged>D3DRESOURCESTATS stats[8]</unmanaged>
  34762. <unmanaged-short>D3DRESOURCESTATS stats</unmanaged-short>
  34763. </member>
  34764. <member name="T:SharpDX.Direct3D9.ResourceStats">
  34765. <summary>
  34766. <p>Resource statistics gathered by the <strong>D3DDEVINFO_ResourceManager</strong> when using the asynchronous query mechanism.</p>
  34767. </summary>
  34768. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS']/*" />
  34769. <msdn-id>bb172600</msdn-id>
  34770. <unmanaged>D3DRESOURCESTATS</unmanaged>
  34771. <unmanaged-short>D3DRESOURCESTATS</unmanaged-short>
  34772. </member>
  34773. <member name="F:SharpDX.Direct3D9.ResourceStats.Thrashing">
  34774. <summary>
  34775. No documentation.
  34776. </summary>
  34777. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::bThrashing']/*" />
  34778. <msdn-id>bb172600</msdn-id>
  34779. <unmanaged>BOOL bThrashing</unmanaged>
  34780. <unmanaged-short>BOOL bThrashing</unmanaged-short>
  34781. </member>
  34782. <member name="F:SharpDX.Direct3D9.ResourceStats.ApproximateBytesDownloaded">
  34783. <summary>
  34784. No documentation.
  34785. </summary>
  34786. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::ApproxBytesDownloaded']/*" />
  34787. <msdn-id>bb172600</msdn-id>
  34788. <unmanaged>unsigned int ApproxBytesDownloaded</unmanaged>
  34789. <unmanaged-short>unsigned int ApproxBytesDownloaded</unmanaged-short>
  34790. </member>
  34791. <member name="F:SharpDX.Direct3D9.ResourceStats.NumberEvicted">
  34792. <summary>
  34793. No documentation.
  34794. </summary>
  34795. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::NumEvicts']/*" />
  34796. <msdn-id>bb172600</msdn-id>
  34797. <unmanaged>unsigned int NumEvicts</unmanaged>
  34798. <unmanaged-short>unsigned int NumEvicts</unmanaged-short>
  34799. </member>
  34800. <member name="F:SharpDX.Direct3D9.ResourceStats.NumberVideoCreated">
  34801. <summary>
  34802. No documentation.
  34803. </summary>
  34804. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::NumVidCreates']/*" />
  34805. <msdn-id>bb172600</msdn-id>
  34806. <unmanaged>unsigned int NumVidCreates</unmanaged>
  34807. <unmanaged-short>unsigned int NumVidCreates</unmanaged-short>
  34808. </member>
  34809. <member name="F:SharpDX.Direct3D9.ResourceStats.LastPriority">
  34810. <summary>
  34811. No documentation.
  34812. </summary>
  34813. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::LastPri']/*" />
  34814. <msdn-id>bb172600</msdn-id>
  34815. <unmanaged>unsigned int LastPri</unmanaged>
  34816. <unmanaged-short>unsigned int LastPri</unmanaged-short>
  34817. </member>
  34818. <member name="F:SharpDX.Direct3D9.ResourceStats.NumberUsed">
  34819. <summary>
  34820. No documentation.
  34821. </summary>
  34822. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::NumUsed']/*" />
  34823. <msdn-id>bb172600</msdn-id>
  34824. <unmanaged>unsigned int NumUsed</unmanaged>
  34825. <unmanaged-short>unsigned int NumUsed</unmanaged-short>
  34826. </member>
  34827. <member name="F:SharpDX.Direct3D9.ResourceStats.NumberUsedInVideoMemory">
  34828. <summary>
  34829. No documentation.
  34830. </summary>
  34831. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::NumUsedInVidMem']/*" />
  34832. <msdn-id>bb172600</msdn-id>
  34833. <unmanaged>unsigned int NumUsedInVidMem</unmanaged>
  34834. <unmanaged-short>unsigned int NumUsedInVidMem</unmanaged-short>
  34835. </member>
  34836. <member name="F:SharpDX.Direct3D9.ResourceStats.WorkingSet">
  34837. <summary>
  34838. No documentation.
  34839. </summary>
  34840. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::WorkingSet']/*" />
  34841. <msdn-id>bb172600</msdn-id>
  34842. <unmanaged>unsigned int WorkingSet</unmanaged>
  34843. <unmanaged-short>unsigned int WorkingSet</unmanaged-short>
  34844. </member>
  34845. <member name="F:SharpDX.Direct3D9.ResourceStats.WorkingSetBytes">
  34846. <summary>
  34847. No documentation.
  34848. </summary>
  34849. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::WorkingSetBytes']/*" />
  34850. <msdn-id>bb172600</msdn-id>
  34851. <unmanaged>unsigned int WorkingSetBytes</unmanaged>
  34852. <unmanaged-short>unsigned int WorkingSetBytes</unmanaged-short>
  34853. </member>
  34854. <member name="F:SharpDX.Direct3D9.ResourceStats.TotalManaged">
  34855. <summary>
  34856. No documentation.
  34857. </summary>
  34858. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::TotalManaged']/*" />
  34859. <msdn-id>bb172600</msdn-id>
  34860. <unmanaged>unsigned int TotalManaged</unmanaged>
  34861. <unmanaged-short>unsigned int TotalManaged</unmanaged-short>
  34862. </member>
  34863. <member name="F:SharpDX.Direct3D9.ResourceStats.TotalBytes">
  34864. <summary>
  34865. No documentation.
  34866. </summary>
  34867. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DRESOURCESTATS::TotalBytes']/*" />
  34868. <msdn-id>bb172600</msdn-id>
  34869. <unmanaged>unsigned int TotalBytes</unmanaged>
  34870. <unmanaged-short>unsigned int TotalBytes</unmanaged-short>
  34871. </member>
  34872. <member name="T:SharpDX.Direct3D9.RotationKey">
  34873. <summary>
  34874. No documentation.
  34875. </summary>
  34876. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXKEY_QUATERNION']/*" />
  34877. <msdn-id>bb280307</msdn-id>
  34878. <unmanaged>D3DXKEY_QUATERNION</unmanaged>
  34879. <unmanaged-short>D3DXKEY_QUATERNION</unmanaged-short>
  34880. </member>
  34881. <member name="F:SharpDX.Direct3D9.RotationKey.Time">
  34882. <summary>
  34883. No documentation.
  34884. </summary>
  34885. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXKEY_QUATERNION::Time']/*" />
  34886. <msdn-id>bb280307</msdn-id>
  34887. <unmanaged>float Time</unmanaged>
  34888. <unmanaged-short>float Time</unmanaged-short>
  34889. </member>
  34890. <member name="F:SharpDX.Direct3D9.RotationKey.Value">
  34891. <summary>
  34892. No documentation.
  34893. </summary>
  34894. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXKEY_QUATERNION::Value']/*" />
  34895. <msdn-id>bb280307</msdn-id>
  34896. <unmanaged>D3DXQUATERNION Value</unmanaged>
  34897. <unmanaged-short>D3DXQUATERNION Value</unmanaged-short>
  34898. </member>
  34899. <member name="T:SharpDX.Direct3D9.ScaleKey">
  34900. <summary>
  34901. <p>Describes a vector key for use in key frame animation. It specifies a vector at a given time. This is used for scale and translation keys.</p>
  34902. </summary>
  34903. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXKEY_VECTOR3']/*" />
  34904. <msdn-id>bb172889</msdn-id>
  34905. <unmanaged>D3DXKEY_VECTOR3</unmanaged>
  34906. <unmanaged-short>D3DXKEY_VECTOR3</unmanaged-short>
  34907. </member>
  34908. <member name="F:SharpDX.Direct3D9.ScaleKey.Time">
  34909. <summary>
  34910. <dd> <p>Key frame time stamp.</p> </dd>
  34911. </summary>
  34912. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXKEY_VECTOR3::Time']/*" />
  34913. <msdn-id>bb172889</msdn-id>
  34914. <unmanaged>float Time</unmanaged>
  34915. <unmanaged-short>float Time</unmanaged-short>
  34916. </member>
  34917. <member name="F:SharpDX.Direct3D9.ScaleKey.Value">
  34918. <summary>
  34919. <dd> <p> <strong><see cref="T:SharpDX.Mathematics.Interop.RawVector3" /></strong> 3D vector that supplies scale and/or translation values.</p> </dd>
  34920. </summary>
  34921. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXKEY_VECTOR3::Value']/*" />
  34922. <msdn-id>bb172889</msdn-id>
  34923. <unmanaged>D3DXVECTOR3 Value</unmanaged>
  34924. <unmanaged-short>D3DXVECTOR3 Value</unmanaged-short>
  34925. </member>
  34926. <member name="T:SharpDX.Direct3D9.ShaderConstantInformation">
  34927. <summary>
  34928. No documentation.
  34929. </summary>
  34930. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTINFO']/*" />
  34931. <msdn-id>bb205439</msdn-id>
  34932. <unmanaged>D3DXSHADER_CONSTANTINFO</unmanaged>
  34933. <unmanaged-short>D3DXSHADER_CONSTANTINFO</unmanaged-short>
  34934. </member>
  34935. <member name="F:SharpDX.Direct3D9.ShaderConstantInformation.Name">
  34936. <summary>
  34937. <dd> <p>Offset from the beginning of this structure, in bytes, to the string that contains the constant information.</p> </dd>
  34938. </summary>
  34939. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTINFO::Name']/*" />
  34940. <msdn-id>bb205439</msdn-id>
  34941. <unmanaged>unsigned int Name</unmanaged>
  34942. <unmanaged-short>unsigned int Name</unmanaged-short>
  34943. </member>
  34944. <member name="F:SharpDX.Direct3D9.ShaderConstantInformation.RegisterSet">
  34945. <summary>
  34946. <dd> <p>Register set. See <strong><see cref="T:SharpDX.Direct3D9.RegisterSet" /></strong>.</p> </dd>
  34947. </summary>
  34948. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTINFO::RegisterSet']/*" />
  34949. <msdn-id>bb205439</msdn-id>
  34950. <unmanaged>unsigned short RegisterSet</unmanaged>
  34951. <unmanaged-short>unsigned short RegisterSet</unmanaged-short>
  34952. </member>
  34953. <member name="F:SharpDX.Direct3D9.ShaderConstantInformation.RegisterIndex">
  34954. <summary>
  34955. <dd> <p>The register index.</p> </dd>
  34956. </summary>
  34957. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTINFO::RegisterIndex']/*" />
  34958. <msdn-id>bb205439</msdn-id>
  34959. <unmanaged>unsigned short RegisterIndex</unmanaged>
  34960. <unmanaged-short>unsigned short RegisterIndex</unmanaged-short>
  34961. </member>
  34962. <member name="F:SharpDX.Direct3D9.ShaderConstantInformation.RegisterCount">
  34963. <summary>
  34964. <dd> <p>Number of registers.</p> </dd>
  34965. </summary>
  34966. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTINFO::RegisterCount']/*" />
  34967. <msdn-id>bb205439</msdn-id>
  34968. <unmanaged>unsigned short RegisterCount</unmanaged>
  34969. <unmanaged-short>unsigned short RegisterCount</unmanaged-short>
  34970. </member>
  34971. <member name="F:SharpDX.Direct3D9.ShaderConstantInformation.Reserved">
  34972. <summary>
  34973. <dd> <p>Reserved.</p> </dd>
  34974. </summary>
  34975. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTINFO::Reserved']/*" />
  34976. <msdn-id>bb205439</msdn-id>
  34977. <unmanaged>unsigned short Reserved</unmanaged>
  34978. <unmanaged-short>unsigned short Reserved</unmanaged-short>
  34979. </member>
  34980. <member name="F:SharpDX.Direct3D9.ShaderConstantInformation.TypeInfo">
  34981. <summary>
  34982. <dd> <p>Offset from the beginning of this structure, in bytes, to the string that contains the <strong>D3DXSHADER_TYPEINFO</strong> information.</p> </dd>
  34983. </summary>
  34984. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTINFO::TypeInfo']/*" />
  34985. <msdn-id>bb205439</msdn-id>
  34986. <unmanaged>unsigned int TypeInfo</unmanaged>
  34987. <unmanaged-short>unsigned int TypeInfo</unmanaged-short>
  34988. </member>
  34989. <member name="F:SharpDX.Direct3D9.ShaderConstantInformation.DefaultValue">
  34990. <summary>
  34991. <dd> <p>Offset from the beginning of this structure, in bytes, to the string that contains the default value.</p> </dd>
  34992. </summary>
  34993. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTINFO::DefaultValue']/*" />
  34994. <msdn-id>bb205439</msdn-id>
  34995. <unmanaged>unsigned int DefaultValue</unmanaged>
  34996. <unmanaged-short>unsigned int DefaultValue</unmanaged-short>
  34997. </member>
  34998. <member name="T:SharpDX.Direct3D9.ShaderConstantTable">
  34999. <summary>
  35000. <p>Helper structure for managing a shader constant table. This can also be done using <strong><see cref="T:SharpDX.Direct3D9.ConstantTable" /></strong>.</p>
  35001. </summary>
  35002. <remarks>
  35003. <p>Shader constant information is included in a tab-delimited table of comments. All offsets are measured in bytes from the beginning of the structure. Entries in the constant table are sorted by Creator in ascending order.</p><p>A shader constant table can be managed with the <strong><see cref="T:SharpDX.Direct3D9.ConstantTable" /></strong> interfaces. Alternatively, you can manage the constant table with <strong><see cref="T:SharpDX.Direct3D9.ShaderConstantTable" /></strong>.</p><p>This size member is often initialized using the following:</p><pre> <see cref="T:SharpDX.Direct3D9.ShaderConstantTable" /> constantTable;
  35004. constantTable.Size = sizeof(<see cref="T:SharpDX.Direct3D9.ShaderConstantTable" />)
  35005. </pre>
  35006. </remarks>
  35007. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTTABLE']/*" />
  35008. <msdn-id>bb205440</msdn-id>
  35009. <unmanaged>D3DXSHADER_CONSTANTTABLE</unmanaged>
  35010. <unmanaged-short>D3DXSHADER_CONSTANTTABLE</unmanaged-short>
  35011. </member>
  35012. <member name="F:SharpDX.Direct3D9.ShaderConstantTable.Size">
  35013. <summary>
  35014. No documentation.
  35015. </summary>
  35016. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTTABLE::Size']/*" />
  35017. <msdn-id>bb205440</msdn-id>
  35018. <unmanaged>unsigned int Size</unmanaged>
  35019. <unmanaged-short>unsigned int Size</unmanaged-short>
  35020. </member>
  35021. <member name="F:SharpDX.Direct3D9.ShaderConstantTable.Creator">
  35022. <summary>
  35023. No documentation.
  35024. </summary>
  35025. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTTABLE::Creator']/*" />
  35026. <msdn-id>bb205440</msdn-id>
  35027. <unmanaged>unsigned int Creator</unmanaged>
  35028. <unmanaged-short>unsigned int Creator</unmanaged-short>
  35029. </member>
  35030. <member name="F:SharpDX.Direct3D9.ShaderConstantTable.Version">
  35031. <summary>
  35032. No documentation.
  35033. </summary>
  35034. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTTABLE::Version']/*" />
  35035. <msdn-id>bb205440</msdn-id>
  35036. <unmanaged>unsigned int Version</unmanaged>
  35037. <unmanaged-short>unsigned int Version</unmanaged-short>
  35038. </member>
  35039. <member name="F:SharpDX.Direct3D9.ShaderConstantTable.Constants">
  35040. <summary>
  35041. No documentation.
  35042. </summary>
  35043. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTTABLE::Constants']/*" />
  35044. <msdn-id>bb205440</msdn-id>
  35045. <unmanaged>unsigned int Constants</unmanaged>
  35046. <unmanaged-short>unsigned int Constants</unmanaged-short>
  35047. </member>
  35048. <member name="F:SharpDX.Direct3D9.ShaderConstantTable.ConstantInfo">
  35049. <summary>
  35050. No documentation.
  35051. </summary>
  35052. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTTABLE::ConstantInfo']/*" />
  35053. <msdn-id>bb205440</msdn-id>
  35054. <unmanaged>unsigned int ConstantInfo</unmanaged>
  35055. <unmanaged-short>unsigned int ConstantInfo</unmanaged-short>
  35056. </member>
  35057. <member name="F:SharpDX.Direct3D9.ShaderConstantTable.Flags">
  35058. <summary>
  35059. No documentation.
  35060. </summary>
  35061. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTTABLE::Flags']/*" />
  35062. <msdn-id>bb205440</msdn-id>
  35063. <unmanaged>unsigned int Flags</unmanaged>
  35064. <unmanaged-short>unsigned int Flags</unmanaged-short>
  35065. </member>
  35066. <member name="F:SharpDX.Direct3D9.ShaderConstantTable.Target">
  35067. <summary>
  35068. No documentation.
  35069. </summary>
  35070. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSHADER_CONSTANTTABLE::Target']/*" />
  35071. <msdn-id>bb205440</msdn-id>
  35072. <unmanaged>unsigned int Target</unmanaged>
  35073. <unmanaged-short>unsigned int Target</unmanaged-short>
  35074. </member>
  35075. <member name="T:SharpDX.Direct3D9.ShaderSemantic">
  35076. <summary>
  35077. <p>Semantics map a parameter to vertex or pixel shader registers. They can also be optional descriptive strings attached to non-register parameters. </p>
  35078. </summary>
  35079. <remarks>
  35080. <p>Semantics are required for vertex and pixel shader, input and output registers.</p>
  35081. </remarks>
  35082. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSEMANTIC']/*" />
  35083. <msdn-id>bb205437</msdn-id>
  35084. <unmanaged>D3DXSEMANTIC</unmanaged>
  35085. <unmanaged-short>D3DXSEMANTIC</unmanaged-short>
  35086. </member>
  35087. <member name="F:SharpDX.Direct3D9.ShaderSemantic.Usage">
  35088. <summary>
  35089. <dd> <p>Options that identify how resources are used. See <strong><see cref="T:SharpDX.Direct3D9.DeclarationUsage" /></strong>.</p> </dd>
  35090. </summary>
  35091. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSEMANTIC::Usage']/*" />
  35092. <msdn-id>bb205437</msdn-id>
  35093. <unmanaged>D3DDECLUSAGE Usage</unmanaged>
  35094. <unmanaged-short>D3DDECLUSAGE Usage</unmanaged-short>
  35095. </member>
  35096. <member name="F:SharpDX.Direct3D9.ShaderSemantic.UsageIndex">
  35097. <summary>
  35098. <dd> <p>Options that modify how the usage is interpreted. The usage and usage index make up a vertex declaration. See Vertex Declaration (Direct3D 9).</p> </dd>
  35099. </summary>
  35100. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXSEMANTIC::UsageIndex']/*" />
  35101. <msdn-id>bb205437</msdn-id>
  35102. <unmanaged>unsigned int UsageIndex</unmanaged>
  35103. <unmanaged-short>unsigned int UsageIndex</unmanaged-short>
  35104. </member>
  35105. <member name="T:SharpDX.Direct3D9.StageTimings">
  35106. <summary>
  35107. <p>Percent of time processing shader data.</p>
  35108. </summary>
  35109. <remarks>
  35110. <p>For best performance, a balanced load is recommended.</p>
  35111. </remarks>
  35112. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9STAGETIMINGS']/*" />
  35113. <msdn-id>bb172543</msdn-id>
  35114. <unmanaged>D3DDEVINFO_D3D9STAGETIMINGS</unmanaged>
  35115. <unmanaged-short>D3DDEVINFO_D3D9STAGETIMINGS</unmanaged-short>
  35116. </member>
  35117. <member name="F:SharpDX.Direct3D9.StageTimings.MemoryProcessingPercent">
  35118. <summary>
  35119. <dd> <p>Percent of time in shader spent on memory accesses.</p> </dd>
  35120. </summary>
  35121. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9STAGETIMINGS::MemoryProcessingPercent']/*" />
  35122. <msdn-id>bb172543</msdn-id>
  35123. <unmanaged>float MemoryProcessingPercent</unmanaged>
  35124. <unmanaged-short>float MemoryProcessingPercent</unmanaged-short>
  35125. </member>
  35126. <member name="F:SharpDX.Direct3D9.StageTimings.ComputationProcessingPercent">
  35127. <summary>
  35128. <dd> <p>Percent of time processing (moving data around in registers or doing mathematical operations).</p> </dd>
  35129. </summary>
  35130. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3D9STAGETIMINGS::ComputationProcessingPercent']/*" />
  35131. <msdn-id>bb172543</msdn-id>
  35132. <unmanaged>float ComputationProcessingPercent</unmanaged>
  35133. <unmanaged-short>float ComputationProcessingPercent</unmanaged-short>
  35134. </member>
  35135. <member name="T:SharpDX.Direct3D9.SurfaceDescription">
  35136. <summary>
  35137. <p>Describes a surface.</p>
  35138. </summary>
  35139. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSURFACE_DESC']/*" />
  35140. <msdn-id>bb172611</msdn-id>
  35141. <unmanaged>D3DSURFACE_DESC</unmanaged>
  35142. <unmanaged-short>D3DSURFACE_DESC</unmanaged-short>
  35143. </member>
  35144. <member name="F:SharpDX.Direct3D9.SurfaceDescription.Format">
  35145. <summary>
  35146. <dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the surface format. </p> </dd>
  35147. </summary>
  35148. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSURFACE_DESC::Format']/*" />
  35149. <msdn-id>bb172611</msdn-id>
  35150. <unmanaged>D3DFORMAT Format</unmanaged>
  35151. <unmanaged-short>D3DFORMAT Format</unmanaged-short>
  35152. </member>
  35153. <member name="F:SharpDX.Direct3D9.SurfaceDescription.Type">
  35154. <summary>
  35155. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.ResourceType" /></strong> enumerated type, identifying this resource as a surface. </p> </dd>
  35156. </summary>
  35157. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSURFACE_DESC::Type']/*" />
  35158. <msdn-id>bb172611</msdn-id>
  35159. <unmanaged>D3DRESOURCETYPE Type</unmanaged>
  35160. <unmanaged-short>D3DRESOURCETYPE Type</unmanaged-short>
  35161. </member>
  35162. <member name="F:SharpDX.Direct3D9.SurfaceDescription.Usage">
  35163. <summary>
  35164. <dd> <p>Either the <see cref="F:SharpDX.Direct3D9.Usage.DepthStencil" /> or <see cref="F:SharpDX.Direct3D9.Usage.RenderTarget" /> values. For more information, see <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong>.</p> </dd>
  35165. </summary>
  35166. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSURFACE_DESC::Usage']/*" />
  35167. <msdn-id>bb172611</msdn-id>
  35168. <unmanaged>D3DUSAGE Usage</unmanaged>
  35169. <unmanaged-short>D3DUSAGE Usage</unmanaged-short>
  35170. </member>
  35171. <member name="F:SharpDX.Direct3D9.SurfaceDescription.Pool">
  35172. <summary>
  35173. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, specifying the class of memory allocated for this surface.</p> </dd>
  35174. </summary>
  35175. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSURFACE_DESC::Pool']/*" />
  35176. <msdn-id>bb172611</msdn-id>
  35177. <unmanaged>D3DPOOL Pool</unmanaged>
  35178. <unmanaged-short>D3DPOOL Pool</unmanaged-short>
  35179. </member>
  35180. <member name="F:SharpDX.Direct3D9.SurfaceDescription.MultiSampleType">
  35181. <summary>
  35182. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.MultisampleType" /></strong> enumerated type, specifying the levels of full-scene multisampling supported by the surface.</p> </dd>
  35183. </summary>
  35184. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSURFACE_DESC::MultiSampleType']/*" />
  35185. <msdn-id>bb172611</msdn-id>
  35186. <unmanaged>D3DMULTISAMPLE_TYPE MultiSampleType</unmanaged>
  35187. <unmanaged-short>D3DMULTISAMPLE_TYPE MultiSampleType</unmanaged-short>
  35188. </member>
  35189. <member name="F:SharpDX.Direct3D9.SurfaceDescription.MultiSampleQuality">
  35190. <summary>
  35191. <dd> <p>Quality level. The valid range is between zero and one less than the level returned by pQualityLevels used by <strong>CheckDeviceMultiSampleType</strong>. Passing a larger value returns the error, <see cref="F:SharpDX.Direct3D9.ResultCode.InvalidCall" />. The MultisampleQuality values of paired render targets, depth stencil surfaces and the MultiSample type must all match.</p> </dd>
  35192. </summary>
  35193. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSURFACE_DESC::MultiSampleQuality']/*" />
  35194. <msdn-id>bb172611</msdn-id>
  35195. <unmanaged>unsigned int MultiSampleQuality</unmanaged>
  35196. <unmanaged-short>unsigned int MultiSampleQuality</unmanaged-short>
  35197. </member>
  35198. <member name="F:SharpDX.Direct3D9.SurfaceDescription.Width">
  35199. <summary>
  35200. <dd> <p>Width of the surface, in pixels.</p> </dd>
  35201. </summary>
  35202. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSURFACE_DESC::Width']/*" />
  35203. <msdn-id>bb172611</msdn-id>
  35204. <unmanaged>unsigned int Width</unmanaged>
  35205. <unmanaged-short>unsigned int Width</unmanaged-short>
  35206. </member>
  35207. <member name="F:SharpDX.Direct3D9.SurfaceDescription.Height">
  35208. <summary>
  35209. <dd> <p>Height of the surface, in pixels.</p> </dd>
  35210. </summary>
  35211. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DSURFACE_DESC::Height']/*" />
  35212. <msdn-id>bb172611</msdn-id>
  35213. <unmanaged>unsigned int Height</unmanaged>
  35214. <unmanaged-short>unsigned int Height</unmanaged-short>
  35215. </member>
  35216. <member name="T:SharpDX.Direct3D9.TechniqueDescription">
  35217. <summary>
  35218. <p>Describes a technique used by an effect.</p>
  35219. </summary>
  35220. <remarks>
  35221. <p>Some video cards can render two textures in a single pass. However, if a card does not have this capability, it is often possible to render the same effect in two passes, using one texture for each pass.</p>
  35222. </remarks>
  35223. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTECHNIQUE_DESC']/*" />
  35224. <msdn-id>bb205468</msdn-id>
  35225. <unmanaged>D3DXTECHNIQUE_DESC</unmanaged>
  35226. <unmanaged-short>D3DXTECHNIQUE_DESC</unmanaged-short>
  35227. </member>
  35228. <member name="F:SharpDX.Direct3D9.TechniqueDescription.Name">
  35229. <summary>
  35230. <dd> <p>String that contains the technique name.</p> </dd>
  35231. </summary>
  35232. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTECHNIQUE_DESC::Name']/*" />
  35233. <msdn-id>bb205468</msdn-id>
  35234. <unmanaged>const char* Name</unmanaged>
  35235. <unmanaged-short>char Name</unmanaged-short>
  35236. </member>
  35237. <member name="F:SharpDX.Direct3D9.TechniqueDescription.Passes">
  35238. <summary>
  35239. <dd> <p>Number of rendering passes the technique requires. See Remarks.</p> </dd>
  35240. </summary>
  35241. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTECHNIQUE_DESC::Passes']/*" />
  35242. <msdn-id>bb205468</msdn-id>
  35243. <unmanaged>unsigned int Passes</unmanaged>
  35244. <unmanaged-short>unsigned int Passes</unmanaged-short>
  35245. </member>
  35246. <member name="F:SharpDX.Direct3D9.TechniqueDescription.Annotations">
  35247. <summary>
  35248. <dd> <p>The number of annotations. See Add Information to Effect Parameters with_Annotations.</p> </dd>
  35249. </summary>
  35250. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTECHNIQUE_DESC::Annotations']/*" />
  35251. <msdn-id>bb205468</msdn-id>
  35252. <unmanaged>unsigned int Annotations</unmanaged>
  35253. <unmanaged-short>unsigned int Annotations</unmanaged-short>
  35254. </member>
  35255. <member name="T:SharpDX.Direct3D9.TrackDescription">
  35256. <summary>
  35257. <p>Describes an animation track and specifies blending weight, speed, and position for the track at a given time.</p>
  35258. </summary>
  35259. <remarks>
  35260. <p>Tracks with the same priority are blended together, and the two resulting values are then blended using the priority blend factor. A track must have an animation set (stored separately) associated with it.</p>
  35261. </remarks>
  35262. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTRACK_DESC']/*" />
  35263. <msdn-id>bb205474</msdn-id>
  35264. <unmanaged>D3DXTRACK_DESC</unmanaged>
  35265. <unmanaged-short>D3DXTRACK_DESC</unmanaged-short>
  35266. </member>
  35267. <member name="F:SharpDX.Direct3D9.TrackDescription.Priority">
  35268. <summary>
  35269. <dd> <p>Priority type, as defined in <strong><see cref="T:SharpDX.Direct3D9.TrackPriority" /></strong>.</p> </dd>
  35270. </summary>
  35271. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTRACK_DESC::Priority']/*" />
  35272. <msdn-id>bb205474</msdn-id>
  35273. <unmanaged>D3DXPRIORITY_TYPE Priority</unmanaged>
  35274. <unmanaged-short>D3DXPRIORITY_TYPE Priority</unmanaged-short>
  35275. </member>
  35276. <member name="F:SharpDX.Direct3D9.TrackDescription.Weight">
  35277. <summary>
  35278. <dd> <p>Weight value. The weight determines the proportion of this track to blend with other tracks.</p> </dd>
  35279. </summary>
  35280. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTRACK_DESC::Weight']/*" />
  35281. <msdn-id>bb205474</msdn-id>
  35282. <unmanaged>float Weight</unmanaged>
  35283. <unmanaged-short>float Weight</unmanaged-short>
  35284. </member>
  35285. <member name="F:SharpDX.Direct3D9.TrackDescription.Speed">
  35286. <summary>
  35287. <dd> <p>Speed value. This is used similarly to a multiplier to scale the period of the track.</p> </dd>
  35288. </summary>
  35289. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTRACK_DESC::Speed']/*" />
  35290. <msdn-id>bb205474</msdn-id>
  35291. <unmanaged>float Speed</unmanaged>
  35292. <unmanaged-short>float Speed</unmanaged-short>
  35293. </member>
  35294. <member name="F:SharpDX.Direct3D9.TrackDescription.Position">
  35295. <summary>
  35296. <dd> <p>Time position of the track, in the local timeframe of its current animation set.</p> </dd>
  35297. </summary>
  35298. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTRACK_DESC::Position']/*" />
  35299. <msdn-id>bb205474</msdn-id>
  35300. <unmanaged>double Position</unmanaged>
  35301. <unmanaged-short>double Position</unmanaged-short>
  35302. </member>
  35303. <member name="F:SharpDX.Direct3D9.TrackDescription.Enable">
  35304. <summary>
  35305. <dd> <p>Track enable/disable. To enable, set to <strong>TRUE</strong>. To disable, set to <strong><see cref="F:SharpDX.Result.False" /></strong>.</p> </dd>
  35306. </summary>
  35307. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXTRACK_DESC::Enable']/*" />
  35308. <msdn-id>bb205474</msdn-id>
  35309. <unmanaged>BOOL Enable</unmanaged>
  35310. <unmanaged-short>BOOL Enable</unmanaged-short>
  35311. </member>
  35312. <member name="T:SharpDX.Direct3D9.TrianglePatchInfo">
  35313. <summary>
  35314. <p>Describes a triangular high-order patch.</p>
  35315. </summary>
  35316. <remarks>
  35317. <p>For example, the following diagram identifies the vertex order and segment numbers for a cubic B?zier triangle patch. The vertex order determines the segment numbers used by <strong>DrawTriPatch</strong>. The offset is the number of bytes to the first triangle patch vertex in the vertex buffer.</p>
  35318. </remarks>
  35319. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTRIPATCH_INFO']/*" />
  35320. <msdn-id>bb172620</msdn-id>
  35321. <unmanaged>D3DTRIPATCH_INFO</unmanaged>
  35322. <unmanaged-short>D3DTRIPATCH_INFO</unmanaged-short>
  35323. </member>
  35324. <member name="F:SharpDX.Direct3D9.TrianglePatchInfo.StartVertexOffset">
  35325. <summary>
  35326. <dd> <p>Starting vertex offset, in number of vertices. </p> </dd>
  35327. </summary>
  35328. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTRIPATCH_INFO::StartVertexOffset']/*" />
  35329. <msdn-id>bb172620</msdn-id>
  35330. <unmanaged>unsigned int StartVertexOffset</unmanaged>
  35331. <unmanaged-short>unsigned int StartVertexOffset</unmanaged-short>
  35332. </member>
  35333. <member name="F:SharpDX.Direct3D9.TrianglePatchInfo.VertexCount">
  35334. <summary>
  35335. <dd> <p>Number of vertices.</p> </dd>
  35336. </summary>
  35337. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTRIPATCH_INFO::NumVertices']/*" />
  35338. <msdn-id>bb172620</msdn-id>
  35339. <unmanaged>unsigned int NumVertices</unmanaged>
  35340. <unmanaged-short>unsigned int NumVertices</unmanaged-short>
  35341. </member>
  35342. <member name="F:SharpDX.Direct3D9.TrianglePatchInfo.Basis">
  35343. <summary>
  35344. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Basis" /></strong> enumerated type, which defines the basis type for the triangular high-order patch. The only valid value for this member is <see cref="F:SharpDX.Direct3D9.Basis.Bezier" />.</p> </dd>
  35345. </summary>
  35346. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTRIPATCH_INFO::Basis']/*" />
  35347. <msdn-id>bb172620</msdn-id>
  35348. <unmanaged>D3DBASISTYPE Basis</unmanaged>
  35349. <unmanaged-short>D3DBASISTYPE Basis</unmanaged-short>
  35350. </member>
  35351. <member name="F:SharpDX.Direct3D9.TrianglePatchInfo.Degree">
  35352. <summary>
  35353. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Degree" /></strong> enumerated type, defining the degree type for the triangular high-order patch.</p> <table> <tr><th>Value</th><th>Number of vertices</th></tr> <tr><td><see cref="F:SharpDX.Direct3D9.Degree.Cubic" /></td><td>10</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.Degree.Linear" /></td><td>3</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.Degree.Quadratic" /></td><td>N/A</td></tr> <tr><td><see cref="F:SharpDX.Direct3D9.Degree.Quintic" /></td><td>21</td></tr> </table> <p>?</p> <p>N/A - Not available. Not supported.</p> </dd>
  35354. </summary>
  35355. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DTRIPATCH_INFO::Degree']/*" />
  35356. <msdn-id>bb172620</msdn-id>
  35357. <unmanaged>D3DDEGREETYPE Degree</unmanaged>
  35358. <unmanaged-short>D3DDEGREETYPE Degree</unmanaged-short>
  35359. </member>
  35360. <member name="T:SharpDX.Direct3D9.VCache">
  35361. <summary>
  35362. <p> DirectX 8.1 and later versions only. </p><p>The <see cref="T:SharpDX.Direct3D9.VCache" /> structure describes vertex-cache information of a device.</p>
  35363. </summary>
  35364. <remarks>
  35365. <p><strong>DirectX 8.1 versions only.</strong> The Direct3D runtime calls a driver's <strong>D3dGetDriverState</strong> function to obtain vertex-cache information from the driver. In this <strong>D3dGetDriverState</strong> call, the runtime specifies the D3DDEVINFOID_VCACHE flag in the <strong>dwFlags</strong> member of the DD_GETDRIVERSTATEDATA structure that the runtime passes. The driver specifies vertex-cache information in a <see cref="T:SharpDX.Direct3D9.VCache" /> structure and returns it at the <strong>lpdwStates</strong> member of DD_GETDRIVERSTATEDATA.</p><p><strong>DirectX 9.0 and later versions only.</strong> The Direct3D runtime specifies D3DDP2OP_CREATEQUERY and D3DDP2OP_ISSUEQUERY commands in calls to the driver's <strong>D3dDrawPrimitives2</strong> callback to create driver-side resources for the query and then to asynchronously query the driver for vertex-cache information. In the call with the D3DDP2OP_CREATEQUERY command, the runtime specifies the <see cref="F:SharpDX.Direct3D9.QueryType.VCache" /> query type in the <strong>QueryType</strong> member of the <strong>D3DHAL_DP2CREATEQUERY</strong> structure. </p><p>When the driver completes a vertex-cache query, the driver sets the total size of the response buffer in the dwErrorOffset member of the <strong>D3DHAL_DRAWPRIMITIVES2DATA</strong> structure and sets the <strong>ddrval</strong> member of D3DHAL_DRAWPRIMITIVES2DATA to <see cref="F:SharpDX.Direct3D9.ResultCode.Success" /> for successful completion. The driver also overwrites the incoming command buffer with the outgoing response buffer. This response buffer contains a <strong>D3DHAL_DP2RESPONSEQUERY</strong> structure that identifies a response for the vertex-cache query. This D3DHAL_DP2RESPONSEQUERY is followed by the vertex-cache data in the <see cref="T:SharpDX.Direct3D9.VCache" /> structure. </p>
  35366. </remarks>
  35367. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_VCACHE']/*" />
  35368. <msdn-id>ff544702</msdn-id>
  35369. <unmanaged>D3DDEVINFO_VCACHE</unmanaged>
  35370. <unmanaged-short>D3DDEVINFO_VCACHE</unmanaged-short>
  35371. </member>
  35372. <member name="F:SharpDX.Direct3D9.VCache.Pattern">
  35373. <summary>
  35374. <dd> <p>Specifies the bit pattern. The driver must specify the bit pattern as the CACH four-character code (FOURCC) value. The driver can use the MAKEFOURCC macro as follows to specify the FOURCC value as CACH:</p> <pre>MAKEFOURCC('C', 'A', 'C', 'H');</pre> </dd>
  35375. </summary>
  35376. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_VCACHE::Pattern']/*" />
  35377. <msdn-id>ff544702</msdn-id>
  35378. <unmanaged>unsigned int Pattern</unmanaged>
  35379. <unmanaged-short>unsigned int Pattern</unmanaged-short>
  35380. </member>
  35381. <member name="F:SharpDX.Direct3D9.VCache.OptMethod">
  35382. <summary>
  35383. <dd> <p>Specifies the method of mesh optimization. The driver can use one of the following values to specify the mesh optimization that it uses: </p> <table> <tr><th>Value</th><th>Meaning</th></tr> <tr><td> <p><see cref="F:SharpDX.Direct3D9.MeshOptimizeFlags.StripReorder" /> (0)</p> </td><td> <p>Longest strips optimization</p> </td></tr> <tr><td> <p>D3DXMESHOPT_VCACHE (1)</p> </td><td> <p>Vertex-cache based optimization</p> </td></tr> </table> <p>?</p> </dd>
  35384. </summary>
  35385. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_VCACHE::OptMethod']/*" />
  35386. <msdn-id>ff544702</msdn-id>
  35387. <unmanaged>unsigned int OptMethod</unmanaged>
  35388. <unmanaged-short>unsigned int OptMethod</unmanaged-short>
  35389. </member>
  35390. <member name="F:SharpDX.Direct3D9.VCache.CacheSize">
  35391. <summary>
  35392. <dd> <p>Specifies the effective size, in entries, for which the driver optimizes the vertex cache. The actual cache size is not required to be the size specified in <strong>CacheSize</strong> because in most cases the actual cache size turns out to be larger. The driver only specifies an optimized size in <strong>CacheSize</strong> if it also specifies D3DXMESHOPT_VCACHE in the <strong>OptMethod</strong> member.</p> </dd>
  35393. </summary>
  35394. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_VCACHE::CacheSize']/*" />
  35395. <msdn-id>ff544702</msdn-id>
  35396. <unmanaged>unsigned int CacheSize</unmanaged>
  35397. <unmanaged-short>unsigned int CacheSize</unmanaged-short>
  35398. </member>
  35399. <member name="F:SharpDX.Direct3D9.VCache.MagicNumber">
  35400. <summary>
  35401. <dd> <p>Specifies the number that should be used as part of a trial-and-error procedure when determining when to restart the strips list. This number can be set from 1 to the value in the <strong>CacheSize</strong> member. Typically, the best values are near <strong>CacheSize</strong>/2. </p> </dd>
  35402. </summary>
  35403. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_VCACHE::MagicNumber']/*" />
  35404. <msdn-id>ff544702</msdn-id>
  35405. <unmanaged>unsigned int MagicNumber</unmanaged>
  35406. <unmanaged-short>unsigned int MagicNumber</unmanaged-short>
  35407. </member>
  35408. <member name="T:SharpDX.Direct3D9.VertexBufferDescription">
  35409. <summary>
  35410. <p>Describes a vertex buffer.</p>
  35411. </summary>
  35412. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXBUFFER_DESC']/*" />
  35413. <msdn-id>bb172629</msdn-id>
  35414. <unmanaged>D3DVERTEXBUFFER_DESC</unmanaged>
  35415. <unmanaged-short>D3DVERTEXBUFFER_DESC</unmanaged-short>
  35416. </member>
  35417. <member name="F:SharpDX.Direct3D9.VertexBufferDescription.Format">
  35418. <summary>
  35419. <dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the surface format of the vertex buffer data.</p> </dd>
  35420. </summary>
  35421. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXBUFFER_DESC::Format']/*" />
  35422. <msdn-id>bb172629</msdn-id>
  35423. <unmanaged>D3DFORMAT Format</unmanaged>
  35424. <unmanaged-short>D3DFORMAT Format</unmanaged-short>
  35425. </member>
  35426. <member name="F:SharpDX.Direct3D9.VertexBufferDescription.Type">
  35427. <summary>
  35428. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.ResourceType" /></strong> enumerated type, identifying this resource as a vertex buffer.</p> </dd>
  35429. </summary>
  35430. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXBUFFER_DESC::Type']/*" />
  35431. <msdn-id>bb172629</msdn-id>
  35432. <unmanaged>D3DRESOURCETYPE Type</unmanaged>
  35433. <unmanaged-short>D3DRESOURCETYPE Type</unmanaged-short>
  35434. </member>
  35435. <member name="F:SharpDX.Direct3D9.VertexBufferDescription.Usage">
  35436. <summary>
  35437. <dd> <p>Combination of one or more <strong><see cref="T:SharpDX.Direct3D9.Usage" /></strong> flags.</p> </dd>
  35438. </summary>
  35439. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXBUFFER_DESC::Usage']/*" />
  35440. <msdn-id>bb172629</msdn-id>
  35441. <unmanaged>D3DUSAGE Usage</unmanaged>
  35442. <unmanaged-short>D3DUSAGE Usage</unmanaged-short>
  35443. </member>
  35444. <member name="F:SharpDX.Direct3D9.VertexBufferDescription.Pool">
  35445. <summary>
  35446. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, specifying the class of memory allocated for this vertex buffer.</p> </dd>
  35447. </summary>
  35448. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXBUFFER_DESC::Pool']/*" />
  35449. <msdn-id>bb172629</msdn-id>
  35450. <unmanaged>D3DPOOL Pool</unmanaged>
  35451. <unmanaged-short>D3DPOOL Pool</unmanaged-short>
  35452. </member>
  35453. <member name="F:SharpDX.Direct3D9.VertexBufferDescription.SizeInBytes">
  35454. <summary>
  35455. <dd> <p>Size of the vertex buffer, in bytes.</p> </dd>
  35456. </summary>
  35457. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXBUFFER_DESC::Size']/*" />
  35458. <msdn-id>bb172629</msdn-id>
  35459. <unmanaged>unsigned int Size</unmanaged>
  35460. <unmanaged-short>unsigned int Size</unmanaged-short>
  35461. </member>
  35462. <member name="F:SharpDX.Direct3D9.VertexBufferDescription.Fvf">
  35463. <summary>
  35464. <dd> <p>Combination of <see cref="T:SharpDX.Direct3D9.VertexFormat" /> that describes the vertex format of the vertices in this buffer.</p> </dd>
  35465. </summary>
  35466. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXBUFFER_DESC::FVF']/*" />
  35467. <msdn-id>bb172629</msdn-id>
  35468. <unmanaged>D3DFVF FVF</unmanaged>
  35469. <unmanaged-short>D3DFVF FVF</unmanaged-short>
  35470. </member>
  35471. <member name="T:SharpDX.Direct3D9.VertexElement">
  35472. <summary>
  35473. <p>Defines the vertex data layout. Each vertex can contain one or more data types, and each data type is described by a vertex element.</p>
  35474. </summary>
  35475. <remarks>
  35476. <p>Vertex data is defined using an array of <strong><see cref="T:SharpDX.Direct3D9.VertexElement" /></strong> structures. Use <strong>D3DDECL_END</strong> to declare the last element in the declaration. </p>
  35477. </remarks>
  35478. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXELEMENT9']/*" />
  35479. <msdn-id>bb172630</msdn-id>
  35480. <unmanaged>D3DVERTEXELEMENT9</unmanaged>
  35481. <unmanaged-short>D3DVERTEXELEMENT9</unmanaged-short>
  35482. </member>
  35483. <member name="F:SharpDX.Direct3D9.VertexElement.Stream">
  35484. <summary>
  35485. <dd> <p>Stream number.</p> </dd>
  35486. </summary>
  35487. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXELEMENT9::Stream']/*" />
  35488. <msdn-id>bb172630</msdn-id>
  35489. <unmanaged>unsigned short Stream</unmanaged>
  35490. <unmanaged-short>unsigned short Stream</unmanaged-short>
  35491. </member>
  35492. <member name="F:SharpDX.Direct3D9.VertexElement.Offset">
  35493. <summary>
  35494. <dd> <p>Offset from the beginning of the vertex data to the data associated with the particular data type.</p> </dd>
  35495. </summary>
  35496. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXELEMENT9::Offset']/*" />
  35497. <msdn-id>bb172630</msdn-id>
  35498. <unmanaged>unsigned short Offset</unmanaged>
  35499. <unmanaged-short>unsigned short Offset</unmanaged-short>
  35500. </member>
  35501. <member name="F:SharpDX.Direct3D9.VertexElement.Type">
  35502. <summary>
  35503. <dd> <p>The data type, specified as a <strong><see cref="T:SharpDX.Direct3D9.DeclarationType" /></strong>. One of several predefined types that define the data size. Some methods have an implied type.</p> </dd>
  35504. </summary>
  35505. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXELEMENT9::Type']/*" />
  35506. <msdn-id>bb172630</msdn-id>
  35507. <unmanaged>D3DDECLTYPE Type</unmanaged>
  35508. <unmanaged-short>D3DDECLTYPE Type</unmanaged-short>
  35509. </member>
  35510. <member name="F:SharpDX.Direct3D9.VertexElement.Method">
  35511. <summary>
  35512. <dd> <p>The method specifies the tessellator processing, which determines how the tessellator interprets (or operates on) the vertex data. For more information, see <strong><see cref="T:SharpDX.Direct3D9.DeclarationMethod" /></strong>.</p> </dd>
  35513. </summary>
  35514. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXELEMENT9::Method']/*" />
  35515. <msdn-id>bb172630</msdn-id>
  35516. <unmanaged>D3DDECLMETHOD Method</unmanaged>
  35517. <unmanaged-short>D3DDECLMETHOD Method</unmanaged-short>
  35518. </member>
  35519. <member name="F:SharpDX.Direct3D9.VertexElement.Usage">
  35520. <summary>
  35521. <dd> <p>Defines what the data will be used for; that is, the interoperability between vertex data layouts and vertex shaders. Each usage acts to bind a vertex declaration to a vertex shader. In some cases, they have a special interpretation. For example, an element that specifies <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Normal" /> or <see cref="F:SharpDX.Direct3D9.DeclarationUsage.Position" /> is used by the N-patch tessellator to set up tessellation. See <strong><see cref="T:SharpDX.Direct3D9.DeclarationUsage" /></strong> for a list of the available semantics. <see cref="F:SharpDX.Direct3D9.DeclarationUsage.TextureCoordinate" /> can be used for user-defined fields (which don't have an existing usage defined).</p> </dd>
  35522. </summary>
  35523. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXELEMENT9::Usage']/*" />
  35524. <msdn-id>bb172630</msdn-id>
  35525. <unmanaged>D3DDECLUSAGE Usage</unmanaged>
  35526. <unmanaged-short>D3DDECLUSAGE Usage</unmanaged-short>
  35527. </member>
  35528. <member name="F:SharpDX.Direct3D9.VertexElement.UsageIndex">
  35529. <summary>
  35530. <dd> <p>Modifies the usage data to allow the user to specify multiple usage types.</p> </dd>
  35531. </summary>
  35532. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVERTEXELEMENT9::UsageIndex']/*" />
  35533. <msdn-id>bb172630</msdn-id>
  35534. <unmanaged>unsigned char UsageIndex</unmanaged>
  35535. <unmanaged-short>unsigned char UsageIndex</unmanaged-short>
  35536. </member>
  35537. <member name="F:SharpDX.Direct3D9.VertexElement.VertexDeclarationEnd">
  35538. <summary>
  35539. Used for closing a VertexElement declaration.
  35540. </summary>
  35541. </member>
  35542. <member name="M:SharpDX.Direct3D9.VertexElement.#cctor">
  35543. <summary>
  35544. Initializes the <see cref="T:SharpDX.Direct3D9.VertexElement"/> struct.
  35545. </summary>
  35546. </member>
  35547. <member name="M:SharpDX.Direct3D9.VertexElement.#ctor(System.Int16,System.Int16,SharpDX.Direct3D9.DeclarationType,SharpDX.Direct3D9.DeclarationMethod,SharpDX.Direct3D9.DeclarationUsage,System.Byte)">
  35548. <summary>
  35549. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.VertexElement"/> struct.
  35550. </summary>
  35551. <param name="stream">The stream.</param>
  35552. <param name="offset">The offset.</param>
  35553. <param name="type">The type.</param>
  35554. <param name="method">The method.</param>
  35555. <param name="usage">The usage.</param>
  35556. <param name="usageIndex">Index of the usage.</param>
  35557. </member>
  35558. <member name="T:SharpDX.Direct3D9.VertexShader20Caps">
  35559. <summary>
  35560. <p>Vertex shader caps.</p>
  35561. </summary>
  35562. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVSHADERCAPS2_0']/*" />
  35563. <msdn-id>bb172635</msdn-id>
  35564. <unmanaged>D3DVSHADERCAPS2_0</unmanaged>
  35565. <unmanaged-short>D3DVSHADERCAPS2_0</unmanaged-short>
  35566. </member>
  35567. <member name="F:SharpDX.Direct3D9.VertexShader20Caps.Caps">
  35568. <summary>
  35569. <dd> <p>Instruction predication is supported if this value is nonzero. See setp_comp - vs.</p> </dd>
  35570. </summary>
  35571. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVSHADERCAPS2_0::Caps']/*" />
  35572. <msdn-id>bb172635</msdn-id>
  35573. <unmanaged>D3DVS20CAPS Caps</unmanaged>
  35574. <unmanaged-short>D3DVS20CAPS Caps</unmanaged-short>
  35575. </member>
  35576. <member name="F:SharpDX.Direct3D9.VertexShader20Caps.DynamicFlowControlDepth">
  35577. <summary>
  35578. <dd> <p> Either 0 or 24, which represents the depth of the dynamic flow control instruction nesting. See <see cref="T:SharpDX.Direct3D9.VertexShaderCaps" />.</p> </dd>
  35579. </summary>
  35580. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVSHADERCAPS2_0::DynamicFlowControlDepth']/*" />
  35581. <msdn-id>bb172635</msdn-id>
  35582. <unmanaged>int DynamicFlowControlDepth</unmanaged>
  35583. <unmanaged-short>int DynamicFlowControlDepth</unmanaged-short>
  35584. </member>
  35585. <member name="F:SharpDX.Direct3D9.VertexShader20Caps.TempCount">
  35586. <summary>
  35587. <dd> <p>The number of temporary registers supported. See <see cref="T:SharpDX.Direct3D9.VertexShaderCaps" />.</p> </dd>
  35588. </summary>
  35589. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVSHADERCAPS2_0::NumTemps']/*" />
  35590. <msdn-id>bb172635</msdn-id>
  35591. <unmanaged>int NumTemps</unmanaged>
  35592. <unmanaged-short>int NumTemps</unmanaged-short>
  35593. </member>
  35594. <member name="F:SharpDX.Direct3D9.VertexShader20Caps.StaticFlowControlDepth">
  35595. <summary>
  35596. <dd> <p>The depth of nesting of the loop - vs/rep - vs and call - vs/callnz bool - vs instructions. See <see cref="T:SharpDX.Direct3D9.VertexShaderCaps" />.</p> </dd>
  35597. </summary>
  35598. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVSHADERCAPS2_0::StaticFlowControlDepth']/*" />
  35599. <msdn-id>bb172635</msdn-id>
  35600. <unmanaged>int StaticFlowControlDepth</unmanaged>
  35601. <unmanaged-short>int StaticFlowControlDepth</unmanaged-short>
  35602. </member>
  35603. <member name="T:SharpDX.Direct3D9.VertexStats">
  35604. <summary>
  35605. <p>Reports the number of triangles that have been processed and clipped by the runtime's software vertex processing.</p>
  35606. </summary>
  35607. <remarks>
  35608. <p>Use the debug runtime and software vertex processing to get the number of non-clipped and clipped primitives for a particular scene. Primitives will typically be clipped based on a guard band (if one is present). The clipping guard band is set with parameters such as GuardBandLeft in <strong><see cref="T:SharpDX.Direct3D9.Capabilities" /></strong>.</p>
  35609. </remarks>
  35610. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3DVERTEXSTATS']/*" />
  35611. <msdn-id>bb172544</msdn-id>
  35612. <unmanaged>D3DDEVINFO_D3DVERTEXSTATS</unmanaged>
  35613. <unmanaged-short>D3DDEVINFO_D3DVERTEXSTATS</unmanaged-short>
  35614. </member>
  35615. <member name="F:SharpDX.Direct3D9.VertexStats.NumRenderedTriangles">
  35616. <summary>
  35617. <dd> <p>Total number of triangles that are not clipped in this frame.</p> </dd>
  35618. </summary>
  35619. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3DVERTEXSTATS::NumRenderedTriangles']/*" />
  35620. <msdn-id>bb172544</msdn-id>
  35621. <unmanaged>unsigned int NumRenderedTriangles</unmanaged>
  35622. <unmanaged-short>unsigned int NumRenderedTriangles</unmanaged-short>
  35623. </member>
  35624. <member name="F:SharpDX.Direct3D9.VertexStats.NumExtraClippingTriangles">
  35625. <summary>
  35626. <dd> <p>Number of new triangles generated by clipping.</p> </dd>
  35627. </summary>
  35628. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DDEVINFO_D3DVERTEXSTATS::NumExtraClippingTriangles']/*" />
  35629. <msdn-id>bb172544</msdn-id>
  35630. <unmanaged>unsigned int NumExtraClippingTriangles</unmanaged>
  35631. <unmanaged-short>unsigned int NumExtraClippingTriangles</unmanaged-short>
  35632. </member>
  35633. <member name="T:SharpDX.Direct3D9.VolumeDescription">
  35634. <summary>
  35635. <p>Describes a volume.</p>
  35636. </summary>
  35637. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVOLUME_DESC']/*" />
  35638. <msdn-id>bb172633</msdn-id>
  35639. <unmanaged>D3DVOLUME_DESC</unmanaged>
  35640. <unmanaged-short>D3DVOLUME_DESC</unmanaged-short>
  35641. </member>
  35642. <member name="F:SharpDX.Direct3D9.VolumeDescription.Format">
  35643. <summary>
  35644. <dd> <p>Member of the <see cref="T:SharpDX.Direct3D9.Format" /> enumerated type, describing the surface format of the volume. </p> </dd>
  35645. </summary>
  35646. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVOLUME_DESC::Format']/*" />
  35647. <msdn-id>bb172633</msdn-id>
  35648. <unmanaged>D3DFORMAT Format</unmanaged>
  35649. <unmanaged-short>D3DFORMAT Format</unmanaged-short>
  35650. </member>
  35651. <member name="F:SharpDX.Direct3D9.VolumeDescription.Type">
  35652. <summary>
  35653. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.ResourceType" /></strong> enumerated type, identifying this resource as a volume. </p> </dd>
  35654. </summary>
  35655. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVOLUME_DESC::Type']/*" />
  35656. <msdn-id>bb172633</msdn-id>
  35657. <unmanaged>D3DRESOURCETYPE Type</unmanaged>
  35658. <unmanaged-short>D3DRESOURCETYPE Type</unmanaged-short>
  35659. </member>
  35660. <member name="F:SharpDX.Direct3D9.VolumeDescription.Usage">
  35661. <summary>
  35662. <dd> <p>Currently not used. Always returned as 0. </p> </dd>
  35663. </summary>
  35664. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVOLUME_DESC::Usage']/*" />
  35665. <msdn-id>bb172633</msdn-id>
  35666. <unmanaged>D3DUSAGE Usage</unmanaged>
  35667. <unmanaged-short>D3DUSAGE Usage</unmanaged-short>
  35668. </member>
  35669. <member name="F:SharpDX.Direct3D9.VolumeDescription.Pool">
  35670. <summary>
  35671. <dd> <p>Member of the <strong><see cref="T:SharpDX.Direct3D9.Pool" /></strong> enumerated type, specifying the class of memory allocated for this volume. </p> </dd>
  35672. </summary>
  35673. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVOLUME_DESC::Pool']/*" />
  35674. <msdn-id>bb172633</msdn-id>
  35675. <unmanaged>D3DPOOL Pool</unmanaged>
  35676. <unmanaged-short>D3DPOOL Pool</unmanaged-short>
  35677. </member>
  35678. <member name="F:SharpDX.Direct3D9.VolumeDescription.Width">
  35679. <summary>
  35680. <dd> <p>Width of the volume, in pixels. </p> </dd>
  35681. </summary>
  35682. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVOLUME_DESC::Width']/*" />
  35683. <msdn-id>bb172633</msdn-id>
  35684. <unmanaged>unsigned int Width</unmanaged>
  35685. <unmanaged-short>unsigned int Width</unmanaged-short>
  35686. </member>
  35687. <member name="F:SharpDX.Direct3D9.VolumeDescription.Height">
  35688. <summary>
  35689. <dd> <p>Height of the volume, in pixels. </p> </dd>
  35690. </summary>
  35691. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVOLUME_DESC::Height']/*" />
  35692. <msdn-id>bb172633</msdn-id>
  35693. <unmanaged>unsigned int Height</unmanaged>
  35694. <unmanaged-short>unsigned int Height</unmanaged-short>
  35695. </member>
  35696. <member name="F:SharpDX.Direct3D9.VolumeDescription.Depth">
  35697. <summary>
  35698. <dd> <p>Depth of the volume, in pixels. </p> </dd>
  35699. </summary>
  35700. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DVOLUME_DESC::Depth']/*" />
  35701. <msdn-id>bb172633</msdn-id>
  35702. <unmanaged>unsigned int Depth</unmanaged>
  35703. <unmanaged-short>unsigned int Depth</unmanaged-short>
  35704. </member>
  35705. <member name="T:SharpDX.Direct3D9.WeldEpsilons">
  35706. <summary>
  35707. <p>Specifies tolerance values for each vertex component when comparing vertices to determine if they are similar enough to be welded together.</p>
  35708. </summary>
  35709. <remarks>
  35710. <p>The LPD3DXWELDEPSILONS type is defined as a reference to the <strong><see cref="T:SharpDX.Direct3D9.WeldEpsilons" /></strong> structure.</p><pre> typedef <see cref="T:SharpDX.Direct3D9.WeldEpsilons" /> *LPD3DXWELDEPSILONS;
  35711. </pre>
  35712. </remarks>
  35713. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS']/*" />
  35714. <msdn-id>bb205560</msdn-id>
  35715. <unmanaged>D3DXWELDEPSILONS</unmanaged>
  35716. <unmanaged-short>D3DXWELDEPSILONS</unmanaged-short>
  35717. </member>
  35718. <member name="F:SharpDX.Direct3D9.WeldEpsilons.Position">
  35719. <summary>
  35720. <dd> <p>Position</p> </dd>
  35721. </summary>
  35722. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS::Position']/*" />
  35723. <msdn-id>bb205560</msdn-id>
  35724. <unmanaged>float Position</unmanaged>
  35725. <unmanaged-short>float Position</unmanaged-short>
  35726. </member>
  35727. <member name="F:SharpDX.Direct3D9.WeldEpsilons.BlendWeights">
  35728. <summary>
  35729. <dd> <p>Blend weight</p> </dd>
  35730. </summary>
  35731. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS::BlendWeights']/*" />
  35732. <msdn-id>bb205560</msdn-id>
  35733. <unmanaged>float BlendWeights</unmanaged>
  35734. <unmanaged-short>float BlendWeights</unmanaged-short>
  35735. </member>
  35736. <member name="F:SharpDX.Direct3D9.WeldEpsilons.Normal">
  35737. <summary>
  35738. <dd> <p>Normal</p> </dd>
  35739. </summary>
  35740. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS::Normal']/*" />
  35741. <msdn-id>bb205560</msdn-id>
  35742. <unmanaged>float Normal</unmanaged>
  35743. <unmanaged-short>float Normal</unmanaged-short>
  35744. </member>
  35745. <member name="F:SharpDX.Direct3D9.WeldEpsilons.PSize">
  35746. <summary>
  35747. <dd> <p>Point size value</p> </dd>
  35748. </summary>
  35749. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS::PSize']/*" />
  35750. <msdn-id>bb205560</msdn-id>
  35751. <unmanaged>float PSize</unmanaged>
  35752. <unmanaged-short>float PSize</unmanaged-short>
  35753. </member>
  35754. <member name="F:SharpDX.Direct3D9.WeldEpsilons.Specular">
  35755. <summary>
  35756. <dd> <p>Specular lighting value</p> </dd>
  35757. </summary>
  35758. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS::Specular']/*" />
  35759. <msdn-id>bb205560</msdn-id>
  35760. <unmanaged>float Specular</unmanaged>
  35761. <unmanaged-short>float Specular</unmanaged-short>
  35762. </member>
  35763. <member name="F:SharpDX.Direct3D9.WeldEpsilons.Diffuse">
  35764. <summary>
  35765. <dd> <p>Diffuse lighting value</p> </dd>
  35766. </summary>
  35767. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS::Diffuse']/*" />
  35768. <msdn-id>bb205560</msdn-id>
  35769. <unmanaged>float Diffuse</unmanaged>
  35770. <unmanaged-short>float Diffuse</unmanaged-short>
  35771. </member>
  35772. <member name="P:SharpDX.Direct3D9.WeldEpsilons.Texcoord">
  35773. <summary>
  35774. <dd> <p>Eight texture coordinates</p> </dd>
  35775. </summary>
  35776. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS::Texcoord']/*" />
  35777. <msdn-id>bb205560</msdn-id>
  35778. <unmanaged>float Texcoord[8]</unmanaged>
  35779. <unmanaged-short>float Texcoord</unmanaged-short>
  35780. </member>
  35781. <member name="F:SharpDX.Direct3D9.WeldEpsilons.Tangent">
  35782. <summary>
  35783. <dd> <p>Tangent</p> </dd>
  35784. </summary>
  35785. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS::Tangent']/*" />
  35786. <msdn-id>bb205560</msdn-id>
  35787. <unmanaged>float Tangent</unmanaged>
  35788. <unmanaged-short>float Tangent</unmanaged-short>
  35789. </member>
  35790. <member name="F:SharpDX.Direct3D9.WeldEpsilons.Binormal">
  35791. <summary>
  35792. <dd> <p>Binormal</p> </dd>
  35793. </summary>
  35794. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS::Binormal']/*" />
  35795. <msdn-id>bb205560</msdn-id>
  35796. <unmanaged>float Binormal</unmanaged>
  35797. <unmanaged-short>float Binormal</unmanaged-short>
  35798. </member>
  35799. <member name="F:SharpDX.Direct3D9.WeldEpsilons.TessFactor">
  35800. <summary>
  35801. <dd> <p>Tessellation factor</p> </dd>
  35802. </summary>
  35803. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='D3DXWELDEPSILONS::TessFactor']/*" />
  35804. <msdn-id>bb205560</msdn-id>
  35805. <unmanaged>float TessFactor</unmanaged>
  35806. <unmanaged-short>float TessFactor</unmanaged-short>
  35807. </member>
  35808. <member name="T:SharpDX.Direct3D9.Xfilecompressedanimationset">
  35809. <summary>
  35810. <p>Identifies compressed key frame animation data.</p>
  35811. </summary>
  35812. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='XFILECOMPRESSEDANIMATIONSET']/*" />
  35813. <msdn-id>bb174824</msdn-id>
  35814. <unmanaged>XFILECOMPRESSEDANIMATIONSET</unmanaged>
  35815. <unmanaged-short>XFILECOMPRESSEDANIMATIONSET</unmanaged-short>
  35816. </member>
  35817. <member name="F:SharpDX.Direct3D9.Xfilecompressedanimationset.CompressedBlockSize">
  35818. <summary>
  35819. <dd> <p>Total size, in bytes, of the compressed data in the compressed key frame animation data buffer.</p> </dd>
  35820. </summary>
  35821. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='XFILECOMPRESSEDANIMATIONSET::CompressedBlockSize']/*" />
  35822. <msdn-id>bb174824</msdn-id>
  35823. <unmanaged>unsigned int CompressedBlockSize</unmanaged>
  35824. <unmanaged-short>unsigned int CompressedBlockSize</unmanaged-short>
  35825. </member>
  35826. <member name="F:SharpDX.Direct3D9.Xfilecompressedanimationset.TicksPerSec">
  35827. <summary>
  35828. <dd> <p>Number of animation key frame ticks that occur per second.</p> </dd>
  35829. </summary>
  35830. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='XFILECOMPRESSEDANIMATIONSET::TicksPerSec']/*" />
  35831. <msdn-id>bb174824</msdn-id>
  35832. <unmanaged>float TicksPerSec</unmanaged>
  35833. <unmanaged-short>float TicksPerSec</unmanaged-short>
  35834. </member>
  35835. <member name="F:SharpDX.Direct3D9.Xfilecompressedanimationset.PlaybackType">
  35836. <summary>
  35837. <dd> <p>Type of the animation set playback loop. See <strong><see cref="T:SharpDX.Direct3D9.PlaybackType" /></strong>.</p> </dd>
  35838. </summary>
  35839. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='XFILECOMPRESSEDANIMATIONSET::PlaybackType']/*" />
  35840. <msdn-id>bb174824</msdn-id>
  35841. <unmanaged>unsigned int PlaybackType</unmanaged>
  35842. <unmanaged-short>unsigned int PlaybackType</unmanaged-short>
  35843. </member>
  35844. <member name="F:SharpDX.Direct3D9.Xfilecompressedanimationset.BufferLength">
  35845. <summary>
  35846. <dd> <p>Minimum buffer size, in bytes, required to hold compressed key frame animation data. Value is equal to ( ( CompressedBlockSize + 3 ) / 4 ).</p> </dd>
  35847. </summary>
  35848. <!-- No matching elements were found for the following include tag --><include file=".\..\Documentation\CodeComments.xml" path="/comments/comment[@id='XFILECOMPRESSEDANIMATIONSET::BufferLength']/*" />
  35849. <msdn-id>bb174824</msdn-id>
  35850. <unmanaged>unsigned int BufferLength</unmanaged>
  35851. <unmanaged-short>unsigned int BufferLength</unmanaged-short>
  35852. </member>
  35853. <member name="T:SharpDX.Direct3D9.IncludeShadow">
  35854. <summary>
  35855. Shadow callback for <see cref="T:SharpDX.Direct3D9.Include"/>.
  35856. </summary>
  35857. </member>
  35858. <member name="M:SharpDX.Direct3D9.IncludeShadow.ToIntPtr(SharpDX.Direct3D9.Include)">
  35859. <summary>
  35860. Return a pointer to the unmanaged version of this callback.
  35861. </summary>
  35862. <param name="callback">The callback.</param>
  35863. <returns>A pointer to a shadow c++ callback</returns>
  35864. </member>
  35865. <member name="T:SharpDX.Direct3D9.IncludeShadow.IncludeVtbl">
  35866. <summary>
  35867. Internal Include Callback
  35868. </summary>
  35869. </member>
  35870. <member name="T:SharpDX.Direct3D9.IncludeShadow.IncludeVtbl.OpenDelegate">
  35871. <summary>
  35872. A user-implemented method for opening and reading the contents of a shader #include file.
  35873. </summary>
  35874. <param name="thisPtr">This pointer</param>
  35875. <param name="includeType">A <see cref="T:SharpDX.Direct3D9.IncludeType"/>-typed value that indicates the location of the #include file. </param>
  35876. <param name="fileNameRef">Name of the #include file.</param>
  35877. <param name="pParentData">Pointer to the container that includes the #include file.</param>
  35878. <param name="dataRef">Pointer to the buffer that Open returns that contains the include directives. This pointer remains valid until <see cref="M:SharpDX.Direct3D9.Include.Close(System.IO.Stream)"/> is called.</param>
  35879. <param name="bytesRef">Pointer to the number of bytes that Open returns in ppData.</param>
  35880. <returns>The user-implemented method should return S_OK. If Open fails when reading the #include file, the application programming interface (API) that caused Open to be called fails. This failure can occur in one of the following situations:The high-level shader language (HLSL) shader fails one of the D3D10CompileShader*** functions.The effect fails one of the D3D10CreateEffect*** functions.</returns>
  35881. <unmanaged>HRESULT Open([None] D3D_INCLUDE_TYPE IncludeType,[None] const char* pFileName,[None] LPCVOID pParentData,[None] LPCVOID* ppData,[None] UINT* pBytes)</unmanaged>
  35882. </member>
  35883. <member name="T:SharpDX.Direct3D9.IncludeShadow.IncludeVtbl.CloseDelegate">
  35884. <summary>
  35885. A user-implemented method for closing a shader #include file.
  35886. </summary>
  35887. <remarks>
  35888. If <see cref="M:SharpDX.Direct3D9.Include.Open(SharpDX.Direct3D9.IncludeType,System.String,System.IO.Stream)"/> was successful, Close is guaranteed to be called before the API using the <see cref="T:SharpDX.Direct3D9.Include"/> interface returns.
  35889. </remarks>
  35890. <param name="thisPtr">This pointer</param>
  35891. <param name="pData">Pointer to the buffer that contains the include directives. This is the pointer that was returned by the corresponding <see cref="M:SharpDX.Direct3D9.Include.Open(SharpDX.Direct3D9.IncludeType,System.String,System.IO.Stream)"/> call.</param>
  35892. <returns>The user-implemented Close method should return S_OK. If Close fails when it closes the #include file, the application programming interface (API) that caused Close to be called fails. This failure can occur in one of the following situations:The high-level shader language (HLSL) shader fails one of the D3D10CompileShader*** functions.The effect fails one of the D3D10CreateEffect*** functions.</returns>
  35893. <unmanaged>HRESULT Close([None] LPCVOID pData)</unmanaged>
  35894. </member>
  35895. <member name="T:SharpDX.Direct3D9.ModuleInit">
  35896. <summary>
  35897. Internal class used to initialize this assembly.
  35898. </summary>
  35899. </member>
  35900. <member name="M:SharpDX.Direct3D9.ModuleInit.Setup">
  35901. <summary>
  35902. Initializes this assembly.
  35903. </summary>
  35904. <remarks>
  35905. This method is called when the assembly is loaded.
  35906. </remarks>
  35907. </member>
  35908. <member name="T:SharpDX.Direct3D9.NamespaceDoc">
  35909. <summary>
  35910. The <see cref="N:SharpDX.Direct3D9"/> namespace provides a managed Direct3D9 API.
  35911. </summary>
  35912. <msdn-id>bb219837</msdn-id>
  35913. <unmanaged>Direct3D9</unmanaged>
  35914. <unmanaged-short>Direct3D9</unmanaged-short>
  35915. </member>
  35916. <member name="T:SharpDX.Direct3D9.PaletteEntry">
  35917. <summary>The PaletteEntry struct contains the color and usage of an entry in a logical palette. </summary>
  35918. <unmanaged>PALETTEENTRY</unmanaged>
  35919. </member>
  35920. <member name="F:SharpDX.Direct3D9.PaletteEntry.Red">
  35921. <summary>
  35922. The red intensity value for the palette entry.
  35923. </summary>
  35924. </member>
  35925. <member name="F:SharpDX.Direct3D9.PaletteEntry.Green">
  35926. <summary>
  35927. The green intensity value for the palette entry.
  35928. </summary>
  35929. </member>
  35930. <member name="F:SharpDX.Direct3D9.PaletteEntry.Blue">
  35931. <summary>
  35932. The blue intensity value for the palette entry.
  35933. </summary>
  35934. </member>
  35935. <member name="F:SharpDX.Direct3D9.PaletteEntry.Flags">
  35936. <summary>
  35937. Indicates how the palette entry is to be used.
  35938. TODO define an enum for flags
  35939. </summary>
  35940. </member>
  35941. <member name="T:SharpDX.Direct3D9.ShaderBytecode">
  35942. <summary>
  35943. Represents the compiled bytecode of a shader or effect.
  35944. </summary>
  35945. <unmanaged>Blob</unmanaged>
  35946. </member>
  35947. <member name="M:SharpDX.Direct3D9.ShaderBytecode.#ctor(SharpDX.DataStream)">
  35948. <summary>
  35949. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D9.ShaderBytecode" /> class.
  35950. </summary>
  35951. <param name = "data">A <see cref = "T:SharpDX.DataStream" /> containing the compiled bytecode.</param>
  35952. </member>
  35953. <member name="M:SharpDX.Direct3D9.ShaderBytecode.#ctor(System.IO.Stream)">
  35954. <summary>
  35955. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D9.ShaderBytecode" /> class.
  35956. </summary>
  35957. <param name = "data">A <see cref = "T:System.IO.Stream" /> containing the compiled bytecode.</param>
  35958. </member>
  35959. <member name="M:SharpDX.Direct3D9.ShaderBytecode.#ctor(System.Byte[])">
  35960. <summary>
  35961. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.ShaderBytecode"/> class.
  35962. </summary>
  35963. <param name="buffer">The buffer.</param>
  35964. </member>
  35965. <member name="M:SharpDX.Direct3D9.ShaderBytecode.#ctor(System.IntPtr,System.Int32)">
  35966. <summary>
  35967. Initializes a new instance of the <see cref = "T:SharpDX.Direct3D9.ShaderBytecode" /> class.
  35968. </summary>
  35969. <param name = "buffer">a pointer to a compiler bytecode</param>
  35970. <param name = "sizeInBytes">size of the bytecode</param>
  35971. </member>
  35972. <member name="M:SharpDX.Direct3D9.ShaderBytecode.#ctor(SharpDX.Direct3D.Blob)">
  35973. <summary>
  35974. Initializes a new instance of the <see cref="T:SharpDX.Direct3D9.ShaderBytecode"/> class.
  35975. </summary>
  35976. <param name="blob">The BLOB.</param>
  35977. </member>
  35978. <member name="P:SharpDX.Direct3D9.ShaderBytecode.BufferPointer">
  35979. <summary>
  35980. Gets the buffer pointer.
  35981. </summary>
  35982. </member>
  35983. <member name="P:SharpDX.Direct3D9.ShaderBytecode.BufferSize">
  35984. <summary>
  35985. Gets or sets the size of the buffer.
  35986. </summary>
  35987. <value>
  35988. The size of the buffer.
  35989. </value>
  35990. </member>
  35991. <member name="P:SharpDX.Direct3D9.ShaderBytecode.ConstantTable">
  35992. <summary>
  35993. Gets the shader constant table.
  35994. </summary>
  35995. <unmanaged>HRESULT D3DXGetShaderConstantTable([In] const void* pFunction,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  35996. </member>
  35997. <member name="P:SharpDX.Direct3D9.ShaderBytecode.Version">
  35998. <summary>
  35999. Gets the version of the shader.
  36000. </summary>
  36001. <unmanaged>unsigned int D3DXGetShaderVersion([In] const void* pFunction)</unmanaged>
  36002. </member>
  36003. <member name="M:SharpDX.Direct3D9.ShaderBytecode.GetShaderSize(System.IntPtr)">
  36004. <summary>
  36005. Gets the size of the shader from a function pointer.
  36006. </summary>
  36007. <param name="shaderFunctionPtr">The shader function pointer.</param>
  36008. <returns>Size of the shader</returns>
  36009. </member>
  36010. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Assemble(System.Byte[],SharpDX.Direct3D9.ShaderFlags)">
  36011. <summary>
  36012. Assembles a shader from the given source data.
  36013. </summary>
  36014. <param name="sourceData">The source shader data.</param>
  36015. <param name="flags">Compilation options.</param>
  36016. <returns>A <see cref="T:SharpDX.Direct3D9.ShaderBytecode" /> object representing the raw shader stream.</returns>
  36017. <unmanaged>HRESULT D3DXAssembleShader([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36018. </member>
  36019. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Assemble(System.String,SharpDX.Direct3D9.ShaderFlags)">
  36020. <summary>
  36021. Assembles a shader from the given source data.
  36022. </summary>
  36023. <param name="sourceData">The source shader data.</param>
  36024. <param name="flags">Compilation options.</param>
  36025. <returns>A <see cref="T:SharpDX.Direct3D9.CompilationResult" /> object representing the raw shader stream.</returns>
  36026. <unmanaged>HRESULT D3DXAssembleShader([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36027. </member>
  36028. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Assemble(System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,SharpDX.Direct3D9.ShaderFlags)">
  36029. <summary>
  36030. Assembles a shader from the given source data.
  36031. </summary>
  36032. <param name="sourceData">The source shader data.</param>
  36033. <param name="defines">Macro definitions.</param>
  36034. <param name="includeFile">An <see cref="T:SharpDX.Direct3D9.Include" /> interface to use for handling #include directives.</param>
  36035. <param name="flags">Compilation options.</param>
  36036. <returns>A <see cref="T:SharpDX.Direct3D9.CompilationResult" /> object representing the raw shader stream.</returns>
  36037. <unmanaged>HRESULT D3DXAssembleShader([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36038. </member>
  36039. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Assemble(System.Byte[],SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,SharpDX.Direct3D9.ShaderFlags)">
  36040. <summary>
  36041. Assembles a shader from the given source data.
  36042. </summary>
  36043. <param name="sourceData">The source shader data.</param>
  36044. <param name="defines">Macro definitions.</param>
  36045. <param name="includeFile">An <see cref="T:SharpDX.Direct3D9.Include" /> interface to use for handling #include directives.</param>
  36046. <param name="flags">Compilation options.</param>
  36047. <returns>A <see cref="T:SharpDX.Direct3D9.CompilationResult" /> object representing the raw shader stream.</returns>
  36048. <unmanaged>HRESULT D3DXAssembleShader([In] const void* pSrcData,[In] unsigned int SrcDataLen,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36049. </member>
  36050. <member name="M:SharpDX.Direct3D9.ShaderBytecode.AssembleFromFile(System.String,SharpDX.Direct3D9.ShaderFlags)">
  36051. <summary>
  36052. Assembles a shader from file.
  36053. </summary>
  36054. <param name="fileName">Name of the shader file.</param>
  36055. <param name="flags">Compilation options.</param>
  36056. <returns>A <see cref="T:SharpDX.Direct3D9.CompilationResult" /> object representing the raw shader stream.</returns>
  36057. </member>
  36058. <member name="M:SharpDX.Direct3D9.ShaderBytecode.AssembleFromFile(System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,SharpDX.Direct3D9.ShaderFlags)">
  36059. <summary>
  36060. Assembles a shader from file.
  36061. </summary>
  36062. <param name="fileName">Name of the shader file.</param>
  36063. <param name="defines">Macro definitions.</param>
  36064. <param name="includeFile">An <see cref="T:SharpDX.Direct3D9.Include"/> interface to use for handling #include directives.</param>
  36065. <param name="flags">Compilation options.</param>
  36066. <returns>
  36067. A <see cref="T:SharpDX.Direct3D9.CompilationResult"/> object representing the raw shader stream.
  36068. </returns>
  36069. </member>
  36070. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Compile(System.String,System.String,SharpDX.Direct3D9.ShaderFlags)">
  36071. <summary>
  36072. Compiles the provided shader or effect source.
  36073. </summary>
  36074. <param name="shaderSource">A string containing the source of the shader or effect to compile.</param>
  36075. <param name="profile">The shader target or set of shader features to compile against.</param>
  36076. <param name="shaderFlags">Shader compilation options.</param>
  36077. <returns>
  36078. The compiled shader bytecode, or <c>null</c> if the method fails.
  36079. </returns>
  36080. <unmanaged>HRESULT D3DXCompileShader([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  36081. </member>
  36082. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Compile(System.Byte[],System.String,SharpDX.Direct3D9.ShaderFlags)">
  36083. <summary>
  36084. Compiles the provided shader or effect source.
  36085. </summary>
  36086. <param name="shaderSource">An array of bytes containing the raw source of the shader or effect to compile.</param>
  36087. <param name="profile">The shader target or set of shader features to compile against.</param>
  36088. <param name="shaderFlags">Shader compilation options.</param>
  36089. <returns>
  36090. The compiled shader bytecode, or <c>null</c> if the method fails.
  36091. </returns>
  36092. <unmanaged>HRESULT D3DXCompileShader([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  36093. </member>
  36094. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Compile(System.String,System.String,System.String,SharpDX.Direct3D9.ShaderFlags)">
  36095. <summary>
  36096. Compiles the provided shader or effect source.
  36097. </summary>
  36098. <param name="shaderSource">A string containing the source of the shader or effect to compile.</param>
  36099. <param name="entryPoint">The name of the shader entry-point function, or <c>null</c> for an effect file.</param>
  36100. <param name="profile">The shader target or set of shader features to compile against.</param>
  36101. <param name="shaderFlags">Shader compilation options.</param>
  36102. <returns>
  36103. The compiled shader bytecode, or <c>null</c> if the method fails.
  36104. </returns>
  36105. <unmanaged>HRESULT D3DXCompileShader([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  36106. </member>
  36107. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Compile(System.Byte[],System.String,System.String,SharpDX.Direct3D9.ShaderFlags)">
  36108. <summary>
  36109. Compiles the provided shader or effect source.
  36110. </summary>
  36111. <param name="shaderSource">An array of bytes containing the raw source of the shader or effect to compile.</param>
  36112. <param name="entryPoint">The name of the shader entry-point function, or <c>null</c> for an effect file.</param>
  36113. <param name="profile">The shader target or set of shader features to compile against.</param>
  36114. <param name="shaderFlags">Shader compilation options.</param>
  36115. <returns>
  36116. The compiled shader bytecode, or <c>null</c> if the method fails.
  36117. </returns>
  36118. <unmanaged>HRESULT D3DXCompileShader([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  36119. </member>
  36120. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Compile(System.String,System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include)">
  36121. <summary>
  36122. Compiles the provided shader or effect source.
  36123. </summary>
  36124. <param name="shaderSource">A string containing the source of the shader or effect to compile.</param>
  36125. <param name="profile">The shader target or set of shader features to compile against.</param>
  36126. <param name="shaderFlags">Shader compilation options.</param>
  36127. <param name="defines">A set of macros to define during compilation.</param>
  36128. <param name="include">An interface for handling include files.</param>
  36129. <returns>
  36130. The compiled shader bytecode, or <c>null</c> if the method fails.
  36131. </returns>
  36132. <unmanaged>HRESULT D3DXCompileShader([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  36133. </member>
  36134. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Compile(System.Byte[],System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include)">
  36135. <summary>
  36136. Compiles the provided shader or effect source.
  36137. </summary>
  36138. <param name="shaderSource">An array of bytes containing the raw source of the shader or effect to compile.</param>
  36139. <param name="profile">The shader target or set of shader features to compile against.</param>
  36140. <param name="shaderFlags">Shader compilation options.</param>
  36141. <param name="defines">A set of macros to define during compilation.</param>
  36142. <param name="include">An interface for handling include files.</param>
  36143. <returns>
  36144. The compiled shader bytecode, or <c>null</c> if the method fails.
  36145. </returns>
  36146. <unmanaged>HRESULT D3DXCompileShader([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  36147. </member>
  36148. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Compile(System.String,System.String,System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include)">
  36149. <summary>
  36150. Compiles the provided shader or effect source.
  36151. </summary>
  36152. <param name="shaderSource">A string containing the source of the shader or effect to compile.</param>
  36153. <param name="entryPoint">The name of the shader entry-point function, or <c>null</c> for an effect file.</param>
  36154. <param name="profile">The shader target or set of shader features to compile against.</param>
  36155. <param name="shaderFlags">Shader compilation options.</param>
  36156. <param name="defines">A set of macros to define during compilation.</param>
  36157. <param name="include">An interface for handling include files.</param>
  36158. <returns>
  36159. The compiled shader bytecode, or <c>null</c> if the method fails.
  36160. </returns>
  36161. <unmanaged>HRESULT D3DXCompileShader([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  36162. </member>
  36163. <member name="M:SharpDX.Direct3D9.ShaderBytecode.CompileFromFile(System.String,System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include)">
  36164. <summary>
  36165. Compiles a shader or effect from a file on disk.
  36166. </summary>
  36167. <param name="fileName">The name of the source file to compile.</param>
  36168. <param name="profile">The shader target or set of shader features to compile against.</param>
  36169. <param name="shaderFlags">Shader compilation options.</param>
  36170. <param name="defines">A set of macros to define during compilation.</param>
  36171. <param name="include">An interface for handling include files.</param>
  36172. <returns>
  36173. The compiled shader bytecode, or <c>null</c> if the method fails.
  36174. </returns>
  36175. <unmanaged>HRESULT D3DXCompileShader([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  36176. </member>
  36177. <member name="M:SharpDX.Direct3D9.ShaderBytecode.CompileFromFile(System.String,System.String,System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include)">
  36178. <summary>
  36179. Compiles a shader or effect from a file on disk.
  36180. </summary>
  36181. <param name="fileName">The name of the source file to compile.</param>
  36182. <param name="entryPoint">The name of the shader entry-point function, or <c>null</c> for an effect file.</param>
  36183. <param name="profile">The shader target or set of shader features to compile against.</param>
  36184. <param name="shaderFlags">Shader compilation options.</param>
  36185. <param name="defines">A set of macros to define during compilation.</param>
  36186. <param name="include">An interface for handling include files.</param>
  36187. <returns>
  36188. The compiled shader bytecode, or <c>null</c> if the method fails.
  36189. </returns>
  36190. <unmanaged>HRESULT D3DXCompileShader([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  36191. </member>
  36192. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Compile(System.Byte[],System.String,System.String,SharpDX.Direct3D9.ShaderFlags,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include)">
  36193. <summary>
  36194. Compiles the provided shader or effect source.
  36195. </summary>
  36196. <param name="shaderSource">An array of bytes containing the raw source of the shader or effect to compile.</param>
  36197. <param name="entryPoint">The name of the shader entry-point function, or <c>null</c> for an effect file.</param>
  36198. <param name="profile">The shader target or set of shader features to compile against.</param>
  36199. <param name="shaderFlags">Shader compilation options.</param>
  36200. <param name="defines">A set of macros to define during compilation.</param>
  36201. <param name="include">An interface for handling include files.</param>
  36202. <returns>
  36203. The compiled shader bytecode, or <c>null</c> if the method fails.
  36204. </returns>
  36205. <unmanaged>HRESULT D3DXCompileShader([In] const char* pSrcData,[In] unsigned int SrcDataLen,[In] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] const char* pFunctionName,[In] const char* pProfile,[In] unsigned int Flags,[In] ID3DXBuffer** ppShader,[In] ID3DXBuffer** ppErrorMsgs,[In] ID3DXConstantTable** ppConstantTable)</unmanaged>
  36206. </member>
  36207. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Disassemble">
  36208. <summary>
  36209. Disassembles compiled HLSL code back into textual source.
  36210. </summary>
  36211. <returns>The textual source of the shader or effect.</returns>
  36212. <unmanaged>HRESULT D3DXDisassembleShader([In] const void* pShader,[In] BOOL EnableColorCode,[In] const char* pComments,[In] ID3DXBuffer** ppDisassembly)</unmanaged>
  36213. </member>
  36214. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Disassemble(System.Boolean)">
  36215. <summary>
  36216. Disassembles compiled HLSL code back into textual source.
  36217. </summary>
  36218. <param name="enableColorCode">if set to <c>true</c> [enable color code].</param>
  36219. <returns>
  36220. The textual source of the shader or effect.
  36221. </returns>
  36222. <unmanaged>HRESULT D3DXDisassembleShader([In] const void* pShader,[In] BOOL EnableColorCode,[In] const char* pComments,[In] ID3DXBuffer** ppDisassembly)</unmanaged>
  36223. </member>
  36224. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Disassemble(System.Boolean,System.String)">
  36225. <summary>
  36226. Disassembles compiled HLSL code back into textual source.
  36227. </summary>
  36228. <param name="enableColorCode">if set to <c>true</c> [enable color code].</param>
  36229. <param name="comments">Commenting information to embed in the disassembly.</param>
  36230. <returns>
  36231. The textual source of the shader or effect.
  36232. </returns>
  36233. <unmanaged>HRESULT D3DXDisassembleShader([In] const void* pShader,[In] BOOL EnableColorCode,[In] const char* pComments,[In] ID3DXBuffer** ppDisassembly)</unmanaged>
  36234. </member>
  36235. <member name="M:SharpDX.Direct3D9.ShaderBytecode.FindComment(SharpDX.Direct3D9.Format)">
  36236. <summary>
  36237. Searches through the shader for the specified comment.
  36238. </summary>
  36239. <param name="fourCC">A FOURCC code used to identify the comment.</param>
  36240. <returns>The comment data.</returns>
  36241. <unmanaged>HRESULT D3DXFindShaderComment([In] const void* pFunction,[In] unsigned int FourCC,[Out] const void** ppData,[Out] unsigned int* pSizeInBytes)</unmanaged>
  36242. </member>
  36243. <member name="M:SharpDX.Direct3D9.ShaderBytecode.GetInputSemantics">
  36244. <summary>
  36245. Gets the set of semantics for shader inputs.
  36246. </summary>
  36247. <returns>The set of semantics for shader inputs.</returns>
  36248. <unmanaged>HRESULT D3DXGetShaderInputSemantics([In] const void* pFunction,[In, Out, Buffer] D3DXSEMANTIC* pSemantics,[InOut] unsigned int* pCount)</unmanaged>
  36249. </member>
  36250. <member name="M:SharpDX.Direct3D9.ShaderBytecode.GetOutputSemantics">
  36251. <summary>
  36252. Gets the set of semantics for shader outputs.
  36253. </summary>
  36254. <returns>The set of semantics for shader outputs.</returns>
  36255. <unmanaged>HRESULT D3DXGetShaderOutputSemantics([In] const void* pFunction,[In, Out, Buffer] D3DXSEMANTIC* pSemantics,[InOut] unsigned int* pCount)</unmanaged>
  36256. </member>
  36257. <member name="M:SharpDX.Direct3D9.ShaderBytecode.GetSamplers">
  36258. <summary>
  36259. Gets the sampler names references in the shader.
  36260. </summary>
  36261. <returns>The set of referenced sampler names.</returns>
  36262. <unmanaged>HRESULT D3DXGetShaderSamplers([In] const void* pFunction,[In] const char** pSamplers,[In] unsigned int* pCount)</unmanaged>
  36263. </member>
  36264. <member name="M:SharpDX.Direct3D9.ShaderBytecode.MajorVersion(System.Int32)">
  36265. <summary>
  36266. Extracts the major version component of a shader version number.
  36267. </summary>
  36268. <param name="version">The shader version number.</param>
  36269. <returns>The major version component.</returns>
  36270. </member>
  36271. <member name="M:SharpDX.Direct3D9.ShaderBytecode.MinorVersion(System.Int32)">
  36272. <summary>
  36273. Extracts the minor version component of a shader version number.
  36274. </summary>
  36275. <param name="version">The shader version number.</param>
  36276. <returns>The minor version component.</returns>
  36277. </member>
  36278. <member name="M:SharpDX.Direct3D9.ShaderBytecode.ParseVersion(System.Int32)">
  36279. <summary>
  36280. Converts a shader version number into a managed <see cref="T:System.Version" /> object.
  36281. </summary>
  36282. <param name="version">The shader version number.</param>
  36283. <returns>The parsed shader version information.</returns>
  36284. </member>
  36285. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Load(System.IO.Stream)">
  36286. <summary>
  36287. Loads from the specified stream.
  36288. </summary>
  36289. <param name="stream">The stream.</param>
  36290. <returns>A shader bytecode</returns>
  36291. </member>
  36292. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Save(System.String)">
  36293. <summary>
  36294. Saves to the specified file name.
  36295. </summary>
  36296. <param name="fileName">Name of the file.</param>
  36297. </member>
  36298. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Save(System.IO.Stream)">
  36299. <summary>
  36300. Saves this bytecode to the specified stream.
  36301. </summary>
  36302. <param name="stream">The stream.</param>
  36303. </member>
  36304. <member name="M:SharpDX.Direct3D9.ShaderBytecode.FromPointer(System.IntPtr)">
  36305. <summary>
  36306. Create a ShaderBytecode from a pointer.
  36307. </summary>
  36308. <param name="pointer">The pointer.</param>
  36309. <returns></returns>
  36310. </member>
  36311. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Preprocess(System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include)">
  36312. <summary>
  36313. Preprocesses the provided shader or effect source.
  36314. </summary>
  36315. <param name = "shaderSource">A string containing the source of the shader or effect to preprocess.</param>
  36316. <param name = "defines">A set of macros to define during preprocessing.</param>
  36317. <param name = "include">An interface for handling include files.</param>
  36318. <returns>The preprocessed shader source.</returns>
  36319. <unmanaged>HRESULT D3DXPreprocessShader([In] const void* pSrcData,[In] unsigned int SrcDataSize,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36320. </member>
  36321. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Preprocess(System.Byte[],SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include)">
  36322. <summary>
  36323. Preprocesses the provided shader or effect source.
  36324. </summary>
  36325. <param name = "shaderSource">An array of bytes containing the raw source of the shader or effect to preprocess.</param>
  36326. <param name = "defines">A set of macros to define during preprocessing.</param>
  36327. <param name = "include">An interface for handling include files.</param>
  36328. <returns>The preprocessed shader source.</returns>
  36329. <unmanaged>HRESULT D3DXPreprocessShader([In] const void* pSrcData,[In] unsigned int SrcDataSize,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36330. </member>
  36331. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Preprocess(System.Byte[],SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String@)">
  36332. <summary>
  36333. Preprocesses the provided shader or effect source.
  36334. </summary>
  36335. <param name = "shaderSource">An array of bytes containing the raw source of the shader or effect to preprocess.</param>
  36336. <param name = "defines">A set of macros to define during preprocessing.</param>
  36337. <param name = "include">An interface for handling include files.</param>
  36338. <param name = "compilationErrors">When the method completes, contains a string of compilation errors, or an empty string if preprocessing succeeded.</param>
  36339. <returns>The preprocessed shader source.</returns>
  36340. <unmanaged>HRESULT D3DXPreprocessShader([In] const void* pSrcData,[In] unsigned int SrcDataSize,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36341. </member>
  36342. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Preprocess(System.IntPtr,System.Int32,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String@)">
  36343. <summary>
  36344. Preprocesses the provided shader or effect source.
  36345. </summary>
  36346. <param name="shaderSourcePtr">The shader source PTR.</param>
  36347. <param name="shaderSourceLength">Length of the shader source.</param>
  36348. <param name="defines">A set of macros to define during preprocessing.</param>
  36349. <param name="include">An interface for handling include files.</param>
  36350. <param name="compilationErrors">When the method completes, contains a string of compilation errors, or an empty string if preprocessing succeeded.</param>
  36351. <returns>
  36352. The preprocessed shader source.
  36353. </returns>
  36354. <unmanaged>HRESULT D3DXPreprocessShader([In] const void* pSrcData,[In] unsigned int SrcDataSize,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36355. </member>
  36356. <member name="M:SharpDX.Direct3D9.ShaderBytecode.Preprocess(System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String@)">
  36357. <summary>
  36358. Preprocesses the provided shader or effect source.
  36359. </summary>
  36360. <param name = "shaderSource">A string containing the source of the shader or effect to preprocess.</param>
  36361. <param name = "defines">A set of macros to define during preprocessing.</param>
  36362. <param name = "include">An interface for handling include files.</param>
  36363. <param name = "compilationErrors">When the method completes, contains a string of compilation errors, or an empty string if preprocessing succeeded.</param>
  36364. <returns>The preprocessed shader source.</returns>
  36365. <unmanaged>HRESULT D3DXPreprocessShader([In] const void* pSrcData,[In] unsigned int SrcDataSize,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36366. </member>
  36367. <member name="M:SharpDX.Direct3D9.ShaderBytecode.PreprocessFromFile(System.String)">
  36368. <summary>
  36369. Preprocesses a shader or effect from a file on disk.
  36370. </summary>
  36371. <param name = "fileName">The name of the source file to compile.</param>
  36372. <returns>The preprocessed shader source.</returns>
  36373. <unmanaged>HRESULT D3DXPreprocessShader([In] const void* pSrcData,[In] unsigned int SrcDataSize,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36374. </member>
  36375. <member name="M:SharpDX.Direct3D9.ShaderBytecode.PreprocessFromFile(System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include)">
  36376. <summary>
  36377. Preprocesses a shader or effect from a file on disk.
  36378. </summary>
  36379. <param name = "fileName">The name of the source file to compile.</param>
  36380. <param name = "defines">A set of macros to define during preprocessing.</param>
  36381. <param name = "include">An interface for handling include files.</param>
  36382. <returns>The preprocessed shader source.</returns>
  36383. <unmanaged>HRESULT D3DXPreprocessShader([In] const void* pSrcData,[In] unsigned int SrcDataSize,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36384. </member>
  36385. <member name="M:SharpDX.Direct3D9.ShaderBytecode.PreprocessFromFile(System.String,SharpDX.Direct3D9.Macro[],SharpDX.Direct3D9.Include,System.String@)">
  36386. <summary>
  36387. Preprocesses a shader or effect from a file on disk.
  36388. </summary>
  36389. <param name = "fileName">The name of the source file to compile.</param>
  36390. <param name = "defines">A set of macros to define during preprocessing.</param>
  36391. <param name = "include">An interface for handling include files.</param>
  36392. <param name = "compilationErrors">When the method completes, contains a string of compilation errors, or an empty string if preprocessing succeeded.</param>
  36393. <returns>The preprocessed shader source.</returns>
  36394. <unmanaged>HRESULT D3DXPreprocessShader([In] const void* pSrcData,[In] unsigned int SrcDataSize,[In, Buffer] const D3DXMACRO* pDefines,[In] ID3DXInclude* pInclude,[In] ID3DXBuffer** ppShaderText,[In] ID3DXBuffer** ppErrorMsgs)</unmanaged>
  36395. </member>
  36396. <member name="P:SharpDX.Direct3D9.ShaderBytecode.Data">
  36397. <summary>
  36398. Gets the raw data of the compiled bytecode.
  36399. </summary>
  36400. </member>
  36401. <member name="M:SharpDX.Direct3D9.ShaderBytecode.FromStream(System.IO.Stream)">
  36402. <summary>
  36403. Read a compiled shader bytecode from a Stream and return a ShaderBytecode
  36404. </summary>
  36405. <param name = "stream"></param>
  36406. <returns></returns>
  36407. </member>
  36408. <member name="M:SharpDX.Direct3D9.ShaderBytecode.FromFile(System.String)">
  36409. <summary>
  36410. Read a compiled shader bytecode from a Stream and return a ShaderBytecode
  36411. </summary>
  36412. <param name = "fileName"></param>
  36413. <returns></returns>
  36414. </member>
  36415. <member name="F:SharpDX.Direct3D9.TextureRequirements.Width">
  36416. <summary>
  36417. Width of the texture.
  36418. </summary>
  36419. </member>
  36420. <member name="F:SharpDX.Direct3D9.TextureRequirements.Height">
  36421. <summary>
  36422. Height of the texture.
  36423. </summary>
  36424. </member>
  36425. <member name="F:SharpDX.Direct3D9.TextureRequirements.Format">
  36426. <summary>
  36427. Format of the texture.
  36428. </summary>
  36429. </member>
  36430. <member name="F:SharpDX.Direct3D9.TextureRequirements.MipLevelCount">
  36431. <summary>
  36432. Mip level count of the texture.
  36433. </summary>
  36434. </member>
  36435. <member name="T:SharpDX.Direct3D9.VertexFormatHelper">
  36436. <summary>
  36437. Helper methods to create special <see cref="T:SharpDX.Direct3D9.VertexFormat"/>.
  36438. </summary>
  36439. </member>
  36440. <member name="M:SharpDX.Direct3D9.VertexFormatHelper.TexCoordSize(System.Int32,System.Int32)">
  36441. <summary>
  36442. Calculates a specific TEXCOORDSIZEN <see cref="T:SharpDX.Direct3D9.VertexFormat"/>.
  36443. </summary>
  36444. <param name="size">The size of the texcoord. The value must be in the range [1,4] (Number of floating point values)</param>
  36445. <param name="coordIndex">Index of the coord.</param>
  36446. <returns>The <see cref="T:SharpDX.Direct3D9.VertexFormat"/></returns>
  36447. <exception cref="T:System.ArgumentException">If size is not in the range [1,4]</exception>
  36448. <remarks>
  36449. </remarks>
  36450. </member>
  36451. <member name="T:SharpDX.Direct3D9.VolumeTextureRequirements">
  36452. <summary>
  36453. Contains requested texture creation parameters for volume textures.
  36454. </summary>
  36455. <unmanaged>None</unmanaged>
  36456. </member>
  36457. <member name="F:SharpDX.Direct3D9.VolumeTextureRequirements.Width">
  36458. <summary>
  36459. The requested width of the texture, in pixels.
  36460. </summary>
  36461. </member>
  36462. <member name="F:SharpDX.Direct3D9.VolumeTextureRequirements.Height">
  36463. <summary>
  36464. The requested height of the texture, in pixels.
  36465. </summary>
  36466. </member>
  36467. <member name="F:SharpDX.Direct3D9.VolumeTextureRequirements.Depth">
  36468. <summary>
  36469. The requested depth of the texture, in pixels.
  36470. </summary>
  36471. </member>
  36472. <member name="F:SharpDX.Direct3D9.VolumeTextureRequirements.Format">
  36473. <summary>
  36474. The requested surface format.
  36475. </summary>
  36476. </member>
  36477. <member name="F:SharpDX.Direct3D9.VolumeTextureRequirements.MipLevelCount">
  36478. <summary>
  36479. The requested mip level count.
  36480. </summary>
  36481. </member>
  36482. <member name="T:SharpDX.Win32Native">
  36483. <summary>
  36484. Internal class to interact with Native Message
  36485. </summary>
  36486. </member>
  36487. </members>
  36488. </doc>