578f064a60
BUG=skia: Change-Id: I0a24d5e6a4271f84ea5c82eb6d9ede9a1e63f86a Reviewed-on: https://skia-review.googlesource.com/8787 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com>
86 lines
2.4 KiB
C++
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 Json::Value& 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
|