
图形显示
Blaider
这个作者很懒,什么都没留下…
展开
-
判断显示器分辨率是否存在1024 *768 .
// dpiset.cpp : Defines the entry point for the console application.//#include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){ BOOL m_bSupport1024768=false; DISPLAY_DEVICE DispDev; DEV转载 2013-12-15 17:55:12 · 1505 阅读 · 0 评论 -
获取显示卡的信息 .
利用SetupDiGetClassDevs和SetupDiGetDeviceRegistryPropertyA获取显示卡驱动信息。#include "stdafx.h"#include #pragma comment(lib,"setupapi.lib")GUID pGUID= { 0x4D36E968 , 0xE325 , 0x11CE , 0xBF , 0xC1 , 0x08转载 2013-12-15 17:54:28 · 1966 阅读 · 0 评论 -
【译】ATI图形芯片ABC
http://www.botchco.com/agd5f/?p=51作者agd5f是开源linux AMD/ATI显卡驱动(radeon)的主要维护者.显卡最重要的两个功能:渲染(render)和显示(display),关于渲染的资料和讨论已经很多了,但很少有关于display的一个系统的介绍.intel和amd都相继开放了一些programming document出来,对于rend转载 2013-12-15 19:07:53 · 1391 阅读 · 0 评论 -
xfree86-ati xorg网站的资源
在xorg网站发现个用的blog。http://www.botchco.com/agd5f/?p=0 文档下载地址http://www.x.org/docs/原创 2013-12-15 19:05:19 · 1129 阅读 · 0 评论 -
ubuntu 14设置字符界面分辨率
由于客户使用VGA线没有接EDID线,无法正常初始化显示器。需要手动设置分辨率。1.好在framebuffer可以正常使用。故在/etc/default/grub文件中修改GRUB_CMDLINE_LINUX="" 为GRUB_CMDLINE_LINUX="vga=791"设置为1024*768分辨率然后运行update-grub使其生效2.由于显示驱动初始化显卡时无法获取EDID信息原创 2015-05-29 16:46:58 · 2436 阅读 · 0 评论