diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-01-04 13:54:15 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-01-04 13:54:15 +0000 |
| commit | c2018e0dae9ed2503b6244a47524a7ce16eedb0b (patch) | |
| tree | 267fc895ab639dbd59c460867a90efe9bbee7e40 /src/stereo_picture_frame.cc | |
| parent | 3a546df5dacafb99958d53c9738e135d4f0deb2b (diff) | |
Try to fix static initialisation order problems.
Diffstat (limited to 'src/stereo_picture_frame.cc')
| -rw-r--r-- | src/stereo_picture_frame.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stereo_picture_frame.cc b/src/stereo_picture_frame.cc index 3e872e2b..c510641d 100644 --- a/src/stereo_picture_frame.cc +++ b/src/stereo_picture_frame.cc @@ -89,7 +89,7 @@ StereoPictureFrame::argb_frame (Eye eye, int reduce, float srgb_gamma) const break; } - return xyz_to_rgba (xyz_frame, ColourConversion::xyz_to_srgb); + return xyz_to_rgba (xyz_frame, ColourConversion::xyz_to_srgb ()); } void @@ -105,7 +105,7 @@ StereoPictureFrame::rgb_frame (Eye eye, uint16_t* buffer) const break; } - return xyz_to_rgb (xyz_frame, ColourConversion::xyz_to_srgb, buffer); + return xyz_to_rgb (xyz_frame, ColourConversion::xyz_to_srgb (), buffer); } uint8_t const * |
