opencv/3rdparty/openvx/hal/openvx_hal.cpp
2016-12-19 17:30:19 +03:00

9 lines
143 B
C++

#include "openvx_hal.hpp"
vxContext * vxContext::getContext()
{
// not thread safe
static vxContext instance;
return &instance;
}