#include <dl_test_surface_provider.h>
Definition at line 52 of file dl_test_surface_provider.h.
◆ BackendType
◆ PixelFormat
◆ ~DlSurfaceProvider()
virtual flutter::testing::DlSurfaceProvider::~DlSurfaceProvider |
( |
| ) |
|
|
virtualdefault |
◆ DlSurfaceProvider()
flutter::testing::DlSurfaceProvider::DlSurfaceProvider |
( |
| ) |
|
|
protecteddefault |
◆ backend_name()
virtual const std::string flutter::testing::DlSurfaceProvider::backend_name |
( |
| ) |
const |
|
pure virtual |
◆ backend_type()
virtual BackendType flutter::testing::DlSurfaceProvider::backend_type |
( |
| ) |
const |
|
pure virtual |
◆ BackendName()
std::string flutter::testing::DlSurfaceProvider::BackendName |
( |
BackendType |
type | ) |
|
|
static |
◆ Create()
Definition at line 37 of file dl_test_surface_provider.cc.
38 {
40#ifdef ENABLE_SOFTWARE_BENCHMARKS
42 return std::make_unique<DlSoftwareSurfaceProvider>();
43#endif
44#ifdef ENABLE_OPENGL_BENCHMARKS
45 case kOpenGLBackend:
46 return std::make_unique<DlOpenGLSurfaceProvider>();
47#endif
48#ifdef ENABLE_METAL_BENCHMARKS
50 return std::make_unique<DlMetalSurfaceProvider>();
51#endif
52 default:
53 return nullptr;
54 }
55
56 return nullptr;
57}
virtual BackendType backend_type() const =0
◆ GetPrimarySurface()
virtual std::shared_ptr< DlSurfaceInstance > flutter::testing::DlSurfaceProvider::GetPrimarySurface |
( |
| ) |
const |
|
pure virtual |
◆ ImpellerSnapshot()
◆ InitializeSurface()
◆ MakeImpellerImage()
◆ MakeInfo()
Definition at line 57 of file dl_test_surface_provider.h.
57 {
64 }
66 }
@ kOpaque_SkAlphaType
pixel is opaque
@ kRGB_565_SkColorType
pixel with 5 bits red, 6 bits green, 5 bits blue, in 16-bit word
#define FML_DCHECK(condition)
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder h
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace Enable an endless trace buffer The default is a ring buffer This is useful when very old events need to viewed For during application launch Memory usage will continue to grow indefinitely however Start app with an specific route defined on the framework flutter assets Path to the Flutter assets directory enable service port Allow the VM service to fallback to automatic port selection if binding to a specified port fails trace Trace early application lifecycle Automatically switches to an endless trace buffer trace skia Filters out all Skia trace event categories except those that are specified in this comma separated list dump skp on shader Automatically dump the skp that triggers new shader compilations This is useful for writing custom ShaderWarmUp to reduce jank By this is not enabled to reduce the overhead purge persistent Remove all existing persistent cache This is mainly for debugging purposes such as reproducing the shader compilation jank trace to Write the timeline trace to a file at the specified path The file will be in Perfetto s proto format
static constexpr SkISize Make(int32_t w, int32_t h)
static SkImageInfo MakeN32Premul(int width, int height)
static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at)
◆ MakeOffscreenSurface()
◆ Snapshot()
bool flutter::testing::DlSurfaceProvider::Snapshot |
( |
std::string & |
filename | ) |
const |
|
virtual |
Definition at line 59 of file dl_test_surface_provider.cc.
59 {
60#ifdef BENCHMARKS_NO_SNAPSHOT
61 return false;
62#else
65 return false;
66 }
68 if (!raster) {
69 return false;
70 }
73 return false;
74 }
78#endif
79}
sk_sp< SkImage > makeRasterImage(GrDirectContext *, CachingHint cachingHint=kDisallow_CachingHint) const
virtual std::shared_ptr< DlSurfaceInstance > GetPrimarySurface() const =0
SK_API bool Encode(SkWStream *dst, const SkPixmap &src, const Options &options)
sk_sp< const SkImage > image
fml::UniqueFD OpenFixturesDirectory()
Opens the fixtures directory for the unit-test harness.
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot data
bool WriteAtomically(const fml::UniqueFD &base_directory, const char *file_name, const Mapping &mapping)
◆ supports()
virtual bool flutter::testing::DlSurfaceProvider::supports |
( |
PixelFormat |
format | ) |
const |
|
pure virtual |
◆ supports_impeller()
virtual bool flutter::testing::DlSurfaceProvider::supports_impeller |
( |
| ) |
const |
|
inlinevirtual |
The documentation for this class was generated from the following files: