7b97b3cb2b
This reverts commit18f4b1c7e3
. Reason for revert: Fixed iOS Original change's description: > Revert "Migrate metal tools away from GrContext" > > This reverts commit3eb813e0cc
. > > Reason for revert: Broke iOS > > Original change's description: > > Migrate metal tools away from GrContext > > > > Change-Id: I73a73ca5d088c35acd23be3336d8d1e3e859a82e > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/318760 > > Commit-Queue: Brian Salomon <bsalomon@google.com> > > Auto-Submit: Adlai Holler <adlai@google.com> > > Reviewed-by: Brian Salomon <bsalomon@google.com> > > TBR=bsalomon@google.com,robertphillips@google.com,adlai@google.com > > Change-Id: Idf74c936cfe8481e18455dcc0faa21155884b198 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/319017 > Reviewed-by: Adlai Holler <adlai@google.com> > Commit-Queue: Adlai Holler <adlai@google.com> TBR=bsalomon@google.com,robertphillips@google.com,adlai@google.com Change-Id: I6e14a333be4a960af0434bbcb6ce9a1a2271dca6 Cq-Include-Trybots: luci.skia.skia.primary:Build-Mac-Clang-arm64-Debug-iOS_Metal,Test-iOS-Clang-iPhone11-GPU-AppleA13-arm64-Debug-All-Metal,Test-Mac10.13-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Debug-All-Metal,Test-Mac10.13-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Debug-All-DDL3_Metal Reviewed-on: https://skia-review.googlesource.com/c/skia/+/319018 Commit-Queue: Adlai Holler <adlai@google.com> Reviewed-by: Adlai Holler <adlai@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com>
27 lines
683 B
Plaintext
27 lines
683 B
Plaintext
// Copyright 2019 Google LLC.
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "tools/skottie_ios_app/GrContextHolder.h"
|
|
|
|
#include "include/core/SkTypes.h"
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
#include "include/gpu/GrContextOptions.h"
|
|
#include "include/gpu/GrDirectContext.h"
|
|
#include "include/gpu/gl/GrGLInterface.h"
|
|
|
|
#ifdef SK_GL
|
|
GrContextHolder SkMakeGLContext() {
|
|
return GrContextHolder(GrDirectContext::MakeGL(nullptr, GrContextOptions()).release());
|
|
}
|
|
#endif
|
|
|
|
void GrContextRelease::operator()(GrDirectContext* ptr) { SkSafeUnref(ptr); }
|
|
|
|
#else
|
|
|
|
void GrContextRelease::operator()(GrDirectContext*) { SkDEBUGFAIL(""); }
|
|
|
|
#endif
|