We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52e48ab commit e78f86eCopy full SHA for e78f86e
shell/platform/embedder/embedder.cc
@@ -89,6 +89,7 @@ static bool IsRendererValid(const FlutterRendererConfig* config) {
89
return false;
90
}
91
92
+#if OS_LINUX || OS_WIN
93
static void* DefaultGLProcResolver(const char* name) {
94
static fml::RefPtr<fml::NativeLibrary> proc_library =
95
#if OS_LINUX
@@ -99,6 +100,7 @@ static void* DefaultGLProcResolver(const char* name) {
99
100
return static_cast<void*>(
101
const_cast<uint8_t*>(proc_library->ResolveSymbol(name)));
102
103
+#endif // OS_LINUX || OS_WIN
104
105
static shell::Shell::CreateCallback<shell::PlatformView>
106
InferOpenGLPlatformViewCreationCallback(
0 commit comments