Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am timesqueezer on github.
  • I am matz (https://keybase.io/matz) on keybase.
  • I have a public key ASB8iKnea1Up6HmVKTRl_sATdsDIupraEg_IBxmNwuWSVwo

To claim this, I am signing this object:

@timesqueezer
timesqueezer / antialiasing_test.cpp
Created May 1, 2011 11:45 — forked from opatut/antialiasing_test.cpp
SFML Antialiasing test
#include <SFML/Graphics.hpp>
#include <SFML/System.hpp>
#include <iostream>
int main() {
sf::RenderWindow app(sf::VideoMode(800,600,32), "lol", sf::Style::Close, sf::ContextSettings(24,8,4));
std::cout << "Antialiasing level: " << app.GetSettings().AntialiasingLevel << std::endl;
while(app.IsOpened()) {