| 320 | bool CLDevice::SupportsFP16() const { return info_.supports_fp16; } |
| 321 | |
| 322 | bool CLDevice::SupportsExtension(const std::string& extension) const { |
| 323 | for (const auto& ext : info_.extensions) { |
| 324 | if (ext == extension) { |
| 325 | return true; |
| 326 | } |
| 327 | } |
| 328 | return false; |
| 329 | } |
| 330 | |
| 331 | bool CLDevice::SupportsTextureArray() const { |
| 332 | return info_.SupportsTextureArray(); |
no outgoing calls
no test coverage detected