blob: b394050277df1620f9d37c1c7957e078813a1cc7 [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
bsalomon861e1032014-12-16 07:33:49 -080015class GrGLGpu;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000016
17/**
18 * Currently this represents a path built using GL_NV_path_rendering. If we
19 * support other GL path extensions then this would have to have a type enum
20 * and/or be subclassed.
21 */
22
23class GrGLPath : public GrPath {
24public:
bsalomon861e1032014-12-16 07:33:49 -080025 static void InitPathObject(GrGLGpu*,
bungemanaf13c7c2014-08-06 11:14:31 -040026 GrGLuint pathID,
27 const SkPath&,
kkinnunen50b58e62015-05-18 23:02:07 -070028 const GrStrokeInfo&);
cdaltonb85a0aa2014-07-21 15:32:44 -070029
kkinnunen50b58e62015-05-18 23:02:07 -070030 GrGLPath(GrGLGpu* gpu, const SkPath& path, const GrStrokeInfo& stroke);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000031 GrGLuint pathID() const { return fPathID; }
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000032
kkinnunen50b58e62015-05-18 23:02:07 -070033 bool shouldStroke() const { return fShouldStroke; }
34 bool shouldFill() const { return fShouldFill; }
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000035protected:
mtklein36352bf2015-03-25 18:17:31 -070036 void onRelease() override;
37 void onAbandon() override;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000038
39private:
bsalomon69ed47f2014-11-12 11:13:39 -080040 // TODO: Figure out how to get an approximate size of the path in Gpu memory.
mtklein36352bf2015-03-25 18:17:31 -070041 size_t onGpuMemorySize() const override { return 100; }
bsalomon69ed47f2014-11-12 11:13:39 -080042
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000043 GrGLuint fPathID;
kkinnunen50b58e62015-05-18 23:02:07 -070044 bool fShouldStroke;
45 bool fShouldFill;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000046
47 typedef GrPath INHERITED;
48};
49
50#endif