| 337 | |
| 338 | |
| 339 | ILenum D3DGetDXTCFormat(D3DFORMAT DXTCNum) |
| 340 | { |
| 341 | switch (DXTCNum) |
| 342 | { |
| 343 | case D3DFMT_DXT1: |
| 344 | return IL_DXT1; |
| 345 | case D3DFMT_DXT3: |
| 346 | return IL_DXT3; |
| 347 | case D3DFMT_DXT5: |
| 348 | return IL_DXT5; |
| 349 | } |
| 350 | |
| 351 | return D3DFMT_UNKNOWN; |
| 352 | } |
| 353 | |
| 354 | |
| 355 | IDirect3DTexture9* iD3DMakeTexture( IDirect3DDevice9 *Device, void *Data, ILuint DLen, ILuint Width, ILuint Height, D3DFORMAT Format, D3DPOOL Pool, ILuint Levels ) |
nothing calls this directly
no outgoing calls
no test coverage detected