| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 "GrTest.h" | 8 #include "GrTest.h" |
| 9 | 9 |
| 10 #include "GrBatchAtlas.h" | 10 #include "GrBatchAtlas.h" |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 | 287 |
| 288 bool onGetWritePixelsInfo(GrSurface* dstSurface, int width, int height, | 288 bool onGetWritePixelsInfo(GrSurface* dstSurface, int width, int height, |
| 289 GrPixelConfig srcConfig, DrawPreference*, | 289 GrPixelConfig srcConfig, DrawPreference*, |
| 290 WritePixelTempDrawInfo*) override { return false;
} | 290 WritePixelTempDrawInfo*) override { return false;
} |
| 291 | 291 |
| 292 bool onCopySurface(GrSurface* dst, | 292 bool onCopySurface(GrSurface* dst, |
| 293 GrSurface* src, | 293 GrSurface* src, |
| 294 const SkIRect& srcRect, | 294 const SkIRect& srcRect, |
| 295 const SkIPoint& dstPoint) override { return false; }; | 295 const SkIPoint& dstPoint) override { return false; }; |
| 296 | 296 |
| 297 void onGetMultisampleSpecs(GrRenderTarget* rt, const GrStencilSettings&, | 297 void onGetMultisampleSpecs(GrRenderTarget* rt, |
| 298 int* effectiveSampleCnt, SamplePattern*) override
{ | 298 const GrStencilSettings&, |
| 299 int* effectiveSampleCnt, |
| 300 SkAutoTDeleteArray<SkPoint>*) override { |
| 299 *effectiveSampleCnt = rt->desc().fSampleCnt; | 301 *effectiveSampleCnt = rt->desc().fSampleCnt; |
| 300 } | 302 } |
| 301 | 303 |
| 302 bool initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) const
override { | 304 bool initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) const
override { |
| 303 return false; | 305 return false; |
| 304 } | 306 } |
| 305 | 307 |
| 306 GrGpuCommandBuffer* createCommandBuffer(GrRenderTarget* target, | 308 GrGpuCommandBuffer* createCommandBuffer(GrRenderTarget* target, |
| 307 const GrGpuCommandBuffer::LoadAndSto
reInfo&, | 309 const GrGpuCommandBuffer::LoadAndSto
reInfo&, |
| 308 const GrGpuCommandBuffer::LoadAndSto
reInfo&) override { | 310 const GrGpuCommandBuffer::LoadAndSto
reInfo&) override { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 SkASSERT(nullptr == fGpu); | 398 SkASSERT(nullptr == fGpu); |
| 397 fGpu = new MockGpu(this, options); | 399 fGpu = new MockGpu(this, options); |
| 398 SkASSERT(fGpu); | 400 SkASSERT(fGpu); |
| 399 this->initCommon(options); | 401 this->initCommon(options); |
| 400 | 402 |
| 401 // We delete these because we want to test the cache starting with zero reso
urces. Also, none of | 403 // We delete these because we want to test the cache starting with zero reso
urces. Also, none of |
| 402 // these objects are required for any of tests that use this context. TODO:
make stop allocating | 404 // these objects are required for any of tests that use this context. TODO:
make stop allocating |
| 403 // resources in the buffer pools. | 405 // resources in the buffer pools. |
| 404 fDrawingManager->abandon(); | 406 fDrawingManager->abandon(); |
| 405 } | 407 } |
| OLD | NEW |