├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.MD └── src ├── fb-shim.cpp ├── fb-shim.h ├── input-shim.cpp ├── input-shim.h ├── mxcfb.h ├── qtfb-client ├── common.h ├── qtfb-client.cpp └── qtfb-client.h ├── shim.cpp └── shim.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/README.MD -------------------------------------------------------------------------------- /src/fb-shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/src/fb-shim.cpp -------------------------------------------------------------------------------- /src/fb-shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/src/fb-shim.h -------------------------------------------------------------------------------- /src/input-shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/src/input-shim.cpp -------------------------------------------------------------------------------- /src/input-shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/src/input-shim.h -------------------------------------------------------------------------------- /src/mxcfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/src/mxcfb.h -------------------------------------------------------------------------------- /src/qtfb-client/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/src/qtfb-client/common.h -------------------------------------------------------------------------------- /src/qtfb-client/qtfb-client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/src/qtfb-client/qtfb-client.cpp -------------------------------------------------------------------------------- /src/qtfb-client/qtfb-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/src/qtfb-client/qtfb-client.h -------------------------------------------------------------------------------- /src/shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/src/shim.cpp -------------------------------------------------------------------------------- /src/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asivery/rmpp-qtfb-shim/HEAD/src/shim.h --------------------------------------------------------------------------------