/* * Copyright 2014 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "gl/GrGLInterface.h" #include "gl/GrGLAssembleInterface.h" #include "gl/GrGLUtil.h" #include static GrGLFuncPtr glx_get(void* ctx, const char name[]) { SkASSERT(nullptr == ctx); SkASSERT(glXGetCurrentContext()); return glXGetProcAddress(reinterpret_cast(name)); } const GrGLInterface* GrGLCreateNativeInterface() { if (nullptr == glXGetCurrentContext()) { return nullptr; } return GrGLAssembleInterface(nullptr, glx_get); }