-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issues/0109 valgrind issues in ctlrender with 16bit exr output (ampas…
…#116) * add RGBA EXR tests + valgrind tests for cltrender * rewrite exr_write16() code modeled after exr_write32() with additional change of Imf::PixelType pixelType = Imf::HALF and conversion from float to half * fixes issue ampas#109
- Loading branch information
1 parent
b23d48e
commit 2483047
Showing
9 changed files
with
182 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ build | |
unittest/ctlrender/output | ||
.DS_Store | ||
.vscode | ||
Testing |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,15 @@ | ||
void unity_with_alpha | ||
(output varying half rOut, | ||
output varying half gOut, | ||
output varying half bOut, | ||
output varying half aOut, | ||
input varying half rIn, | ||
input varying half gIn, | ||
input varying half bIn, | ||
input varying half aIn) | ||
{ | ||
rOut=rIn; | ||
gOut=gIn; | ||
bOut=bIn; | ||
aOut=aIn; | ||
} |