| 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 "SkRefCnt.h" | 9 #include "SkRefCnt.h" |
| 10 | 10 |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 private: | 159 private: |
| 160 SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc); | 160 SkWGLPbufferContext(HPBUFFER pbuffer, HDC dc, HGLRC glrc); |
| 161 | 161 |
| 162 HPBUFFER fPbuffer; | 162 HPBUFFER fPbuffer; |
| 163 HDC fDC; | 163 HDC fDC; |
| 164 HGLRC fGLRC; | 164 HGLRC fGLRC; |
| 165 SkWGLExtensions fExtensions; | 165 SkWGLExtensions fExtensions; |
| 166 }; | 166 }; |
| 167 | 167 |
| 168 #endif | 168 #endif |
| OLD | NEW |