/* * Copyright 2024 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "include/gpu/ganesh/gl/epoxy/GrGLMakeEpoxyEGLInterface.h" #include "include/gpu/ganesh/gl/GrGLAssembleInterface.h" #include "include/gpu/ganesh/gl/GrGLInterface.h" #include "src/gpu/ganesh/gl/GrGLCoreFunctions.h" #include "src/gpu/ganesh/gl/GrGLUtil.h" #include #include static GrGLFuncPtr epoxy_get_gl_proc(void* ctx, const char name[]) { SkASSERT(nullptr == ctx); #define M(X) if (0 == strcmp(#X, name)) { return (GrGLFuncPtr) epoxy_ ## X; } GR_GL_CORE_FUNCTIONS_EACH(M) #undef M return epoxy_eglGetProcAddress(name); } namespace GrGLInterfaces { sk_sp MakeEpoxyEGL() { return GrGLMakeAssembledInterface(nullptr, epoxy_get_gl_proc); } } // namespace GrGLInterfaces