aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.rs
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-04-02 09:06:33 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-04-02 09:06:33 +0200
commiteb430ff2075553549f7044f4b3aa7ef24e914d90 (patch)
tree238dad8a7f836469d9be812bcc49e429a84a09ac /src/window.rs
parenta0ac31b70f79c5a9f182971e3f3ac3fcd7b41b54 (diff)
downloadglutin-eb430ff2075553549f7044f4b3aa7ef24e914d90.tar.gz
glutin-eb430ff2075553549f7044f4b3aa7ef24e914d90.zip
Fix default OpenGL debug flag being the opposite of what it should be
Diffstat (limited to 'src/window.rs')
-rw-r--r--src/window.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.rs b/src/window.rs
index f45cd68..64058ea 100644
--- a/src/window.rs
+++ b/src/window.rs
@@ -74,7 +74,7 @@ impl<'a> WindowBuilder<'a> {
/// Sets the *debug* flag for the OpenGL context.
///
- /// The default value for this flag is `cfg!(ndebug)`, which means that it's enabled
+ /// The default value for this flag is `!cfg!(ndebug)`, which means that it's enabled
/// when you run `cargo build` and disabled when you run `cargo build --release`.
pub fn with_gl_debug_flag(mut self, flag: bool) -> WindowBuilder<'a> {
self.attribs.gl_debug = flag;