操作1,从驱动读取屏幕大小
#include
#include
#include
#include
#include
#include
#include
int w,h ,bpp;
int *fbmem;
int main(int argc , char *argv[]){
int fd;
struct fb_var_screeninfo fb_var;
fd = open("/dev/fb0",O_RDWR);
ioctl (fd,FBIOGET_VSCREENINFO,&fb_var);
w = fb_var.xres;
h = fb_var.yres;
bpp = fb_var.bits_per_pixel;
printf ("Framebuffer %d*%d-%dbpp\n",w,h,bpp);
fbmem = mmap (0,w*h*bpp/8,PROT_WRITE|PROT_READ,
MAP_SHARED,fd,0);
return 0;
}
操作2,通过xcb库读取屏幕大小
#include
#include
int main (){
/* Open the connection to the X server. Use the DISPLAY environment variable */
int i, screenNum;
xcb_connection_t *connection = x