mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 09:52:27 -04:00
minor workaround
This commit is contained in:
parent
58675b889d
commit
753fa8e8fd
@ -171,7 +171,12 @@ process_pfm(const Filename &input_filename, PfmFile &file) {
|
||||
break;
|
||||
case 2:
|
||||
// Rotate 180 degrees.
|
||||
file.flip(true, true, false);
|
||||
|
||||
// Not sure right now why we can't flip both axes at once. But
|
||||
// it works if we do one at a time.
|
||||
//file.flip(true, true, false);
|
||||
file.flip(true, false, false);
|
||||
file.flip(false, true, false);
|
||||
break;
|
||||
case 3:
|
||||
// Rotate 90 degrees cw.
|
||||
|
Loading…
x
Reference in New Issue
Block a user