diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-04 20:45:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-05 00:21:16 +0300 |
commit | af2f4f8ab50a209502b929082b11a7a07e6c5499 (patch) | |
tree | 4ad3e2efb564fd523deb5a0925941bf4abac319a /src/utils/glxhelper.cpp | |
parent | b90595ef486f10d4b5e069e9363a2df5270fe717 (diff) | |
download | plus-af2f4f8ab50a209502b929082b11a7a07e6c5499.tar.gz plus-af2f4f8ab50a209502b929082b11a7a07e6c5499.tar.bz2 plus-af2f4f8ab50a209502b929082b11a7a07e6c5499.tar.xz plus-af2f4f8ab50a209502b929082b11a7a07e6c5499.zip |
Fix code style.
Diffstat (limited to 'src/utils/glxhelper.cpp')
-rw-r--r-- | src/utils/glxhelper.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/glxhelper.cpp b/src/utils/glxhelper.cpp index 1624b6309..bd50d8c61 100644 --- a/src/utils/glxhelper.cpp +++ b/src/utils/glxhelper.cpp @@ -36,7 +36,7 @@ static int ErrorHandler(Display *d A_UNUSED, XErrorEvent *e A_UNUSED) return 0; } -void *GlxHelper::createContext(const unsigned int window, +void *GlxHelper::createContext(const unsigned long window, void *const display0, const int major, const int minor) @@ -61,7 +61,7 @@ void *GlxHelper::createContext(const unsigned int window, XSetErrorHandler(handler); return context; } - int glxAttribs[] = + int glxAttribs[] = { GLX_RENDER_TYPE, GLX_RGBA_BIT, GLX_RED_SIZE, 3, @@ -117,7 +117,7 @@ void *GlxHelper::createContext(const unsigned int window, return context2; } -bool GlxHelper::makeCurrent(const unsigned int window, +bool GlxHelper::makeCurrent(const unsigned long window, void *const display, void *const context) { |