flutter_flutter/testing/test_metal_surface.cc
Kaushik Iska 70f070263a
[embedder] [metal] Add support for Metal Renderer Config in the embedder API (#22854)
This change adds a FlutterMetalRendererConfig that lets embedders
specify metal as rendering api.

Also adds a test that validates rendering a gradient using metal.
2021-01-01 20:39:36 -08:00

52 lines
1.5 KiB
C++

// 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/testing/test_metal_surface.h"
#include "flutter/fml/logging.h"
#include "flutter/testing/test_metal_surface_impl.h"
namespace flutter {
bool TestMetalSurface::PlatformSupportsMetal() {
return true;
}
std::unique_ptr<TestMetalSurface> TestMetalSurface::Create(
const TestMetalContext& test_metal_context,
SkISize surface_size) {
return std::make_unique<TestMetalSurfaceImpl>(test_metal_context,
surface_size);
}
std::unique_ptr<TestMetalSurface> TestMetalSurface::Create(
const TestMetalContext& test_metal_context,
int64_t texture_id,
SkISize surface_size) {
return std::make_unique<TestMetalSurfaceImpl>(test_metal_context, texture_id,
surface_size);
}
TestMetalSurface::TestMetalSurface() = default;
TestMetalSurface::~TestMetalSurface() = default;
bool TestMetalSurface::IsValid() const {
return impl_ ? impl_->IsValid() : false;
}
sk_sp<GrDirectContext> TestMetalSurface::GetGrContext() const {
return impl_ ? impl_->GetGrContext() : nullptr;
}
sk_sp<SkSurface> TestMetalSurface::GetSurface() const {
return impl_ ? impl_->GetSurface() : nullptr;
}
sk_sp<SkImage> TestMetalSurface::GetRasterSurfaceSnapshot() {
return impl_ ? impl_->GetRasterSurfaceSnapshot() : nullptr;
}
} // namespace flutter