build fixes for openvx-1.0.1 and c++03
* fixing 1.0.1 * fixing build without c++11
This commit is contained in:
committed by
Rostislav Vasilikhin
parent
2c63d2bd72
commit
289d879d48
@@ -19,8 +19,7 @@ ivx::Graph createProcessingGraph(ivx::Image& inputImage, ivx::Image& outputImage
|
||||
{
|
||||
using namespace ivx;
|
||||
|
||||
Context context = inputImage.getContext();
|
||||
|
||||
Context context = inputImage.get<Context>();
|
||||
Graph graph = Graph::create(context);
|
||||
|
||||
vx_uint32 width = inputImage.width();
|
||||
|
||||
@@ -19,8 +19,7 @@ ivx::Graph createProcessingGraph(ivx::Image& inputImage, ivx::Image& outputImage
|
||||
{
|
||||
using namespace ivx;
|
||||
|
||||
Context context = inputImage.getContext();
|
||||
|
||||
Context context = inputImage.get<Context>();
|
||||
Graph graph = Graph::create(context);
|
||||
|
||||
vx_uint32 width = inputImage.width();
|
||||
|
||||
Reference in New Issue
Block a user