blob: 22162544f88b541ec22f4291d58d49bad5d2a2c7 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "flutter/shell/platform/android/surface/android_surface.h"
#include "flutter/fml/logging.h"
namespace flutter {
AndroidSurface::AndroidSurface(
const std::shared_ptr<AndroidContext>& android_context) {
FML_DCHECK(android_context->IsValid());
android_context_ = android_context;
}
AndroidSurface::~AndroidSurface() = default;
std::unique_ptr<Surface> AndroidSurface::CreatePbufferSurface() {
return nullptr;
}
} // namespace flutter