-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tests #12
Conversation
Codecov Report
@@ Coverage Diff @@
## master #12 +/- ##
=========================================
Coverage ? 34.41%
=========================================
Files ? 2
Lines ? 215
Branches ? 0
=========================================
Hits ? 74
Misses ? 141
Partials ? 0 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me! Only one question on fixed point types (N0f8
).
(RGBA{Float32}, RGBA{Float16}), | ||
(RGB{Float32}, RGB{Float16}), | ||
(GrayA{Float32}, GrayA{Float16}), | ||
(Gray{Float32}, Gray{Float16}), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are Gray{N0f8}
/RGB{N0f8}
supported here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
N0f8
-based colors are already tested in a section not present in the diff, in the "Lossless with type conversion"
testset.
Addresses #9 #8