| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 #ifndef GrVkGpu_DEFINED | 8 #ifndef GrVkGpu_DEFINED |
| 9 #define GrVkGpu_DEFINED | 9 #define GrVkGpu_DEFINED |
| 10 | 10 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 bool onGetWritePixelsInfo(GrSurface* dstSurface, int width, int height, | 64 bool onGetWritePixelsInfo(GrSurface* dstSurface, int width, int height, |
| 65 GrPixelConfig srcConfig, DrawPreference*, | 65 GrPixelConfig srcConfig, DrawPreference*, |
| 66 WritePixelTempDrawInfo*) override; | 66 WritePixelTempDrawInfo*) override; |
| 67 | 67 |
| 68 bool onCopySurface(GrSurface* dst, | 68 bool onCopySurface(GrSurface* dst, |
| 69 GrSurface* src, | 69 GrSurface* src, |
| 70 const SkIRect& srcRect, | 70 const SkIRect& srcRect, |
| 71 const SkIPoint& dstPoint) override; | 71 const SkIPoint& dstPoint) override; |
| 72 | 72 |
| 73 void onGetMultisampleSpecs(GrRenderTarget* rt, const GrStencilSettings&, | 73 void onGetMultisampleSpecs(GrRenderTarget* rt, |
| 74 int* effectiveSampleCnt, SamplePattern*) override
; | 74 const GrStencilSettings&, |
| 75 int* effectiveSampleCnt, |
| 76 SkAutoTDeleteArray<SkPoint>*) override; |
| 75 | 77 |
| 76 bool initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) const
override; | 78 bool initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) const
override; |
| 77 | 79 |
| 78 void xferBarrier(GrRenderTarget*, GrXferBarrierType) override {} | 80 void xferBarrier(GrRenderTarget*, GrXferBarrierType) override {} |
| 79 | 81 |
| 80 GrBackendObject createTestingOnlyBackendTexture(void* pixels, int w, int h, | 82 GrBackendObject createTestingOnlyBackendTexture(void* pixels, int w, int h, |
| 81 GrPixelConfig config, | 83 GrPixelConfig config, |
| 82 bool isRenderTarget) overrid
e; | 84 bool isRenderTarget) overrid
e; |
| 83 bool isTestingOnlyBackendTexture(GrBackendObject id) const override; | 85 bool isTestingOnlyBackendTexture(GrBackendObject id) const override; |
| 84 void deleteTestingOnlyBackendTexture(GrBackendObject id, bool abandonTexture
) override; | 86 void deleteTestingOnlyBackendTexture(GrBackendObject id, bool abandonTexture
) override; |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 | 244 |
| 243 // Shaderc compiler used for compiling glsl in spirv. We only want to create
the compiler once | 245 // Shaderc compiler used for compiling glsl in spirv. We only want to create
the compiler once |
| 244 // since there is significant overhead to the first compile of any compiler. | 246 // since there is significant overhead to the first compile of any compiler. |
| 245 shaderc_compiler_t fCompiler; | 247 shaderc_compiler_t fCompiler; |
| 246 | 248 |
| 247 | 249 |
| 248 typedef GrGpu INHERITED; | 250 typedef GrGpu INHERITED; |
| 249 }; | 251 }; |
| 250 | 252 |
| 251 #endif | 253 #endif |
| OLD | NEW |