Home
last modified time | relevance | path

Searched refs:mapDevice (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
Dopengl.hpp242 cuda::GpuMat mapDevice();
251 cuda::GpuMat mapDevice(cuda::Stream& stream);
/external/opencv3/modules/core/src/
Dopengl.cpp319 void* mapDevice(cudaStream_t stream = 0);
442 void* cv::ogl::Buffer::Impl::mapDevice(cudaStream_t stream) in mapDevice() function in cv::ogl::Buffer::Impl
758 GpuMat cv::ogl::Buffer::mapDevice() in mapDevice() function in cv::ogl::Buffer
768 return GpuMat(rows_, cols_, type_, impl_->mapDevice()); in mapDevice()
786 cuda::GpuMat cv::ogl::Buffer::mapDevice(cuda::Stream& stream) in mapDevice() function in cv::ogl::Buffer
798 … return GpuMat(rows_, cols_, type_, impl_->mapDevice(cuda::StreamAccessor::getStream(stream))); in mapDevice()
/external/opencv3/modules/cudaarithm/test/
Dtest_opengl.cpp268 cv::cuda::GpuMat dst = buf.mapDevice(); in CUDA_TEST_P()