blob: 4831b7250fe0e1fe85be866868171ad2f21b4913 [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#ifndef GrGLPath_DEFINED
10#define GrGLPath_DEFINED
11
12#include "../GrPath.h"
13#include "gl/GrGLFunctions.h"
14
15class GrGpuGL;
cdaltonb85a0aa2014-07-21 15:32:44 -070016struct GrGLInterface;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000017
18/**
19 * Currently this represents a path built using GL_NV_path_rendering. If we
20 * support other GL path extensions then this would have to have a type enum
21 * and/or be subclassed.
22 */
23
24class GrGLPath : public GrPath {
25public:
cdaltonb85a0aa2014-07-21 15:32:44 -070026 static void InitPathObject(const GrGLInterface*,
27 GrGLuint pathID,
28 const SkPath&,
29 const SkStrokeRec&);
30
commit-bot@chromium.org32184d82013-10-09 15:14:18 +000031 GrGLPath(GrGpuGL* gpu, const SkPath& path, const SkStrokeRec& stroke);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000032 virtual ~GrGLPath();
33 GrGLuint pathID() const { return fPathID; }
rmistry@google.comd6176b02012-08-23 18:14:13 +000034 // TODO: Figure out how to get an approximate size of the path in Gpu
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000035 // memory.
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000036 virtual size_t gpuMemorySize() const SK_OVERRIDE { return 100; }
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000037
38protected:
39 virtual void onRelease() SK_OVERRIDE;
40 virtual void onAbandon() SK_OVERRIDE;
41
42private:
43 GrGLuint fPathID;
44
45 typedef GrPath INHERITED;
46};
47
48#endif