├── README.md ├── example-croppedWindow ├── addons.make ├── bin │ └── data │ │ └── .gitkeep └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ └── ofxScreenGrabCropped.h ├── example ├── .DS_Store ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ ├── .DS_Store │ ├── data │ │ └── .gitkeep │ └── exampleDebug.app │ │ └── Contents │ │ ├── Frameworks │ │ └── GLUT.framework │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ │ ├── copy.h │ │ │ │ ├── extrude.h │ │ │ │ ├── glsmap.h │ │ │ │ ├── glsmapint.h │ │ │ │ ├── glut.h │ │ │ │ ├── glutbitmap.h │ │ │ │ ├── glutf90.h │ │ │ │ ├── glutstroke.h │ │ │ │ ├── gutil.h │ │ │ │ ├── intersect.h │ │ │ │ ├── port.h │ │ │ │ ├── rot.h │ │ │ │ ├── segment.h │ │ │ │ ├── tube.h │ │ │ │ ├── tube_gc.h │ │ │ │ └── vvector.h │ │ │ └── Resources │ │ │ │ ├── Caution.tiff │ │ │ │ ├── English.lproj │ │ │ │ ├── GLUT.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTUI.strings │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── blankCursor.tiff │ │ │ │ ├── bottomCursor.tiff │ │ │ │ ├── bottomleftCursor.tiff │ │ │ │ ├── bottomrightCursor.tiff │ │ │ │ ├── crossCursor.tiff │ │ │ │ ├── cycleCursor.tiff │ │ │ │ ├── destroyCursor.tiff │ │ │ │ ├── fingerCursor.tiff │ │ │ │ ├── helpCursor.tiff │ │ │ │ ├── leftCursor.tiff │ │ │ │ ├── leftRightCursor.tiff │ │ │ │ ├── rightArrowCursor.tiff │ │ │ │ ├── rightCursor.tiff │ │ │ │ ├── sprayCursor.tiff │ │ │ │ ├── topCursor.tiff │ │ │ │ ├── topleftCursor.tiff │ │ │ │ ├── toprightCursor.tiff │ │ │ │ ├── upDownCursor.tiff │ │ │ │ └── waitCursor.tiff │ │ │ └── Current │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── exampleDebug │ │ └── libfmodex.dylib │ │ ├── PkgInfo │ │ └── Resources │ │ └── icon-debug.icns ├── config.make ├── example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── example.xccheckout │ │ └── xcuserdata │ │ │ └── Gene.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example Debug.xcscheme │ │ │ └── example Release.xcscheme │ └── xcuserdata │ │ └── Gene.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── src ├── macGlutfix.h ├── macGlutfix.m ├── ofxScreenGrab.cpp └── ofxScreenGrab.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/README.md -------------------------------------------------------------------------------- /example-croppedWindow/addons.make: -------------------------------------------------------------------------------- 1 | ofxScreenGrab 2 | -------------------------------------------------------------------------------- /example-croppedWindow/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-croppedWindow/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example-croppedWindow/src/main.cpp -------------------------------------------------------------------------------- /example-croppedWindow/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example-croppedWindow/src/ofApp.cpp -------------------------------------------------------------------------------- /example-croppedWindow/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example-croppedWindow/src/ofApp.h -------------------------------------------------------------------------------- /example-croppedWindow/src/ofxScreenGrabCropped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example-croppedWindow/src/ofxScreenGrabCropped.h -------------------------------------------------------------------------------- /example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/.DS_Store -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxScreenGrab 2 | -------------------------------------------------------------------------------- /example/bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/.DS_Store -------------------------------------------------------------------------------- /example/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- 1 | Versions/Current/GLUT -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Info.plist -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/MacOS/exampleDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/MacOS/exampleDebug -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /example/bin/exampleDebug.app/Contents/Resources/icon-debug.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/bin/exampleDebug.app/Contents/Resources/icon-debug.icns -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/xcshareddata/example.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/example.xcodeproj/project.xcworkspace/xcshareddata/example.xccheckout -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/xcuserdata/Gene.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/example.xcodeproj/project.xcworkspace/xcuserdata/Gene.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcuserdata/Gene.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/example.xcodeproj/xcuserdata/Gene.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /src/macGlutfix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/src/macGlutfix.h -------------------------------------------------------------------------------- /src/macGlutfix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/src/macGlutfix.m -------------------------------------------------------------------------------- /src/ofxScreenGrab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/src/ofxScreenGrab.cpp -------------------------------------------------------------------------------- /src/ofxScreenGrab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxScreenGrab/HEAD/src/ofxScreenGrab.h --------------------------------------------------------------------------------