diff options
author | Robert Phillips <robertphillips@google.com> | 2018-04-05 19:37:46 +0000 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-04-05 19:37:49 +0000 |
commit | 87f852d1a30f040cfa0e9567b17ec236e14a0f41 (patch) | |
tree | 532b488437b2cedb41387cd36973593606541ae5 /include | |
parent | 65daa2071b2b1f381c972ac98191f7c8f0aa4914 (diff) |
Revert "Remove deprectated GrContext::MakeGL overloads that take raw ptr"
This reverts commit efa60a1d13fa1de00a4cba0454fdd9ad375caa72.
Reason for revert: Surprise! Google3 still uses these.
Original change's description:
> Remove deprectated GrContext::MakeGL overloads that take raw ptr
>
> Change-Id: Iae12bf61fa1e2f5d4b13b98198cddb7482656fdf
> Reviewed-on: https://skia-review.googlesource.com/118660
> Reviewed-by: Greg Daniel <egdaniel@google.com>
> Commit-Queue: Brian Salomon <bsalomon@google.com>
TBR=egdaniel@google.com,bsalomon@google.com
Change-Id: Ica09d80e1563924a286a4a6aa8a1f93cb5ca9c5d
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/119001
Reviewed-by: Robert Phillips <robertphillips@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/gpu/GrContext.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/gpu/GrContext.h b/include/gpu/GrContext.h index cb2f0a6e76..0ebfd7c979 100644 --- a/include/gpu/GrContext.h +++ b/include/gpu/GrContext.h @@ -59,6 +59,9 @@ public: */ static sk_sp<GrContext> MakeGL(sk_sp<const GrGLInterface>, const GrContextOptions&); static sk_sp<GrContext> MakeGL(sk_sp<const GrGLInterface>); + // Deprecated + static sk_sp<GrContext> MakeGL(const GrGLInterface*); + static sk_sp<GrContext> MakeGL(const GrGLInterface*, const GrContextOptions&); #ifdef SK_VULKAN static sk_sp<GrContext> MakeVulkan(sk_sp<const GrVkBackendContext>, const GrContextOptions&); |