summaryrefslogtreecommitdiffstats
path: root/mojo/public/gles2/gles2_private.cc
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/public/gles2/gles2_private.cc')
-rw-r--r--mojo/public/gles2/gles2_private.cc42
1 files changed, 42 insertions, 0 deletions
diff --git a/mojo/public/gles2/gles2_private.cc b/mojo/public/gles2/gles2_private.cc
new file mode 100644
index 0000000..8df1660
--- /dev/null
+++ b/mojo/public/gles2/gles2_private.cc
@@ -0,0 +1,42 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "mojo/public/gles2/gles2_private.h"
+
+#include <assert.h>
+#include <stddef.h>
+
+static mojo::GLES2Private* g_private = NULL;
+
+extern "C" {
+
+void MojoGLES2Initialize() {
+ g_private->Initialize();
+}
+
+void MojoGLES2Terminate() {
+ g_private->Terminate();
+}
+
+void MojoGLES2MakeCurrent(uint64_t encoded) {
+ g_private->MakeCurrent(encoded);
+}
+
+void MojoGLES2SwapBuffers() {
+ g_private->SwapBuffers();
+}
+
+} // extern "C"
+
+namespace mojo {
+
+GLES2Private::~GLES2Private() {
+}
+
+void GLES2Private::Init(GLES2Private* priv) {
+ assert(!g_private);
+ g_private = priv;
+}
+
+} // namespace mojo