skia2/tools/sk_app/android/Window_android.cpp
Brian Osman eff04b5ec2 Remove SampleApp and convert HelloWorld to sk_app
There is still a large amount of views code that could be trimmed down,
but which is used to implement samples (in viewer). Seemed simpler to
remove some of this code in pieces.

Bug: skia:
Change-Id: Ia3415060d03c8de604a154e3dc38379b754daab6
Reviewed-on: https://skia-review.googlesource.com/72801
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Jim Van Verth <jvanverth@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
2017-11-21 18:37:19 +00:00

86 lines
2.4 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 "Window_android.h"
#include "WindowContextFactory_android.h"
#include "../WindowContext.h"
namespace sk_app {
Window* Window::CreateNativeWindow(void* platformData) {
Window_android* window = new Window_android();
if (!window->init((SkiaAndroidApp*)platformData)) {
delete window;
return nullptr;
}
return window;
}
bool Window_android::init(SkiaAndroidApp* skiaAndroidApp) {
SkASSERT(skiaAndroidApp);
fSkiaAndroidApp = skiaAndroidApp;
fSkiaAndroidApp->fWindow = this;
return true;
}
void Window_android::setTitle(const char* title) {
fSkiaAndroidApp->setTitle(title);
}
void Window_android::setUIState(const char* state) {
fSkiaAndroidApp->setUIState(state);
}
bool Window_android::attach(BackendType attachType) {
fBackendType = attachType;
// We delay the creation of fWindowContext until Android informs us that
// the native window is ready to use.
// The creation will be done in initDisplay, which is initiated by kSurfaceCreated event.
return true;
}
void Window_android::initDisplay(ANativeWindow* window) {
SkASSERT(window);
switch (fBackendType) {
case kNativeGL_BackendType:
default:
fWindowContext = window_context_factory::NewGLForAndroid(window,
fRequestedDisplayParams);
break;
case kRaster_BackendType:
fWindowContext = window_context_factory::NewRasterForAndroid(window,
fRequestedDisplayParams);
break;
#ifdef SK_VULKAN
case kVulkan_BackendType:
fWindowContext = window_context_factory::NewVulkanForAndroid(window,
fRequestedDisplayParams);
break;
#endif
}
this->onBackendCreated();
}
void Window_android::onDisplayDestroyed() {
detach();
}
void Window_android::onInval() {
fSkiaAndroidApp->postMessage(Message(kContentInvalidated));
}
void Window_android::paintIfNeeded() {
if (fWindowContext) { // Check if initDisplay has already been called
onPaint();
} else {
markInvalProcessed();
}
}
} // namespace sk_app