jamesbowman / openexrpython

OpenEXR bindings for Python
Other
95 stars 35 forks source link

Fix segfault with DECREASING_Y line order (#13) #15

Closed tiagoshibata closed 6 years ago

tiagoshibata commented 6 years ago

Fix #13.

If header.lineOrder() == DECREASING_Y, the scan line is initialized to point to the max y value of the window and decreases at each scan line (see here). We have to adjust to point to the correct address in the client buffer.

jamesbowman commented 6 years ago

Looks good, thanks