@@ -40,9 +40,9 @@ extern "C" {
4040if (log::tracing ())
4141log::trace (n,log::fmt::hnd (vkInstance),log::fmt::hnd (vkPhysicalDevice),log::fmt::hnd (vkDevice),log::fmt::ptr (hOFInstance));
4242
43- nvofapi:: NvOFInstanceVk* nvOF =nullptr ;
43+ NvOFInstanceVk* nvOF =nullptr ;
4444try {
45- nvOF =new nvofapi:: NvOFInstanceVk (vkInstance, vkPhysicalDevice, vkDevice);
45+ nvOF =new NvOFInstanceVk (vkInstance, vkPhysicalDevice, vkDevice);
4646 }catch (std::exceptionconst & e) {
4747log::info (str::format (" CreateOpticalFlowD3D12 exception, %s" , e.what ()));
4848return ErrorGeneric (n);
@@ -81,7 +81,7 @@ extern "C" {
8181if (log::tracing ())
8282log::trace (n,log::fmt::hnd (hOf),log::fmt::ptr (registerParams));
8383
84- auto nvOF =reinterpret_cast <nvofapi:: NvOFInstanceVk*>(hOf);
84+ auto nvOF =reinterpret_cast <NvOFInstanceVk*>(hOf);
8585 nvOF->RegisterBuffer (registerParams);
8686return Success (n);
8787 }
@@ -92,7 +92,7 @@ extern "C" {
9292if (log::tracing ())
9393log::trace (n,log::fmt::ptr (registerParams));
9494
95- nvofapi:: NvOFImage* nvRes =reinterpret_cast <nvofapi:: NvOFImage*>(registerParams->hOFGpuBuffer );
95+ NvOFImage* nvRes =reinterpret_cast <NvOFImage*>(registerParams->hOFGpuBuffer );
9696delete nvRes;
9797return ErrorGeneric (n);
9898 }
@@ -104,7 +104,7 @@ extern "C" {
104104if (log::tracing ())
105105log::trace (n,log::fmt::hnd (hOf),log::fmt::ptr (executeInParams),log::fmt::ptr (executeOutParams));
106106
107- auto nvOF =reinterpret_cast <nvofapi:: NvOFInstanceVk*>(hOf);
107+ auto nvOF =reinterpret_cast <NvOFInstanceVk*>(hOf);
108108
109109 nvOF->Execute (executeInParams, executeOutParams);
110110return Success (n, alreadyLoggedOk);