blob: d77a8161fbd8b59d787f08ad94ac44cc9cf491b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "X11/Xlib.h"
#include "X11/keysym.h"
#include "SkApplication.h"
#include "SkEvent.h"
#include "SkWindow.h"
#include "SkTypes.h"
#include <signal.h>
#include <sys/time.h>
SkOSWindow* gWindow;
int main(int argc, char** argv){
gWindow = create_sk_window(NULL, argc, argv);
// drain any events that occurred before gWindow was assigned.
while (SkEvent::ProcessEvent());
// Start normal Skia sequence
application_init();
gWindow->loop();
delete gWindow;
application_term();
return 0;
}
// SkEvent handlers
|