forked from BradLarson/GPUImage2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Linux version is now working again, including the SimpleVideoFilter s…
…ample application. This time, full Swift Package Manager support is available.
- Loading branch information
1 parent
bf19a4e
commit ffd7b5a
Showing
18 changed files
with
141 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.DS_Store | ||
/.build | ||
/Packages | ||
/*.xcodeproj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "CFreeGLUT", | ||
"repositoryURL": "https://github.com/BradLarson/CFreeGLUT.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "efe8d33674300c032662f6031b84c93147b4a8b7", | ||
"version": "1.0.1" | ||
} | ||
}, | ||
{ | ||
"package": "COpenGL", | ||
"repositoryURL": "https://github.com/BradLarson/COpenGL.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "328a86b37fcfc177b1b74c987f5f2198731fbdb2", | ||
"version": "1.0.2" | ||
} | ||
}, | ||
{ | ||
"package": "CVideo4Linux", | ||
"repositoryURL": "https://github.com/BradLarson/CVideo4Linux.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "9598a1a7ce569119152572644debdca48c2d2a92", | ||
"version": "1.0.2" | ||
} | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// swift-tools-version:4.2 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "SimpleVideoFilter", | ||
dependencies: [ | ||
.package(path: "../../../../GPUImage2") | ||
], | ||
targets: [ | ||
.target( | ||
name: "SimpleVideoFilter", | ||
dependencies: ["GPUImage"], | ||
path: "Sources") | ||
] | ||
) |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.