| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |