Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Need testers (Linux)  (Read 1385 times)

0 Members and 3 Guests are viewing this topic.

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Need testers (Linux)
« on: September 21, 2012, 01:57:33 pm »
Hi

It seems that the Intel fix that I did a few days ago solved another problem:
https://github.com/SFML/SFML/issues/160

So if you can test it, please post feedback on the tracker, and hopefully I can then close this issue :)
Laurent Gomila - SFML developer

Haikarainen

  • Guest
Re: Need testers (Linux)
« Reply #1 on: September 21, 2012, 02:20:58 pm »
Does not break for me, ArchLinux x86_64, Intel HD4000.

Also had to alter his example a bit to work with latest sfml but it is mostly method-names.

#include <SFML/Graphics.hpp>

int main(void)
{

  // Shouldn't break here
  // sf::RenderWindow window(sf::VideoMode(640, 480), "test", sf::Style::Close);


  sf::Texture screenTexture;
  sf::Sprite screenImage;

  screenTexture.loadFromFile("./test.jpg");
  screenImage.setTexture(screenTexture);

  // Should break here
  sf::RenderWindow window(sf::VideoMode(640, 480), "test", sf::Style::Close);


  while(window.isOpen())
  {
    window.clear();
    window.draw(screenImage);
    window.display();
  }

  return 1;
}