Skip to content

Commit

Permalink
Quick fixes for some issues while I work on others.
Browse files Browse the repository at this point in the history
  • Loading branch information
BradLarson committed Apr 26, 2019
1 parent 20ab871 commit 32875d8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ let filterOperations: Array<FilterOperationInterface> = [
sliderUpdateCallback:nil,
filterOperationType:.singleInput
),
FilterOperation(
/* FilterOperation(
filter:{Histogram(type:.rgb)},
listName:"Histogram",
titleName:"Histogram",
Expand All @@ -310,7 +310,7 @@ let filterOperations: Array<FilterOperationInterface> = [

return blendFilter
})
),
),*/
FilterOperation (
filter:{HistogramEqualization(type:.rgb)},
listName:"Histogram equalization",
Expand Down Expand Up @@ -678,7 +678,7 @@ let filterOperations: Array<FilterOperationInterface> = [
sliderUpdateCallback: nil,
filterOperationType:.singleInput
),
FilterOperation(
/* FilterOperation(
filter:{Posterize()},
listName:"Posterize",
titleName:"Posterize",
Expand All @@ -687,7 +687,7 @@ let filterOperations: Array<FilterOperationInterface> = [
filter.colorLevels = round(sliderValue)
},
filterOperationType:.singleInput
),
),*/
FilterOperation(
filter:{Convolution3x3()},
listName:"3x3 convolution",
Expand Down Expand Up @@ -747,7 +747,7 @@ let filterOperations: Array<FilterOperationInterface> = [
return blendFilter
})
),
FilterOperation(
/* FilterOperation(
filter:{KuwaharaFilter()},
listName:"Kuwahara",
titleName:"Kuwahara",
Expand All @@ -756,7 +756,7 @@ let filterOperations: Array<FilterOperationInterface> = [
filter.radius = Int(round(sliderValue))
},
filterOperationType:.singleInput
),
),*/
FilterOperation(
filter:{KuwaharaRadius3Filter()},
listName:"Kuwahara (radius 3)",
Expand Down
2 changes: 2 additions & 0 deletions examples/Mac/FilterShowcase/FilterShowcase/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
<string>1</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSCameraUsageDescription</key>
<string>This application uses the camera to filter and display video.</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2016 Sunset Lake Software LLC. All rights reserved.</string>
<key>NSMainNibFile</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@
TargetAttributes = {
BC0037B6195CA11B00B9D651 = {
CreatedOnToolsVersion = 6.0;
DevelopmentTeam = J2U2U9GBML;
LastSwiftMigration = 0940;
ProvisioningStyle = Automatic;
};
Expand Down Expand Up @@ -442,7 +443,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = "";
DEVELOPMENT_TEAM = J2U2U9GBML;
INFOPLIST_FILE = FilterShowcaseSwift/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.sunsetlakesoftware.${PRODUCT_NAME:rfc1034identifier}";
Expand All @@ -460,7 +461,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = "";
DEVELOPMENT_TEAM = J2U2U9GBML;
INFOPLIST_FILE = FilterShowcaseSwift/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.sunsetlakesoftware.${PRODUCT_NAME:rfc1034identifier}";
Expand Down

0 comments on commit 32875d8

Please sign in to comment.