Documentation de SFML 2.4.0

Attention: cette page se réfère à une ancienne version de SFML. Cliquez ici pour passer à la dernière version.
ContextSettings.hpp
1 //
3 // SFML - Simple and Fast Multimedia Library
4 // Copyright (C) 2007-2016 Laurent Gomila (laurent@sfml-dev.org)
5 //
6 // This software is provided 'as-is', without any express or implied warranty.
7 // In no event will the authors be held liable for any damages arising from the use of this software.
8 //
9 // Permission is granted to anyone to use this software for any purpose,
10 // including commercial applications, and to alter it and redistribute it freely,
11 // subject to the following restrictions:
12 //
13 // 1. The origin of this software must not be misrepresented;
14 // you must not claim that you wrote the original software.
15 // If you use this software in a product, an acknowledgment
16 // in the product documentation would be appreciated but is not required.
17 //
18 // 2. Altered source versions must be plainly marked as such,
19 // and must not be misrepresented as being the original software.
20 //
21 // 3. This notice may not be removed or altered from any source distribution.
22 //
24 
25 #ifndef SFML_CONTEXTSETTINGS_HPP
26 #define SFML_CONTEXTSETTINGS_HPP
27 
28 
29 namespace sf
30 {
37 {
42  enum Attribute
43  {
44  Default = 0,
45  Core = 1 << 0,
46  Debug = 1 << 2
47  };
48 
61  explicit ContextSettings(unsigned int depth = 0, unsigned int stencil = 0, unsigned int antialiasing = 0, unsigned int major = 1, unsigned int minor = 1, unsigned int attributes = Default, bool sRgb = false) :
62  depthBits (depth),
63  stencilBits (stencil),
64  antialiasingLevel(antialiasing),
65  majorVersion (major),
66  minorVersion (minor),
67  attributeFlags (attributes),
68  sRgbCapable (sRgb)
69  {
70  }
71 
73  // Member data
75  unsigned int depthBits;
76  unsigned int stencilBits;
77  unsigned int antialiasingLevel;
78  unsigned int majorVersion;
79  unsigned int minorVersion;
80  Uint32 attributeFlags;
81  bool sRgbCapable;
82 };
83 
84 } // namespace sf
85 
86 
87 #endif // SFML_CONTEXTSETTINGS_HPP
88 
89 
Non-debug, compatibility context (this and the core attribute are mutually exclusive) ...
unsigned int minorVersion
Minor number of the context version to create.
Uint32 attributeFlags
The attribute flags to create the context with.
unsigned int depthBits
Bits of the depth buffer.
unsigned int stencilBits
Bits of the stencil buffer.
bool sRgbCapable
Whether the context framebuffer is sRGB capable.
unsigned int majorVersion
Major number of the context version to create.
Structure defining the settings of the OpenGL context attached to a window.
ContextSettings(unsigned int depth=0, unsigned int stencil=0, unsigned int antialiasing=0, unsigned int major=1, unsigned int minor=1, unsigned int attributes=Default, bool sRgb=false)
Default constructor.
unsigned int antialiasingLevel
Level of antialiasing.
Attribute
Enumeration of the context attribute flags.