mirror of
https://github.com/opencv/opencv.git
synced 2024-12-12 15:19:11 +08:00
9 lines
143 B
C++
9 lines
143 B
C++
|
#include "openvx_hal.hpp"
|
||
|
|
||
|
vxContext * vxContext::getContext()
|
||
|
{
|
||
|
// not thread safe
|
||
|
static vxContext instance;
|
||
|
return &instance;
|
||
|
}
|