mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
84976a0a1e
From cfd2ab8845e4f1ae7e93d293662b9519346694d2 Mon Sep 17 00:00:00 2001 --- gfx/gl/GLContextSkia.cpp | 802 ++++++++++++++++++++++++++++++++++++++++++++ gfx/gl/GLContextSkia.h | 14 + gfx/gl/Makefile.in | 5 + layout/media/symbols.def.in | 7 + 4 files changed, 828 insertions(+) create mode 100644 gfx/gl/GLContextSkia.cpp create mode 100644 gfx/gl/GLContextSkia.h
15 lines
458 B
C++
15 lines
458 B
C++
/* -*- Mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40; -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "skia/GrGLInterface.h"
|
|
|
|
namespace mozilla {
|
|
namespace gl {
|
|
class GLContext;
|
|
}
|
|
}
|
|
|
|
GrGLInterface* CreateGrInterfaceFromGLContext(mozilla::gl::GLContext* context);
|