| 119 | |
| 120 | |
| 121 | D3DFORMAT D3DGetDXTCNumDX10(ILenum DXTCFormat) |
| 122 | { |
| 123 | switch (DXTCFormat) |
| 124 | { |
| 125 | case IL_DXT1: |
| 126 | return D3DFMT_DXT1; |
| 127 | case IL_DXT3: |
| 128 | return D3DFMT_DXT3; |
| 129 | case IL_DXT5: |
| 130 | return D3DFMT_DXT5; |
| 131 | } |
| 132 | |
| 133 | return D3DFMT_UNKNOWN; |
| 134 | } |
| 135 | |
| 136 | |
| 137 | //ILenum D3DGetDXTCFormat(D3DFORMAT DXTCNum) |
nothing calls this directly
no outgoing calls
no test coverage detected