gfx/skia/trunk/src/views/unix/skia_unix.cpp

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gfx/skia/trunk/src/views/unix/skia_unix.cpp	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,26 @@
     1.4 +/*
     1.5 + * Copyright 2011 Google Inc.
     1.6 + *
     1.7 + * Use of this source code is governed by a BSD-style license that can be
     1.8 + * found in the LICENSE file.
     1.9 + */
    1.10 +
    1.11 +#include "SkApplication.h"
    1.12 +#include "SkEvent.h"
    1.13 +#include "SkWindow.h"
    1.14 +
    1.15 +int main(int argc, char** argv){
    1.16 +    SkOSWindow* window = create_sk_window(NULL, argc, argv);
    1.17 +
    1.18 +    // drain any events that occurred before |window| was assigned.
    1.19 +    while (SkEvent::ProcessEvent());
    1.20 +
    1.21 +    // Start normal Skia sequence
    1.22 +    application_init();
    1.23 +
    1.24 +    window->loop();
    1.25 +
    1.26 +    delete window;
    1.27 +    application_term();
    1.28 +    return 0;
    1.29 +}

mercurial