OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright 2016 Google Inc. | |
3 * | |
4 * Use of this source code is governed by a BSD-style license that can be | |
5 * found in the LICENSE file. | |
6 */ | |
7 | |
8 #include <jni.h> | |
9 #include <errno.h> | |
10 | |
11 #include <android_native_app_glue.h> | |
12 | |
13 #include "../Application.h" | |
14 #include "Timer.h" | |
15 | |
16 static double now_ms() { return SkTime::GetNSecs() * 1e-6; } | |
17 | |
18 using sk_app::Application; | |
19 | |
20 /** | |
21 * This is the main entry point of a native application that is using | |
22 * android_native_app_glue. It runs in its own thread, with its own | |
23 * event loop for receiving input events and doing other things. | |
24 */ | |
25 void android_main(struct android_app* state) { | |
26 // Make sure glue isn't stripped. | |
27 app_dummy(); | |
28 | |
29 static const char* gCmdLine[] = { | |
30 "viewer", | |
31 "--skps", | |
32 "/data/local/tmp/skp", | |
33 }; | |
34 | |
35 std::unique_ptr<Application> vkApp(Application::Create(SK_ARRAY_COUNT(gCmdLi
ne), | |
36 const_cast<char**>(gC
mdLine), | |
37 state)); | |
38 | |
39 double currentTime = 0.0; | |
40 double previousTime = 0.0; | |
41 | |
42 // loop waiting for stuff to do. | |
43 while (1) { | |
44 // Read all pending events. | |
45 int ident; | |
46 int events; | |
47 struct android_poll_source* source; | |
48 | |
49 // block forever waiting for events. | |
50 while ((ident=ALooper_pollAll(-1, NULL, &events, | |
51 (void**)&source)) >= 0) { | |
52 | |
53 // Process this event. | |
54 if (source != NULL) { | |
55 source->process(state, source); | |
56 } | |
57 | |
58 // Check if we are exiting. | |
59 if (state->destroyRequested != 0) { | |
60 return; | |
61 } | |
62 | |
63 previousTime = currentTime; | |
64 currentTime = now_ms(); | |
65 vkApp->onIdle(currentTime - previousTime); | |
66 } | |
67 } | |
68 } | |
69 //END_INCLUDE(all) | |
OLD | NEW |