Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: src/gpu/gl/win/SkNativeGLContext_win.cpp

Issue 146863003: Revert "Turn NVPR on by default (but off in tools)." (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp ('k') | tests/GLInterfaceValidation.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "gl/SkNativeGLContext.h" 9 #include "gl/SkNativeGLContext.h"
10 #include "SkWGL.h" 10 #include "SkWGL.h"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 SkDebugf("Could not create window.\n"); 79 SkDebugf("Could not create window.\n");
80 return NULL; 80 return NULL;
81 } 81 }
82 82
83 if (!(fDeviceContext = GetDC(fWindow))) { 83 if (!(fDeviceContext = GetDC(fWindow))) {
84 SkDebugf("Could not get device context.\n"); 84 SkDebugf("Could not get device context.\n");
85 this->destroyGLContext(); 85 this->destroyGLContext();
86 return NULL; 86 return NULL;
87 } 87 }
88 88
89 // Requesting a Core profile would bar us from using NVPR. So we pass false. 89 // We don't want the core profile when using NV path rendering (since
90 if (!(fGlRenderContext = SkCreateWGLContext(fDeviceContext, 0, false))) { 90 // NV path rendering relies on fixed function calls)
91 if (!(fGlRenderContext = SkCreateWGLContext(fDeviceContext, 0,
92 !GR_GL_USE_NV_PATH_RENDERING))) {
91 SkDebugf("Could not create rendering context.\n"); 93 SkDebugf("Could not create rendering context.\n");
92 this->destroyGLContext(); 94 this->destroyGLContext();
93 return NULL; 95 return NULL;
94 } 96 }
95 97
96 if (!(wglMakeCurrent(fDeviceContext, fGlRenderContext))) { 98 if (!(wglMakeCurrent(fDeviceContext, fGlRenderContext))) {
97 SkDebugf("Could not set the context.\n"); 99 SkDebugf("Could not set the context.\n");
98 this->destroyGLContext(); 100 this->destroyGLContext();
99 return NULL; 101 return NULL;
100 } 102 }
(...skipping 11 matching lines...) Expand all
112 if (!wglMakeCurrent(fDeviceContext, fGlRenderContext)) { 114 if (!wglMakeCurrent(fDeviceContext, fGlRenderContext)) {
113 SkDebugf("Could not create rendering context.\n"); 115 SkDebugf("Could not create rendering context.\n");
114 } 116 }
115 } 117 }
116 118
117 void SkNativeGLContext::swapBuffers() const { 119 void SkNativeGLContext::swapBuffers() const {
118 if (!SwapBuffers(fDeviceContext)) { 120 if (!SwapBuffers(fDeviceContext)) {
119 SkDebugf("Could not complete SwapBuffers.\n"); 121 SkDebugf("Could not complete SwapBuffers.\n");
120 } 122 }
121 } 123 }
OLDNEW
« no previous file with comments | « src/gpu/gl/angle/GrGLCreateANGLEInterface.cpp ('k') | tests/GLInterfaceValidation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698