| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2010 Google Inc. | 2 * Copyright 2010 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 | 8 |
| 9 #include "GrGpu.h" | 9 #include "GrGpu.h" |
| 10 | 10 |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 return nullptr; | 229 return nullptr; |
| 230 } | 230 } |
| 231 int maxSize = this->caps()->maxTextureSize(); | 231 int maxSize = this->caps()->maxTextureSize(); |
| 232 if (desc.fWidth > maxSize || desc.fHeight > maxSize) { | 232 if (desc.fWidth > maxSize || desc.fHeight > maxSize) { |
| 233 return nullptr; | 233 return nullptr; |
| 234 } | 234 } |
| 235 return this->onWrapBackendTextureAsRenderTarget(desc); | 235 return this->onWrapBackendTextureAsRenderTarget(desc); |
| 236 } | 236 } |
| 237 | 237 |
| 238 GrBuffer* GrGpu::createBuffer(size_t size, GrBufferType intendedType, | 238 GrBuffer* GrGpu::createBuffer(size_t size, GrBufferType intendedType, |
| 239 GrAccessPattern accessPattern) { | 239 GrAccessPattern accessPattern, const void* data) { |
| 240 this->handleDirtyContext(); | 240 this->handleDirtyContext(); |
| 241 GrBuffer* buffer = this->onCreateBuffer(size, intendedType, accessPattern); | 241 GrBuffer* buffer = this->onCreateBuffer(size, intendedType, accessPattern, d
ata); |
| 242 if (!this->caps()->reuseScratchBuffers()) { | 242 if (!this->caps()->reuseScratchBuffers()) { |
| 243 buffer->resourcePriv().removeScratchKey(); | 243 buffer->resourcePriv().removeScratchKey(); |
| 244 } | 244 } |
| 245 return buffer; | 245 return buffer; |
| 246 } | 246 } |
| 247 | 247 |
| 248 void GrGpu::clear(const SkIRect& rect, | 248 void GrGpu::clear(const SkIRect& rect, |
| 249 GrColor color, | 249 GrColor color, |
| 250 GrRenderTarget* renderTarget) { | 250 GrRenderTarget* renderTarget) { |
| 251 SkASSERT(renderTarget); | 251 SkASSERT(renderTarget); |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 int meshCount) { | 481 int meshCount) { |
| 482 if (primProc.numAttribs() > this->caps()->maxVertexAttributes()) { | 482 if (primProc.numAttribs() > this->caps()->maxVertexAttributes()) { |
| 483 fStats.incNumFailedDraws(); | 483 fStats.incNumFailedDraws(); |
| 484 return false; | 484 return false; |
| 485 } | 485 } |
| 486 this->handleDirtyContext(); | 486 this->handleDirtyContext(); |
| 487 | 487 |
| 488 this->onDraw(pipeline, primProc, meshes, meshCount); | 488 this->onDraw(pipeline, primProc, meshes, meshCount); |
| 489 return true; | 489 return true; |
| 490 } | 490 } |
| OLD | NEW |