[darktable-devel] Building with lua support on Arch linux.

2015-05-16 Thread Felix Manuel Cobos Sánchez
Hi, Today Arch seems to have updated lua to version 5.3. Version 5.2 is in the package lua52. I had to change the pkg_search_module in FindLua52.cmake from "pkg_search_module(LUA52 lua5.2 lua-5.2 lua)" to "pkg_search_module(LUA52 lua52 lua5.2 lua-5.2 lua)" to be able to compile. It seems it was

Re: [darktable-devel] Add support for big-endian pfm images.

2015-05-16 Thread johannes hanika
do you have a real use case for this? the beauty of pfm is that it doesn't support a lot of fancy things.. -jo On Sat, May 16, 2015 at 8:39 PM, Taahir Ahmed wrote: > Previously, pfm images were unconditionally assumed to be little-endian > images. However, pfm images also come in a big-endian

Re: [darktable-devel] White balance presets for Panasonic DMC-GM1

2015-05-16 Thread thokster
thx done Am 16.05.2015, 14:44 Uhr, schrieb Pedro Côrte-Real : > On Sat, May 16, 2015 at 1:27 PM, thokster wrote: >> >> Hi, >> >> this are the wb_presets extracted with wb_extract.pl. >> >> Panasonic DMC-GM-1 >> Firmware 1.1 >> >>{ "DMC-GM1", "", "Daylight", 0, { 2.469697, 1,

Re: [darktable-devel] White balance presets for Panasonic DMC-GM1

2015-05-16 Thread Pedro Côrte-Real
On Sat, May 16, 2015 at 1:27 PM, thokster wrote: > > Hi, > > this are the wb_presets extracted with wb_extract.pl. > > Panasonic DMC-GM-1 > Firmware 1.1 > >{ "DMC-GM1", "", "Daylight", 0, { 2.469697, 1, 1.659091, 0 > } }, >{ "DMC-GM1", "", "Cloudy", 0, { 2.609

[darktable-devel] White balance presets for Panasonic DMC-GM1

2015-05-16 Thread thokster
Hi, this are the wb_presets extracted with wb_extract.pl. Panasonic DMC-GM-1 Firmware 1.1 { "DMC-GM1", "", "Daylight", 0, { 2.469697, 1, 1.659091, 0 } }, { "DMC-GM1", "", "Cloudy", 0, { 2.609848, 1, 1.55303, 0 } }, { "DMC-GM1", "", "Shade", 0,

[darktable-devel] Add support for big-endian pfm images.

2015-05-16 Thread Taahir Ahmed
Previously, pfm images were unconditionally assumed to be little-endian images. However, pfm images also come in a big-endian flavor, so this patch rewrites dt_imageio_open_pfm to support arbitrary endianness. It has been minimally-tested by ensuring that both flavors of pfm images open properly