Skip to content

Commit

Permalink
bugfix for UsdImagingCameraAdapter::Get(exposureScale)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmolodo committed Dec 11, 2024
1 parent e4b381e commit 86c6dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pxr/usdImaging/usdImaging/cameraAdapter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ UsdImagingCameraAdapter::Get(UsdPrim const& prim,
return vExposureResponsivity;
} else if (key == HdCameraTokens->exposureScale) {
// The computed linear exposure multiplier ratio
return VtValue(log2(cam.ComputeLinearExposureScale(time)));
return VtValue(cam.ComputeLinearExposureScale(time));
}

VtValue v;
Expand Down

0 comments on commit 86c6dcd

Please sign in to comment.