OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
3 * | 3 * |
4 * 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 |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkWindow.h" | 8 #include "SkWindow.h" |
9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkOSMenu.h" | 10 #include "SkOSMenu.h" |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
334 fClicks.remove(index); | 334 fClicks.remove(index); |
335 handled = true; | 335 handled = true; |
336 } | 336 } |
337 break; | 337 break; |
338 default: | 338 default: |
339 // Do nothing | 339 // Do nothing |
340 break; | 340 break; |
341 } | 341 } |
342 return handled; | 342 return handled; |
343 } | 343 } |
344 | |
345 #if SK_SUPPORT_GPU | |
346 | |
347 #include "gl/GrGLInterface.h" | |
348 #include "gl/GrGLUtil.h" | |
349 #include "SkGr.h" | |
350 | |
351 GrRenderTarget* SkWindow::renderTarget(const AttachmentInfo& attachmentInfo, | |
352 const GrGLInterface* interface, GrContext* grContext) { | |
353 GrBackendRenderTargetDesc desc; | |
354 desc.fWidth = SkScalarRoundToInt(this->width()); | |
355 desc.fHeight = SkScalarRoundToInt(this->height()); | |
356 desc.fConfig = kSkia8888_GrPixelConfig; | |
357 desc.fOrigin = kBottomLeft_GrSurfaceOrigin; | |
358 desc.fSampleCnt = attachmentInfo.fSampleCount; | |
bsalomon
2015/01/30 19:19:12
The division of labor for creating a GL context, a
caryclark
2015/01/30 19:55:28
Sounds like a great idea, but refactoring SkOSWind
| |
359 desc.fStencilBits = attachmentInfo.fStencilBits; | |
360 GrGLint buffer; | |
361 GR_GL_GetIntegerv(interface, GR_GL_FRAMEBUFFER_BINDING, &buffer); | |
362 desc.fRenderTargetHandle = buffer; | |
363 return grContext->wrapBackendRenderTarget(desc); | |
364 } | |
365 | |
366 #endif | |
OLD | NEW |