├── .gitignore ├── COPYING ├── Makefile.am ├── README ├── autogen.sh ├── configure.ac ├── man ├── Makefile.am └── fbturbo.man ├── src ├── Makefile.am ├── arm_asm.S ├── backing_store_tuner.c ├── backing_store_tuner.h ├── compat-api.h ├── cpu_backend.c ├── cpu_backend.h ├── cpuinfo.c ├── cpuinfo.h ├── fb_copyarea.c ├── fb_copyarea.h ├── fbdev.c ├── fbdev_priv.h ├── g2d_driver.h ├── interfaces.h ├── sunxi_disp.c ├── sunxi_disp.h ├── sunxi_disp_hwcursor.c ├── sunxi_disp_hwcursor.h ├── sunxi_disp_ioctl.h ├── sunxi_mali_ump_dri2.c ├── sunxi_mali_ump_dri2.h ├── sunxi_video.c ├── sunxi_video.h ├── sunxi_x_g2d.c ├── sunxi_x_g2d.h └── uthash.h ├── test ├── Makefile.am ├── gles-rgb-cycle-demo.c ├── gles-yellow-blue-flip.c ├── sunxi_disp_vsync_demo.c └── sunxi_g2d_bench.c └── xorg.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/configure.ac -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/fbturbo.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/man/fbturbo.man -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/arm_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/arm_asm.S -------------------------------------------------------------------------------- /src/backing_store_tuner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/backing_store_tuner.c -------------------------------------------------------------------------------- /src/backing_store_tuner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/backing_store_tuner.h -------------------------------------------------------------------------------- /src/compat-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/compat-api.h -------------------------------------------------------------------------------- /src/cpu_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/cpu_backend.c -------------------------------------------------------------------------------- /src/cpu_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/cpu_backend.h -------------------------------------------------------------------------------- /src/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/cpuinfo.c -------------------------------------------------------------------------------- /src/cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/cpuinfo.h -------------------------------------------------------------------------------- /src/fb_copyarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/fb_copyarea.c -------------------------------------------------------------------------------- /src/fb_copyarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/fb_copyarea.h -------------------------------------------------------------------------------- /src/fbdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/fbdev.c -------------------------------------------------------------------------------- /src/fbdev_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/fbdev_priv.h -------------------------------------------------------------------------------- /src/g2d_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/g2d_driver.h -------------------------------------------------------------------------------- /src/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/interfaces.h -------------------------------------------------------------------------------- /src/sunxi_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_disp.c -------------------------------------------------------------------------------- /src/sunxi_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_disp.h -------------------------------------------------------------------------------- /src/sunxi_disp_hwcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_disp_hwcursor.c -------------------------------------------------------------------------------- /src/sunxi_disp_hwcursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_disp_hwcursor.h -------------------------------------------------------------------------------- /src/sunxi_disp_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_disp_ioctl.h -------------------------------------------------------------------------------- /src/sunxi_mali_ump_dri2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_mali_ump_dri2.c -------------------------------------------------------------------------------- /src/sunxi_mali_ump_dri2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_mali_ump_dri2.h -------------------------------------------------------------------------------- /src/sunxi_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_video.c -------------------------------------------------------------------------------- /src/sunxi_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_video.h -------------------------------------------------------------------------------- /src/sunxi_x_g2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_x_g2d.c -------------------------------------------------------------------------------- /src/sunxi_x_g2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/sunxi_x_g2d.h -------------------------------------------------------------------------------- /src/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/src/uthash.h -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/gles-rgb-cycle-demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/test/gles-rgb-cycle-demo.c -------------------------------------------------------------------------------- /test/gles-yellow-blue-flip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/test/gles-yellow-blue-flip.c -------------------------------------------------------------------------------- /test/sunxi_disp_vsync_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/test/sunxi_disp_vsync_demo.c -------------------------------------------------------------------------------- /test/sunxi_g2d_bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/test/sunxi_g2d_bench.c -------------------------------------------------------------------------------- /xorg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssvb/xf86-video-fbturbo/HEAD/xorg.conf --------------------------------------------------------------------------------