You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
683 B
27 lines
683 B
// 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
|