[darktable-devel] dt only shows black screen at start

2015-01-03 Thread Alexander Rabtchevich
Hello

I can only see a dark rectangle of the program instead of its controls. 
Pressing L, D, F11 changes nothing. gdb shows no problems and the 
program does nothing at least it does not consume processor power. 
Current git. Deletion of library file hasn't helped.

With respect,
Alexander Rabtchevich

--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] lighttable thumbnail cache

2015-01-03 Thread johannes hanika
interesting that it seems to complain about the pixelpipe cache, this is
still the untouched old implementation (we only replaced the mipmap cache).

-jo

On Sat, Jan 3, 2015 at 1:29 PM, Edouard Gomez  wrote:

> On 01/02/2015 09:22 PM, johannes hanika wrote:
> > this is now merged to master. let us know how it goes and if you have
> > any questions.
>
> I get crashes when generating the cache w/ darktable-cli.
>
> The first crash can be reproduced at the same picture if i delete the
> cache dir. Once i get past the first carsh, i have to run the program
> twice more to get the cache fully generated.
>
> So I built a -fsanitize=address binary to check. It's failing in freeing
> one cache entry. So i added code to NULLify any dt_free_align buffer in
> pixelpipe_cache.c. It didn't help. However, there is an alloc w/o proper
> fail path at:
> src/develop/pixelpipe_cache.c@165
> cache->data[max] = (void *)dt_alloc_align(16, size);
>
> Note that adding a check + printf did not trigger any console message.
> So i doubt a failed alloc is causing the crash.
>
> But it's still good to chck if that alloc should be checked.
>
> Here is the backtrace from the erroneous free.
>
> creating complete lighttable thumbnail cache
> creating cache directories
> creating cache directory
>
> '/home/ed/.cache/darktable/mipmaps-a5b98b94af3cd931aa8f96693a3768e491a5e6e9.d/0'
> creating cache directory
>
> '/home/ed/.cache/darktable/mipmaps-a5b98b94af3cd931aa8f96693a3768e491a5e6e9.d/1'
> creating cache directory
>
> '/home/ed/.cache/darktable/mipmaps-a5b98b94af3cd931aa8f96693a3768e491a5e6e9.d/2'
> image 159/654 (24.31%)==26307==AddressSanitizer CHECK
> failed: ../../../../src/libsanitizer/asan/asan_allocator2.cc:269
> "((m->chunk_state)) == ((CHUNK_QUARANTINE))" (0x6b, 0x3)
> #0 0x7fb88a9edba3 (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x59ba3)
> #1 0x7fb88a9f1ae3 in __sanitizer::CheckFailed(char const*, int, char
> const*, unsigned long long, unsigned long long)
> (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x5dae3)
> #2 0x7fb88a9b2429 (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x1e429)
> #3 0x7fb88a9b49c9 (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x209c9)
> #4 0x7fb88a9b28df (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x1e8df)
> #5 0x7fb88a9e84d5 in __interceptor_free
> (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x544d5)
> #6 0x7fb88a47f230 in dt_dev_pixelpipe_cache_cleanup
> /home/ed/programming/workspace/darktable/src/develop/pixelpipe_cache.c:77
> #7 0x7fb88a488aa4 in dt_dev_pixelpipe_cleanup
> /home/ed/programming/workspace/darktable/src/develop/pixelpipe_hb.c:161
> #8 0x7fb88a401e18 in dt_imageio_export_with_flags
> /home/ed/programming/workspace/darktable/src/common/imageio.c:813
> #9 0x7fb88a4228ed in _init_8
> /home/ed/programming/workspace/darktable/src/common/mipmap_cache.c:951
> #10 0x7fb88a4228ed in dt_mipmap_cache_get_with_caller
> /home/ed/programming/workspace/darktable/src/common/mipmap_cache.c:623
> #11 0x403d4b in generate_thumbnail_cache
> /home/ed/programming/workspace/darktable/src/cli/main.c:96
> #12 0x403d4b in main
> /home/ed/programming/workspace/darktable/src/cli/main.c:271
> #13 0x7fb88453db44 in __libc_start_main
> (/lib/x86_64-linux-gnu/libc.so.6+0x21b44)
> #14 0x40420b (/home/ed/opt/darktable/bin/darktable-cli+0x40420b)
>
>
> --
> Edouard Gomez
>
>
> --
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is
> your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net
> ___
> darktable-devel mailing list
> darktable-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/darktable-devel
>
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] lighttable thumbnail cache

2015-01-03 Thread Edouard Gomez
What would you advise me to look at ?
As the crash seems related to the same image processing, can I output easily the filenames being processed ?
On 3 Jan 2015 14:10, johannes hanika  wrote:interesting that it seems to complain about the pixelpipe cache, this is still the untouched old implementation (we only replaced the mipmap cache).-joOn Sat, Jan 3, 2015 at 1:29 PM, Edouard Gomez  wrote:On 01/02/2015 09:22 PM, johannes hanika wrote:
> this is now merged to master. let us know how it goes and if you have
> any questions.

I get crashes when generating the cache w/ darktable-cli.

The first crash can be reproduced at the same picture if i delete the
cache dir. Once i get past the first carsh, i have to run the program
twice more to get the cache fully generated.

So I built a -fsanitize=address binary to check. It's failing in freeing
one cache entry. So i added code to NULLify any dt_free_align buffer in
pixelpipe_cache.c. It didn't help. However, there is an alloc w/o proper
fail path at:
src/develop/pixelpipe_cache.c@165
cache->data[max] = (void *)dt_alloc_align(16, size);

Note that adding a check + printf did not trigger any console message.
So i doubt a failed alloc is causing the crash.

But it's still good to chck if that alloc should be checked.

Here is the backtrace from the erroneous free.

creating complete lighttable thumbnail cache
creating cache directories
creating cache directory
'/home/ed/.cache/darktable/mipmaps-a5b98b94af3cd931aa8f96693a3768e491a5e6e9.d/0'
creating cache directory
'/home/ed/.cache/darktable/mipmaps-a5b98b94af3cd931aa8f96693a3768e491a5e6e9.d/1'
creating cache directory
'/home/ed/.cache/darktable/mipmaps-a5b98b94af3cd931aa8f96693a3768e491a5e6e9.d/2'
image 159/654 (24.31%)            ==26307==AddressSanitizer CHECK
failed: ../../../../src/libsanitizer/asan/asan_allocator2.cc:269
"((m->chunk_state)) == ((CHUNK_QUARANTINE))" (0x6b, 0x3)
    #0 0x7fb88a9edba3 (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x59ba3)
    #1 0x7fb88a9f1ae3 in __sanitizer::CheckFailed(char const*, int, char
const*, unsigned long long, unsigned long long)
(/usr/lib/x86_64-linux-gnu/libasan.so.1+0x5dae3)
    #2 0x7fb88a9b2429 (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x1e429)
    #3 0x7fb88a9b49c9 (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x209c9)
    #4 0x7fb88a9b28df (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x1e8df)
    #5 0x7fb88a9e84d5 in __interceptor_free
(/usr/lib/x86_64-linux-gnu/libasan.so.1+0x544d5)
    #6 0x7fb88a47f230 in dt_dev_pixelpipe_cache_cleanup
/home/ed/programming/workspace/darktable/src/develop/pixelpipe_cache.c:77
    #7 0x7fb88a488aa4 in dt_dev_pixelpipe_cleanup
/home/ed/programming/workspace/darktable/src/develop/pixelpipe_hb.c:161
    #8 0x7fb88a401e18 in dt_imageio_export_with_flags
/home/ed/programming/workspace/darktable/src/common/imageio.c:813
    #9 0x7fb88a4228ed in _init_8
/home/ed/programming/workspace/darktable/src/common/mipmap_cache.c:951
    #10 0x7fb88a4228ed in dt_mipmap_cache_get_with_caller
/home/ed/programming/workspace/darktable/src/common/mipmap_cache.c:623
    #11 0x403d4b in generate_thumbnail_cache
/home/ed/programming/workspace/darktable/src/cli/main.c:96
    #12 0x403d4b in main
/home/ed/programming/workspace/darktable/src/cli/main.c:271
    #13 0x7fb88453db44 in __libc_start_main
(/lib/x86_64-linux-gnu/libc.so.6+0x21b44)
    #14 0x40420b (/home/ed/opt/darktable/bin/darktable-cli+0x40420b)


--
Edouard Gomez

--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel

--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread Dave
Ditto me.
Thought I'd broken something :(.
 On 3 Jan 2015 12:28, "Alexander Rabtchevich" <
alexander.v.rabtchev...@gmx.net> wrote:

> Hello
>
> I can only see a dark rectangle of the program instead of its controls.
> Pressing L, D, F11 changes nothing. gdb shows no problems and the
> program does nothing at least it does not consume processor power.
> Current git. Deletion of library file hasn't helped.
>
> With respect,
> Alexander Rabtchevich
>
>
> --
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is
> your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net
> ___
> darktable-devel mailing list
> darktable-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/darktable-devel
>
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread Francois Connetable
Same thing here (running on GNOME ubuntu latest, NVIDIA openCL).

Hope it helps,
-Francois
Le 3 janv. 2015 11:25, Alexander Rabtchevich  
a écrit :
>
> Hello 
>
> I can only see a dark rectangle of the program instead of its controls. 
> Pressing L, D, F11 changes nothing. gdb shows no problems and the 
> program does nothing at least it does not consume processor power. 
> Current git. Deletion of library file hasn't helped. 
>
> With respect, 
> Alexander Rabtchevich 
>
> --
>  
> Dive into the World of Parallel Programming! The Go Parallel Website, 
> sponsored by Intel and developed in partnership with Slashdot Media, is your 
> hub for all things parallel software development, from weekly thought 
> leadership blogs to news, videos, case studies, tutorials and more. Take a 
> look and join the conversation now. http://goparallel.sourceforge.net 
> ___ 
> darktable-devel mailing list 
> darktable-devel@lists.sourceforge.net 
> https://lists.sourceforge.net/lists/listinfo/darktable-devel 
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


[darktable-devel] print module news

2015-01-03 Thread Pascal Obry

Bad news :( I hate to start like that...

I did some testing on my photo printer to found out that the layout is
not correct. Indeed the page-left, page-top CUPS options have no effect
on this printer (it works on 2 others printers : Dell3100cn and
Lexmark-x950 and the PDF printer). Reading the doc again I see that the
page-left, page-top options are in the TEXT-related section. That is,
those options are not supposed to work when sending images.

So a redesign if the last stage (sending the print to CUPS) is needed.

One of the option we have thought about is to use a Cairo surface. This
should work. We create the surface for a whole page with the right size
(taking the printer resolution into account), we place the image at the
right position and print this surface.

One big advantage of this solution is that it will allow later to print
multiple images on the same page if we need this. Or print a
contact-sheet for example.

Any other idea?

-- 
  Pascal Obry /  Magny Les Hameaux (78)

  The best way to travel is by means of imagination

  http://v2p.fr.eu.org
  http://www.obry.net

  gpg --keyserver keys.gnupg.net --recv-key F949BD3B


--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread johannes hanika
which version of libgtk-3 do you guys have where it hangs?

-jo

On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable <
francois.conneta...@free.fr> wrote:

> Same thing here (running on GNOME ubuntu latest, NVIDIA openCL).
>
> Hope it helps,
> -Francois
> Le 3 janv. 2015 11:25, Alexander Rabtchevich <
> alexander.v.rabtchev...@gmx.net> a écrit :
> >
> > Hello
> >
> > I can only see a dark rectangle of the program instead of its controls.
> > Pressing L, D, F11 changes nothing. gdb shows no problems and the
> > program does nothing at least it does not consume processor power.
> > Current git. Deletion of library file hasn't helped.
> >
> > With respect,
> > Alexander Rabtchevich
> >
> >
> --
> > Dive into the World of Parallel Programming! The Go Parallel Website,
> > sponsored by Intel and developed in partnership with Slashdot Media, is
> your
> > hub for all things parallel software development, from weekly thought
> > leadership blogs to news, videos, case studies, tutorials and more. Take
> a
> > look and join the conversation now. http://goparallel.sourceforge.net
> > ___
> > darktable-devel mailing list
> > darktable-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
>
> --
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is
> your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net
> ___
> darktable-devel mailing list
> darktable-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/darktable-devel
>
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread Francois Connetable
Hi Jo, 

Assuming this is what your are looking for, a "dpkg -l libgtk-3-0" reports:
3.12.2-0ubun amd64

Now it makes me wonder - didn't you say that 3.14 was the minimum version 
supported?

Thanks for your help,
-FrancoisLe 3 janv. 2015 18:05, johannes hanika  a écrit :
>
> which version of libgtk-3 do you guys have where it hangs?
>
> -jo
>
> On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable 
>  wrote:
>>
>> Same thing here (running on GNOME ubuntu latest, NVIDIA openCL).
>>
>> Hope it helps,
>> -Francois
>> Le 3 janv. 2015 11:25, Alexander Rabtchevich 
>>  a écrit :
>> >
>> > Hello
>> >
>> > I can only see a dark rectangle of the program instead of its controls.
>> > Pressing L, D, F11 changes nothing. gdb shows no problems and the
>> > program does nothing at least it does not consume processor power.
>> > Current git. Deletion of library file hasn't helped.
>> >
>> > With respect,
>> > Alexander Rabtchevich
>> >
>> > --
>> > Dive into the World of Parallel Programming! The Go Parallel Website,
>> > sponsored by Intel and developed in partnership with Slashdot Media, is 
>> > your
>> > hub for all things parallel software development, from weekly thought
>> > leadership blogs to news, videos, case studies, tutorials and more. Take a
>> > look and join the conversation now. http://goparallel.sourceforge.net
>> > ___
>> > darktable-devel mailing list
>> > darktable-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
>> --
>> Dive into the World of Parallel Programming! The Go Parallel Website,
>> sponsored by Intel and developed in partnership with Slashdot Media, is your
>> hub for all things parallel software development, from weekly thought
>> leadership blogs to news, videos, case studies, tutorials and more. Take a
>> look and join the conversation now. http://goparallel.sourceforge.net
>> ___
>> darktable-devel mailing list
>> darktable-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/darktable-devel
>
>
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] lighttable thumbnail cache

2015-01-03 Thread johannes hanika
too vague at this point to let me guess where it comes from.. if you can
narrow it down to a single image, that would be good. then i'd try and run
it through valgrind + gdb.

-jo

On Sun, Jan 4, 2015 at 4:14 AM, Edouard Gomez  wrote:

> What would you advise me to look at ?
>
> As the crash seems related to the same image processing, can I output
> easily the filenames being processed ?
> On 3 Jan 2015 14:10, johannes hanika  wrote:
>
> interesting that it seems to complain about the pixelpipe cache, this is
> still the untouched old implementation (we only replaced the mipmap cache).
>
> -jo
>
> On Sat, Jan 3, 2015 at 1:29 PM, Edouard Gomez  wrote:
>
> On 01/02/2015 09:22 PM, johannes hanika wrote:
> > this is now merged to master. let us know how it goes and if you have
> > any questions.
>
> I get crashes when generating the cache w/ darktable-cli.
>
> The first crash can be reproduced at the same picture if i delete the
> cache dir. Once i get past the first carsh, i have to run the program
> twice more to get the cache fully generated.
>
> So I built a -fsanitize=address binary to check. It's failing in freeing
> one cache entry. So i added code to NULLify any dt_free_align buffer in
> pixelpipe_cache.c. It didn't help. However, there is an alloc w/o proper
> fail path at:
> src/develop/pixelpipe_cache.c@165
> cache->data[max] = (void *)dt_alloc_align(16, size);
>
> Note that adding a check + printf did not trigger any console message.
> So i doubt a failed alloc is causing the crash.
>
> But it's still good to chck if that alloc should be checked.
>
> Here is the backtrace from the erroneous free.
>
> creating complete lighttable thumbnail cache
> creating cache directories
> creating cache directory
>
> '/home/ed/.cache/darktable/mipmaps-a5b98b94af3cd931aa8f96693a3768e491a5e6e9.d/0'
> creating cache directory
>
> '/home/ed/.cache/darktable/mipmaps-a5b98b94af3cd931aa8f96693a3768e491a5e6e9.d/1'
> creating cache directory
>
> '/home/ed/.cache/darktable/mipmaps-a5b98b94af3cd931aa8f96693a3768e491a5e6e9.d/2'
> image 159/654 (24.31%)==26307==AddressSanitizer CHECK
> failed: ../../../../src/libsanitizer/asan/asan_allocator2.cc:269
> "((m->chunk_state)) == ((CHUNK_QUARANTINE))" (0x6b, 0x3)
> #0 0x7fb88a9edba3 (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x59ba3)
> #1 0x7fb88a9f1ae3 in __sanitizer::CheckFailed(char const*, int, char
> const*, unsigned long long, unsigned long long)
> (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x5dae3)
> #2 0x7fb88a9b2429 (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x1e429)
> #3 0x7fb88a9b49c9 (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x209c9)
> #4 0x7fb88a9b28df (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x1e8df)
> #5 0x7fb88a9e84d5 in __interceptor_free
> (/usr/lib/x86_64-linux-gnu/libasan.so.1+0x544d5)
> #6 0x7fb88a47f230 in dt_dev_pixelpipe_cache_cleanup
> /home/ed/programming/workspace/darktable/src/develop/pixelpipe_cache.c:77
> #7 0x7fb88a488aa4 in dt_dev_pixelpipe_cleanup
> /home/ed/programming/workspace/darktable/src/develop/pixelpipe_hb.c:161
> #8 0x7fb88a401e18 in dt_imageio_export_with_flags
> /home/ed/programming/workspace/darktable/src/common/imageio.c:813
> #9 0x7fb88a4228ed in _init_8
> /home/ed/programming/workspace/darktable/src/common/mipmap_cache.c:951
> #10 0x7fb88a4228ed in dt_mipmap_cache_get_with_caller
> /home/ed/programming/workspace/darktable/src/common/mipmap_cache.c:623
> #11 0x403d4b in generate_thumbnail_cache
> /home/ed/programming/workspace/darktable/src/cli/main.c:96
> #12 0x403d4b in main
> /home/ed/programming/workspace/darktable/src/cli/main.c:271
> #13 0x7fb88453db44 in __libc_start_main
> (/lib/x86_64-linux-gnu/libc.so.6+0x21b44)
> #14 0x40420b (/home/ed/opt/darktable/bin/darktable-cli+0x40420b)
>
>
> --
> Edouard Gomez
>
>
> --
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is
> your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net
> ___
> darktable-devel mailing list
> darktable-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/darktable-devel
>
>
>
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
darktable-devel mailing list
darktable-devel@list

Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread johannes hanika
we /think/ 3.10 should suffice, but of course can't be sure without further
testing. gtk changed the threading model, and since these backtraces all
show some gdk_threads_enter() related stack traces that's my best guess so
far.

running gtk-3.14 just fine here..

-jo

On Sun, Jan 4, 2015 at 6:22 AM, Francois Connetable <
francois.conneta...@free.fr> wrote:

> Hi Jo,
>
> Assuming this is what your are looking for, a "dpkg -l libgtk-3-0" reports:
> 3.12.2-0ubun amd64
>
> Now it makes me wonder - didn't you say that 3.14 was the minimum version
> supported?
>
> Thanks for your help,
> -FrancoisLe 3 janv. 2015 18:05, johannes hanika  a
> écrit :
> >
> > which version of libgtk-3 do you guys have where it hangs?
> >
> > -jo
> >
> > On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable <
> francois.conneta...@free.fr> wrote:
> >>
> >> Same thing here (running on GNOME ubuntu latest, NVIDIA openCL).
> >>
> >> Hope it helps,
> >> -Francois
> >> Le 3 janv. 2015 11:25, Alexander Rabtchevich <
> alexander.v.rabtchev...@gmx.net> a écrit :
> >> >
> >> > Hello
> >> >
> >> > I can only see a dark rectangle of the program instead of its
> controls.
> >> > Pressing L, D, F11 changes nothing. gdb shows no problems and the
> >> > program does nothing at least it does not consume processor power.
> >> > Current git. Deletion of library file hasn't helped.
> >> >
> >> > With respect,
> >> > Alexander Rabtchevich
> >> >
> >> >
> --
> >> > Dive into the World of Parallel Programming! The Go Parallel Website,
> >> > sponsored by Intel and developed in partnership with Slashdot Media,
> is your
> >> > hub for all things parallel software development, from weekly thought
> >> > leadership blogs to news, videos, case studies, tutorials and more.
> Take a
> >> > look and join the conversation now. http://goparallel.sourceforge.net
> >> > ___
> >> > darktable-devel mailing list
> >> > darktable-devel@lists.sourceforge.net
> >> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
> >>
> --
> >> Dive into the World of Parallel Programming! The Go Parallel Website,
> >> sponsored by Intel and developed in partnership with Slashdot Media, is
> your
> >> hub for all things parallel software development, from weekly thought
> >> leadership blogs to news, videos, case studies, tutorials and more.
> Take a
> >> look and join the conversation now. http://goparallel.sourceforge.net
> >> ___
> >> darktable-devel mailing list
> >> darktable-devel@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/darktable-devel
> >
> >
>
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread Dave
Mine hangs.
I also have 3.12.2-0ubun amd64 installed.

-dave


On 3 January 2015 at 19:22, Francois Connetable  wrote:

> Hi Jo,
>
> Assuming this is what your are looking for, a "dpkg -l libgtk-3-0" reports:
> 3.12.2-0ubun amd64
>
> Now it makes me wonder - didn't you say that 3.14 was the minimum version
> supported?
>
> Thanks for your help,
> -FrancoisLe 3 janv. 2015 18:05, johannes hanika  a
> écrit :
> >
> > which version of libgtk-3 do you guys have where it hangs?
> >
> > -jo
> >
> > On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable <
> francois.conneta...@free.fr> wrote:
> >>
> >> Same thing here (running on GNOME ubuntu latest, NVIDIA openCL).
> >>
> >> Hope it helps,
> >> -Francois
> >> Le 3 janv. 2015 11:25, Alexander Rabtchevich <
> alexander.v.rabtchev...@gmx.net> a écrit :
> >> >
> >> > Hello
> >> >
> >> > I can only see a dark rectangle of the program instead of its
> controls.
> >> > Pressing L, D, F11 changes nothing. gdb shows no problems and the
> >> > program does nothing at least it does not consume processor power.
> >> > Current git. Deletion of library file hasn't helped.
> >> >
> >> > With respect,
> >> > Alexander Rabtchevich
> >> >
> >> >
> --
> >> > Dive into the World of Parallel Programming! The Go Parallel Website,
> >> > sponsored by Intel and developed in partnership with Slashdot Media,
> is your
> >> > hub for all things parallel software development, from weekly thought
> >> > leadership blogs to news, videos, case studies, tutorials and more.
> Take a
> >> > look and join the conversation now. http://goparallel.sourceforge.net
> >> > ___
> >> > darktable-devel mailing list
> >> > darktable-devel@lists.sourceforge.net
> >> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
> >>
> --
> >> Dive into the World of Parallel Programming! The Go Parallel Website,
> >> sponsored by Intel and developed in partnership with Slashdot Media, is
> your
> >> hub for all things parallel software development, from weekly thought
> >> leadership blogs to news, videos, case studies, tutorials and more.
> Take a
> >> look and join the conversation now. http://goparallel.sourceforge.net
> >> ___
> >> darktable-devel mailing list
> >> darktable-devel@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/darktable-devel
> >
> >
>
> --
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is
> your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net
> ___
> darktable-devel mailing list
> darktable-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/darktable-devel
>



-- 

tel:  0217881250
cel: 0794947061
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] print module news

2015-01-03 Thread Pascal Obry
Le samedi 03 janvier 2015 à 16:41 +0100, Pascal Obry a écrit : 
> Any other idea?

Responding to myself... We may also add a specific Tiff format with the
ability to add margins around the image. Should not be too difficult and
we could keep the "simple" solution based on CUPS instead of going with
Cairo.

Thoughts?

-- 
  Pascal Obry /  Magny Les Hameaux (78)

  The best way to travel is by means of imagination

  http://v2p.fr.eu.org
  http://www.obry.net

  gpg --keyserver keys.gnupg.net --recv-key F949BD3B


--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


[darktable-devel] growing width of level hand panels

2015-01-03 Thread Ulrich Pegelow
Hi,

there's a small quirk with current master in that the width of the left 
hand panel grows under certain conditions. Root cause seems to be that 
darktable forgets to ellipse the "full path" field of the image 
information panel.

Here is how to reproduce (the images of your collection need to sit in a 
quite nested path so that the full path name is long):

1) select an image (full path name with ellipse, panel with normal size)
2) open the image in darkroom view (same panel width as before)
3) go back to light table view (no ellipse in full path, wider left panel)

Sometimes the panel width goes back to normal if you pan your selection 
in zoomable lighttable view, but not always.

Ulrich

--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread Dave
I have now updated to gtk 3.14.
darktable is still presenting a black screen.

Ubuntu 14.10, latest git pull.
Running from the command line with  -d flag produces only
(darktable:19827): Json-CRITICAL **: json_node_get_object: assertion 'node
!= NULL' failed

Regards

Dave

On 3 January 2015 at 19:34, Dave  wrote:

> Mine hangs.
> I also have 3.12.2-0ubun amd64 installed.
>
> -dave
>
>
> On 3 January 2015 at 19:22, Francois Connetable <
> francois.conneta...@free.fr> wrote:
>
>> Hi Jo,
>>
>> Assuming this is what your are looking for, a "dpkg -l libgtk-3-0"
>> reports:
>> 3.12.2-0ubun amd64
>>
>> Now it makes me wonder - didn't you say that 3.14 was the minimum version
>> supported?
>>
>> Thanks for your help,
>> -FrancoisLe 3 janv. 2015 18:05, johannes hanika  a
>> écrit :
>> >
>> > which version of libgtk-3 do you guys have where it hangs?
>> >
>> > -jo
>> >
>> > On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable <
>> francois.conneta...@free.fr> wrote:
>> >>
>> >> Same thing here (running on GNOME ubuntu latest, NVIDIA openCL).
>> >>
>> >> Hope it helps,
>> >> -Francois
>> >> Le 3 janv. 2015 11:25, Alexander Rabtchevich <
>> alexander.v.rabtchev...@gmx.net> a écrit :
>> >> >
>> >> > Hello
>> >> >
>> >> > I can only see a dark rectangle of the program instead of its
>> controls.
>> >> > Pressing L, D, F11 changes nothing. gdb shows no problems and the
>> >> > program does nothing at least it does not consume processor power.
>> >> > Current git. Deletion of library file hasn't helped.
>> >> >
>> >> > With respect,
>> >> > Alexander Rabtchevich
>> >> >
>> >> >
>> --
>> >> > Dive into the World of Parallel Programming! The Go Parallel Website,
>> >> > sponsored by Intel and developed in partnership with Slashdot Media,
>> is your
>> >> > hub for all things parallel software development, from weekly thought
>> >> > leadership blogs to news, videos, case studies, tutorials and more.
>> Take a
>> >> > look and join the conversation now.
>> http://goparallel.sourceforge.net
>> >> > ___
>> >> > darktable-devel mailing list
>> >> > darktable-devel@lists.sourceforge.net
>> >> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
>> >>
>> --
>> >> Dive into the World of Parallel Programming! The Go Parallel Website,
>> >> sponsored by Intel and developed in partnership with Slashdot Media,
>> is your
>> >> hub for all things parallel software development, from weekly thought
>> >> leadership blogs to news, videos, case studies, tutorials and more.
>> Take a
>> >> look and join the conversation now. http://goparallel.sourceforge.net
>> >> ___
>> >> darktable-devel mailing list
>> >> darktable-devel@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/darktable-devel
>> >
>> >
>>
>> --
>> Dive into the World of Parallel Programming! The Go Parallel Website,
>> sponsored by Intel and developed in partnership with Slashdot Media, is
>> your
>> hub for all things parallel software development, from weekly thought
>> leadership blogs to news, videos, case studies, tutorials and more. Take a
>> look and join the conversation now. http://goparallel.sourceforge.net
>> ___
>> darktable-devel mailing list
>> darktable-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/darktable-devel
>>
>
>
>
> --
>
> tel:  0217881250
> cel: 0794947061
>



-- 

tel:  0217881250
cel: 0794947061
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] growing width of level hand panels

2015-01-03 Thread Roman Lebedev
Hi.

I can not reproduce with
"/tmp/1/2/3/4/5/6/7/8/9/a/b/c/d/e/f/1/2/3/4/5/6/7/8/9/a/b/c/d/e/f/test-old.png"
Maybe some screenshots would be helpful.
What GTK+ version is that?

PS: i have left you a comment on 3b94cde970c11aa6357d2bd3ac9c5cf35ecfd646

some
time ago, have you seen it?
"time to revert this one"

Roman.

On Sat, Jan 3, 2015 at 9:04 PM, Ulrich Pegelow 
wrote:

> Hi,
>
> there's a small quirk with current master in that the width of the left
> hand panel grows under certain conditions. Root cause seems to be that
> darktable forgets to ellipse the "full path" field of the image
> information panel.
>
> Here is how to reproduce (the images of your collection need to sit in a
> quite nested path so that the full path name is long):
>
> 1) select an image (full path name with ellipse, panel with normal size)
> 2) open the image in darkroom view (same panel width as before)
> 3) go back to light table view (no ellipse in full path, wider left panel)
>
> Sometimes the panel width goes back to normal if you pan your selection
> in zoomable lighttable view, but not always.
>
> Ulrich
>
>
> --
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is
> your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take a
> look and join the conversation now. http://goparallel.sourceforge.net
> ___
> darktable-devel mailing list
> darktable-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/darktable-devel
>
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] growing width of level hand panels

2015-01-03 Thread Ulrich Pegelow
Am 03.01.2015 um 19:31 schrieb Roman Lebedev:
> Hi.
>
> I can not reproduce with
> "/tmp/1/2/3/4/5/6/7/8/9/a/b/c/d/e/f/1/2/3/4/5/6/7/8/9/a/b/c/d/e/f/test-old.png"
> Maybe some screenshots would be helpful.

Here you are: 
https://www.dropbox.com/s/njtd3a6ldr79g7g/screenshots.tar.gz?dl=0

> What GTK+ version is that?

I am using GTK version 3.14.4.

>
> PS: i have left you a comment on
> 3b94cde970c11aa6357d2bd3ac9c5cf35ecfd646
> 
>  some
> time ago, have you seen it?
> "time to revert this one"

Yepp, I'll take care soonish.

>
> Roman.
>
> On Sat, Jan 3, 2015 at 9:04 PM, Ulrich Pegelow
> mailto:ulrich.pege...@tongareva.de>> wrote:
>
> Hi,
>
> there's a small quirk with current master in that the width of the left
> hand panel grows under certain conditions. Root cause seems to be that
> darktable forgets to ellipse the "full path" field of the image
> information panel.
>
> Here is how to reproduce (the images of your collection need to sit in a
> quite nested path so that the full path name is long):
>
> 1) select an image (full path name with ellipse, panel with normal size)
> 2) open the image in darkroom view (same panel width as before)
> 3) go back to light table view (no ellipse in full path, wider left
> panel)
>
> Sometimes the panel width goes back to normal if you pan your selection
> in zoomable lighttable view, but not always.
>
> Ulrich

--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] growing width of level hand panels

2015-01-03 Thread Roman Lebedev
Hm, could you please check, is this a regression
since f97032566a03a36b9d48f1d8e36111a6c4f3eef2 or it is reproducible before
that commit too?

On Sat, Jan 3, 2015 at 10:29 PM, Ulrich Pegelow  wrote:

> Am 03.01.2015 um 19:31 schrieb Roman Lebedev:
>
>> Hi.
>>
>> I can not reproduce with
>> "/tmp/1/2/3/4/5/6/7/8/9/a/b/c/d/e/f/1/2/3/4/5/6/7/8/9/a/b/c/
>> d/e/f/test-old.png"
>> Maybe some screenshots would be helpful.
>>
>
> Here you are: https://www.dropbox.com/s/njtd3a6ldr79g7g/screenshots.
> tar.gz?dl=0
>
>  What GTK+ version is that?
>>
>
> I am using GTK version 3.14.4.
>
>
>> PS: i have left you a comment on
>> 3b94cde970c11aa6357d2bd3ac9c5cf35ecfd646
>> > 3b94cde970c11aa6357d2bd3ac9c5cf35ecfd646#commitcomment-9132658> some
>> time ago, have you seen it?
>> "time to revert this one"
>>
>
> Yepp, I'll take care soonish.
>
>
>> Roman.
>>
>> On Sat, Jan 3, 2015 at 9:04 PM, Ulrich Pegelow
>> mailto:ulrich.pege...@tongareva.de>> wrote:
>>
>> Hi,
>>
>> there's a small quirk with current master in that the width of the
>> left
>> hand panel grows under certain conditions. Root cause seems to be that
>> darktable forgets to ellipse the "full path" field of the image
>> information panel.
>>
>> Here is how to reproduce (the images of your collection need to sit
>> in a
>> quite nested path so that the full path name is long):
>>
>> 1) select an image (full path name with ellipse, panel with normal
>> size)
>> 2) open the image in darkroom view (same panel width as before)
>> 3) go back to light table view (no ellipse in full path, wider left
>> panel)
>>
>> Sometimes the panel width goes back to normal if you pan your
>> selection
>> in zoomable lighttable view, but not always.
>>
>> Ulrich
>>
>
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] growing width of level hand panels

2015-01-03 Thread Ulrich Pegelow
Am 03.01.2015 um 20:48 schrieb Roman Lebedev:
> Hm, could you please check, is this a regression
> since f97032566a03a36b9d48f1d8e36111a6c4f3eef2 or it is reproducible
> before that commit too?
Good catch! The status preceding this commit does not show the problem.

Ulrich


--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread thokster

3.14.4-0ubuntu1


Am 03.01.2015, 18:05 Uhr, schrieb johannes hanika :

> which version of libgtk-3 do you guys have where it hangs?
>
> -jo
>
> On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable <
> francois.conneta...@free.fr> wrote:
>
>> Same thing here (running on GNOME ubuntu latest, NVIDIA openCL).
>>
>> Hope it helps,
>> -Francois
>> Le 3 janv. 2015 11:25, Alexander Rabtchevich <
>> alexander.v.rabtchev...@gmx.net> a écrit :
>> >
>> > Hello
>> >
>> > I can only see a dark rectangle of the program instead of its  
>> controls.
>> > Pressing L, D, F11 changes nothing. gdb shows no problems and the
>> > program does nothing at least it does not consume processor power.
>> > Current git. Deletion of library file hasn't helped.
>> >
>> > With respect,
>> > Alexander Rabtchevich
>> >
>> >
>> --
>> > Dive into the World of Parallel Programming! The Go Parallel Website,
>> > sponsored by Intel and developed in partnership with Slashdot Media,  
>> is
>> your
>> > hub for all things parallel software development, from weekly thought
>> > leadership blogs to news, videos, case studies, tutorials and more.  
>> Take
>> a
>> > look and join the conversation now. http://goparallel.sourceforge.net
>> > ___
>> > darktable-devel mailing list
>> > darktable-devel@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
>>
>> --
>> Dive into the World of Parallel Programming! The Go Parallel Website,
>> sponsored by Intel and developed in partnership with Slashdot Media, is
>> your
>> hub for all things parallel software development, from weekly thought
>> leadership blogs to news, videos, case studies, tutorials and more.  
>> Take a
>> look and join the conversation now. http://goparallel.sourceforge.net
>> ___
>> darktable-devel mailing list
>> darktable-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/darktable-devel

--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread Francois Connetable
Just to confirm, I upgraded my ubuntu to "vivid". I'm now running
libgtk-3.14.6. I did a full rebuild of darktable -> still the same
issue. Will try to revert to a previous commit and see if I can get it
to run again...

Not sure it can explain but my system went through an update to latest
nvidia driver before the issue started to occur...

-Francois


Le dimanche 04 janvier 2015 à 06:27 +1300, johannes hanika a écrit :
> we /think/ 3.10 should suffice, but of course can't be sure without
> further testing. gtk changed the threading model, and since these
> backtraces all show some gdk_threads_enter() related stack traces
> that's my best guess so far.
> 
> running gtk-3.14 just fine here..
> 
> 
> -jo
> 
> 
> On Sun, Jan 4, 2015 at 6:22 AM, Francois Connetable
>  wrote:
> Hi Jo,
> 
> Assuming this is what your are looking for, a "dpkg -l
> libgtk-3-0" reports:
> 3.12.2-0ubun amd64
> 
> Now it makes me wonder - didn't you say that 3.14 was the
> minimum version supported?
> 
> Thanks for your help,
> -FrancoisLe 3 janv. 2015 18:05, johannes hanika
>  a écrit :
> >
> > which version of libgtk-3 do you guys have where it hangs?
> >
> > -jo
> >
> > On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable
>  wrote:
> >>
> >> Same thing here (running on GNOME ubuntu latest, NVIDIA
> openCL).
> >>
> >> Hope it helps,
> >> -Francois
> >> Le 3 janv. 2015 11:25, Alexander Rabtchevich
>  a écrit :
> >> >
> >> > Hello
> >> >
> >> > I can only see a dark rectangle of the program instead of
> its controls.
> >> > Pressing L, D, F11 changes nothing. gdb shows no problems
> and the
> >> > program does nothing at least it does not consume
> processor power.
> >> > Current git. Deletion of library file hasn't helped.
> >> >
> >> > With respect,
> >> > Alexander Rabtchevich
> >> >
> >> >
> 
> --
> >> > Dive into the World of Parallel Programming! The Go
> Parallel Website,
> >> > sponsored by Intel and developed in partnership with
> Slashdot Media, is your
> >> > hub for all things parallel software development, from
> weekly thought
> >> > leadership blogs to news, videos, case studies, tutorials
> and more. Take a
> >> > look and join the conversation now.
> http://goparallel.sourceforge.net
> >> > ___
> >> > darktable-devel mailing list
> >> > darktable-devel@lists.sourceforge.net
> >> >
> https://lists.sourceforge.net/lists/listinfo/darktable-devel
> >>
> 
> --
> >> Dive into the World of Parallel Programming! The Go
> Parallel Website,
> >> sponsored by Intel and developed in partnership with
> Slashdot Media, is your
> >> hub for all things parallel software development, from
> weekly thought
> >> leadership blogs to news, videos, case studies, tutorials
> and more. Take a
> >> look and join the conversation now.
> http://goparallel.sourceforge.net
> >> ___
> >> darktable-devel mailing list
> >> darktable-devel@lists.sourceforge.net
> >>
> https://lists.sourceforge.net/lists/listinfo/darktable-devel
> >
> >
> 
> 
> 



--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread Francois Connetable
FYI, reverting to a "randomly selected" commit from DEC24:
af6ffb25e9b75f4b8fb5bcc24510c374e4e8d59b

...Everything is fine again. So I'll do some further try to see if I can
find out the commit id that introduces the issue..

-Francois 

Le samedi 03 janvier 2015 à 23:30 +0100, Francois Connetable a écrit :
> Just to confirm, I upgraded my ubuntu to "vivid". I'm now running
> libgtk-3.14.6. I did a full rebuild of darktable -> still the same
> issue. Will try to revert to a previous commit and see if I can get it
> to run again...
> 
> Not sure it can explain but my system went through an update to latest
> nvidia driver before the issue started to occur...
> 
> -Francois
> 
> 
> Le dimanche 04 janvier 2015 à 06:27 +1300, johannes hanika a écrit :
> > we /think/ 3.10 should suffice, but of course can't be sure without
> > further testing. gtk changed the threading model, and since these
> > backtraces all show some gdk_threads_enter() related stack traces
> > that's my best guess so far.
> > 
> > running gtk-3.14 just fine here..
> > 
> > 
> > -jo
> > 
> > 
> > On Sun, Jan 4, 2015 at 6:22 AM, Francois Connetable
> >  wrote:
> > Hi Jo,
> > 
> > Assuming this is what your are looking for, a "dpkg -l
> > libgtk-3-0" reports:
> > 3.12.2-0ubun amd64
> > 
> > Now it makes me wonder - didn't you say that 3.14 was the
> > minimum version supported?
> > 
> > Thanks for your help,
> > -FrancoisLe 3 janv. 2015 18:05, johannes hanika
> >  a écrit :
> > >
> > > which version of libgtk-3 do you guys have where it hangs?
> > >
> > > -jo
> > >
> > > On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable
> >  wrote:
> > >>
> > >> Same thing here (running on GNOME ubuntu latest, NVIDIA
> > openCL).
> > >>
> > >> Hope it helps,
> > >> -Francois
> > >> Le 3 janv. 2015 11:25, Alexander Rabtchevich
> >  a écrit :
> > >> >
> > >> > Hello
> > >> >
> > >> > I can only see a dark rectangle of the program instead of
> > its controls.
> > >> > Pressing L, D, F11 changes nothing. gdb shows no problems
> > and the
> > >> > program does nothing at least it does not consume
> > processor power.
> > >> > Current git. Deletion of library file hasn't helped.
> > >> >
> > >> > With respect,
> > >> > Alexander Rabtchevich
> > >> >
> > >> >
> > 
> > --
> > >> > Dive into the World of Parallel Programming! The Go
> > Parallel Website,
> > >> > sponsored by Intel and developed in partnership with
> > Slashdot Media, is your
> > >> > hub for all things parallel software development, from
> > weekly thought
> > >> > leadership blogs to news, videos, case studies, tutorials
> > and more. Take a
> > >> > look and join the conversation now.
> > http://goparallel.sourceforge.net
> > >> > ___
> > >> > darktable-devel mailing list
> > >> > darktable-devel@lists.sourceforge.net
> > >> >
> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
> > >>
> > 
> > --
> > >> Dive into the World of Parallel Programming! The Go
> > Parallel Website,
> > >> sponsored by Intel and developed in partnership with
> > Slashdot Media, is your
> > >> hub for all things parallel software development, from
> > weekly thought
> > >> leadership blogs to news, videos, case studies, tutorials
> > and more. Take a
> > >> look and join the conversation now.
> > http://goparallel.sourceforge.net
> > >> ___
> > >> darktable-devel mailing list
> > >> darktable-devel@lists.sourceforge.net
> > >>
> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
> > >
> > >
> > 
> > 
> > 
> 



--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread thokster
Probably this one:

Merge remote-tracking branch 'origin/cache2'

56eef68faf91f324f26fdd720c9c04a39b999ac9


Am 03.01.2015, 23:36 Uhr, schrieb Francois Connetable  
:

> FYI, reverting to a "randomly selected" commit from DEC24:
> af6ffb25e9b75f4b8fb5bcc24510c374e4e8d59b
>
> ...Everything is fine again. So I'll do some further try to see if I can
> find out the commit id that introduces the issue..
>
> -Francois
>
> Le samedi 03 janvier 2015 à 23:30 +0100, Francois Connetable a écrit :
>> Just to confirm, I upgraded my ubuntu to "vivid". I'm now running
>> libgtk-3.14.6. I did a full rebuild of darktable -> still the same
>> issue. Will try to revert to a previous commit and see if I can get it
>> to run again...
>>
>> Not sure it can explain but my system went through an update to latest
>> nvidia driver before the issue started to occur...
>>
>> -Francois
>>
>>
>> Le dimanche 04 janvier 2015 à 06:27 +1300, johannes hanika a écrit :
>> > we /think/ 3.10 should suffice, but of course can't be sure without
>> > further testing. gtk changed the threading model, and since these
>> > backtraces all show some gdk_threads_enter() related stack traces
>> > that's my best guess so far.
>> >
>> > running gtk-3.14 just fine here..
>> >
>> >
>> > -jo
>> >
>> >
>> > On Sun, Jan 4, 2015 at 6:22 AM, Francois Connetable
>> >  wrote:
>> > Hi Jo,
>> >
>> > Assuming this is what your are looking for, a "dpkg -l
>> > libgtk-3-0" reports:
>> > 3.12.2-0ubun amd64
>> >
>> > Now it makes me wonder - didn't you say that 3.14 was the
>> > minimum version supported?
>> >
>> > Thanks for your help,
>> > -FrancoisLe 3 janv. 2015 18:05, johannes hanika
>> >  a écrit :
>> > >
>> > > which version of libgtk-3 do you guys have where it hangs?
>> > >
>> > > -jo
>> > >
>> > > On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable
>> >  wrote:
>> > >>
>> > >> Same thing here (running on GNOME ubuntu latest, NVIDIA
>> > openCL).
>> > >>
>> > >> Hope it helps,
>> > >> -Francois
>> > >> Le 3 janv. 2015 11:25, Alexander Rabtchevich
>> >  a écrit :
>> > >> >
>> > >> > Hello
>> > >> >
>> > >> > I can only see a dark rectangle of the program instead of
>> > its controls.
>> > >> > Pressing L, D, F11 changes nothing. gdb shows no problems
>> > and the
>> > >> > program does nothing at least it does not consume
>> > processor power.
>> > >> > Current git. Deletion of library file hasn't helped.
>> > >> >
>> > >> > With respect,
>> > >> > Alexander Rabtchevich
>> > >> >
>> > >> >
>> >  
>> --
>> > >> > Dive into the World of Parallel Programming! The Go
>> > Parallel Website,
>> > >> > sponsored by Intel and developed in partnership with
>> > Slashdot Media, is your
>> > >> > hub for all things parallel software development, from
>> > weekly thought
>> > >> > leadership blogs to news, videos, case studies, tutorials
>> > and more. Take a
>> > >> > look and join the conversation now.
>> > http://goparallel.sourceforge.net
>> > >> > ___
>> > >> > darktable-devel mailing list
>> > >> > darktable-devel@lists.sourceforge.net
>> > >> >
>> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
>> > >>
>> >  
>> --
>> > >> Dive into the World of Parallel Programming! The Go
>> > Parallel Website,
>> > >> sponsored by Intel and developed in partnership with
>> > Slashdot Media, is your
>> > >> hub for all things parallel software development, from
>> > weekly thought
>> > >> leadership blogs to news, videos, case studies, tutorials
>> > and more. Take a
>> > >> look and join the conversation now.
>> > http://goparallel.sourceforge.net
>> > >> ___
>> > >> darktable-devel mailing list
>> > >> darktable-devel@lists.sourceforge.net
>> > >>
>> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
>> > >
>> > >
>> >
>> >
>> >
>>
>
>
>
> --
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is  
> your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take  
> a
> look and join the

[darktable-devel] lua database.duplicate(image) does not duplicate the history stack

2015-01-03 Thread Herbert Zenz
Hello all,

I have a problem with the lua function  database.duplicate(). It does 
duplicates the history stack. It is empty ("0 - orignal") after duplication.

I am using the git version 1.7.0+463 and version 1.6.1. It happens in both.

- Herbert



--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread thokster

Remove thumbnail_width/height settings   
0a00f6126a95984b959c19f5e4a1ecc89c8e4fed

introduces the issue over here



Am 03.01.2015, 23:36 Uhr, schrieb Francois Connetable  
:

> FYI, reverting to a "randomly selected" commit from DEC24:
> af6ffb25e9b75f4b8fb5bcc24510c374e4e8d59b
>
> ...Everything is fine again. So I'll do some further try to see if I can
> find out the commit id that introduces the issue..
>
> -Francois
>
> Le samedi 03 janvier 2015 à 23:30 +0100, Francois Connetable a écrit :
>> Just to confirm, I upgraded my ubuntu to "vivid". I'm now running
>> libgtk-3.14.6. I did a full rebuild of darktable -> still the same
>> issue. Will try to revert to a previous commit and see if I can get it
>> to run again...
>>
>> Not sure it can explain but my system went through an update to latest
>> nvidia driver before the issue started to occur...
>>
>> -Francois
>>
>>
>> Le dimanche 04 janvier 2015 à 06:27 +1300, johannes hanika a écrit :
>> > we /think/ 3.10 should suffice, but of course can't be sure without
>> > further testing. gtk changed the threading model, and since these
>> > backtraces all show some gdk_threads_enter() related stack traces
>> > that's my best guess so far.
>> >
>> > running gtk-3.14 just fine here..
>> >
>> >
>> > -jo
>> >
>> >
>> > On Sun, Jan 4, 2015 at 6:22 AM, Francois Connetable
>> >  wrote:
>> > Hi Jo,
>> >
>> > Assuming this is what your are looking for, a "dpkg -l
>> > libgtk-3-0" reports:
>> > 3.12.2-0ubun amd64
>> >
>> > Now it makes me wonder - didn't you say that 3.14 was the
>> > minimum version supported?
>> >
>> > Thanks for your help,
>> > -FrancoisLe 3 janv. 2015 18:05, johannes hanika
>> >  a écrit :
>> > >
>> > > which version of libgtk-3 do you guys have where it hangs?
>> > >
>> > > -jo
>> > >
>> > > On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable
>> >  wrote:
>> > >>
>> > >> Same thing here (running on GNOME ubuntu latest, NVIDIA
>> > openCL).
>> > >>
>> > >> Hope it helps,
>> > >> -Francois
>> > >> Le 3 janv. 2015 11:25, Alexander Rabtchevich
>> >  a écrit :
>> > >> >
>> > >> > Hello
>> > >> >
>> > >> > I can only see a dark rectangle of the program instead of
>> > its controls.
>> > >> > Pressing L, D, F11 changes nothing. gdb shows no problems
>> > and the
>> > >> > program does nothing at least it does not consume
>> > processor power.
>> > >> > Current git. Deletion of library file hasn't helped.
>> > >> >
>> > >> > With respect,
>> > >> > Alexander Rabtchevich
>> > >> >
>> > >> >
>> >  
>> --
>> > >> > Dive into the World of Parallel Programming! The Go
>> > Parallel Website,
>> > >> > sponsored by Intel and developed in partnership with
>> > Slashdot Media, is your
>> > >> > hub for all things parallel software development, from
>> > weekly thought
>> > >> > leadership blogs to news, videos, case studies, tutorials
>> > and more. Take a
>> > >> > look and join the conversation now.
>> > http://goparallel.sourceforge.net
>> > >> > ___
>> > >> > darktable-devel mailing list
>> > >> > darktable-devel@lists.sourceforge.net
>> > >> >
>> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
>> > >>
>> >  
>> --
>> > >> Dive into the World of Parallel Programming! The Go
>> > Parallel Website,
>> > >> sponsored by Intel and developed in partnership with
>> > Slashdot Media, is your
>> > >> hub for all things parallel software development, from
>> > weekly thought
>> > >> leadership blogs to news, videos, case studies, tutorials
>> > and more. Take a
>> > >> look and join the conversation now.
>> > http://goparallel.sourceforge.net
>> > >> ___
>> > >> darktable-devel mailing list
>> > >> darktable-devel@lists.sourceforge.net
>> > >>
>> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
>> > >
>> > >
>> >
>> >
>> >
>>
>
>
>
> --
> Dive into the World of Parallel Programming! The Go Parallel Website,
> sponsored by Intel and developed in partnership with Slashdot Media, is  
> your
> hub for all things parallel software development, from weekly thought
> leadership blogs to news, videos, case studies, tutorials and more. Take  
> a
> look an

[darktable-devel] Compress history alter graduated density geometry

2015-01-03 Thread Moritz Moeller
I have an image that is rotated slightly and cropped.
The 1st thing I noticed was that when I switch on graduated density, the
widget in the image is not aligned with the rotated image, but with the
original. Is this intended?

This is less an issue though. The problem is that every time I press
'compress history stack', the widget jumps. I.e. the midpoint of the
density is moved by this operation.


This is on 1.6.0 on OS X.

Cheers,

.mm

--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
___
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel


Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread Pedro Côrte-Real
Could you try changing the 1280 * 720 numbers in
src/develop/pixelpipe_hb.c to higher (say 1920 * 1080) and lower (say
640 * 480) and see if that makes a difference?

Thanks,

Pedro

On Sun, Jan 4, 2015 at 12:13 AM, thokster  wrote:
>
> Remove thumbnail_width/height settings
> 0a00f6126a95984b959c19f5e4a1ecc89c8e4fed
>
> introduces the issue over here
>
>
>
> Am 03.01.2015, 23:36 Uhr, schrieb Francois Connetable
> :
>
>> FYI, reverting to a "randomly selected" commit from DEC24:
>> af6ffb25e9b75f4b8fb5bcc24510c374e4e8d59b
>>
>> ...Everything is fine again. So I'll do some further try to see if I can
>> find out the commit id that introduces the issue..
>>
>> -Francois
>>
>> Le samedi 03 janvier 2015 à 23:30 +0100, Francois Connetable a écrit :
>>> Just to confirm, I upgraded my ubuntu to "vivid". I'm now running
>>> libgtk-3.14.6. I did a full rebuild of darktable -> still the same
>>> issue. Will try to revert to a previous commit and see if I can get it
>>> to run again...
>>>
>>> Not sure it can explain but my system went through an update to latest
>>> nvidia driver before the issue started to occur...
>>>
>>> -Francois
>>>
>>>
>>> Le dimanche 04 janvier 2015 à 06:27 +1300, johannes hanika a écrit :
>>> > we /think/ 3.10 should suffice, but of course can't be sure without
>>> > further testing. gtk changed the threading model, and since these
>>> > backtraces all show some gdk_threads_enter() related stack traces
>>> > that's my best guess so far.
>>> >
>>> > running gtk-3.14 just fine here..
>>> >
>>> >
>>> > -jo
>>> >
>>> >
>>> > On Sun, Jan 4, 2015 at 6:22 AM, Francois Connetable
>>> >  wrote:
>>> > Hi Jo,
>>> >
>>> > Assuming this is what your are looking for, a "dpkg -l
>>> > libgtk-3-0" reports:
>>> > 3.12.2-0ubun amd64
>>> >
>>> > Now it makes me wonder - didn't you say that 3.14 was the
>>> > minimum version supported?
>>> >
>>> > Thanks for your help,
>>> > -FrancoisLe 3 janv. 2015 18:05, johannes hanika
>>> >  a écrit :
>>> > >
>>> > > which version of libgtk-3 do you guys have where it hangs?
>>> > >
>>> > > -jo
>>> > >
>>> > > On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable
>>> >  wrote:
>>> > >>
>>> > >> Same thing here (running on GNOME ubuntu latest, NVIDIA
>>> > openCL).
>>> > >>
>>> > >> Hope it helps,
>>> > >> -Francois
>>> > >> Le 3 janv. 2015 11:25, Alexander Rabtchevich
>>> >  a écrit :
>>> > >> >
>>> > >> > Hello
>>> > >> >
>>> > >> > I can only see a dark rectangle of the program instead of
>>> > its controls.
>>> > >> > Pressing L, D, F11 changes nothing. gdb shows no problems
>>> > and the
>>> > >> > program does nothing at least it does not consume
>>> > processor power.
>>> > >> > Current git. Deletion of library file hasn't helped.
>>> > >> >
>>> > >> > With respect,
>>> > >> > Alexander Rabtchevich
>>> > >> >
>>> > >> >
>>> >
>>> --
>>> > >> > Dive into the World of Parallel Programming! The Go
>>> > Parallel Website,
>>> > >> > sponsored by Intel and developed in partnership with
>>> > Slashdot Media, is your
>>> > >> > hub for all things parallel software development, from
>>> > weekly thought
>>> > >> > leadership blogs to news, videos, case studies, tutorials
>>> > and more. Take a
>>> > >> > look and join the conversation now.
>>> > http://goparallel.sourceforge.net
>>> > >> > ___
>>> > >> > darktable-devel mailing list
>>> > >> > darktable-devel@lists.sourceforge.net
>>> > >> >
>>> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
>>> > >>
>>> >
>>> --
>>> > >> Dive into the World of Parallel Programming! The Go
>>> > Parallel Website,
>>> > >> sponsored by Intel and developed in partnership with
>>> > Slashdot Media, is your
>>> > >> hub for all things parallel software development, from
>>> > weekly thought
>>> > >> leadership blogs to news, videos, case studies, tutorials
>>> > and more. Take a
>>> > >> look and join the conversation now.
>>> > http://goparallel.sourceforge.net
>>> > >> ___
>>> > >> darktable-devel mailing list
>>> > >> darktable-devel@lists.sourceforge.net
>>> > >>
>>> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
>>> > >
>>> > >
>>> >
>>> >
>>> >
>>>
>>
>>
>>
>> ---

Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread thokster

No obvious difference with both.



Am 04.01.2015, 01:43 Uhr, schrieb Pedro Côrte-Real :

> Could you try changing the 1280 * 720 numbers in
> src/develop/pixelpipe_hb.c to higher (say 1920 * 1080) and lower (say
> 640 * 480) and see if that makes a difference?
>
> Thanks,
>
> Pedro
>
> On Sun, Jan 4, 2015 at 12:13 AM, thokster  wrote:
>>
>> Remove thumbnail_width/height settings
>> 0a00f6126a95984b959c19f5e4a1ecc89c8e4fed
>>
>> introduces the issue over here
>>
>>
>>
>> Am 03.01.2015, 23:36 Uhr, schrieb Francois Connetable
>> :
>>
>>> FYI, reverting to a "randomly selected" commit from DEC24:
>>> af6ffb25e9b75f4b8fb5bcc24510c374e4e8d59b
>>>
>>> ...Everything is fine again. So I'll do some further try to see if I  
>>> can
>>> find out the commit id that introduces the issue..
>>>
>>> -Francois
>>>
>>> Le samedi 03 janvier 2015 à 23:30 +0100, Francois Connetable a écrit :
 Just to confirm, I upgraded my ubuntu to "vivid". I'm now running
 libgtk-3.14.6. I did a full rebuild of darktable -> still the same
 issue. Will try to revert to a previous commit and see if I can get it
 to run again...

 Not sure it can explain but my system went through an update to latest
 nvidia driver before the issue started to occur...

 -Francois


 Le dimanche 04 janvier 2015 à 06:27 +1300, johannes hanika a écrit :
 > we /think/ 3.10 should suffice, but of course can't be sure without
 > further testing. gtk changed the threading model, and since these
 > backtraces all show some gdk_threads_enter() related stack traces
 > that's my best guess so far.
 >
 > running gtk-3.14 just fine here..
 >
 >
 > -jo
 >
 >
 > On Sun, Jan 4, 2015 at 6:22 AM, Francois Connetable
 >  wrote:
 > Hi Jo,
 >
 > Assuming this is what your are looking for, a "dpkg -l
 > libgtk-3-0" reports:
 > 3.12.2-0ubun amd64
 >
 > Now it makes me wonder - didn't you say that 3.14 was the
 > minimum version supported?
 >
 > Thanks for your help,
 > -FrancoisLe 3 janv. 2015 18:05, johannes hanika
 >  a écrit :
 > >
 > > which version of libgtk-3 do you guys have where it hangs?
 > >
 > > -jo
 > >
 > > On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable
 >  wrote:
 > >>
 > >> Same thing here (running on GNOME ubuntu latest, NVIDIA
 > openCL).
 > >>
 > >> Hope it helps,
 > >> -Francois
 > >> Le 3 janv. 2015 11:25, Alexander Rabtchevich
 >  a écrit :
 > >> >
 > >> > Hello
 > >> >
 > >> > I can only see a dark rectangle of the program instead  
 of
 > its controls.
 > >> > Pressing L, D, F11 changes nothing. gdb shows no  
 problems
 > and the
 > >> > program does nothing at least it does not consume
 > processor power.
 > >> > Current git. Deletion of library file hasn't helped.
 > >> >
 > >> > With respect,
 > >> > Alexander Rabtchevich
 > >> >
 > >> >
 >
 --
 > >> > Dive into the World of Parallel Programming! The Go
 > Parallel Website,
 > >> > sponsored by Intel and developed in partnership with
 > Slashdot Media, is your
 > >> > hub for all things parallel software development, from
 > weekly thought
 > >> > leadership blogs to news, videos, case studies,  
 tutorials
 > and more. Take a
 > >> > look and join the conversation now.
 > http://goparallel.sourceforge.net
 > >> > ___
 > >> > darktable-devel mailing list
 > >> > darktable-devel@lists.sourceforge.net
 > >> >
 > https://lists.sourceforge.net/lists/listinfo/darktable-devel
 > >>
 >
 --
 > >> Dive into the World of Parallel Programming! The Go
 > Parallel Website,
 > >> sponsored by Intel and developed in partnership with
 > Slashdot Media, is your
 > >> hub for all things parallel software development, from
 > weekly thought
 > >> leadership blogs to news, videos, case studies, tutorials
 > and more. Take a
 > >> look and join the conversation now.
 > http://goparallel.sourceforge.net
 > >> ___
 > >> darktable-devel mailing list
 >  

Re: [darktable-devel] dt only shows black screen at start

2015-01-03 Thread johannes hanika
thanks for bisecting, darktable-cli definitely had a bug writing to
non-alloced memory there (fixed in master). still very much unsure about
the main darktable program though.

-jo

On Sun, Jan 4, 2015 at 1:13 PM, thokster  wrote:

>
> Remove thumbnail_width/height settings
> 0a00f6126a95984b959c19f5e4a1ecc89c8e4fed
>
> introduces the issue over here
>
>
>
> Am 03.01.2015, 23:36 Uhr, schrieb Francois Connetable
> :
>
> > FYI, reverting to a "randomly selected" commit from DEC24:
> > af6ffb25e9b75f4b8fb5bcc24510c374e4e8d59b
> >
> > ...Everything is fine again. So I'll do some further try to see if I can
> > find out the commit id that introduces the issue..
> >
> > -Francois
> >
> > Le samedi 03 janvier 2015 à 23:30 +0100, Francois Connetable a écrit :
> >> Just to confirm, I upgraded my ubuntu to "vivid". I'm now running
> >> libgtk-3.14.6. I did a full rebuild of darktable -> still the same
> >> issue. Will try to revert to a previous commit and see if I can get it
> >> to run again...
> >>
> >> Not sure it can explain but my system went through an update to latest
> >> nvidia driver before the issue started to occur...
> >>
> >> -Francois
> >>
> >>
> >> Le dimanche 04 janvier 2015 à 06:27 +1300, johannes hanika a écrit :
> >> > we /think/ 3.10 should suffice, but of course can't be sure without
> >> > further testing. gtk changed the threading model, and since these
> >> > backtraces all show some gdk_threads_enter() related stack traces
> >> > that's my best guess so far.
> >> >
> >> > running gtk-3.14 just fine here..
> >> >
> >> >
> >> > -jo
> >> >
> >> >
> >> > On Sun, Jan 4, 2015 at 6:22 AM, Francois Connetable
> >> >  wrote:
> >> > Hi Jo,
> >> >
> >> > Assuming this is what your are looking for, a "dpkg -l
> >> > libgtk-3-0" reports:
> >> > 3.12.2-0ubun amd64
> >> >
> >> > Now it makes me wonder - didn't you say that 3.14 was the
> >> > minimum version supported?
> >> >
> >> > Thanks for your help,
> >> > -FrancoisLe 3 janv. 2015 18:05, johannes hanika
> >> >  a écrit :
> >> > >
> >> > > which version of libgtk-3 do you guys have where it hangs?
> >> > >
> >> > > -jo
> >> > >
> >> > > On Sun, Jan 4, 2015 at 4:28 AM, Francois Connetable
> >> >  wrote:
> >> > >>
> >> > >> Same thing here (running on GNOME ubuntu latest, NVIDIA
> >> > openCL).
> >> > >>
> >> > >> Hope it helps,
> >> > >> -Francois
> >> > >> Le 3 janv. 2015 11:25, Alexander Rabtchevich
> >> >  a écrit :
> >> > >> >
> >> > >> > Hello
> >> > >> >
> >> > >> > I can only see a dark rectangle of the program instead of
> >> > its controls.
> >> > >> > Pressing L, D, F11 changes nothing. gdb shows no problems
> >> > and the
> >> > >> > program does nothing at least it does not consume
> >> > processor power.
> >> > >> > Current git. Deletion of library file hasn't helped.
> >> > >> >
> >> > >> > With respect,
> >> > >> > Alexander Rabtchevich
> >> > >> >
> >> > >> >
> >> >
> >>
> --
> >> > >> > Dive into the World of Parallel Programming! The Go
> >> > Parallel Website,
> >> > >> > sponsored by Intel and developed in partnership with
> >> > Slashdot Media, is your
> >> > >> > hub for all things parallel software development, from
> >> > weekly thought
> >> > >> > leadership blogs to news, videos, case studies, tutorials
> >> > and more. Take a
> >> > >> > look and join the conversation now.
> >> > http://goparallel.sourceforge.net
> >> > >> > ___
> >> > >> > darktable-devel mailing list
> >> > >> > darktable-devel@lists.sourceforge.net
> >> > >> >
> >> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
> >> > >>
> >> >
> >>
> --
> >> > >> Dive into the World of Parallel Programming! The Go
> >> > Parallel Website,
> >> > >> sponsored by Intel and developed in partnership with
> >> > Slashdot Media, is your
> >> > >> hub for all things parallel software development, from
> >> > weekly thought
> >> > >> leadership blogs to news, videos, case studies, tutorials
> >> > and more. Take a
> >> > >> look and join the conversation now.
> >> > http://goparallel.sourceforge.net
> >> > >> ___
> >> > >> darktable-devel mailing list
> >> > >> darktable-devel@lists.sourceforge.net
> >> > >>
> >> > https://lists.sourceforge.net/lists/listinfo/darktable-devel
> >