summaryrefslogtreecommitdiffstats
path: root/chromium/mojo/public/gles2/gles2_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/mojo/public/gles2/gles2_private.h')
-rw-r--r--chromium/mojo/public/gles2/gles2_private.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/chromium/mojo/public/gles2/gles2_private.h b/chromium/mojo/public/gles2/gles2_private.h
new file mode 100644
index 00000000000..f0a336d60e6
--- /dev/null
+++ b/chromium/mojo/public/gles2/gles2_private.h
@@ -0,0 +1,46 @@
+// Copyright 2014 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.
+
+#ifndef MOJO_PUBLIC_GLES2_GLES2_PRIVATE_H_
+#define MOJO_PUBLIC_GLES2_GLES2_PRIVATE_H_
+
+#include <stdint.h>
+
+#include "mojo/public/c/environment/async_waiter.h"
+#include "mojo/public/c/gles2/gles2_export.h"
+#include "mojo/public/c/gles2/gles2_types.h"
+#include "mojo/public/cpp/system/core.h"
+
+namespace mojo {
+class GLES2Interface;
+
+// Implementors of the GLES2 APIs can use this interface to install their
+// implementation into the mojo_gles2 dynamic library. Mojo clients should not
+// call these functions directly.
+class MOJO_GLES2_EXPORT GLES2Support {
+ public:
+ virtual ~GLES2Support();
+
+ static void Init(GLES2Support* gles2_support);
+
+ virtual void Initialize(const MojoAsyncWaiter* async_waiter) = 0;
+ virtual void Terminate() = 0;
+ virtual MojoGLES2Context CreateContext(
+ MessagePipeHandle handle,
+ MojoGLES2ContextLost lost_callback,
+ MojoGLES2DrawAnimationFrame animation_callback,
+ void* closure) = 0;
+ virtual void DestroyContext(MojoGLES2Context context) = 0;
+ virtual void MakeCurrent(MojoGLES2Context context) = 0;
+ virtual void SwapBuffers() = 0;
+ virtual void RequestAnimationFrames(MojoGLES2Context context) = 0;
+ virtual void CancelAnimationFrames(MojoGLES2Context context) = 0;
+ virtual void* GetGLES2Interface(MojoGLES2Context context) = 0;
+ virtual void* GetContextSupport(MojoGLES2Context context) = 0;
+ virtual GLES2Interface* GetGLES2InterfaceForCurrentContext() = 0;
+};
+
+} // namespace mojo
+
+#endif // MOJO_PUBLIC_GLES2_GLES2_PRIVATE_H_