├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── doc └── PeoteView.png ├── generateAPIdoc.sh ├── haxelib.json ├── src ├── lime │ └── _internal │ │ └── backend │ │ └── html5 │ │ └── HTML5Window.hx ├── peote │ └── view │ │ ├── BlendFactor.hx │ │ ├── BlendFunc.hx │ │ ├── Buffer.hx │ │ ├── Color.hx │ │ ├── Display.hx │ │ ├── Element.hx │ │ ├── Load.hx │ │ ├── Mask.hx │ │ ├── PeoteGL.hx │ │ ├── PeoteView.hx │ │ ├── Program.hx │ │ ├── Texture.hx │ │ ├── TextureCache.hx │ │ ├── TextureConfig.hx │ │ ├── TextureData.hx │ │ ├── TextureFormat.hx │ │ ├── UniformFloat.hx │ │ ├── element │ │ ├── Elem.hx │ │ ├── ElemAnim.hx │ │ └── ElemFloat.hx │ │ ├── intern │ │ ├── Background.hx │ │ ├── BufferBytes.hx │ │ ├── BufferInterface.hx │ │ ├── BufferIterator.hx │ │ ├── FPS.hx │ │ ├── GLBufferPointer.hx │ │ ├── GLTool.hx │ │ ├── IntUtil.hx │ │ ├── RenderList.hx │ │ ├── RenderListItem.hx │ │ ├── Shader.hx │ │ ├── TexUtils.hx │ │ ├── UniformBufferDisplay.hx │ │ ├── UniformBufferView.hx │ │ └── Util.hx │ │ └── text │ │ ├── BMFont.hx │ │ ├── BMFontData.hx │ │ ├── Text.hx │ │ ├── TextElement.hx │ │ ├── TextOptions.hx │ │ └── TextProgram.hx └── utils │ ├── MultipassTemplate.hx │ └── Vec2.hx └── test ├── project.xml └── src └── TestMultipassTemplate.hx /.gitignore: -------------------------------------------------------------------------------- 1 | samples/bin/ 2 | doc/api/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/README.md -------------------------------------------------------------------------------- /doc/PeoteView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/doc/PeoteView.png -------------------------------------------------------------------------------- /generateAPIdoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/generateAPIdoc.sh -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/haxelib.json -------------------------------------------------------------------------------- /src/lime/_internal/backend/html5/HTML5Window.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/lime/_internal/backend/html5/HTML5Window.hx -------------------------------------------------------------------------------- /src/peote/view/BlendFactor.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/BlendFactor.hx -------------------------------------------------------------------------------- /src/peote/view/BlendFunc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/BlendFunc.hx -------------------------------------------------------------------------------- /src/peote/view/Buffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/Buffer.hx -------------------------------------------------------------------------------- /src/peote/view/Color.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/Color.hx -------------------------------------------------------------------------------- /src/peote/view/Display.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/Display.hx -------------------------------------------------------------------------------- /src/peote/view/Element.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/Element.hx -------------------------------------------------------------------------------- /src/peote/view/Load.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/Load.hx -------------------------------------------------------------------------------- /src/peote/view/Mask.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/Mask.hx -------------------------------------------------------------------------------- /src/peote/view/PeoteGL.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/PeoteGL.hx -------------------------------------------------------------------------------- /src/peote/view/PeoteView.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/PeoteView.hx -------------------------------------------------------------------------------- /src/peote/view/Program.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/Program.hx -------------------------------------------------------------------------------- /src/peote/view/Texture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/Texture.hx -------------------------------------------------------------------------------- /src/peote/view/TextureCache.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/TextureCache.hx -------------------------------------------------------------------------------- /src/peote/view/TextureConfig.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/TextureConfig.hx -------------------------------------------------------------------------------- /src/peote/view/TextureData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/TextureData.hx -------------------------------------------------------------------------------- /src/peote/view/TextureFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/TextureFormat.hx -------------------------------------------------------------------------------- /src/peote/view/UniformFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/UniformFloat.hx -------------------------------------------------------------------------------- /src/peote/view/element/Elem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/element/Elem.hx -------------------------------------------------------------------------------- /src/peote/view/element/ElemAnim.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/element/ElemAnim.hx -------------------------------------------------------------------------------- /src/peote/view/element/ElemFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/element/ElemFloat.hx -------------------------------------------------------------------------------- /src/peote/view/intern/Background.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/Background.hx -------------------------------------------------------------------------------- /src/peote/view/intern/BufferBytes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/BufferBytes.hx -------------------------------------------------------------------------------- /src/peote/view/intern/BufferInterface.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/BufferInterface.hx -------------------------------------------------------------------------------- /src/peote/view/intern/BufferIterator.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/BufferIterator.hx -------------------------------------------------------------------------------- /src/peote/view/intern/FPS.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/FPS.hx -------------------------------------------------------------------------------- /src/peote/view/intern/GLBufferPointer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/GLBufferPointer.hx -------------------------------------------------------------------------------- /src/peote/view/intern/GLTool.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/GLTool.hx -------------------------------------------------------------------------------- /src/peote/view/intern/IntUtil.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/IntUtil.hx -------------------------------------------------------------------------------- /src/peote/view/intern/RenderList.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/RenderList.hx -------------------------------------------------------------------------------- /src/peote/view/intern/RenderListItem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/RenderListItem.hx -------------------------------------------------------------------------------- /src/peote/view/intern/Shader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/Shader.hx -------------------------------------------------------------------------------- /src/peote/view/intern/TexUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/TexUtils.hx -------------------------------------------------------------------------------- /src/peote/view/intern/UniformBufferDisplay.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/UniformBufferDisplay.hx -------------------------------------------------------------------------------- /src/peote/view/intern/UniformBufferView.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/UniformBufferView.hx -------------------------------------------------------------------------------- /src/peote/view/intern/Util.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/intern/Util.hx -------------------------------------------------------------------------------- /src/peote/view/text/BMFont.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/text/BMFont.hx -------------------------------------------------------------------------------- /src/peote/view/text/BMFontData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/text/BMFontData.hx -------------------------------------------------------------------------------- /src/peote/view/text/Text.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/text/Text.hx -------------------------------------------------------------------------------- /src/peote/view/text/TextElement.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/text/TextElement.hx -------------------------------------------------------------------------------- /src/peote/view/text/TextOptions.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/text/TextOptions.hx -------------------------------------------------------------------------------- /src/peote/view/text/TextProgram.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/peote/view/text/TextProgram.hx -------------------------------------------------------------------------------- /src/utils/MultipassTemplate.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/utils/MultipassTemplate.hx -------------------------------------------------------------------------------- /src/utils/Vec2.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/src/utils/Vec2.hx -------------------------------------------------------------------------------- /test/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/test/project.xml -------------------------------------------------------------------------------- /test/src/TestMultipassTemplate.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maitag/peote-view/HEAD/test/src/TestMultipassTemplate.hx --------------------------------------------------------------------------------