├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── modules │ ├── FindGimGui.cmake │ └── FindSDL2.cmake ├── emccify.sh ├── examples ├── common │ ├── gl_core_3_3.c │ ├── gl_core_3_3.h │ ├── glutils │ │ ├── baseshader.cpp │ │ ├── baseshader.hpp │ │ ├── buffer.cpp │ │ ├── buffer.hpp │ │ ├── projection.cpp │ │ ├── projection.hpp │ │ ├── shader.cpp │ │ ├── shader.hpp │ │ ├── texture.cpp │ │ ├── texture.hpp │ │ ├── textureloader.cpp │ │ ├── textureloader.hpp │ │ ├── uniform.cpp │ │ ├── uniform.hpp │ │ ├── vao.cpp │ │ ├── vao.hpp │ │ ├── vertexattribute.cpp │ │ └── vertexattribute.hpp │ ├── lodepng.cpp │ ├── lodepng.h │ ├── opengl.hpp │ ├── textureadaptor.cpp │ ├── textureadaptor.hpp │ ├── window.cpp │ └── window.hpp └── simple_rendering │ └── src │ ├── events.cpp │ ├── events.hpp │ ├── main.cpp │ ├── simplerendering.cpp │ └── simplerendering.hpp ├── include └── gimgui │ ├── assert.hpp │ ├── data │ ├── bitmap.hpp │ ├── codepointsize.hpp │ ├── element.hpp │ ├── element.inl │ ├── font.hpp │ ├── fontloadexception.hpp │ ├── glyph.hpp │ ├── ivec2.hpp │ ├── rectangle.hpp │ ├── renderdata.hpp │ ├── rendermodes.hpp │ ├── textalignments.hpp │ ├── textstyles.hpp │ ├── texturecoordinates.hpp │ ├── types.hpp │ ├── variant.hpp │ ├── variant.inl │ └── wrapmode.hpp │ ├── logic │ ├── absolutemap.hpp │ ├── absolutemap.inl │ ├── attributepopulator.hpp │ ├── attributepopulator.inl │ ├── event.hpp │ ├── fonttexturecache.hpp │ ├── fonttexturecache.inl │ ├── foreach.hpp │ ├── foreach.inl │ ├── rectanglepacker.hpp │ ├── renderdatagenerator.hpp │ ├── renderdatagenerator.inl │ └── utf8decoder.hpp │ └── util │ ├── getorfallback.hpp │ ├── getorfallback.inl │ ├── guillotinebinpack.hpp │ ├── ref.hpp │ ├── ref.inl │ ├── resolve.hpp │ └── resolve.inl ├── resources ├── borders.png ├── button.png ├── fonts │ ├── LICENSE │ ├── LiberationSans-Bold.ttf │ ├── LiberationSans-BoldItalic.ttf │ ├── LiberationSans-Italic.ttf │ ├── LiberationSans-Regular.ttf │ └── gohufont-14.pcf.gz └── xpattern.png ├── src ├── data │ ├── codepointsize.cpp │ ├── element.cpp │ ├── font.cpp │ ├── fontloadexception.cpp │ ├── renderdata.cpp │ ├── textstyles.cpp │ ├── texturecoordinates.cpp │ └── variant.cpp ├── logic │ ├── attributepopulator.cpp │ ├── fonttexturecache.cpp │ ├── rectanglepacker.cpp │ └── utf8decoder.cpp └── util │ └── guillotinebinpack.cpp └── test ├── catch.hpp ├── data ├── elementtest.cpp ├── fonttest.cpp ├── rectangletest.cpp └── varianttest.cpp ├── helpers ├── closeenough.cpp ├── closeenough.hpp ├── color.cpp ├── color.hpp ├── helperstest.cpp ├── rectangle.cpp ├── rectangle.hpp ├── textureinterfacestub.cpp ├── textureinterfacestub.hpp ├── vector2.cpp └── vector2.hpp ├── logic ├── absolutemaptest.cpp ├── attributepopulatortest.cpp ├── fonttexturecachetest.cpp ├── rectanglepackertest.cpp ├── renderdatageneratortest.cpp └── utf8decodertest.cpp ├── main.cpp └── util ├── getorfallbacktest.cpp ├── guillotinebinpacktest.cpp ├── reftest.cpp └── resolvetest.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/FindGimGui.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/cmake/modules/FindGimGui.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/cmake/modules/FindSDL2.cmake -------------------------------------------------------------------------------- /emccify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/emccify.sh -------------------------------------------------------------------------------- /examples/common/gl_core_3_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/gl_core_3_3.c -------------------------------------------------------------------------------- /examples/common/gl_core_3_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/gl_core_3_3.h -------------------------------------------------------------------------------- /examples/common/glutils/baseshader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/baseshader.cpp -------------------------------------------------------------------------------- /examples/common/glutils/baseshader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/baseshader.hpp -------------------------------------------------------------------------------- /examples/common/glutils/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/buffer.cpp -------------------------------------------------------------------------------- /examples/common/glutils/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/buffer.hpp -------------------------------------------------------------------------------- /examples/common/glutils/projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/projection.cpp -------------------------------------------------------------------------------- /examples/common/glutils/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/projection.hpp -------------------------------------------------------------------------------- /examples/common/glutils/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/shader.cpp -------------------------------------------------------------------------------- /examples/common/glutils/shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/shader.hpp -------------------------------------------------------------------------------- /examples/common/glutils/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/texture.cpp -------------------------------------------------------------------------------- /examples/common/glutils/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/texture.hpp -------------------------------------------------------------------------------- /examples/common/glutils/textureloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/textureloader.cpp -------------------------------------------------------------------------------- /examples/common/glutils/textureloader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/textureloader.hpp -------------------------------------------------------------------------------- /examples/common/glutils/uniform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/uniform.cpp -------------------------------------------------------------------------------- /examples/common/glutils/uniform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/uniform.hpp -------------------------------------------------------------------------------- /examples/common/glutils/vao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/vao.cpp -------------------------------------------------------------------------------- /examples/common/glutils/vao.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/vao.hpp -------------------------------------------------------------------------------- /examples/common/glutils/vertexattribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/vertexattribute.cpp -------------------------------------------------------------------------------- /examples/common/glutils/vertexattribute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/glutils/vertexattribute.hpp -------------------------------------------------------------------------------- /examples/common/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/lodepng.cpp -------------------------------------------------------------------------------- /examples/common/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/lodepng.h -------------------------------------------------------------------------------- /examples/common/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/opengl.hpp -------------------------------------------------------------------------------- /examples/common/textureadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/textureadaptor.cpp -------------------------------------------------------------------------------- /examples/common/textureadaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/textureadaptor.hpp -------------------------------------------------------------------------------- /examples/common/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/window.cpp -------------------------------------------------------------------------------- /examples/common/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/common/window.hpp -------------------------------------------------------------------------------- /examples/simple_rendering/src/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/simple_rendering/src/events.cpp -------------------------------------------------------------------------------- /examples/simple_rendering/src/events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/simple_rendering/src/events.hpp -------------------------------------------------------------------------------- /examples/simple_rendering/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/simple_rendering/src/main.cpp -------------------------------------------------------------------------------- /examples/simple_rendering/src/simplerendering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/simple_rendering/src/simplerendering.cpp -------------------------------------------------------------------------------- /examples/simple_rendering/src/simplerendering.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/examples/simple_rendering/src/simplerendering.hpp -------------------------------------------------------------------------------- /include/gimgui/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/assert.hpp -------------------------------------------------------------------------------- /include/gimgui/data/bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/bitmap.hpp -------------------------------------------------------------------------------- /include/gimgui/data/codepointsize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/codepointsize.hpp -------------------------------------------------------------------------------- /include/gimgui/data/element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/element.hpp -------------------------------------------------------------------------------- /include/gimgui/data/element.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/element.inl -------------------------------------------------------------------------------- /include/gimgui/data/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/font.hpp -------------------------------------------------------------------------------- /include/gimgui/data/fontloadexception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/fontloadexception.hpp -------------------------------------------------------------------------------- /include/gimgui/data/glyph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/glyph.hpp -------------------------------------------------------------------------------- /include/gimgui/data/ivec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/ivec2.hpp -------------------------------------------------------------------------------- /include/gimgui/data/rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/rectangle.hpp -------------------------------------------------------------------------------- /include/gimgui/data/renderdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/renderdata.hpp -------------------------------------------------------------------------------- /include/gimgui/data/rendermodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/rendermodes.hpp -------------------------------------------------------------------------------- /include/gimgui/data/textalignments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/textalignments.hpp -------------------------------------------------------------------------------- /include/gimgui/data/textstyles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/textstyles.hpp -------------------------------------------------------------------------------- /include/gimgui/data/texturecoordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/texturecoordinates.hpp -------------------------------------------------------------------------------- /include/gimgui/data/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/types.hpp -------------------------------------------------------------------------------- /include/gimgui/data/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/variant.hpp -------------------------------------------------------------------------------- /include/gimgui/data/variant.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/data/variant.inl -------------------------------------------------------------------------------- /include/gimgui/data/wrapmode.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace gim 4 | { 5 | enum class WrapMode { NONE, CHARACTERS, WORDS }; 6 | } 7 | -------------------------------------------------------------------------------- /include/gimgui/logic/absolutemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/absolutemap.hpp -------------------------------------------------------------------------------- /include/gimgui/logic/absolutemap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/absolutemap.inl -------------------------------------------------------------------------------- /include/gimgui/logic/attributepopulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/attributepopulator.hpp -------------------------------------------------------------------------------- /include/gimgui/logic/attributepopulator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/attributepopulator.inl -------------------------------------------------------------------------------- /include/gimgui/logic/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/event.hpp -------------------------------------------------------------------------------- /include/gimgui/logic/fonttexturecache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/fonttexturecache.hpp -------------------------------------------------------------------------------- /include/gimgui/logic/fonttexturecache.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/fonttexturecache.inl -------------------------------------------------------------------------------- /include/gimgui/logic/foreach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/foreach.hpp -------------------------------------------------------------------------------- /include/gimgui/logic/foreach.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/gimgui/logic/rectanglepacker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/rectanglepacker.hpp -------------------------------------------------------------------------------- /include/gimgui/logic/renderdatagenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/renderdatagenerator.hpp -------------------------------------------------------------------------------- /include/gimgui/logic/renderdatagenerator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/renderdatagenerator.inl -------------------------------------------------------------------------------- /include/gimgui/logic/utf8decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/logic/utf8decoder.hpp -------------------------------------------------------------------------------- /include/gimgui/util/getorfallback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/util/getorfallback.hpp -------------------------------------------------------------------------------- /include/gimgui/util/getorfallback.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/util/getorfallback.inl -------------------------------------------------------------------------------- /include/gimgui/util/guillotinebinpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/util/guillotinebinpack.hpp -------------------------------------------------------------------------------- /include/gimgui/util/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/util/ref.hpp -------------------------------------------------------------------------------- /include/gimgui/util/ref.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/util/ref.inl -------------------------------------------------------------------------------- /include/gimgui/util/resolve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/util/resolve.hpp -------------------------------------------------------------------------------- /include/gimgui/util/resolve.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/include/gimgui/util/resolve.inl -------------------------------------------------------------------------------- /resources/borders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/resources/borders.png -------------------------------------------------------------------------------- /resources/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/resources/button.png -------------------------------------------------------------------------------- /resources/fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/resources/fonts/LICENSE -------------------------------------------------------------------------------- /resources/fonts/LiberationSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/resources/fonts/LiberationSans-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/LiberationSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/resources/fonts/LiberationSans-BoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/LiberationSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/resources/fonts/LiberationSans-Italic.ttf -------------------------------------------------------------------------------- /resources/fonts/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/resources/fonts/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/gohufont-14.pcf.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/resources/fonts/gohufont-14.pcf.gz -------------------------------------------------------------------------------- /resources/xpattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/resources/xpattern.png -------------------------------------------------------------------------------- /src/data/codepointsize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/data/codepointsize.cpp -------------------------------------------------------------------------------- /src/data/element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/data/element.cpp -------------------------------------------------------------------------------- /src/data/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/data/font.cpp -------------------------------------------------------------------------------- /src/data/fontloadexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/data/fontloadexception.cpp -------------------------------------------------------------------------------- /src/data/renderdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/data/renderdata.cpp -------------------------------------------------------------------------------- /src/data/textstyles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/data/textstyles.cpp -------------------------------------------------------------------------------- /src/data/texturecoordinates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/data/texturecoordinates.cpp -------------------------------------------------------------------------------- /src/data/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/data/variant.cpp -------------------------------------------------------------------------------- /src/logic/attributepopulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/logic/attributepopulator.cpp -------------------------------------------------------------------------------- /src/logic/fonttexturecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/logic/fonttexturecache.cpp -------------------------------------------------------------------------------- /src/logic/rectanglepacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/logic/rectanglepacker.cpp -------------------------------------------------------------------------------- /src/logic/utf8decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/logic/utf8decoder.cpp -------------------------------------------------------------------------------- /src/util/guillotinebinpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/src/util/guillotinebinpack.cpp -------------------------------------------------------------------------------- /test/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/catch.hpp -------------------------------------------------------------------------------- /test/data/elementtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/data/elementtest.cpp -------------------------------------------------------------------------------- /test/data/fonttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/data/fonttest.cpp -------------------------------------------------------------------------------- /test/data/rectangletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/data/rectangletest.cpp -------------------------------------------------------------------------------- /test/data/varianttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/data/varianttest.cpp -------------------------------------------------------------------------------- /test/helpers/closeenough.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/closeenough.cpp -------------------------------------------------------------------------------- /test/helpers/closeenough.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/closeenough.hpp -------------------------------------------------------------------------------- /test/helpers/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/color.cpp -------------------------------------------------------------------------------- /test/helpers/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/color.hpp -------------------------------------------------------------------------------- /test/helpers/helperstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/helperstest.cpp -------------------------------------------------------------------------------- /test/helpers/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/rectangle.cpp -------------------------------------------------------------------------------- /test/helpers/rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/rectangle.hpp -------------------------------------------------------------------------------- /test/helpers/textureinterfacestub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/textureinterfacestub.cpp -------------------------------------------------------------------------------- /test/helpers/textureinterfacestub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/textureinterfacestub.hpp -------------------------------------------------------------------------------- /test/helpers/vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/vector2.cpp -------------------------------------------------------------------------------- /test/helpers/vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/helpers/vector2.hpp -------------------------------------------------------------------------------- /test/logic/absolutemaptest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/logic/absolutemaptest.cpp -------------------------------------------------------------------------------- /test/logic/attributepopulatortest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/logic/attributepopulatortest.cpp -------------------------------------------------------------------------------- /test/logic/fonttexturecachetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/logic/fonttexturecachetest.cpp -------------------------------------------------------------------------------- /test/logic/rectanglepackertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/logic/rectanglepackertest.cpp -------------------------------------------------------------------------------- /test/logic/renderdatageneratortest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/logic/renderdatageneratortest.cpp -------------------------------------------------------------------------------- /test/logic/utf8decodertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/logic/utf8decodertest.cpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/util/getorfallbacktest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/util/getorfallbacktest.cpp -------------------------------------------------------------------------------- /test/util/guillotinebinpacktest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/util/guillotinebinpacktest.cpp -------------------------------------------------------------------------------- /test/util/reftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/util/reftest.cpp -------------------------------------------------------------------------------- /test/util/resolvetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/GimGui/HEAD/test/util/resolvetest.cpp --------------------------------------------------------------------------------