├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── src ├── cover.yaml └── virtio-gpu.md └── templates ├── cover.j2 ├── pandoc.css └── template.tex /.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | cover.tex 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keenuts/virtio-gpu-documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keenuts/virtio-gpu-documentation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keenuts/virtio-gpu-documentation/HEAD/README.md -------------------------------------------------------------------------------- /src/cover.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/virtio-gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keenuts/virtio-gpu-documentation/HEAD/src/virtio-gpu.md -------------------------------------------------------------------------------- /templates/cover.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keenuts/virtio-gpu-documentation/HEAD/templates/cover.j2 -------------------------------------------------------------------------------- /templates/pandoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keenuts/virtio-gpu-documentation/HEAD/templates/pandoc.css -------------------------------------------------------------------------------- /templates/template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Keenuts/virtio-gpu-documentation/HEAD/templates/template.tex --------------------------------------------------------------------------------