expo-gl 15.0.1 → 15.0.2
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 +4 -0
- package/android/build.gradle +2 -2
- package/ios/GLView.swift +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
3
|
group = 'host.exp.exponent'
|
|
4
|
-
version = '15.0.
|
|
4
|
+
version = '15.0.2'
|
|
5
5
|
|
|
6
6
|
def reactNativeArchitectures() {
|
|
7
7
|
def value = project.getProperties().get("reactNativeArchitectures")
|
|
@@ -26,7 +26,7 @@ android {
|
|
|
26
26
|
namespace "expo.modules.gl"
|
|
27
27
|
defaultConfig {
|
|
28
28
|
versionCode 31
|
|
29
|
-
versionName "15.0.
|
|
29
|
+
versionName "15.0.2"
|
|
30
30
|
|
|
31
31
|
externalNativeBuild {
|
|
32
32
|
cmake {
|
package/ios/GLView.swift
CHANGED
|
@@ -48,9 +48,9 @@ internal final class GLView: ExpoView, EXGLContextDelegate {
|
|
|
48
48
|
|
|
49
49
|
// Initialize properties of our backing CAEAGLLayer
|
|
50
50
|
if let eaglLayer = layer as? CAEAGLLayer {
|
|
51
|
-
eaglLayer.isOpaque =
|
|
51
|
+
eaglLayer.isOpaque = false
|
|
52
52
|
eaglLayer.drawableProperties = [
|
|
53
|
-
kEAGLDrawablePropertyRetainedBacking:
|
|
53
|
+
kEAGLDrawablePropertyRetainedBacking: false,
|
|
54
54
|
kEAGLDrawablePropertyColorFormat: kEAGLColorFormatRGBA8
|
|
55
55
|
]
|
|
56
56
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-gl",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.2",
|
|
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",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"optional": true
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "b7b95a93855cb4863b626c4524fc6e8b3a2305eb"
|
|
61
61
|
}
|