SFML community forums

Help => Graphics => Topic started by: N1ghtly on January 31, 2012, 06:42:06 pm

Title: White lines vertically accross window.
Post by: N1ghtly on January 31, 2012, 06:42:06 pm
I have a really weird bug in my game:
When I do NOT go into fullscreen mode, this happens:
(http://i41.tinypic.com/29o0qs9.png)

However, when I go into fullscreen mode it disappears...
Title: White lines vertically accross window.
Post by: victorlevasseur on January 31, 2012, 07:52:01 pm
Hello,

Maybe you can disable texture's smooth :
Code: [Select]
theTexture->SetSmooth(false);
Title: White lines vertically accross window.
Post by: OniLinkPlus on February 01, 2012, 05:52:18 am
Quote from: "victorlevasseur"
Hello,

Maybe you can disable texture's smooth :
Code: [Select]
theTexture->SetSmooth(false);
No, his graphics are crisp. He already disabled it, or he's using the update that autodisables it.
Title: White lines vertically accross window.
Post by: N1ghtly on February 01, 2012, 01:17:39 pm
They are already disabled.
I even tried it with them ON, but it was the same.
Title: White lines vertically accross window.
Post by: Laurent on February 01, 2012, 01:26:04 pm
Do you use decimal coordinates?
Title: White lines vertically accross window.
Post by: N1ghtly on February 04, 2012, 02:43:56 pm
Uhm I guess so.
Should I convert them to ints first?
Title: White lines vertically accross window.
Post by: Laurent on February 04, 2012, 03:19:09 pm
Yes, that should solve the problem.