Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(623)

Unified Diff: mojo/examples/sample_app/gles2_client_impl.h

Issue 101413002: [Mojo] Remove dependency between mojo/public and gpu (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/examples/sample_app/DEPS ('k') | mojo/examples/sample_app/gles2_client_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/sample_app/gles2_client_impl.h
diff --git a/mojo/examples/sample_app/gles2_client_impl.h b/mojo/examples/sample_app/gles2_client_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..1d38a3c35710fe151b13fc39b629d08ca98f0bb0
--- /dev/null
+++ b/mojo/examples/sample_app/gles2_client_impl.h
@@ -0,0 +1,41 @@
+// 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.
+
+#ifndef MOJO_EXAMPLES_SAMPLE_APP_GLES2_CLIENT_IMPL_H_
+#define MOJO_EXAMPLES_SAMPLE_APP_GLES2_CLIENT_IMPL_H_
+
+#include "base/timer/timer.h"
+#include "mojo/examples/sample_app/spinning_cube.h"
+#include "mojo/public/bindings/lib/remote_ptr.h"
+#include "mojom/gles2.h"
+
+namespace mojo {
+namespace examples {
+
+class GLES2ClientImpl : public GLES2ClientStub {
+ public:
+ explicit GLES2ClientImpl(ScopedMessagePipeHandle pipe);
+ virtual ~GLES2ClientImpl();
+
+ private:
+ virtual void DidCreateContext(uint64_t encoded,
+ uint32_t width,
+ uint32_t height) MOJO_OVERRIDE;
+ virtual void ContextLost() MOJO_OVERRIDE;
+
+ void Draw();
+
+ base::Time last_time_;
+ base::RepeatingTimer<GLES2ClientImpl> timer_;
+ SpinningCube cube_;
+
+ RemotePtr<GLES2> service_;
+
+ MOJO_DISALLOW_COPY_AND_ASSIGN(GLES2ClientImpl);
+};
+
+} // namespace examples
+} // namespace mojo
+
+#endif // MOJO_EXAMPLES_SAMPLE_APP_GLES2_CLIENT_IMPL_H_
« no previous file with comments | « mojo/examples/sample_app/DEPS ('k') | mojo/examples/sample_app/gles2_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698