├── .gitignore ├── LICENSE ├── README.markdown ├── example ├── Classes │ ├── GLGifExampleAppDelegate.h │ ├── GLGifExampleAppDelegate.m │ ├── GLGifExampleViewController.h │ ├── GLGifExampleViewController.m │ ├── PlayerView.h │ └── PlayerView.m ├── GLGifExample.xcodeproj │ └── project.pbxproj ├── GLGifExampleViewController.xib ├── GLGifExample_Prefix.pch ├── Info.plist ├── MainWindow.xib ├── lungif │ ├── dgif_lib.c │ ├── egif_lib.c │ ├── gif_err.c │ ├── gif_lib.h │ ├── gif_lib_private.h │ └── gifalloc.c ├── main.m └── test.gif └── glgif ├── GifVideo.h ├── GifVideo.m ├── Video.h ├── Video.m ├── VideoSource.h ├── VideoSource.m ├── VideoTexture.h └── VideoTexture.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/README.markdown -------------------------------------------------------------------------------- /example/Classes/GLGifExampleAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/Classes/GLGifExampleAppDelegate.h -------------------------------------------------------------------------------- /example/Classes/GLGifExampleAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/Classes/GLGifExampleAppDelegate.m -------------------------------------------------------------------------------- /example/Classes/GLGifExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/Classes/GLGifExampleViewController.h -------------------------------------------------------------------------------- /example/Classes/GLGifExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/Classes/GLGifExampleViewController.m -------------------------------------------------------------------------------- /example/Classes/PlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/Classes/PlayerView.h -------------------------------------------------------------------------------- /example/Classes/PlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/Classes/PlayerView.m -------------------------------------------------------------------------------- /example/GLGifExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/GLGifExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/GLGifExampleViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/GLGifExampleViewController.xib -------------------------------------------------------------------------------- /example/GLGifExample_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/GLGifExample_Prefix.pch -------------------------------------------------------------------------------- /example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/Info.plist -------------------------------------------------------------------------------- /example/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/MainWindow.xib -------------------------------------------------------------------------------- /example/lungif/dgif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/lungif/dgif_lib.c -------------------------------------------------------------------------------- /example/lungif/egif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/lungif/egif_lib.c -------------------------------------------------------------------------------- /example/lungif/gif_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/lungif/gif_err.c -------------------------------------------------------------------------------- /example/lungif/gif_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/lungif/gif_lib.h -------------------------------------------------------------------------------- /example/lungif/gif_lib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/lungif/gif_lib_private.h -------------------------------------------------------------------------------- /example/lungif/gifalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/lungif/gifalloc.c -------------------------------------------------------------------------------- /example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/main.m -------------------------------------------------------------------------------- /example/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/example/test.gif -------------------------------------------------------------------------------- /glgif/GifVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/glgif/GifVideo.h -------------------------------------------------------------------------------- /glgif/GifVideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/glgif/GifVideo.m -------------------------------------------------------------------------------- /glgif/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/glgif/Video.h -------------------------------------------------------------------------------- /glgif/Video.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/glgif/Video.m -------------------------------------------------------------------------------- /glgif/VideoSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/glgif/VideoSource.h -------------------------------------------------------------------------------- /glgif/VideoSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/glgif/VideoSource.m -------------------------------------------------------------------------------- /glgif/VideoTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/glgif/VideoTexture.h -------------------------------------------------------------------------------- /glgif/VideoTexture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesu/glgif/HEAD/glgif/VideoTexture.m --------------------------------------------------------------------------------