Skip to content

Commit 8af72a5

Browse files
committed
Resolve an issue for some images where the MKTextureLoader would return an error loading the image
1 parent 72374ff commit 8af72a5

File tree

64 files changed

+1730
-9909
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1730
-9909
lines changed

PixelSDK-GPUImage3.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'PixelSDK-GPUImage3'
33
s.module_name = 'GPUImage'
4-
s.version = '3.1.1'
4+
s.version = '3.1.3'
55
s.license = 'BSD'
66
s.summary = 'An open source iOS framework for GPU-based image and video processing.'
77
s.homepage = 'https://github.com/GottaYotta/GPUImage3'

framework.zip

-1.01 MB
Binary file not shown.

framework/Build/GPUImage.iOS-simulator.xcarchive/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<key>ArchiveVersion</key>
66
<integer>2</integer>
77
<key>CreationDate</key>
8-
<date>2022-02-11T03:28:25Z</date>
8+
<date>2022-07-19T05:21:26Z</date>
99
<key>Name</key>
1010
<string>GPUImage_iOS</string>
1111
<key>SchemeName</key>

framework/Build/GPUImage.iOS-simulator.xcarchive/Products/Library/Frameworks/GPUImage.framework/Headers/GPUImage-Swift.h

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
3-
// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
3+
// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)
44
#ifndef GPUIMAGE_SWIFT_H
55
#define GPUIMAGE_SWIFT_H
66
#pragma clang diagnostic push
@@ -186,6 +186,13 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
186186
#if !defined(IBSegueAction)
187187
# define IBSegueAction
188188
#endif
189+
#if !defined(SWIFT_EXTERN)
190+
# if defined(__cplusplus)
191+
# define SWIFT_EXTERN extern "C"
192+
# else
193+
# define SWIFT_EXTERN extern
194+
# endif
195+
#endif
189196
#if __has_feature(modules)
190197
#if __has_warning("-Watimport-in-framework-header")
191198
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
@@ -243,7 +250,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) Class _Nonnull layer
243250
#endif
244251

245252
#elif defined(__x86_64__) && __x86_64__
246-
// Generated by Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
253+
// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)
247254
#ifndef GPUIMAGE_SWIFT_H
248255
#define GPUIMAGE_SWIFT_H
249256
#pragma clang diagnostic push
@@ -429,6 +436,13 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
429436
#if !defined(IBSegueAction)
430437
# define IBSegueAction
431438
#endif
439+
#if !defined(SWIFT_EXTERN)
440+
# if defined(__cplusplus)
441+
# define SWIFT_EXTERN extern "C"
442+
# else
443+
# define SWIFT_EXTERN extern
444+
# endif
445+
#endif
432446
#if __has_feature(modules)
433447
#if __has_warning("-Watimport-in-framework-header")
434448
#pragma clang diagnostic ignored "-Watimport-in-framework-header"

framework/Build/GPUImage.iOS-simulator.xcarchive/Products/Library/Frameworks/GPUImage.framework/Modules/GPUImage.swiftmodule/arm64-apple-ios-simulator.swiftinterface

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// swift-interface-format-version: 1.0
2-
// swift-compiler-version: Apple Swift version 5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)
2+
// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)
33
// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name GPUImage
44
import AVFoundation
55
import Foundation
@@ -950,6 +950,7 @@ public class Pixellate : GPUImage.BasicOperation {
950950
public enum PictureInputError : Swift.Error, Swift.CustomStringConvertible {
951951
case cgImageNilError
952952
case noSuchImageError(imageName: Swift.String)
953+
case convertToPNGError
953954
public var errorDescription: Swift.String {
954955
get
955956
}

0 commit comments

Comments
 (0)