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

Side by Side Diff: examples/sample_app/sample_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: android fixes Created 5 years, 10 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
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/sample_app/gles2_client_impl.h" 10 #include "examples/sample_app/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(size.Clone(), base::Bind(&SampleApp::OnMetricsChanged,
48 base::Bind(&SampleApp::OnCreatedNativeViewport, 45 base::Unretained(this)));
49 base::Unretained(this)));
50 viewport_->Show(); 46 viewport_->Show();
47 mojo::ContextProviderPtr onscreen_context_provider;
48 viewport_->GetContextProvider(GetProxy(&onscreen_context_provider));
49
50 gles2_client_.reset(new GLES2ClientImpl(onscreen_context_provider.Pass()));
51 gles2_client_->SetSize(*size);
qsr 2015/02/23 12:32:52 I don't know if it matters that much, but this see
jamesr 2015/03/04 00:19:51 The size isn't needed until it's time to draw, rea
51 } 52 }
52 53
53 void OnMetricsChanged(mojo::ViewportMetricsPtr metrics) { 54 void OnMetricsChanged(mojo::ViewportMetricsPtr metrics) {
54 assert(metrics); 55 assert(metrics);
55 if (gles2_client_) 56 gles2_client_->SetSize(*metrics->size);
56 gles2_client_->SetSize(*metrics->size);
57 viewport_->RequestMetrics( 57 viewport_->RequestMetrics(
58 base::Bind(&SampleApp::OnMetricsChanged, base::Unretained(this))); 58 base::Bind(&SampleApp::OnMetricsChanged, base::Unretained(this)));
59 } 59 }
60 60
61 void OnEvent(mojo::EventPtr event, 61 void OnEvent(mojo::EventPtr event,
62 const mojo::Callback<void()>& callback) override { 62 const mojo::Callback<void()>& callback) override {
63 assert(event); 63 assert(event);
64 if (event->location_data && event->location_data->in_view_location) 64 if (event->location_data && event->location_data->in_view_location)
65 gles2_client_->HandleInputEvent(*event); 65 gles2_client_->HandleInputEvent(*event);
66 callback.Run(); 66 callback.Run();
67 } 67 }
68 68
69 private: 69 private:
70 void SetEventDispatcher() { 70 void SetEventDispatcher() {
71 mojo::NativeViewportEventDispatcherPtr ptr; 71 mojo::NativeViewportEventDispatcherPtr ptr;
72 dispatcher_binding_.Bind(GetProxy(&ptr)); 72 dispatcher_binding_.Bind(GetProxy(&ptr));
73 viewport_->SetEventDispatcher(ptr.Pass()); 73 viewport_->SetEventDispatcher(ptr.Pass());
74 } 74 }
75 75
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(&SampleApp::OnMetricsChanged, base::Unretained(this)));
88 }
89
90 // ErrorHandler implementation. 76 // ErrorHandler implementation.
91 void OnConnectionError() override { mojo::RunLoop::current()->Quit(); } 77 void OnConnectionError() override { mojo::RunLoop::current()->Quit(); }
92 78
93 scoped_ptr<GLES2ClientImpl> gles2_client_; 79 scoped_ptr<GLES2ClientImpl> gles2_client_;
94 mojo::NativeViewportPtr viewport_; 80 mojo::NativeViewportPtr viewport_;
95 mojo::GpuPtr gpu_service_; 81 mojo::ContextProviderPtr onscreen_context_provider_;
96 mojo::Binding<NativeViewportEventDispatcher> dispatcher_binding_; 82 mojo::Binding<NativeViewportEventDispatcher> dispatcher_binding_;
97 83
98 DISALLOW_COPY_AND_ASSIGN(SampleApp); 84 DISALLOW_COPY_AND_ASSIGN(SampleApp);
99 }; 85 };
100 86
101 } // namespace examples 87 } // namespace examples
102 88
103 MojoResult MojoMain(MojoHandle shell_handle) { 89 MojoResult MojoMain(MojoHandle shell_handle) {
104 mojo::ApplicationRunner runner(new examples::SampleApp); 90 mojo::ApplicationRunner runner(new examples::SampleApp);
105 return runner.Run(shell_handle); 91 return runner.Run(shell_handle);
106 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698