├── .gitignore ├── .swift-version ├── LICENSE ├── Package.swift ├── README.md ├── SGLImage.podspec ├── SGLImage.xcodeproj ├── SGLImageTests_Info.plist ├── SGLImage_Info.plist ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── SGLImage-Package.xcscheme │ └── xcschememanagement.plist ├── Sources └── SGLImage │ ├── Image.swift │ ├── ImageBMP.swift │ ├── ImageGIF.swift │ ├── ImageLoader.swift │ ├── ImagePNG.swift │ └── Inflate.swift └── Tests ├── LinuxMain.swift └── SGLImageTests └── SwiftGLresImage.swift /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .build 3 | Packages 4 | xcuserdata 5 | *.xcworkspace 6 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/README.md -------------------------------------------------------------------------------- /SGLImage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/SGLImage.podspec -------------------------------------------------------------------------------- /SGLImage.xcodeproj/SGLImageTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/SGLImage.xcodeproj/SGLImageTests_Info.plist -------------------------------------------------------------------------------- /SGLImage.xcodeproj/SGLImage_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/SGLImage.xcodeproj/SGLImage_Info.plist -------------------------------------------------------------------------------- /SGLImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/SGLImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SGLImage.xcodeproj/xcshareddata/xcschemes/SGLImage-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/SGLImage.xcodeproj/xcshareddata/xcschemes/SGLImage-Package.xcscheme -------------------------------------------------------------------------------- /SGLImage.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/SGLImage.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Sources/SGLImage/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/Sources/SGLImage/Image.swift -------------------------------------------------------------------------------- /Sources/SGLImage/ImageBMP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/Sources/SGLImage/ImageBMP.swift -------------------------------------------------------------------------------- /Sources/SGLImage/ImageGIF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/Sources/SGLImage/ImageGIF.swift -------------------------------------------------------------------------------- /Sources/SGLImage/ImageLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/Sources/SGLImage/ImageLoader.swift -------------------------------------------------------------------------------- /Sources/SGLImage/ImagePNG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/Sources/SGLImage/ImagePNG.swift -------------------------------------------------------------------------------- /Sources/SGLImage/Inflate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/Sources/SGLImage/Inflate.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/SGLImageTests/SwiftGLresImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftGL/Image/HEAD/Tests/SGLImageTests/SwiftGLresImage.swift --------------------------------------------------------------------------------