Re: [Gimp-user] Green Stripes On Tools?

2009-05-29 Thread STINGER wibblywobblyteapot.co.uk
On Fri, 2009-05-29 at 09:14 -0700, Akkana Peck wrote:
> STINGER wibblywobblyteapot.co.uk writes:
> > If I use the paths tool and drag to move I get a horrible green mess of
> > breadcrumbs where the tool has been. I also get this on any other tools
> > when moving around. I've tried it on two different machines now (both
> > running Ubuntu) and I can't stop it.
> 
> Do the green lines go away if you redraw the window? (For example,
> cover it with another window then uncover it.) Do the two machines
> have similar video cards?  
> 
> Artifacts like that are usually bugs in the video driver. I see
> them sometimes with ATI graphics cards, especially older Radeons.
> They usually seem to come from drawing with an XOR operation ...
> apparently some video drivers, especially the ati/radeon driver,
> can't handle that quite right. (It may be the hardware not handling
> it right -- looking at bugzilla it looks like the problem happens
> with ATI cards on Windows as well.)
> 
> Here's a bugzilla bug that discussed the problem, some time back,
> with lots of duplicates, some of which have screenshots that look
> a lot like yours:
> http://bugzilla.gnome.org/show_bug.cgi?id=421466
> 
> A comment in that bug suggests adding the following line to your
> gimprc file (located in your gimp profile, ~/.gimp-2.6/gimprc):
> 
>  (xor-color (color-rgb 1.0 1.0 1.0))
> 
> Try that and see if it helps.
> 
> Good luck!
> 
>   ...Akkana
> ___
> Gimp-user mailing list
> Gimp-user@lists.XCF.Berkeley.EDU
> https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

That's the issue. Solved but thanks for the follow up.

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Green Stripes On Tools?

2009-05-29 Thread STINGER wibblywobblyteapot.co.uk
On Fri, 2009-05-29 at 17:15 +0100, STINGER wibblywobblyteapot.co.uk
wrote:
> On Fri, 2009-05-29 at 17:58 +0200, Martin Nordholts wrote:
> > STINGER wibblywobblyteapot.co.uk wrote:
> > > If I use the paths tool and drag to move I get a horrible green mess of
> > > breadcrumbs where the tool has been.
> > 
> > Looks like http://bugzilla.gnome.org/show_bug.cgi?id=421466
> > 
> > The cause is a driver problem, the workaround is to add
> > 
> >   (xor-color (color-rgb 1.0 1.0 1.0))
> > 
> > to your gimprc
> > 
> >  / Martin
> > 
> > ___
> > Gimp-user mailing list
> > Gimp-user@lists.XCF.Berkeley.EDU
> > https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user
> 
> Thanks for the heads up. Yep, it's that Radion Driver. I'll try the
> tweak.. Thanks for both responses. Really appreciated. 
> 
> ___
> Gimp-user mailing list
> Gimp-user@lists.XCF.Berkeley.EDU
> https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

Thanks all - the tweak for the broken Ubuntu Radion Driver has worked
nicely. No longer do I have the green mess. In case anyone reads this in
the google archives the flaw is a faulty Radion Driver in Ubuntu 8.x and
before. Not sure if it is still an issue in 9.04.

The workaround is to add this line:
(xor-color (color-rgb 1.0 1.0 1.0))


To this file;
/etc/gimp/2.0/gimprc

It is already commented too (doh!)
# Sets the color that is used for XOR drawing. This setting only exists
as a
# workaround for buggy display drivers. If lines on the canvas are not
# correctly undrawn, try to set this to white.  The color is specified
in the
# form (color-rgb red green blue) with channel values as floats in the
range
# of 0.0 to 1.0.


___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Green Stripes On Tools?

2009-05-29 Thread STINGER wibblywobblyteapot.co.uk
On Fri, 2009-05-29 at 17:58 +0200, Martin Nordholts wrote:
> STINGER wibblywobblyteapot.co.uk wrote:
> > If I use the paths tool and drag to move I get a horrible green mess of
> > breadcrumbs where the tool has been.
> 
> Looks like http://bugzilla.gnome.org/show_bug.cgi?id=421466
> 
> The cause is a driver problem, the workaround is to add
> 
>   (xor-color (color-rgb 1.0 1.0 1.0))
> 
> to your gimprc
> 
>  / Martin
> 
> ___
> Gimp-user mailing list
> Gimp-user@lists.XCF.Berkeley.EDU
> https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

Thanks for the heads up. Yep, it's that Radion Driver. I'll try the
tweak.. Thanks for both responses. Really appreciated. 

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Green Stripes On Tools?

2009-05-29 Thread Akkana Peck
STINGER wibblywobblyteapot.co.uk writes:
> If I use the paths tool and drag to move I get a horrible green mess of
> breadcrumbs where the tool has been. I also get this on any other tools
> when moving around. I've tried it on two different machines now (both
> running Ubuntu) and I can't stop it.

Do the green lines go away if you redraw the window? (For example,
cover it with another window then uncover it.) Do the two machines
have similar video cards?  

Artifacts like that are usually bugs in the video driver. I see
them sometimes with ATI graphics cards, especially older Radeons.
They usually seem to come from drawing with an XOR operation ...
apparently some video drivers, especially the ati/radeon driver,
can't handle that quite right. (It may be the hardware not handling
it right -- looking at bugzilla it looks like the problem happens
with ATI cards on Windows as well.)

Here's a bugzilla bug that discussed the problem, some time back,
with lots of duplicates, some of which have screenshots that look
a lot like yours:
http://bugzilla.gnome.org/show_bug.cgi?id=421466

A comment in that bug suggests adding the following line to your
gimprc file (located in your gimp profile, ~/.gimp-2.6/gimprc):

 (xor-color (color-rgb 1.0 1.0 1.0))

Try that and see if it helps.

Good luck!

...Akkana
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Green Stripes On Tools?

2009-05-29 Thread Michael J. Hammel
On Fri, 2009-05-29 at 16:48 +0100, STINGER wibblywobblyteapot.co.uk
wrote:
> If I use the paths tool and drag to move I get a horrible green mess of
> breadcrumbs where the tool has been. I also get this on any other tools
> when moving around. I've tried it on two different machines now (both
> running Ubuntu) and I can't stop it.

I've seen this before though its been awhile.  I'm pretty sure it comes
from GIMPs interaction with particular X drivers, but I can't remember
if it was nVidia or Intel.  I think it was nVidia.  If you have an
nVidia card, there are two drivers: the open source "nouveau" and the
nVidia provided "nvidia".  Whichever driver you're using, try switching
to the other driver and see if that helps.

Oh wait, you're using Ubuntu.  Don't know if nVidia's driver is
available in .deb packaging.  I use Fedora and there are RPMs for it.
Guess you'll just have to dig around for it.

You can also try disabling 3D acceleration to see if that helps.  Some
of the 3D driver support caused problems on intel graphics chips for
awhile.  I disable all 3D fluff on my systems since I don't play games
and don't really need it anywhere else.

Sorry I can't be more helpful.  I just don't remember what I did that
cleared the problem.
-- 
Michael J. HammelPrincipal Software Engineer
mjham...@graphics-muse.org   http://graphics-muse.org
--
Bumper Sticker: Don't like my driving? Then quit watching me.

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Green Stripes On Tools?

2009-05-29 Thread Rikard Johnels
On Friday 29 May 2009 17:48, STINGER wibblywobblyteapot.co.uk wrote:
> Hi,
>
> I've googled and googled but I can't find a cure for my misconfiguration
> of GIMP (?) Can somebody help me?
>
> If I use the paths tool and drag to move I get a horrible green mess of
> breadcrumbs where the tool has been. I also get this on any other tools
> when moving around. I've tried it on two different machines now (both
> running Ubuntu) and I can't stop it.
>
> Probably easier to show some pictures of what I am getting;
>
> http://62.233.82.168/images/gimpmess2.png
> http://62.233.82.168/images/gimpmess1.png
>
> If anyone can tell me the setting I've missed to stop this messy
> behaviour I would be very grateful. Thanks (and be gentle). I'm trying
> to learn this after years of working with Paint Shop Pro and it's tough
> going...
>
> ___
> Gimp-user mailing list
> Gimp-user@lists.XCF.Berkeley.EDU
> https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

Looks like a driver error to me.
What card/driver do you use?

-- 

/Rikard Johnels


pgpHRDA516lMv.pgp
Description: PGP signature
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Green Stripes On Tools?

2009-05-29 Thread Martin Nordholts
STINGER wibblywobblyteapot.co.uk wrote:
> If I use the paths tool and drag to move I get a horrible green mess of
> breadcrumbs where the tool has been.

Looks like http://bugzilla.gnome.org/show_bug.cgi?id=421466

The cause is a driver problem, the workaround is to add

  (xor-color (color-rgb 1.0 1.0 1.0))

to your gimprc

 / Martin

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Green Stripes On Tools?

2009-05-29 Thread STINGER wibblywobblyteapot.co.uk
Hi,

I've googled and googled but I can't find a cure for my misconfiguration
of GIMP (?) Can somebody help me?

If I use the paths tool and drag to move I get a horrible green mess of
breadcrumbs where the tool has been. I also get this on any other tools
when moving around. I've tried it on two different machines now (both
running Ubuntu) and I can't stop it.

Probably easier to show some pictures of what I am getting;

http://62.233.82.168/images/gimpmess2.png
http://62.233.82.168/images/gimpmess1.png

If anyone can tell me the setting I've missed to stop this messy
behaviour I would be very grateful. Thanks (and be gentle). I'm trying
to learn this after years of working with Paint Shop Pro and it's tough
going...

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user