skia2/tools/sk_app/mac/main_mac.cpp
Hal Canary 8a00144035 test,tools: whitespace changes for clang-format
Change-Id: I67529f6c0ac26da603f60af22c620f8f603d8a19
Reviewed-on: https://skia-review.googlesource.com/155564
Commit-Queue: Ben Wagner <bungeman@google.com>
Reviewed-by: Ben Wagner <bungeman@google.com>
Auto-Submit: Hal Canary <halcanary@google.com>
2018-09-19 17:50:51 +00:00

60 lines
1.3 KiB
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.
*/
#include "SkTypes.h"
#include "SkTHash.h"
#include "Timer.h"
#include "Window_mac.h"
#include "../Application.h"
#include "SDL.h"
using sk_app::Application;
int main(int argc, char* argv[]) {
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_EVENTS) != 0) {
SkDebugf("Could not initialize SDL!\n");
return 1;
}
Application* app = Application::Create(argc, argv, nullptr);
SDL_Event event;
bool done = false;
while (!done) {
while (SDL_PollEvent(&event)) {
switch (event.type) {
// events handled by the windows
case SDL_WINDOWEVENT:
case SDL_MOUSEMOTION:
case SDL_MOUSEBUTTONDOWN:
case SDL_MOUSEBUTTONUP:
case SDL_MOUSEWHEEL:
case SDL_KEYDOWN:
case SDL_KEYUP:
case SDL_TEXTINPUT:
done = sk_app::Window_mac::HandleWindowEvent(event);
break;
case SDL_QUIT:
done = true;
break;
default:
break;
}
}
app->onIdle();
}
delete app;
SDL_Quit();
return 0;
}