diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-12-01 16:50:24 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-12-01 16:50:24 +0000 |
commit | eedef2564a095de1571b786427965a56992224f0 (patch) | |
tree | 0876578795a0255203ccdd6c25932b1feddb6637 /src/utils | |
parent | bd7c64150cf249db91ca13f8d1dac48c418f9c17 (diff) |
Remove suffixes from SK_wGL macros
git-svn-id: http://skia.googlecode.com/svn/trunk@2778 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/win/SkOSWindow_win.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/utils/win/SkOSWindow_win.cpp b/src/utils/win/SkOSWindow_win.cpp index 7a10823e6d..c59821a172 100644 --- a/src/utils/win/SkOSWindow_win.cpp +++ b/src/utils/win/SkOSWindow_win.cpp @@ -300,17 +300,17 @@ HGLRC create_gl(HWND hwnd) { int format = 0; GLint iattrs[] = { - SK_WGL_DRAW_TO_WINDOW_ARB, TRUE, - SK_WGL_DOUBLE_BUFFER_ARB, TRUE, - SK_WGL_ACCELERATION_ARB, SK_WGL_FULL_ACCELERATION_ARB, - SK_WGL_SUPPORT_OPENGL_ARB, TRUE, - SK_WGL_COLOR_BITS_ARB, 24, - SK_WGL_ALPHA_BITS_ARB, 8, - SK_WGL_STENCIL_BITS_ARB, 8, + SK_WGL_DRAW_TO_WINDOW, TRUE, + SK_WGL_DOUBLE_BUFFER, TRUE, + SK_WGL_ACCELERATION, SK_WGL_FULL_ACCELERATION, + SK_WGL_SUPPORT_OPENGL, TRUE, + SK_WGL_COLOR_BITS, 24, + SK_WGL_ALPHA_BITS, 8, + SK_WGL_STENCIL_BITS, 8, // these must be kept last - SK_WGL_SAMPLE_BUFFERS_ARB, TRUE, - SK_WGL_SAMPLES_ARB, 0, + SK_WGL_SAMPLE_BUFFERS, TRUE, + SK_WGL_SAMPLES, 0, 0,0 }; static const int kSampleBuffersValueIdx = SK_ARRAY_COUNT(iattrs) - 5; |