blob: 63c2fa107c66a0c3e2490636de81eda5fc9b3200 [file] [log] [blame]
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001
2/*
3 * Copyright 2012 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 "GrGLPath.h"
10#include "GrGpuGL.h"
11
12#define GPUGL static_cast<GrGpuGL*>(this->getGpu())
13
14#define GL_CALL(X) GR_GL_CALL(GPUGL->glInterface(), X)
15#define GL_CALL_RET(R, X) GR_GL_CALL_RET(GPUGL->glInterface(), R, X)
16
17namespace {
18inline GrGLubyte verb_to_gl_path_cmd(const SkPath::Verb verb) {
19 static const GrGLubyte gTable[] = {
20 GR_GL_MOVE_TO,
21 GR_GL_LINE_TO,
22 GR_GL_QUADRATIC_CURVE_TO,
reed@google.com277c3f82013-05-31 15:17:50 +000023 0xFF, // conic
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000024 GR_GL_CUBIC_CURVE_TO,
25 GR_GL_CLOSE_PATH,
26 };
27 GR_STATIC_ASSERT(0 == SkPath::kMove_Verb);
28 GR_STATIC_ASSERT(1 == SkPath::kLine_Verb);
29 GR_STATIC_ASSERT(2 == SkPath::kQuad_Verb);
reed@google.com277c3f82013-05-31 15:17:50 +000030 GR_STATIC_ASSERT(4 == SkPath::kCubic_Verb);
31 GR_STATIC_ASSERT(5 == SkPath::kClose_Verb);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000032
bsalomon@google.com548a4332012-07-11 19:45:22 +000033 GrAssert(verb >= 0 && (size_t)verb < GR_ARRAY_COUNT(gTable));
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000034 return gTable[verb];
35}
36
humper@google.com0e515772013-01-07 19:54:40 +000037#ifdef SK_DEBUG
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000038inline int num_pts(const SkPath::Verb verb) {
39 static const int gTable[] = {
40 1, // move
41 1, // line
42 2, // quad
reed@google.com277c3f82013-05-31 15:17:50 +000043 2, // conic
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000044 3, // cubic
45 0, // close
46 };
47 GR_STATIC_ASSERT(0 == SkPath::kMove_Verb);
48 GR_STATIC_ASSERT(1 == SkPath::kLine_Verb);
49 GR_STATIC_ASSERT(2 == SkPath::kQuad_Verb);
reed@google.com277c3f82013-05-31 15:17:50 +000050 GR_STATIC_ASSERT(4 == SkPath::kCubic_Verb);
51 GR_STATIC_ASSERT(5 == SkPath::kClose_Verb);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000052
bsalomon@google.com548a4332012-07-11 19:45:22 +000053 GrAssert(verb >= 0 && (size_t)verb < GR_ARRAY_COUNT(gTable));
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000054 return gTable[verb];
55}
humper@google.com0e515772013-01-07 19:54:40 +000056#endif
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000057}
58
bsalomon@google.com72830222013-01-23 20:25:22 +000059static const bool kIsWrapped = false; // The constructor creates the GL path object.
60
61GrGLPath::GrGLPath(GrGpuGL* gpu, const SkPath& path) : INHERITED(gpu, kIsWrapped) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000062 GL_CALL_RET(fPathID, GenPaths(1));
63 SkPath::Iter iter(path, true);
64
65 SkSTArray<16, GrGLubyte, true> pathCommands;
bsalomon@google.comb51c6332012-06-11 15:46:05 +000066#ifndef SK_SCALAR_IS_FLOAT
bsalomon@google.comd1e533f2012-06-28 18:56:22 +000067 GrCrash("Assumes scalar is float.");
bsalomon@google.comb51c6332012-06-11 15:46:05 +000068#endif
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000069 SkSTArray<16, SkPoint, true> pathPoints;
70
71 int verbCnt = path.countVerbs();
72 int pointCnt = path.countPoints();
73 pathCommands.resize_back(verbCnt);
74 pathPoints.resize_back(pointCnt);
75
76 // TODO: Direct access to path points since we could pass them on directly.
77 path.getPoints(&pathPoints[0], pointCnt);
78 path.getVerbs(&pathCommands[0], verbCnt);
rmistry@google.comfbfcd562012-08-23 18:09:54 +000079
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000080 GR_DEBUGCODE(int numPts = 0);
81 for (int i = 0; i < verbCnt; ++i) {
82 SkPath::Verb v = static_cast<SkPath::Verb>(pathCommands[i]);
83 pathCommands[i] = verb_to_gl_path_cmd(v);
84 GR_DEBUGCODE(numPts += num_pts(v));
85 }
86 GrAssert(pathPoints.count() == numPts);
rmistry@google.comfbfcd562012-08-23 18:09:54 +000087
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000088 GL_CALL(PathCommands(fPathID,
89 verbCnt, &pathCommands[0],
90 2 * pointCnt, GR_GL_FLOAT, &pathPoints[0]));
bsalomon@google.comded4f4b2012-06-28 18:48:06 +000091 fBounds = path.getBounds();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000092}
93
94GrGLPath::~GrGLPath() {
95 this->release();
96}
97
98void GrGLPath::onRelease() {
bsalomon@google.com72830222013-01-23 20:25:22 +000099 if (0 != fPathID && !this->isWrapped()) {
bsalomon@google.com21320a12012-07-09 14:30:26 +0000100 GL_CALL(DeletePaths(fPathID, 1));
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000101 fPathID = 0;
102 }
robertphillips@google.comd3645542012-09-05 18:37:39 +0000103
104 INHERITED::onRelease();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000105}
106
107void GrGLPath::onAbandon() {
108 fPathID = 0;
robertphillips@google.comd3645542012-09-05 18:37:39 +0000109
110 INHERITED::onAbandon();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000111}