3d6ed3ae75
* display GM name in title bar * add ms timer for update loop * add ms/frame meter * fix vsync * add some notes for later GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1873453002 Review URL: https://codereview.chromium.org/1873453002
21 lines
383 B
C++
21 lines
383 B
C++
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef Application_DEFINED
|
|
#define Application_DEFINED
|
|
|
|
class Application {
|
|
public:
|
|
static Application* Create(int argc, char** argv, void* platformData);
|
|
|
|
virtual ~Application() {}
|
|
|
|
virtual void onIdle(double ms) = 0;
|
|
};
|
|
|
|
#endif
|