forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_metal_surface.cc
57 lines (42 loc) · 1.69 KB
/
test_metal_surface.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// 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"
#include "third_party/skia/include/core/SkSurface.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;
}
TestMetalContext::TextureInfo TestMetalSurface::GetTextureInfo() {
return impl_ ? impl_->GetTextureInfo() : TestMetalContext::TextureInfo();
}
} // namespace flutter