/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/react/renderer/graphics/conversions.h
27 строк
1 KB
Ruslan Lesiutin
| RN Monorepo | Migrate to package (#36434)
17 мар 2023, 15:03
17 мар 2023, 15:03
714b502
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <react/renderer/core/graphicsConversions.h> // This file belongs to the React-graphics module. // This file also used to have a reference to two files that are located in the // react/renderer/core folder. That folder belongs to a module that is called // React-Fabric. // The React-Fabric module declares an explicit dependency on // React-graphics. Including those files in a React-graphics' file created a // circular dependency because React-Fabric was explicitly depending on // React-graphics, which was implicitly depending on React-Fabric. We break that // dependency by moving the old `graphics/conversions.h` file to the // React-Fabric module and renaming it `core/graphicsConversions.h`. #warning \ "[DEPRECATION] `graphics/conversions.h` is deprecated and will be removed in the future. \ If this warning appears due to a library, please open an issue in that library, and ask for an update. \ Please, replace the `#include <react/renderer/graphics/conversions.h>` statements \ with `#include <react/renderer/core/graphicsConversions.h>`."