Skip to content

Commit

Permalink
fix(iba): Add missing version of warp
Browse files Browse the repository at this point in the history
It was documented and declared, but implementation was missing in
action.

Signed-off-by: Larry Gritz <lg@larrygritz.com>
  • Loading branch information
lgritz committed Aug 25, 2024
1 parent 6b2d140 commit 40e3056
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/libOpenImageIO/imagebufalgo_xform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,19 @@ ImageBufAlgo::warp(ImageBuf& dst, const ImageBuf& src, M33fParam M,



ImageBuf
ImageBufAlgo::warp(const ImageBuf& src, M33fParam M, KWArgs options, ROI roi,
int nthreads)
{
ImageBuf result;
bool ok = warp(result, src, M, options, roi, nthreads);
if (!ok && !result.has_error())
result.errorfmt("ImageBufAlgo::warp() error");
return result;
}



bool
ImageBufAlgo::warp(ImageBuf& dst, const ImageBuf& src, M33fParam M,
const Filter2D* filter, bool recompute_roi,
Expand Down

0 comments on commit 40e3056

Please sign in to comment.