├── .gitattributes ├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── icon.jpg ├── meson.build ├── resources └── shaders │ ├── simple_fsh.glsl │ └── simple_vsh.glsl ├── screenshot.jpg └── source ├── glad.c ├── glad.h ├── lenny.c ├── lenny.h ├── main.cpp └── switch_wrapper.c /.gitattributes: -------------------------------------------------------------------------------- 1 | *.glsl text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/README.md -------------------------------------------------------------------------------- /icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/icon.jpg -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/meson.build -------------------------------------------------------------------------------- /resources/shaders/simple_fsh.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/resources/shaders/simple_fsh.glsl -------------------------------------------------------------------------------- /resources/shaders/simple_vsh.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/resources/shaders/simple_vsh.glsl -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /source/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/source/glad.c -------------------------------------------------------------------------------- /source/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/source/glad.h -------------------------------------------------------------------------------- /source/lenny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/source/lenny.c -------------------------------------------------------------------------------- /source/lenny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/source/lenny.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/switch_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fincs/hybrid_app/HEAD/source/switch_wrapper.c --------------------------------------------------------------------------------