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

Side by Side Diff: examples/spinning_cube/spinning_cube_app.cc

Issue 940293003: Add a Display and ContextProvider concept to mojom, use to recreate (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months 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 unified diff | Download patch
« no previous file with comments | « examples/spinning_cube/spinning_cube.cc ('k') | examples/surfaces_app/child_gl_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stdio.h> 5 #include <stdio.h>
6 #include <string> 6 #include <string>
7 7
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "examples/spinning_cube/gles2_client_impl.h" 10 #include "examples/spinning_cube/gles2_client_impl.h"
(...skipping 20 matching lines...) Expand all
31 // TODO(darin): Fix shutdown so we don't need to leak this. 31 // TODO(darin): Fix shutdown so we don't need to leak this.
32 mojo_ignore_result(gles2_client_.release()); 32 mojo_ignore_result(gles2_client_.release());
33 } 33 }
34 34
35 void Initialize(mojo::ApplicationImpl* app) override { 35 void Initialize(mojo::ApplicationImpl* app) override {
36 app->ConnectToService("mojo:native_viewport_service", &viewport_); 36 app->ConnectToService("mojo:native_viewport_service", &viewport_);
37 viewport_.set_error_handler(this); 37 viewport_.set_error_handler(this);
38 38
39 SetEventDispatcher(); 39 SetEventDispatcher();
40 40
41 // TODO(jamesr): Should be mojo:gpu_service
42 app->ConnectToService("mojo:native_viewport_service", &gpu_service_);
43
44 mojo::SizePtr size(mojo::Size::New()); 41 mojo::SizePtr size(mojo::Size::New());
45 size->width = 800; 42 size->width = 800;
46 size->height = 600; 43 size->height = 600;
47 viewport_->Create(size.Pass(), 44 viewport_->Create(
48 base::Bind(&SpinningCubeApp::OnCreatedNativeViewport, 45 size.Clone(),
49 base::Unretained(this))); 46 base::Bind(&SpinningCubeApp::OnMetricsChanged, base::Unretained(this)));
50 viewport_->Show(); 47 viewport_->Show();
48 mojo::ContextProviderPtr onscreen_context_provider;
49 viewport_->GetContextProvider(GetProxy(&onscreen_context_provider));
50
51 gles2_client_.reset(new GLES2ClientImpl(onscreen_context_provider.Pass()));
52 gles2_client_->SetSize(*size);
51 } 53 }
52 54
53 void OnMetricsChanged(mojo::ViewportMetricsPtr metrics) { 55 void OnMetricsChanged(mojo::ViewportMetricsPtr metrics) {
54 assert(metrics); 56 assert(metrics);
55 if (gles2_client_) 57 gles2_client_->SetSize(*metrics->size);
56 gles2_client_->SetSize(*metrics->size);
57 viewport_->RequestMetrics( 58 viewport_->RequestMetrics(
58 base::Bind(&SpinningCubeApp::OnMetricsChanged, base::Unretained(this))); 59 base::Bind(&SpinningCubeApp::OnMetricsChanged, base::Unretained(this)));
59 } 60 }
60 61
61 void OnEvent(mojo::EventPtr event, 62 void OnEvent(mojo::EventPtr event,
62 const mojo::Callback<void()>& callback) override { 63 const mojo::Callback<void()>& callback) override {
63 assert(event); 64 assert(event);
64 if (event->location_data && event->location_data->in_view_location) 65 if (event->location_data && event->location_data->in_view_location)
65 gles2_client_->HandleInputEvent(*event); 66 gles2_client_->HandleInputEvent(*event);
66 callback.Run(); 67 callback.Run();
67 } 68 }
68 69
69 private: 70 private:
70 void SetEventDispatcher() { 71 void SetEventDispatcher() {
71 mojo::NativeViewportEventDispatcherPtr ptr; 72 mojo::NativeViewportEventDispatcherPtr ptr;
72 dispatcher_binding_.Bind(GetProxy(&ptr)); 73 dispatcher_binding_.Bind(GetProxy(&ptr));
73 viewport_->SetEventDispatcher(ptr.Pass()); 74 viewport_->SetEventDispatcher(ptr.Pass());
74 } 75 }
75 76
76 void OnCreatedNativeViewport(uint64_t native_viewport_id,
77 mojo::ViewportMetricsPtr metrics) {
78 mojo::ViewportParameterListenerPtr listener;
79 mojo::CommandBufferPtr command_buffer;
80 // TODO(jamesr): Output to a surface instead.
81 gpu_service_->CreateOnscreenGLES2Context(
82 native_viewport_id, metrics->size.Clone(), GetProxy(&command_buffer),
83 listener.Pass());
84 gles2_client_.reset(new GLES2ClientImpl(command_buffer.Pass()));
85 gles2_client_->SetSize(*metrics->size);
86 viewport_->RequestMetrics(
87 base::Bind(&SpinningCubeApp::OnMetricsChanged, base::Unretained(this)));
88 }
89
90 // ErrorHandler implementation. 77 // ErrorHandler implementation.
91 void OnConnectionError() override { mojo::RunLoop::current()->Quit(); } 78 void OnConnectionError() override { mojo::RunLoop::current()->Quit(); }
92 79
93 scoped_ptr<GLES2ClientImpl> gles2_client_; 80 scoped_ptr<GLES2ClientImpl> gles2_client_;
94 mojo::NativeViewportPtr viewport_; 81 mojo::NativeViewportPtr viewport_;
95 mojo::GpuPtr gpu_service_; 82 mojo::ContextProviderPtr onscreen_context_provider_;
96 mojo::Binding<NativeViewportEventDispatcher> dispatcher_binding_; 83 mojo::Binding<NativeViewportEventDispatcher> dispatcher_binding_;
97 84
98 DISALLOW_COPY_AND_ASSIGN(SpinningCubeApp); 85 DISALLOW_COPY_AND_ASSIGN(SpinningCubeApp);
99 }; 86 };
100 87
101 } // namespace examples 88 } // namespace examples
102 89
103 MojoResult MojoMain(MojoHandle shell_handle) { 90 MojoResult MojoMain(MojoHandle shell_handle) {
104 mojo::ApplicationRunner runner(new examples::SpinningCubeApp); 91 mojo::ApplicationRunner runner(new examples::SpinningCubeApp);
105 return runner.Run(shell_handle); 92 return runner.Run(shell_handle);
106 } 93 }
OLDNEW
« no previous file with comments | « examples/spinning_cube/spinning_cube.cc ('k') | examples/surfaces_app/child_gl_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698