| 220 | //============================================== CPU INTERFACES ======================================================== |
| 221 | #ifndef ASPM_GPU |
| 222 | int CMP_CDECL CreateOptionsBC1(void** options) |
| 223 | { |
| 224 | CMP_BC15Options* BC15optionsDefault = new CMP_BC15Options; |
| 225 | if (BC15optionsDefault) |
| 226 | { |
| 227 | SetDefaultBC15Options(BC15optionsDefault); |
| 228 | (*options) = BC15optionsDefault; |
| 229 | } |
| 230 | else |
| 231 | { |
| 232 | (*options) = NULL; |
| 233 | return CGU_CORE_ERR_NEWMEM; |
| 234 | } |
| 235 | return CGU_CORE_OK; |
| 236 | } |
| 237 | |
| 238 | int CMP_CDECL DestroyOptionsBC1(void* options) |
| 239 | { |