| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 4 * | 3 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 7 */ | 6 */ |
| 8 | 7 |
| 9 #include "SkRefCnt.h" | 8 #include "SkRefCnt.h" |
| 10 | 9 |
| 11 #ifndef SkWGL_DEFINED | 10 #ifndef SkWGL_DEFINED |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 private: | 158 private: |
| 160 SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc); | 159 SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc); |
| 161 | 160 |
| 162 HPBUFFER fPbuffer; | 161 HPBUFFER fPbuffer; |
| 163 HDC fDC; | 162 HDC fDC; |
| 164 HGLRC fGLRC; | 163 HGLRC fGLRC; |
| 165 SkWGLExtensions fExtensions; | 164 SkWGLExtensions fExtensions; |
| 166 }; | 165 }; |
| 167 | 166 |
| 168 #endif | 167 #endif |
| OLD | NEW |