Skip to content

Commit

Permalink
Fixed half-float EXR support in the OIIO plugin
Browse files Browse the repository at this point in the history
Fixes #581

(Internal change: 1905526)
  • Loading branch information
rajabala authored and pixar-oss committed Oct 26, 2018
1 parent ec43512 commit f052cec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pxr/imaging/lib/glf/oiioImage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ _GetOIIOBaseType(GLenum type)
case GL_UNSIGNED_INT:
case GL_INT:
return TypeDesc::UINT;
case GL_HALF_FLOAT:
return TypeDesc::HALF;
case GL_FLOAT:
return TypeDesc::FLOAT;
default:
Expand Down

0 comments on commit f052cec

Please sign in to comment.