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 CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 15.0.2 — 2024-11-14
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 15.0.1 — 2024-11-07
14
18
 
15
19
  ### 🐛 Bug fixes
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '15.0.1'
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.1"
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 = true
51
+ eaglLayer.isOpaque = false
52
52
  eaglLayer.drawableProperties = [
53
- kEAGLDrawablePropertyRetainedBacking: true,
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.1",
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": "c0899e56c5be08b0142f06f05aa7bac8d6bc18b8"
60
+ "gitHead": "b7b95a93855cb4863b626c4524fc6e8b3a2305eb"
61
61
  }