How to draw OpenCL calculated pixels to the screen with OpenGL?

99封情书 提交于 2019-12-22 02:34:11

问题


I wan't to do some calculated pixelart with OpenCL and display this directly on the display without CPU roundtripping. I could use interoperability of OpenCL with OpenGL and write to the texture-banks of the GPU and display the texture with OpenGL. I was wondering what would be the best way to do this, since I do not need any 3d stuff, just 2d pixelart.


回答1:


The best way would be to use OpenCL/OpenGL interop, if your OpenCL implementation supports it. This allows OpenCL to access certain OpenGL objects (buffer objects and textures/renderbuffers). You won't be able to directly access the default OpenGL framebuffer (ie: the display), but you will be able to access an image bound to a framebuffer object. From there, you can, in OpenGL, do a framebuffer blit to the default framebuffer. Nothing will touch CPU memory.

You'll have to look up the specifics on CL/GL interop to learn the details however. The basic idea is that you create a renderbuffer in OpenGL (which you bind to an FBO). Then you hand that renderbuffer off to OpenCL, and do your computations into the renderbuffer. Once that's complete, you perform a glBlitFramebuffer to copy the data from the renderbuffer to the default framebuffer, then swap buffers to display it.



来源:https://stackoverflow.com/questions/6644248/how-to-draw-opencl-calculated-pixels-to-the-screen-with-opengl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!