summaryrefslogtreecommitdiffstats
path: root/gfx/angle/src/libANGLE/Path.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/angle/src/libANGLE/Path.h')
-rwxr-xr-xgfx/angle/src/libANGLE/Path.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gfx/angle/src/libANGLE/Path.h b/gfx/angle/src/libANGLE/Path.h
index b103c8460..40e2cf289 100755
--- a/gfx/angle/src/libANGLE/Path.h
+++ b/gfx/angle/src/libANGLE/Path.h
@@ -49,7 +49,9 @@ class Path final : angle::NonCopyable
bool hasPathData() const { return mHasData; }
- rx::PathImpl *getImplementation() const { return mPath; }
+ const rx::PathImpl *getImplementation() const { return mPath; }
+
+ rx::PathImpl *getImplementation() { return mPath; }
private:
rx::PathImpl *mPath;