├── .gitignore ├── COPYING ├── dynamicPathExample ├── Makefile ├── Project.xcconfig ├── addons.make ├── config.make ├── dynamicPathExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── dynamicPathExample Debug.xcscheme │ │ └── dynamicPathExample Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example ├── Makefile ├── Project.xcconfig ├── addons.make ├── config.make ├── example.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example Debug.xcscheme │ │ └── example Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── libs └── ShivaVG │ ├── AUTHORS │ ├── COPYING │ ├── NEWS │ ├── README │ ├── include │ └── vg │ │ ├── openvg.h │ │ └── vgu.h │ └── src │ ├── shArrayBase.h │ ├── shArrays.c │ ├── shArrays.h │ ├── shContext.c │ ├── shContext.h │ ├── shDefs.h │ ├── shExtensions.c │ ├── shExtensions.h │ ├── shGeometry.c │ ├── shGeometry.h │ ├── shImage.c │ ├── shImage.h │ ├── shPaint.c │ ├── shPaint.h │ ├── shParams.c │ ├── shPath.c │ ├── shPath.h │ ├── shPipeline.c │ ├── shVectors.c │ ├── shVectors.h │ └── shVgu.c ├── readme.md └── src ├── ofxShivaVGRenderer.cpp ├── ofxShivaVGRenderer.h ├── simpleVGContext.cpp ├── simpleVGContext.h ├── simpleVGPath.cpp └── simpleVGPath.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/COPYING -------------------------------------------------------------------------------- /dynamicPathExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/dynamicPathExample/Makefile -------------------------------------------------------------------------------- /dynamicPathExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/dynamicPathExample/Project.xcconfig -------------------------------------------------------------------------------- /dynamicPathExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxShivaVG 2 | -------------------------------------------------------------------------------- /dynamicPathExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/dynamicPathExample/config.make -------------------------------------------------------------------------------- /dynamicPathExample/dynamicPathExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/dynamicPathExample/dynamicPathExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dynamicPathExample/dynamicPathExample.xcodeproj/xcshareddata/xcschemes/dynamicPathExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/dynamicPathExample/dynamicPathExample.xcodeproj/xcshareddata/xcschemes/dynamicPathExample Debug.xcscheme -------------------------------------------------------------------------------- /dynamicPathExample/dynamicPathExample.xcodeproj/xcshareddata/xcschemes/dynamicPathExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/dynamicPathExample/dynamicPathExample.xcodeproj/xcshareddata/xcschemes/dynamicPathExample Release.xcscheme -------------------------------------------------------------------------------- /dynamicPathExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/dynamicPathExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /dynamicPathExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/dynamicPathExample/src/main.cpp -------------------------------------------------------------------------------- /dynamicPathExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/dynamicPathExample/src/ofApp.cpp -------------------------------------------------------------------------------- /dynamicPathExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/dynamicPathExample/src/ofApp.h -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxShivaVG 2 | -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/example/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /libs/ShivaVG/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/AUTHORS -------------------------------------------------------------------------------- /libs/ShivaVG/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/COPYING -------------------------------------------------------------------------------- /libs/ShivaVG/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/NEWS -------------------------------------------------------------------------------- /libs/ShivaVG/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/README -------------------------------------------------------------------------------- /libs/ShivaVG/include/vg/openvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/include/vg/openvg.h -------------------------------------------------------------------------------- /libs/ShivaVG/include/vg/vgu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/include/vg/vgu.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shArrayBase.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shArrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shArrays.c -------------------------------------------------------------------------------- /libs/ShivaVG/src/shArrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shArrays.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shContext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shContext.c -------------------------------------------------------------------------------- /libs/ShivaVG/src/shContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shContext.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shDefs.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shExtensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shExtensions.c -------------------------------------------------------------------------------- /libs/ShivaVG/src/shExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shExtensions.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shGeometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shGeometry.c -------------------------------------------------------------------------------- /libs/ShivaVG/src/shGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shGeometry.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shImage.c -------------------------------------------------------------------------------- /libs/ShivaVG/src/shImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shImage.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shPaint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shPaint.c -------------------------------------------------------------------------------- /libs/ShivaVG/src/shPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shPaint.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shParams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shParams.c -------------------------------------------------------------------------------- /libs/ShivaVG/src/shPath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shPath.c -------------------------------------------------------------------------------- /libs/ShivaVG/src/shPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shPath.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shPipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shPipeline.c -------------------------------------------------------------------------------- /libs/ShivaVG/src/shVectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shVectors.c -------------------------------------------------------------------------------- /libs/ShivaVG/src/shVectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shVectors.h -------------------------------------------------------------------------------- /libs/ShivaVG/src/shVgu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/libs/ShivaVG/src/shVgu.c -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/readme.md -------------------------------------------------------------------------------- /src/ofxShivaVGRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/src/ofxShivaVGRenderer.cpp -------------------------------------------------------------------------------- /src/ofxShivaVGRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/src/ofxShivaVGRenderer.h -------------------------------------------------------------------------------- /src/simpleVGContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/src/simpleVGContext.cpp -------------------------------------------------------------------------------- /src/simpleVGContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/src/simpleVGContext.h -------------------------------------------------------------------------------- /src/simpleVGPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/src/simpleVGPath.cpp -------------------------------------------------------------------------------- /src/simpleVGPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgstaal/ofxShivaVG/HEAD/src/simpleVGPath.h --------------------------------------------------------------------------------