├── .gitignore ├── README.md ├── examples ├── flower.png ├── hello_cario.go ├── hello_gg.go └── hello_gofb.go └── framebuffer ├── framebuffer.go └── framebuffer_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | *.out 3 | *.iml 4 | doc/ 5 | .idea 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspace/gofb/HEAD/README.md -------------------------------------------------------------------------------- /examples/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspace/gofb/HEAD/examples/flower.png -------------------------------------------------------------------------------- /examples/hello_cario.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspace/gofb/HEAD/examples/hello_cario.go -------------------------------------------------------------------------------- /examples/hello_gg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspace/gofb/HEAD/examples/hello_gg.go -------------------------------------------------------------------------------- /examples/hello_gofb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspace/gofb/HEAD/examples/hello_gofb.go -------------------------------------------------------------------------------- /framebuffer/framebuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspace/gofb/HEAD/framebuffer/framebuffer.go -------------------------------------------------------------------------------- /framebuffer/framebuffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspace/gofb/HEAD/framebuffer/framebuffer_test.go --------------------------------------------------------------------------------