Fix OpenCL test if the OpenCL Platform is not ready

This commit is contained in:
Carles Fernandez
2019-06-24 14:33:08 +02:00
parent 9318fe540d
commit de79147def
3 changed files with 106 additions and 78 deletions
@@ -144,6 +144,12 @@ public:
void set_resampler_latency(uint32_t latency_samples __attribute__((unused))) override{};
inline bool opencl_ready() const
{
bool ready = this->acquisition_cc_->opencl_ready();
return ready;
}
private:
ConfigurationInterface* configuration_;
pcps_opencl_acquisition_cc_sptr acquisition_cc_;