cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2014 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| 8 | |
| 9 | #include "GrGLPathRange.h" |
| 10 | #include "GrGLPath.h" |
| 11 | #include "GrGpuGL.h" |
| 12 | |
| 13 | #define GPUGL static_cast<GrGpuGL*>(this->getGpu()) |
| 14 | |
| 15 | #define GL_CALL(X) GR_GL_CALL(GPUGL->glInterface(), X) |
| 16 | #define GL_CALL_RET(R, X) GR_GL_CALL_RET(GPUGL->glInterface(), R, X) |
| 17 | |
| 18 | GrGLPathRange::GrGLPathRange(GrGpu* gpu, size_t size, const SkStrokeRec& stroke) |
| 19 | : INHERITED(gpu, size, stroke), |
| 20 | fNumDefinedPaths(0) { |
| 21 | GL_CALL_RET(fBasePathID, GenPaths(fSize)); |
| 22 | } |
| 23 | |
| 24 | GrGLPathRange::~GrGLPathRange() { |
| 25 | this->release(); |
| 26 | } |
| 27 | |
| 28 | void GrGLPathRange::initAt(size_t index, const SkPath& skPath) { |
| 29 | GrGpuGL* gpu = static_cast<GrGpuGL*>(this->getGpu()); |
| 30 | if (NULL == gpu) { |
| 31 | return; |
| 32 | } |
| 33 | |
| 34 | #ifdef SK_DEBUG |
| 35 | // Make sure the path at this index hasn't been initted already. |
| 36 | GrGLboolean hasPathAtIndex; |
| 37 | GL_CALL_RET(hasPathAtIndex, IsPath(fBasePathID + index)); |
| 38 | SkASSERT(GR_GL_FALSE == hasPathAtIndex); |
| 39 | #endif |
| 40 | |
| 41 | GrGLPath::InitPathObject(gpu->glInterface(), fBasePathID + index, skPath, fStroke); |
| 42 | |
| 43 | ++fNumDefinedPaths; |
| 44 | this->didChangeGpuMemorySize(); |
| 45 | } |
| 46 | |
| 47 | void GrGLPathRange::onRelease() { |
| 48 | SkASSERT(NULL != this->getGpu()); |
| 49 | |
| 50 | if (0 != fBasePathID && !this->isWrapped()) { |
| 51 | GL_CALL(DeletePaths(fBasePathID, fSize)); |
| 52 | fBasePathID = 0; |
| 53 | } |
| 54 | |
| 55 | INHERITED::onRelease(); |
| 56 | } |
| 57 | |
| 58 | void GrGLPathRange::onAbandon() { |
| 59 | fBasePathID = 0; |
| 60 | |
| 61 | INHERITED::onAbandon(); |
| 62 | } |