expo-gl 16.0.0-canary-20250331-817737a → 16.0.0-canary-20250402-161f57b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -0
- package/android/build.gradle +2 -2
- package/common/EXGLNativeContext.h +1 -1
- package/expo-module.config.json +7 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
### 🐛 Bug fixes
|
|
12
12
|
|
|
13
|
+
- [ios] Fixed build errors in XCode 16.3 ([#35811](https://github.com/expo/expo/pull/35811) by [@chrfalch](https://github.com/chrfalch))
|
|
13
14
|
- stb_image PNG: Checks for invalid DEFLATE codes. ([#35184](https://github.com/expo/expo/pull/35184) by [@manoj23](https://github.com/manoj23))
|
|
14
15
|
|
|
15
16
|
### 💡 Others
|
package/android/build.gradle
CHANGED
|
@@ -9,7 +9,7 @@ def reactNativeArchitectures() {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
group = 'host.exp.exponent'
|
|
12
|
-
version = '
|
|
12
|
+
version = '16.0.0-canary-20250402-161f57b'
|
|
13
13
|
|
|
14
14
|
android {
|
|
15
15
|
if (rootProject.hasProperty("ndkPath")) {
|
|
@@ -22,7 +22,7 @@ android {
|
|
|
22
22
|
namespace "expo.modules.gl"
|
|
23
23
|
defaultConfig {
|
|
24
24
|
versionCode 31
|
|
25
|
-
versionName "
|
|
25
|
+
versionName "16.0.0-canary-20250402-161f57b"
|
|
26
26
|
|
|
27
27
|
externalNativeBuild {
|
|
28
28
|
cmake {
|
|
@@ -128,7 +128,7 @@ class EXGLContext {
|
|
|
128
128
|
std::atomic_uint nextObjectId = 1;
|
|
129
129
|
|
|
130
130
|
bool supportsWebGL2 = false;
|
|
131
|
-
std::set<
|
|
131
|
+
std::set<std::string> supportedExtensions;
|
|
132
132
|
|
|
133
133
|
// function that calls flush on GL thread - on Android it is passed by JNI
|
|
134
134
|
std::function<void(void)> flushOnGLThread = [&] {};
|
package/expo-module.config.json
CHANGED
|
@@ -5,6 +5,12 @@
|
|
|
5
5
|
"modules": ["GLViewModule"]
|
|
6
6
|
},
|
|
7
7
|
"android": {
|
|
8
|
-
"modules": ["expo.modules.gl.GLViewModule", "expo.modules.gl.GLObjectManagerModule"]
|
|
8
|
+
"modules": ["expo.modules.gl.GLViewModule", "expo.modules.gl.GLObjectManagerModule"],
|
|
9
|
+
"publication": {
|
|
10
|
+
"groupId": "host.exp.exponent",
|
|
11
|
+
"artifactId": "expo.modules.gl",
|
|
12
|
+
"version": "16.0.0-canary-20250402-161f57b",
|
|
13
|
+
"repository": "https://maven.pkg.github.com/expo/expo"
|
|
14
|
+
}
|
|
9
15
|
}
|
|
10
16
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-gl",
|
|
3
|
-
"version": "16.0.0-canary-
|
|
3
|
+
"version": "16.0.0-canary-20250402-161f57b",
|
|
4
4
|
"description": "Provides GLView that acts as OpenGL ES render target and gives GL context object implementing WebGL 2.0 specification.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"@types/invariant": "^2.2.33",
|
|
44
44
|
"@types/offscreencanvas": "2019.6.4",
|
|
45
45
|
"@types/webgl2": "^0.0.6",
|
|
46
|
-
"expo-module-scripts": "4.0.5-canary-
|
|
46
|
+
"expo-module-scripts": "4.0.5-canary-20250402-161f57b",
|
|
47
47
|
"react-test-renderer": "19.0.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"expo": "53.0.0-canary-
|
|
50
|
+
"expo": "53.0.0-canary-20250402-161f57b",
|
|
51
51
|
"react": "*",
|
|
52
52
|
"react-native": "*",
|
|
53
53
|
"react-native-web": "*"
|
|
@@ -56,5 +56,6 @@
|
|
|
56
56
|
"react-native-web": {
|
|
57
57
|
"optional": true
|
|
58
58
|
}
|
|
59
|
-
}
|
|
59
|
+
},
|
|
60
|
+
"gitHead": "161f57bb5f579c84f8fa0337ec596034e21760f6"
|
|
60
61
|
}
|