| 372 | } |
| 373 | |
| 374 | CMP_ERROR CMP_API CMP_GetDeviceInfo(KernelDeviceInfo* pDeviceInfo) |
| 375 | { |
| 376 | CMP_ERROR result; |
| 377 | if (g_ComputeBase) |
| 378 | { |
| 379 | result = g_ComputeBase->TC_GetDeviceInfo(pDeviceInfo); |
| 380 | if (result != CMP_OK) |
| 381 | return (result); |
| 382 | } |
| 383 | else |
| 384 | return CMP_ABORTED; |
| 385 | return CMP_OK; |
| 386 | } |
| 387 | |
| 388 | CMP_ERROR CMP_API CMP_CompressTexture(KernelOptions* options, CMP_MipSet srcMipSet, CMP_MipSet dstMipSet, CMP_Feedback_Proc pFeedback) |
| 389 | { |