Skip to content

Commit f4db230

Browse files
authored
fix(💚): add missing xcframeworks files and remove duplicated headers (#2671)
1 parent bf416d8 commit f4db230

17 files changed

+54
-72
lines changed

‎.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ jobs:
232232
env:
233233
JAVA_OPTS: "-XX:MaxHeapSize=6g"
234234
run: |
235-
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}" --force --concurrency 1
235+
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}" --concurrency 1
236236
237237
- name: Cache apk
238238
if: env.turbo_cache_hit != 1

‎apps/paper/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1935,7 +1935,7 @@ SPEC CHECKSUMS:
19351935
React-Mapbuffer: 1c08607305558666fd16678b85ef135e455d5c96
19361936
React-microtasksnativemodule: 87b8de96f937faefece8afd2cb3a518321b2ef99
19371937
react-native-safe-area-context: ab8f4a3d8180913bd78ae75dd599c94cce3d5e9a
1938-
react-native-skia: b1f33ae82bb728aee1d1602a6adfaee52af43f61
1938+
react-native-skia: 89e0ec26e70ca4f34a7a1f7425bc955baf77c566
19391939
react-native-slider: 97ce0bd921f40de79cead9754546d5e4e7ba44f8
19401940
react-native-wgpu: fb9d60b0f4c63a03fb60bd986d758aeffca6ee13
19411941
React-nativeconfig: 57781b79e11d5af7573e6f77cbf1143b71802a6d

‎packages/skia/android/cpp/rnskia-android/GrAHardwareBufferUtils.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
#define GL_GLEXT_PROTOTYPES
1212
#define EGL_EGLEXT_PROTOTYPES
1313

14-
#include "include/gpu/GrBackendSurface.h"
15-
#include "include/gpu/GrDirectContext.h"
14+
#include "include/gpu/ganesh/GrBackendSurface.h"
15+
#include "include/gpu/ganesh/GrDirectContext.h"
1616
#include "include/gpu/ganesh/gl/GrGLBackendSurface.h"
17-
#include "include/gpu/gl/GrGLTypes.h"
17+
#include "include/gpu/ganesh/gl/GrGLTypes.h"
1818
#include "src/gpu/ganesh/gl/GrGLDefines.h"
1919
// #include "src/gpu/ganesh/GrDirectContextPriv.h"
2020
// #include "src/gpu/ganesh/gl/GrGLUtil.h"

‎packages/skia/android/cpp/rnskia-android/GrAHardwareBufferUtils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
#if __ANDROID_API__ >= 26
88

9-
#include "include/gpu/GrBackendSurface.h"
10-
#include "include/gpu/GrTypes.h"
9+
#include "include/gpu/ganesh/GrBackendSurface.h"
10+
#include "include/gpu/ganesh/GrTypes.h"
1111

1212
class GrDirectContext;
1313

‎packages/skia/android/cpp/rnskia-android/SkiaOpenGLHelper.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
#include "include/core/SkCanvas.h"
1616
#include "include/core/SkColorSpace.h"
1717
#include "include/core/SkSurface.h"
18-
#include "include/gpu/GrDirectContext.h"
18+
#include "include/gpu/ganesh/GrDirectContext.h"
1919
#include "include/gpu/ganesh/gl/GrGLDirectContext.h"
20-
#include "include/gpu/gl/GrGLInterface.h"
20+
#include "include/gpu/ganesh/gl/GrGLInterface.h"
2121

2222
#pragma clang diagnostic pop
2323

‎packages/skia/android/cpp/rnskia-android/SkiaOpenGLSurfaceFactory.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
#include "include/core/SkCanvas.h"
2323
#include "include/core/SkColorSpace.h"
2424
#include "include/core/SkSurface.h"
25-
#include "include/gpu/GrBackendSurface.h"
26-
#include "include/gpu/GrDirectContext.h"
25+
#include "include/gpu/ganesh/GrBackendSurface.h"
26+
#include "include/gpu/ganesh/GrDirectContext.h"
2727
#include "include/gpu/ganesh/SkSurfaceGanesh.h"
28-
#include "include/gpu/gl/GrGLInterface.h"
28+
#include "include/gpu/ganesh/gl/GrGLInterface.h"
2929

3030
#pragma clang diagnostic pop
3131

‎packages/skia/cpp/api/JsiSkSurface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#pragma clang diagnostic ignored "-Wdocumentation"
1515

1616
#include "include/core/SkSurface.h"
17-
#include "include/gpu/GrDirectContext.h"
17+
#include "include/gpu/ganesh/GrDirectContext.h"
1818

1919
#pragma clang diagnostic pop
2020

‎packages/skia/ios/RNSkia-iOS/RNSkMetalCanvasProvider.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#pragma clang diagnostic push
1010
#pragma clang diagnostic ignored "-Wdocumentation"
1111

12-
#import <include/gpu/GrDirectContext.h>
12+
#import <include/gpu/ganesh/GrDirectContext.h>
1313

1414
#pragma clang diagnostic pop
1515

‎packages/skia/ios/RNSkia-iOS/RNSkMetalCanvasProvider.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#import "include/core/SkColorSpace.h"
1010
#import "include/core/SkSurface.h"
1111

12-
#import <include/gpu/GrBackendSurface.h>
13-
#import <include/gpu/GrDirectContext.h>
12+
#import <include/gpu/ganesh/GrBackendSurface.h>
13+
#import <include/gpu/ganesh/GrDirectContext.h>
1414
#import <include/gpu/ganesh/SkSurfaceGanesh.h>
1515

1616
#pragma clang diagnostic pop

‎packages/skia/ios/RNSkia-iOS/SkiaCVPixelBufferUtils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
#pragma clang diagnostic ignored "-Wdocumentation"
1818
#import "include/core/SkColorSpace.h"
1919
#import "include/core/SkImage.h"
20-
#import "include/gpu/GrBackendSurface.h"
21-
#import "include/gpu/GrYUVABackendTextures.h"
20+
#import "include/gpu/ganesh/GrBackendSurface.h"
21+
#import "include/gpu/ganesh/GrYUVABackendTextures.h"
2222
#pragma clang diagnostic pop
2323

2424
/**

0 commit comments

Comments
 (0)