Yann Labou

Results 28 comments of Yann Labou

@azarkevich-sa You can comment those lines. I strongly believe that you will still be able to build the project. As mentioned before, you might need to upgrade your CMake version...

We are adding the `opencl` subdir only if CMake found OpenCL. Further I strongly believe that it’s better to give users the flexibility to build whatever they need.

It shouldn't be harder than ```` if (CUDA_FOUND) add_subdirectory(examples/cuda/image_function) add_subdirectory(examples/cuda/pinned_memory) endif(CUDA_FOUND) ```` In the named subdirs, create CMakelists.txt files with roughly something like ```` cuda_add_executable(image_function example_image_function.cpp) ```` Given the limited...

@ihhub I’m on holiday leave. I’ll get back to you next week. Also I have no Android experience. I’m probably not the right person for this job.

Isn’t the Metal API written in Swift and Objective-C?

Not sure if I understand correctly the issue but isn't it solved with the [qimage_display example](https://github.com/ihhub/penguinV/blob/e08c22b19e46f5e7dc3fd92b9d37f31d1f49c73d/examples/qt_framework/qimage_display/main.cpp)?

I understand. I had love to come up with a design by the end of this week.

@ihhub I mostly agree with you about the architecture. Nevertheless I'm not sure if for a basic view functionality, we really need native OpenGL support as [Qt already provide it](http://doc.qt.io/qt-5/qopenglwidget.html)....