├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cimgui ├── LICENSE.txt ├── cimgui.cpp ├── cimgui.h ├── cimgui_all.h ├── cimgui_internal.cpp ├── cimgui_internal.h ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_internal.h ├── imgui_tables.cpp ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h ├── imstb_truetype.h ├── zimgui.cpp └── zimgui.h ├── demo.c ├── sokol ├── shell.html ├── sokol.c ├── sokol_app.h ├── sokol_gfx.h ├── sokol_glue.h ├── sokol_imgui.h └── sokol_log.h └── update_deps.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | build/ 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/README.md -------------------------------------------------------------------------------- /cimgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/LICENSE.txt -------------------------------------------------------------------------------- /cimgui/cimgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/cimgui.cpp -------------------------------------------------------------------------------- /cimgui/cimgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/cimgui.h -------------------------------------------------------------------------------- /cimgui/cimgui_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/cimgui_all.h -------------------------------------------------------------------------------- /cimgui/cimgui_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/cimgui_internal.cpp -------------------------------------------------------------------------------- /cimgui/cimgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/cimgui_internal.h -------------------------------------------------------------------------------- /cimgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imconfig.h -------------------------------------------------------------------------------- /cimgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imgui.cpp -------------------------------------------------------------------------------- /cimgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imgui.h -------------------------------------------------------------------------------- /cimgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imgui_demo.cpp -------------------------------------------------------------------------------- /cimgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imgui_draw.cpp -------------------------------------------------------------------------------- /cimgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imgui_internal.h -------------------------------------------------------------------------------- /cimgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imgui_tables.cpp -------------------------------------------------------------------------------- /cimgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /cimgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imstb_rectpack.h -------------------------------------------------------------------------------- /cimgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imstb_textedit.h -------------------------------------------------------------------------------- /cimgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/imstb_truetype.h -------------------------------------------------------------------------------- /cimgui/zimgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/zimgui.cpp -------------------------------------------------------------------------------- /cimgui/zimgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/cimgui/zimgui.h -------------------------------------------------------------------------------- /demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/demo.c -------------------------------------------------------------------------------- /sokol/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/sokol/shell.html -------------------------------------------------------------------------------- /sokol/sokol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/sokol/sokol.c -------------------------------------------------------------------------------- /sokol/sokol_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/sokol/sokol_app.h -------------------------------------------------------------------------------- /sokol/sokol_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/sokol/sokol_gfx.h -------------------------------------------------------------------------------- /sokol/sokol_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/sokol/sokol_glue.h -------------------------------------------------------------------------------- /sokol/sokol_imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/sokol/sokol_imgui.h -------------------------------------------------------------------------------- /sokol/sokol_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/sokol/sokol_log.h -------------------------------------------------------------------------------- /update_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floooh/cimgui-sokol-starterkit/HEAD/update_deps.sh --------------------------------------------------------------------------------