如何在 directshow 源过滤器中渲染 3D 图形
我需要渲染一个简单的纹理映射模型作为 directshow 源过滤器的输出。 3D 渲染不需要来自 Direct3D,但这就很好了。 OpenGL 或任何其他提供程序都可以,假设我可以将其放入 DirectShow 源过滤器的上下文中。
Visual Studio 2008 C++
I need to render a simple texture mapped model as the output of a directshow source filter. The 3d rendering doesnt need to come from Direct3D, but that would be nice. OpenGL or any other provider would be fine assuming I can fit it into the context of the DirectShow source filter.
visual studio 2008 c++
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 direct3d,我发现您可以从 d3d 设备调用 GetRenderTargetData 来访问原始图像字节,然后将其复制到源过滤器图像缓冲区中
以下是如何获取 d3d 渲染的示例代码
With direct3d I have found that you can call GetRenderTargetData from the d3d device to get you access to the raw image bytes that you can then copy into the source filters image buffer
Here is example code of how to get the d3d render