├── .gitignore ├── README.md ├── addon_config.mk ├── example-3DPrimitives ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── of.png │ │ └── of_nonPow2.png ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-assimp ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── Pictures │ │ └── turbochi_new_Final3.png │ │ ├── TurbochiFromXSI.dae │ │ ├── astroBoy_walk.dae │ │ ├── axe.jpg │ │ ├── boy_10.tga │ │ ├── dwarf.jpg │ │ ├── dwarf.x │ │ ├── monster-animated-character-X.X │ │ ├── monster.jpg │ │ └── squirrel │ │ ├── NewSquirrel.3ds │ │ ├── Squirrel.jpg │ │ └── readme.txt ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-billboard ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── dot.png │ │ ├── shadersGL2 │ │ ├── Billboard.frag │ │ └── Billboard.vert │ │ └── shadersGL3 │ │ ├── Billboard.frag │ │ └── Billboard.vert ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-billboardRotation ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── shaderGL2 │ │ ├── Billboard.frag │ │ └── Billboard.vert │ │ ├── shaderGL3 │ │ ├── Billboard.frag │ │ └── Billboard.vert │ │ └── snow.png ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-dev ├── Makefile ├── addons.make ├── bin │ └── test.jpg ├── config.make └── src │ ├── TestCube.cpp │ ├── TestCube.h │ ├── drm_fourcc.h │ ├── esTransform.c │ ├── esUtil.h │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-fontShapesExample ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── Batang.ttf │ │ └── cooperBlack.ttf ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-ofxImGui ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── of.png │ │ └── of_upside_down.png ├── config.make └── src │ ├── MyTheme.cpp │ ├── MyTheme.h │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-pointsAsTextures ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── dot.png │ │ ├── shader.frag │ │ ├── shader.vert │ │ ├── shaders │ │ ├── shader.frag │ │ └── shader.vert │ │ └── shaders_gles │ │ ├── shader.frag │ │ └── shader.vert ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-simpleTexturing ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── img.jpg │ │ ├── shadersES2 │ │ ├── shader.frag │ │ └── shader.vert │ │ ├── shadersGL2 │ │ ├── shader.frag │ │ └── shader.vert │ │ └── shadersGL3 │ │ ├── shader.frag │ │ └── shader.vert ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-vboMeshDrawInstanced ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── depth_image.png │ │ └── shaders │ │ ├── instanced.frag │ │ ├── instanced.vert │ │ ├── instanced_120.frag │ │ └── instanced_120.vert ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-videoPlayer ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── movies │ │ └── fingers.mov ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── patchOF.sh └── src ├── ofxRPI4Window.cpp └── ofxRPI4Window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/addon_config.mk -------------------------------------------------------------------------------- /example-3DPrimitives/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-3DPrimitives/Makefile -------------------------------------------------------------------------------- /example-3DPrimitives/addons.make: -------------------------------------------------------------------------------- 1 | ofxRPI4Window 2 | -------------------------------------------------------------------------------- /example-3DPrimitives/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-3DPrimitives/bin/data/of.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-3DPrimitives/bin/data/of.png -------------------------------------------------------------------------------- /example-3DPrimitives/bin/data/of_nonPow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-3DPrimitives/bin/data/of_nonPow2.png -------------------------------------------------------------------------------- /example-3DPrimitives/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-3DPrimitives/config.make -------------------------------------------------------------------------------- /example-3DPrimitives/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-3DPrimitives/src/main.cpp -------------------------------------------------------------------------------- /example-3DPrimitives/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-3DPrimitives/src/ofApp.cpp -------------------------------------------------------------------------------- /example-3DPrimitives/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-3DPrimitives/src/ofApp.h -------------------------------------------------------------------------------- /example-assimp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/Makefile -------------------------------------------------------------------------------- /example-assimp/addons.make: -------------------------------------------------------------------------------- 1 | ofxRPI4Window 2 | ofxAssimpModelLoader 3 | 4 | -------------------------------------------------------------------------------- /example-assimp/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-assimp/bin/data/Pictures/turbochi_new_Final3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/Pictures/turbochi_new_Final3.png -------------------------------------------------------------------------------- /example-assimp/bin/data/TurbochiFromXSI.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/TurbochiFromXSI.dae -------------------------------------------------------------------------------- /example-assimp/bin/data/astroBoy_walk.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/astroBoy_walk.dae -------------------------------------------------------------------------------- /example-assimp/bin/data/axe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/axe.jpg -------------------------------------------------------------------------------- /example-assimp/bin/data/boy_10.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/boy_10.tga -------------------------------------------------------------------------------- /example-assimp/bin/data/dwarf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/dwarf.jpg -------------------------------------------------------------------------------- /example-assimp/bin/data/dwarf.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/dwarf.x -------------------------------------------------------------------------------- /example-assimp/bin/data/monster-animated-character-X.X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/monster-animated-character-X.X -------------------------------------------------------------------------------- /example-assimp/bin/data/monster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/monster.jpg -------------------------------------------------------------------------------- /example-assimp/bin/data/squirrel/NewSquirrel.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/squirrel/NewSquirrel.3ds -------------------------------------------------------------------------------- /example-assimp/bin/data/squirrel/Squirrel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/squirrel/Squirrel.jpg -------------------------------------------------------------------------------- /example-assimp/bin/data/squirrel/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/bin/data/squirrel/readme.txt -------------------------------------------------------------------------------- /example-assimp/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/config.make -------------------------------------------------------------------------------- /example-assimp/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/src/main.cpp -------------------------------------------------------------------------------- /example-assimp/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/src/ofApp.cpp -------------------------------------------------------------------------------- /example-assimp/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-assimp/src/ofApp.h -------------------------------------------------------------------------------- /example-billboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboard/Makefile -------------------------------------------------------------------------------- /example-billboard/addons.make: -------------------------------------------------------------------------------- 1 | ofxRPI4Window 2 | ofxAssimpModelLoader 3 | 4 | -------------------------------------------------------------------------------- /example-billboard/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-billboard/bin/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboard/bin/data/dot.png -------------------------------------------------------------------------------- /example-billboard/bin/data/shadersGL2/Billboard.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboard/bin/data/shadersGL2/Billboard.frag -------------------------------------------------------------------------------- /example-billboard/bin/data/shadersGL2/Billboard.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboard/bin/data/shadersGL2/Billboard.vert -------------------------------------------------------------------------------- /example-billboard/bin/data/shadersGL3/Billboard.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboard/bin/data/shadersGL3/Billboard.frag -------------------------------------------------------------------------------- /example-billboard/bin/data/shadersGL3/Billboard.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboard/bin/data/shadersGL3/Billboard.vert -------------------------------------------------------------------------------- /example-billboard/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboard/config.make -------------------------------------------------------------------------------- /example-billboard/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboard/src/main.cpp -------------------------------------------------------------------------------- /example-billboard/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboard/src/ofApp.cpp -------------------------------------------------------------------------------- /example-billboard/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboard/src/ofApp.h -------------------------------------------------------------------------------- /example-billboardRotation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboardRotation/Makefile -------------------------------------------------------------------------------- /example-billboardRotation/addons.make: -------------------------------------------------------------------------------- 1 | ofxRPI4Window 2 | ofxAssimpModelLoader 3 | 4 | -------------------------------------------------------------------------------- /example-billboardRotation/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-billboardRotation/bin/data/shaderGL2/Billboard.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboardRotation/bin/data/shaderGL2/Billboard.frag -------------------------------------------------------------------------------- /example-billboardRotation/bin/data/shaderGL2/Billboard.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboardRotation/bin/data/shaderGL2/Billboard.vert -------------------------------------------------------------------------------- /example-billboardRotation/bin/data/shaderGL3/Billboard.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboardRotation/bin/data/shaderGL3/Billboard.frag -------------------------------------------------------------------------------- /example-billboardRotation/bin/data/shaderGL3/Billboard.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboardRotation/bin/data/shaderGL3/Billboard.vert -------------------------------------------------------------------------------- /example-billboardRotation/bin/data/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboardRotation/bin/data/snow.png -------------------------------------------------------------------------------- /example-billboardRotation/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboardRotation/config.make -------------------------------------------------------------------------------- /example-billboardRotation/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboardRotation/src/main.cpp -------------------------------------------------------------------------------- /example-billboardRotation/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboardRotation/src/ofApp.cpp -------------------------------------------------------------------------------- /example-billboardRotation/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-billboardRotation/src/ofApp.h -------------------------------------------------------------------------------- /example-dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/Makefile -------------------------------------------------------------------------------- /example-dev/addons.make: -------------------------------------------------------------------------------- 1 | ofxRPI4Window 2 | -------------------------------------------------------------------------------- /example-dev/bin/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/bin/test.jpg -------------------------------------------------------------------------------- /example-dev/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/config.make -------------------------------------------------------------------------------- /example-dev/src/TestCube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/src/TestCube.cpp -------------------------------------------------------------------------------- /example-dev/src/TestCube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/src/TestCube.h -------------------------------------------------------------------------------- /example-dev/src/drm_fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/src/drm_fourcc.h -------------------------------------------------------------------------------- /example-dev/src/esTransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/src/esTransform.c -------------------------------------------------------------------------------- /example-dev/src/esUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/src/esUtil.h -------------------------------------------------------------------------------- /example-dev/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/src/main.cpp -------------------------------------------------------------------------------- /example-dev/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/src/ofApp.cpp -------------------------------------------------------------------------------- /example-dev/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-dev/src/ofApp.h -------------------------------------------------------------------------------- /example-fontShapesExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-fontShapesExample/Makefile -------------------------------------------------------------------------------- /example-fontShapesExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxRPI4Window 2 | -------------------------------------------------------------------------------- /example-fontShapesExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-fontShapesExample/bin/data/Batang.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-fontShapesExample/bin/data/Batang.ttf -------------------------------------------------------------------------------- /example-fontShapesExample/bin/data/cooperBlack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-fontShapesExample/bin/data/cooperBlack.ttf -------------------------------------------------------------------------------- /example-fontShapesExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-fontShapesExample/config.make -------------------------------------------------------------------------------- /example-fontShapesExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-fontShapesExample/src/main.cpp -------------------------------------------------------------------------------- /example-fontShapesExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-fontShapesExample/src/ofApp.cpp -------------------------------------------------------------------------------- /example-fontShapesExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-fontShapesExample/src/ofApp.h -------------------------------------------------------------------------------- /example-ofxImGui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-ofxImGui/Makefile -------------------------------------------------------------------------------- /example-ofxImGui/addons.make: -------------------------------------------------------------------------------- 1 | ofxImGui 2 | ofxRPI4Window 3 | -------------------------------------------------------------------------------- /example-ofxImGui/bin/data/of.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-ofxImGui/bin/data/of.png -------------------------------------------------------------------------------- /example-ofxImGui/bin/data/of_upside_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-ofxImGui/bin/data/of_upside_down.png -------------------------------------------------------------------------------- /example-ofxImGui/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-ofxImGui/config.make -------------------------------------------------------------------------------- /example-ofxImGui/src/MyTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-ofxImGui/src/MyTheme.cpp -------------------------------------------------------------------------------- /example-ofxImGui/src/MyTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-ofxImGui/src/MyTheme.h -------------------------------------------------------------------------------- /example-ofxImGui/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-ofxImGui/src/main.cpp -------------------------------------------------------------------------------- /example-ofxImGui/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-ofxImGui/src/ofApp.cpp -------------------------------------------------------------------------------- /example-ofxImGui/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-ofxImGui/src/ofApp.h -------------------------------------------------------------------------------- /example-pointsAsTextures/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/Makefile -------------------------------------------------------------------------------- /example-pointsAsTextures/addons.make: -------------------------------------------------------------------------------- 1 | ofxRPI4Window 2 | -------------------------------------------------------------------------------- /example-pointsAsTextures/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-pointsAsTextures/bin/data/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/bin/data/dot.png -------------------------------------------------------------------------------- /example-pointsAsTextures/bin/data/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/bin/data/shader.frag -------------------------------------------------------------------------------- /example-pointsAsTextures/bin/data/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/bin/data/shader.vert -------------------------------------------------------------------------------- /example-pointsAsTextures/bin/data/shaders/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/bin/data/shaders/shader.frag -------------------------------------------------------------------------------- /example-pointsAsTextures/bin/data/shaders/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/bin/data/shaders/shader.vert -------------------------------------------------------------------------------- /example-pointsAsTextures/bin/data/shaders_gles/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/bin/data/shaders_gles/shader.frag -------------------------------------------------------------------------------- /example-pointsAsTextures/bin/data/shaders_gles/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/bin/data/shaders_gles/shader.vert -------------------------------------------------------------------------------- /example-pointsAsTextures/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/config.make -------------------------------------------------------------------------------- /example-pointsAsTextures/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/src/main.cpp -------------------------------------------------------------------------------- /example-pointsAsTextures/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/src/ofApp.cpp -------------------------------------------------------------------------------- /example-pointsAsTextures/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-pointsAsTextures/src/ofApp.h -------------------------------------------------------------------------------- /example-simpleTexturing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/Makefile -------------------------------------------------------------------------------- /example-simpleTexturing/addons.make: -------------------------------------------------------------------------------- 1 | ofxRPI4Window 2 | -------------------------------------------------------------------------------- /example-simpleTexturing/bin/data/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/bin/data/img.jpg -------------------------------------------------------------------------------- /example-simpleTexturing/bin/data/shadersES2/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/bin/data/shadersES2/shader.frag -------------------------------------------------------------------------------- /example-simpleTexturing/bin/data/shadersES2/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/bin/data/shadersES2/shader.vert -------------------------------------------------------------------------------- /example-simpleTexturing/bin/data/shadersGL2/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/bin/data/shadersGL2/shader.frag -------------------------------------------------------------------------------- /example-simpleTexturing/bin/data/shadersGL2/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/bin/data/shadersGL2/shader.vert -------------------------------------------------------------------------------- /example-simpleTexturing/bin/data/shadersGL3/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/bin/data/shadersGL3/shader.frag -------------------------------------------------------------------------------- /example-simpleTexturing/bin/data/shadersGL3/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/bin/data/shadersGL3/shader.vert -------------------------------------------------------------------------------- /example-simpleTexturing/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/config.make -------------------------------------------------------------------------------- /example-simpleTexturing/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/src/main.cpp -------------------------------------------------------------------------------- /example-simpleTexturing/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/src/ofApp.cpp -------------------------------------------------------------------------------- /example-simpleTexturing/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-simpleTexturing/src/ofApp.h -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-vboMeshDrawInstanced/Makefile -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/addons.make: -------------------------------------------------------------------------------- 1 | ofxRPI4Window 2 | -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/bin/data/depth_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-vboMeshDrawInstanced/bin/data/depth_image.png -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/bin/data/shaders/instanced.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-vboMeshDrawInstanced/bin/data/shaders/instanced.frag -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/bin/data/shaders/instanced.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-vboMeshDrawInstanced/bin/data/shaders/instanced.vert -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/bin/data/shaders/instanced_120.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-vboMeshDrawInstanced/bin/data/shaders/instanced_120.frag -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/bin/data/shaders/instanced_120.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-vboMeshDrawInstanced/bin/data/shaders/instanced_120.vert -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-vboMeshDrawInstanced/config.make -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-vboMeshDrawInstanced/src/main.cpp -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-vboMeshDrawInstanced/src/ofApp.cpp -------------------------------------------------------------------------------- /example-vboMeshDrawInstanced/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-vboMeshDrawInstanced/src/ofApp.h -------------------------------------------------------------------------------- /example-videoPlayer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-videoPlayer/Makefile -------------------------------------------------------------------------------- /example-videoPlayer/addons.make: -------------------------------------------------------------------------------- 1 | ofxRPI4Window 2 | -------------------------------------------------------------------------------- /example-videoPlayer/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-videoPlayer/bin/data/movies/fingers.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-videoPlayer/bin/data/movies/fingers.mov -------------------------------------------------------------------------------- /example-videoPlayer/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-videoPlayer/config.make -------------------------------------------------------------------------------- /example-videoPlayer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-videoPlayer/src/main.cpp -------------------------------------------------------------------------------- /example-videoPlayer/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-videoPlayer/src/ofApp.cpp -------------------------------------------------------------------------------- /example-videoPlayer/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/example-videoPlayer/src/ofApp.h -------------------------------------------------------------------------------- /patchOF.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/patchOF.sh -------------------------------------------------------------------------------- /src/ofxRPI4Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/src/ofxRPI4Window.cpp -------------------------------------------------------------------------------- /src/ofxRPI4Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvcleave/ofxRPI4Window/HEAD/src/ofxRPI4Window.h --------------------------------------------------------------------------------