├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── nanovg ├── fontstash.h ├── fs_nanovg_fill.bin.h ├── fs_nanovg_fill.sc ├── makefile ├── nanovg.cpp ├── nanovg.h ├── nanovg_bgfx.cpp ├── nanovg_bgfx.h ├── varying.def.sc ├── vs_nanovg_fill.bin.h └── vs_nanovg_fill.sc └── source ├── BgfxComponent.cpp ├── BgfxComponent.h ├── BgfxContext.cpp ├── BgfxContext.h ├── CMakeLists.txt ├── Main.cpp ├── MainComponent.cpp ├── MainComponent.h ├── NanovgComponent.cpp ├── NanovgComponent.h ├── NanovgGraphics.cpp ├── NanovgGraphics.h └── resources ├── Lucida Grande-Regular.ttf ├── Roboto-Bold.ttf ├── Roboto-Light.ttf ├── Roboto-Regular.ttf └── Verdana-Regular.ttf /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/README.md -------------------------------------------------------------------------------- /nanovg/fontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/fontstash.h -------------------------------------------------------------------------------- /nanovg/fs_nanovg_fill.bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/fs_nanovg_fill.bin.h -------------------------------------------------------------------------------- /nanovg/fs_nanovg_fill.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/fs_nanovg_fill.sc -------------------------------------------------------------------------------- /nanovg/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/makefile -------------------------------------------------------------------------------- /nanovg/nanovg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/nanovg.cpp -------------------------------------------------------------------------------- /nanovg/nanovg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/nanovg.h -------------------------------------------------------------------------------- /nanovg/nanovg_bgfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/nanovg_bgfx.cpp -------------------------------------------------------------------------------- /nanovg/nanovg_bgfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/nanovg_bgfx.h -------------------------------------------------------------------------------- /nanovg/varying.def.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/varying.def.sc -------------------------------------------------------------------------------- /nanovg/vs_nanovg_fill.bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/vs_nanovg_fill.bin.h -------------------------------------------------------------------------------- /nanovg/vs_nanovg_fill.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/nanovg/vs_nanovg_fill.sc -------------------------------------------------------------------------------- /source/BgfxComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/BgfxComponent.cpp -------------------------------------------------------------------------------- /source/BgfxComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/BgfxComponent.h -------------------------------------------------------------------------------- /source/BgfxContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/BgfxContext.cpp -------------------------------------------------------------------------------- /source/BgfxContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/BgfxContext.h -------------------------------------------------------------------------------- /source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/CMakeLists.txt -------------------------------------------------------------------------------- /source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/Main.cpp -------------------------------------------------------------------------------- /source/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/MainComponent.cpp -------------------------------------------------------------------------------- /source/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/MainComponent.h -------------------------------------------------------------------------------- /source/NanovgComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/NanovgComponent.cpp -------------------------------------------------------------------------------- /source/NanovgComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/NanovgComponent.h -------------------------------------------------------------------------------- /source/NanovgGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/NanovgGraphics.cpp -------------------------------------------------------------------------------- /source/NanovgGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/NanovgGraphics.h -------------------------------------------------------------------------------- /source/resources/Lucida Grande-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/resources/Lucida Grande-Regular.ttf -------------------------------------------------------------------------------- /source/resources/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/resources/Roboto-Bold.ttf -------------------------------------------------------------------------------- /source/resources/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/resources/Roboto-Light.ttf -------------------------------------------------------------------------------- /source/resources/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/resources/Roboto-Regular.ttf -------------------------------------------------------------------------------- /source/resources/Verdana-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archie3d/juce_bgfx/HEAD/source/resources/Verdana-Regular.ttf --------------------------------------------------------------------------------