如何枚举系统中已安装的视频适配器
我的任务是将一些视频内容渲染到具有电视输出功能的选定显卡上,所以第一个问题是如何枚举已安装的显卡,检测它是否具有电视输出,确定opengl驱动程序功能?第二个是如何使用选定的视频适配器设置 opengl 上下文进行渲染?
my task is to render some video content to a selected video card with tv-out capability, so the first question is how to enumerate installed video cards, detect if it have tv-out, determine opengl driver capabilities? The second is how to setup opengl context with selected video adapter for rendering?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想这只是你问题第一部分的尝试,但它可能会让你走上正确的轨道。 WMI代码创建者可以生成代码来查询系统信息。以下是下载链接: http://www.microsoft.com/下载/en/details.aspx?id=8572。下面是一个枚举 CurrentBitsPerPixel 显卡的示例。
I guess this is only an attempt at the first part of your question but it may put you on the right track. The WMI Code creator can generate code to query system information. Here is the download link: http://www.microsoft.com/download/en/details.aspx?id=8572. And here is an example enumerating the video cards for CurrentBitsPerPixel.