Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
export.h
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "flutter/fml/build_config.h"
6
7#ifndef FLUTTER_LIB_GPU_EXPORT_H_
8#define FLUTTER_LIB_GPU_EXPORT_H_
9
10#if FML_OS_WIN
11#define FLUTTER_GPU_EXPORT __declspec(dllexport)
12#else // FML_OS_WIN
13#define FLUTTER_GPU_EXPORT __attribute__((visibility("default")))
14#endif // FML_OS_WIN
15
16#endif // FLUTTER_LIB_GPU_EXPORT_H_