Flutter Engine
The Flutter Engine
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GLWindowContext.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2023 Google LLC
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
15#include "src/base/SkMathPriv.h"
22
23namespace skwindow::internal {
24
27 , fBackendContext(nullptr)
28 , fSurface(nullptr) {
30}
34
36
40 this->initializeContext();
41 return;
42 }
43}
44
46 fSurface.reset(nullptr);
47
48 if (fContext) {
49 // in case we have outstanding refs to this (lua?)
52 }
53
54 fBackendContext.reset(nullptr);
55
56 this->onDestroyContext();
57}
58
60 if (nullptr == fSurface) {
61 if (fContext) {
64
66 fbInfo.fFBOID = buffer;
67 fbInfo.fFormat = GR_GL_RGBA8;
69
71 fHeight,
74 fbInfo);
75
77 backendRT,
82 }
83 }
84
85 return fSurface;
86}
87
88void GLWindowContext::resize(int w, int h) {
89 this->destroyContext();
90 this->initializeContext();
91}
92
95 this->destroyContext();
96 this->initializeContext();
97}
98
99} // namespace skwindow::internal
#define GR_GL_RGBA8
Definition: GrGLDefines.h:524
#define GR_GL_FRAMEBUFFER_BINDING
Definition: GrGLDefines.h:951
int GrGLint
Definition: GrGLTypes.h:108
#define GR_GL_CALL(IFACE, X)
Definition: GrGLUtil.h:381
@ kBottomLeft_GrSurfaceOrigin
Definition: GrTypes.h:149
#define SkASSERT(cond)
Definition: SkAssert.h:116
@ kRGBA_8888_SkColorType
pixel with 8 bits for red, green, blue, alpha; in 32-bit word
Definition: SkColorType.h:24
static uint32_t GrNextPow2(uint32_t n)
Definition: SkMathPriv.h:302
void abandonContext() override
T * get() const
Definition: SkRefCnt.h:303
void reset(T *ptr=nullptr)
Definition: SkRefCnt.h:310
sk_sp< GrDirectContext > fContext
Definition: WindowContext.h:63
DisplayParams fDisplayParams
Definition: WindowContext.h:71
void resize(int w, int h) override
sk_sp< const GrGLInterface > fBackendContext
virtual sk_sp< const GrGLInterface > onInitializeContext()=0
GLWindowContext(const DisplayParams &)
sk_sp< SkSurface > getBackbufferSurface() override
void setDisplayParams(const DisplayParams &params) override
const EmbeddedViewParams * params
SK_API GrBackendRenderTarget MakeGL(int width, int height, int sampleCnt, int stencilBits, const GrGLFramebufferInfo &glInfo)
SK_API sk_sp< GrDirectContext > MakeGL(sk_sp< const GrGLInterface >, const GrContextOptions &)
SK_API sk_sp< SkSurface > WrapBackendRenderTarget(GrRecordingContext *context, const GrBackendRenderTarget &backendRenderTarget, GrSurfaceOrigin origin, SkColorType colorType, sk_sp< SkColorSpace > colorSpace, const SkSurfaceProps *surfaceProps, RenderTargetReleaseProc releaseProc=nullptr, ReleaseContext releaseContext=nullptr)
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 buffer
Definition: switches.h:126
Protected
Definition: GpuTypes.h:61
SkScalar w
SkScalar h
skgpu::Protected fProtected
Definition: GrGLTypes.h:199
SkSurfaceProps fSurfaceProps
Definition: DisplayParams.h:68
GrContextOptions fGrContextOptions
Definition: DisplayParams.h:61
sk_sp< SkColorSpace > fColorSpace
Definition: DisplayParams.h:59