Skip to content

Commit

Permalink
Implement PixImage scaling function
Browse files Browse the repository at this point in the history
  • Loading branch information
hyazinthh committed Oct 19, 2022
1 parent 83aafed commit 246cc7d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Tests/Aardvark.Base.Windows.Tests/PixLoaderTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ module PixLoaderTests =
let pixEncoder (useStream : bool) (format : PixFileFormat) =
pixLoader
|> Gen.filter (fun loader ->
not (loader.Name = "ImageSharp" && format = PixFileFormat.Tiff) && // ImageSharp support for TIFFs is buggy atm
not (loader.Name = "DevIL" && format = PixFileFormat.Gif) && // DevIL does not support saving GIFs
not (loader.Name = "DevIL" && format = PixFileFormat.Tiff && useStream) // DevIL does not support saving TIFFs to streams
)
Expand Down

0 comments on commit 246cc7d

Please sign in to comment.