Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: src/gpu/gl/GrGLPathRange.cpp

Issue 452823002: Separate GL path rendering state from GrGpuGL to GrGLPathRendering (Closed) Base URL: https://skia.googlesource.com/skia.git@00xx-cherrypick-pathrendering-class
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/gl/GrGLPath.cpp ('k') | src/gpu/gl/GrGLPathRendering.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "GrGLPathRange.h" 9 #include "GrGLPathRange.h"
10 #include "GrGLPath.h" 10 #include "GrGLPath.h"
11 #include "GrGLPathRendering.h" 11 #include "GrGLPathRendering.h"
12 #include "GrGpuGL.h" 12 #include "GrGpuGL.h"
13 13
14 GrGLPathRange::GrGLPathRange(GrGpuGL* gpu, size_t size, const SkStrokeRec& strok e) 14 GrGLPathRange::GrGLPathRange(GrGpuGL* gpu, size_t size, const SkStrokeRec& strok e)
15 : INHERITED(gpu, size, stroke), 15 : INHERITED(gpu, size, stroke),
16 fBasePathID(gpu->pathRendering()->genPaths(fSize)), 16 fBasePathID(gpu->glPathRendering()->genPaths(fSize)),
17 fNumDefinedPaths(0) { 17 fNumDefinedPaths(0) {
18 } 18 }
19 19
20 GrGLPathRange::~GrGLPathRange() { 20 GrGLPathRange::~GrGLPathRange() {
21 this->release(); 21 this->release();
22 } 22 }
23 23
24 void GrGLPathRange::initAt(size_t index, const SkPath& skPath) { 24 void GrGLPathRange::initAt(size_t index, const SkPath& skPath) {
25 GrGpuGL* gpu = static_cast<GrGpuGL*>(this->getGpu()); 25 GrGpuGL* gpu = static_cast<GrGpuGL*>(this->getGpu());
26 if (NULL == gpu) { 26 if (NULL == gpu) {
27 return; 27 return;
28 } 28 }
29 29
30 // Make sure the path at this index hasn't been initted already. 30 // Make sure the path at this index hasn't been initted already.
31 SkASSERT(GR_GL_FALSE == gpu->pathRendering()->isPath(fBasePathID + index)); 31 SkASSERT(GR_GL_FALSE == gpu->glPathRendering()->isPath(fBasePathID + index)) ;
32 32
33 GrGLPath::InitPathObject(gpu, fBasePathID + index, skPath, fStroke); 33 GrGLPath::InitPathObject(gpu, fBasePathID + index, skPath, fStroke);
34 ++fNumDefinedPaths; 34 ++fNumDefinedPaths;
35 this->didChangeGpuMemorySize(); 35 this->didChangeGpuMemorySize();
36 } 36 }
37 37
38 void GrGLPathRange::onRelease() { 38 void GrGLPathRange::onRelease() {
39 SkASSERT(NULL != this->getGpu()); 39 SkASSERT(NULL != this->getGpu());
40 40
41 if (0 != fBasePathID && !this->isWrapped()) { 41 if (0 != fBasePathID && !this->isWrapped()) {
42 static_cast<GrGpuGL*>(this->getGpu())->pathRendering()->deletePaths(fBas ePathID, fSize); 42 static_cast<GrGpuGL*>(this->getGpu())->glPathRendering()->deletePaths(fB asePathID, fSize);
43 fBasePathID = 0; 43 fBasePathID = 0;
44 } 44 }
45 45
46 INHERITED::onRelease(); 46 INHERITED::onRelease();
47 } 47 }
48 48
49 void GrGLPathRange::onAbandon() { 49 void GrGLPathRange::onAbandon() {
50 fBasePathID = 0; 50 fBasePathID = 0;
51 51
52 INHERITED::onAbandon(); 52 INHERITED::onAbandon();
53 } 53 }
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLPath.cpp ('k') | src/gpu/gl/GrGLPathRendering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698