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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - songshu007

Pages: [1]
1
Graphics / Antialiasing not working
« on: May 21, 2022, 09:42:46 am »
this is my code
sf::ContextSettings settings;
        settings.antialiasingLevel = 8;
        sf::RenderWindow window(sf::VideoMode(800, 600), "Hello", sf::Style::Default, settings);
        window.setFramerateLimit(60);

        std::cout << "Antialiasing level: " << window.getSettings().antialiasingLevel << std::endl;
 
This image is antialiasing 0 and 8 levels
I don't see any antialiasing effect

Pages: [1]
anything