How to write directly to linux framebuffer?

旧时模样 提交于 2019-11-30 07:01:00

问题


How to write directly to linux framebuffer?


回答1:


look at FBIOPUT_VSCREENINFO, ioctl and mmap

(I have the code but not at this pc, sorry)

edit: this should get you started

  //open file descriptor and get info
inf fdScreen = open( "devicename", O_RDWR );
fb_var_screeninfo varInfo;
ioctl( fdScreen, FBIOGET_VSCREENINFO, &varInfo );

  //set resolution/dpi/color depth/.. in varInfo, then write it back
ioctl( fdScreen, FBIOPUT_VSCREENINFO, &varInfo );

  //get writable screen memory; unsigned short here for 16bit color
unsigned short* display = mmap( 0, nScreenSize,
                                PROT_READ | PROT_WRITE, MAP_SHARED, fdScreen, 0 );



回答2:


Basically you open /dev/fb0, do some ioctls on it, then mmap it. Then you just write to the mmap'd area in your process.




回答3:


Are you looking to write a device driver? If so check out this HowTo guide

  • http://www.linux-fbdev.org/HOWTO/index.html


来源:https://stackoverflow.com/questions/1527039/how-to-write-directly-to-linux-framebuffer

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