================================================================================================
| 943 | |
| 944 | // ================================================================================================ |
| 945 | bool Program::initClBinary() { |
| 946 | if (clBinary_ == nullptr) { |
| 947 | clBinary_ = new ClBinary(device()); |
| 948 | if (clBinary_ == nullptr) { |
| 949 | return false; |
| 950 | } |
| 951 | } |
| 952 | return true; |
| 953 | } |
| 954 | |
| 955 | // ================================================================================================ |
| 956 | void Program::releaseClBinary() { |
nothing calls this directly
no test coverage detected