Advertisement
Guest User

hmmm

a guest
Apr 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. //compiles:
  2. sf::Window window(sf::VideoMode(800,600),"an application lad");
  3.  
  4. //doesn't compile:
  5. sf::ContextSettings settings;
  6. settings.depthBits=24;
  7. settings.stencilBits=8;
  8. settings.antialiasingLevel=4;
  9. sf::Window window(sf::VideoMode(800,600),"an application lad",settings);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement