@aguacerowx/react-native 0.0.36 → 0.0.38

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.
Files changed (403) hide show
  1. package/README.md +126 -126
  2. package/aguacerowx-react-native.podspec +38 -38
  3. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  4. package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
  5. package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
  6. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  7. package/android/.gradle/8.9/gc.properties +0 -0
  8. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  9. package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  10. package/android/.gradle/vcs-1/gc.properties +0 -0
  11. package/android/build.gradle +107 -107
  12. package/android/src/main/AndroidManifest.xml +6 -6
  13. package/android/src/main/java/com/aguacerowx/reactnative/AguaceroPackage.java +33 -33
  14. package/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayer.java +688 -688
  15. package/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayerView.java +304 -304
  16. package/android/src/main/java/com/aguacerowx/reactnative/GridRenderManager.java +125 -125
  17. package/android/src/main/java/com/aguacerowx/reactnative/InspectorModule.java +71 -71
  18. package/android/src/main/java/com/aguacerowx/reactnative/ShaderUtils.java +106 -106
  19. package/android/src/main/java/com/aguacerowx/reactnative/WeatherFrameProcessorModule.java +151 -151
  20. package/android/src/main/res/raw/debug_fragment_shader.glsl +12 -12
  21. package/android/src/main/res/raw/debug_vertex_shader.glsl +12 -12
  22. package/android/src/main/res/raw/fragment_shader.glsl +180 -180
  23. package/android/src/main/res/raw/vertex_shader.glsl +19 -19
  24. package/index.js +2 -2
  25. package/ios/AguaceroPackage.m +18 -18
  26. package/ios/FragmentUniforms.swift +15 -15
  27. package/ios/GridRenderLayer.swift +1107 -1004
  28. package/ios/GridRenderLayerBridge.swift +44 -36
  29. package/ios/GridRenderLayerManager.mm +171 -157
  30. package/ios/GridRenderLayerView.h +30 -30
  31. package/ios/GridRenderLayerView.m +200 -216
  32. package/ios/InspectorDataCache.swift +63 -65
  33. package/ios/InspectorModule.m +9 -9
  34. package/ios/InspectorModule.swift +112 -63
  35. package/ios/Shaders.metal +319 -319
  36. package/ios/WeatherFrameProcessorModule.m +15 -15
  37. package/ios/WeatherFrameProcessorModule.swift +152 -103
  38. package/lib/commonjs/README.md +126 -126
  39. package/lib/commonjs/aguacerowx-react-native.podspec +38 -38
  40. package/lib/commonjs/android/build.gradle +107 -107
  41. package/lib/commonjs/android/src/main/AndroidManifest.xml +6 -6
  42. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/AguaceroPackage.java +33 -33
  43. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayer.java +688 -688
  44. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayerView.java +304 -304
  45. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/GridRenderManager.java +125 -125
  46. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/InspectorModule.java +71 -71
  47. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/ShaderUtils.java +106 -106
  48. package/lib/commonjs/android/src/main/java/com/aguacerowx/reactnative/WeatherFrameProcessorModule.java +151 -151
  49. package/lib/commonjs/android/src/main/res/raw/debug_fragment_shader.glsl +12 -12
  50. package/lib/commonjs/android/src/main/res/raw/debug_vertex_shader.glsl +12 -12
  51. package/lib/commonjs/android/src/main/res/raw/fragment_shader.glsl +180 -180
  52. package/lib/commonjs/android/src/main/res/raw/vertex_shader.glsl +19 -19
  53. package/lib/commonjs/babel.config.js.map +1 -1
  54. package/lib/commonjs/index.js.map +1 -1
  55. package/lib/commonjs/ios/AguaceroPackage.m +18 -18
  56. package/lib/commonjs/ios/FragmentUniforms.swift +15 -15
  57. package/lib/commonjs/ios/GridRenderLayer.swift +1107 -1004
  58. package/lib/commonjs/ios/GridRenderLayerBridge.swift +44 -36
  59. package/lib/commonjs/ios/GridRenderLayerManager.mm +171 -157
  60. package/lib/commonjs/ios/GridRenderLayerView.h +30 -30
  61. package/lib/commonjs/ios/GridRenderLayerView.m +200 -216
  62. package/lib/commonjs/ios/InspectorDataCache.swift +63 -65
  63. package/lib/commonjs/ios/InspectorModule.m +9 -9
  64. package/lib/commonjs/ios/InspectorModule.swift +112 -63
  65. package/lib/commonjs/ios/Shaders.metal +319 -319
  66. package/lib/commonjs/ios/WeatherFrameProcessorModule.m +15 -15
  67. package/lib/commonjs/ios/WeatherFrameProcessorModule.swift +152 -103
  68. package/lib/commonjs/package.json +72 -72
  69. package/lib/commonjs/react-native-builder-bob.config.js.map +1 -1
  70. package/lib/commonjs/scripts/compile-shaders.js.map +1 -1
  71. package/lib/commonjs/scripts/compile-shaders.sh +38 -38
  72. package/lib/commonjs/src/AguaceroContext.js.map +1 -1
  73. package/lib/commonjs/src/GridRenderLayer.js.map +1 -1
  74. package/lib/commonjs/src/GridRenderLayerNativeComponent.js.map +1 -1
  75. package/lib/commonjs/src/MapManager.js.map +1 -1
  76. package/lib/commonjs/src/MapRegistry.js.map +1 -1
  77. package/lib/commonjs/src/StyleApplicator.js +6 -6
  78. package/lib/commonjs/src/StyleApplicator.js.map +1 -1
  79. package/lib/commonjs/src/WeatherLayerManager.js +57 -15
  80. package/lib/commonjs/src/WeatherLayerManager.js.map +1 -1
  81. package/lib/commonjs/tsconfig.json +23 -23
  82. package/lib/module/README.md +126 -126
  83. package/lib/module/aguacerowx-react-native.podspec +38 -38
  84. package/lib/module/android/build.gradle +107 -107
  85. package/lib/module/android/src/main/AndroidManifest.xml +6 -6
  86. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/AguaceroPackage.java +33 -33
  87. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayer.java +688 -688
  88. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/GridRenderLayerView.java +304 -304
  89. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/GridRenderManager.java +125 -125
  90. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/InspectorModule.java +71 -71
  91. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/ShaderUtils.java +106 -106
  92. package/lib/module/android/src/main/java/com/aguacerowx/reactnative/WeatherFrameProcessorModule.java +151 -151
  93. package/lib/module/android/src/main/res/raw/debug_fragment_shader.glsl +12 -12
  94. package/lib/module/android/src/main/res/raw/debug_vertex_shader.glsl +12 -12
  95. package/lib/module/android/src/main/res/raw/fragment_shader.glsl +180 -180
  96. package/lib/module/android/src/main/res/raw/vertex_shader.glsl +19 -19
  97. package/lib/module/babel.config.js.map +1 -1
  98. package/lib/module/index.js.map +1 -1
  99. package/lib/module/ios/AguaceroPackage.m +18 -18
  100. package/lib/module/ios/FragmentUniforms.swift +15 -15
  101. package/lib/module/ios/GridRenderLayer.swift +1107 -1004
  102. package/lib/module/ios/GridRenderLayerBridge.swift +44 -36
  103. package/lib/module/ios/GridRenderLayerManager.mm +171 -157
  104. package/lib/module/ios/GridRenderLayerView.h +30 -30
  105. package/lib/module/ios/GridRenderLayerView.m +200 -216
  106. package/lib/module/ios/InspectorDataCache.swift +63 -65
  107. package/lib/module/ios/InspectorModule.m +9 -9
  108. package/lib/module/ios/InspectorModule.swift +112 -63
  109. package/lib/module/ios/Shaders.metal +319 -319
  110. package/lib/module/ios/WeatherFrameProcessorModule.m +15 -15
  111. package/lib/module/ios/WeatherFrameProcessorModule.swift +152 -103
  112. package/lib/module/lib/commonjs/README.md +126 -126
  113. package/lib/module/lib/commonjs/aguacerowx-react-native.podspec +38 -38
  114. package/lib/module/lib/commonjs/babel.config.js.map +1 -1
  115. package/lib/module/lib/commonjs/index.js.map +1 -1
  116. package/lib/module/lib/commonjs/ios/AguaceroPackage.m +18 -18
  117. package/lib/module/lib/commonjs/ios/FragmentUniforms.swift +15 -15
  118. package/lib/module/lib/commonjs/ios/GridRenderLayer.swift +1107 -1004
  119. package/lib/module/lib/commonjs/ios/GridRenderLayerBridge.swift +44 -36
  120. package/lib/module/lib/commonjs/ios/GridRenderLayerManager.mm +171 -157
  121. package/lib/module/lib/commonjs/ios/GridRenderLayerView.h +30 -30
  122. package/lib/module/lib/commonjs/ios/GridRenderLayerView.m +200 -216
  123. package/lib/module/lib/commonjs/ios/InspectorDataCache.swift +63 -65
  124. package/lib/module/lib/commonjs/ios/InspectorModule.m +9 -9
  125. package/lib/module/lib/commonjs/ios/InspectorModule.swift +112 -63
  126. package/lib/module/lib/commonjs/ios/Shaders.metal +319 -319
  127. package/lib/module/lib/commonjs/ios/WeatherFrameProcessorModule.m +15 -15
  128. package/lib/module/lib/commonjs/ios/WeatherFrameProcessorModule.swift +152 -103
  129. package/lib/module/lib/commonjs/package.json +72 -72
  130. package/lib/module/lib/commonjs/react-native-builder-bob.config.js.map +1 -1
  131. package/lib/module/lib/commonjs/scripts/compile-shaders.js.map +1 -1
  132. package/lib/module/lib/commonjs/scripts/compile-shaders.sh +38 -38
  133. package/lib/module/lib/commonjs/src/AguaceroContext.js.map +1 -1
  134. package/lib/module/lib/commonjs/src/GridRenderLayer.js.map +1 -1
  135. package/lib/module/lib/commonjs/src/GridRenderLayerNativeComponent.js.map +1 -1
  136. package/lib/module/lib/commonjs/src/MapManager.js.map +1 -1
  137. package/lib/module/lib/commonjs/src/MapRegistry.js.map +1 -1
  138. package/lib/module/lib/commonjs/src/StyleApplicator.js +6 -6
  139. package/lib/module/lib/commonjs/src/StyleApplicator.js.map +1 -1
  140. package/lib/module/lib/commonjs/src/WeatherLayerManager.js +57 -15
  141. package/lib/module/lib/commonjs/src/WeatherLayerManager.js.map +1 -1
  142. package/lib/module/lib/commonjs/tsconfig.json +23 -23
  143. package/lib/module/package.json +72 -72
  144. package/lib/module/react-native-builder-bob.config.js.map +1 -1
  145. package/lib/module/scripts/compile-shaders.js.map +1 -1
  146. package/lib/module/scripts/compile-shaders.sh +38 -38
  147. package/lib/module/src/AguaceroContext.js.map +1 -1
  148. package/lib/module/src/GridRenderLayer.js.map +1 -1
  149. package/lib/module/src/GridRenderLayerNativeComponent.js.map +1 -1
  150. package/lib/module/src/MapManager.js.map +1 -1
  151. package/lib/module/src/MapRegistry.js.map +1 -1
  152. package/lib/module/src/StyleApplicator.js +6 -6
  153. package/lib/module/src/StyleApplicator.js.map +1 -1
  154. package/lib/module/src/WeatherLayerManager.js +59 -16
  155. package/lib/module/src/WeatherLayerManager.js.map +1 -1
  156. package/lib/module/tsconfig.json +23 -23
  157. package/lib/typescript/src/WeatherLayerManager.d.ts.map +1 -1
  158. package/package.json +72 -72
  159. package/src/AguaceroContext.js +3 -3
  160. package/src/GridRenderLayer.js +215 -215
  161. package/src/GridRenderLayerNativeComponent.ts +15 -15
  162. package/src/MapManager.js +218 -218
  163. package/src/MapRegistry.js +34 -34
  164. package/src/StyleApplicator.js +240 -240
  165. package/src/WeatherLayerManager.js +1191 -1137
  166. package/android/build/.transforms/42e9b8fa82d77a1c205db5bf0d0ed519/results.bin +0 -1
  167. package/android/build/.transforms/42e9b8fa82d77a1c205db5bf0d0ed519/transformed/classes/classes_dex/classes.dex +0 -0
  168. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/results.bin +0 -1
  169. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/AguaceroPackage.dex +0 -0
  170. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/BuildConfig.dex +0 -0
  171. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.dex +0 -0
  172. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/GridRenderLayer.dex +0 -0
  173. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/GridRenderLayerView.dex +0 -0
  174. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/GridRenderManager.dex +0 -0
  175. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/InspectorModule.dex +0 -0
  176. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/ShaderUtils.dex +0 -0
  177. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/aguacerowx/reactnative/WeatherFrameProcessorModule.dex +0 -0
  178. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.dex +0 -0
  179. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.dex +0 -0
  180. package/android/build/.transforms/c8ab78b63f2cc835ac936d58e29a17ab/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin +0 -0
  181. package/android/build/generated/source/buildConfig/debug/com/aguacerowx/reactnative/BuildConfig.java +0 -10
  182. package/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.java +0 -43
  183. package/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.java +0 -22
  184. package/android/build/generated/source/codegen/jni/AguaceroWxReactNativeSpec-generated.cpp +0 -22
  185. package/android/build/generated/source/codegen/jni/AguaceroWxReactNativeSpec.h +0 -24
  186. package/android/build/generated/source/codegen/jni/CMakeLists.txt +0 -28
  187. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/AguaceroWxReactNativeSpecJSI-generated.cpp +0 -17
  188. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/AguaceroWxReactNativeSpecJSI.h +0 -19
  189. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.cpp +0 -22
  190. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.h +0 -24
  191. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.cpp +0 -16
  192. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.h +0 -23
  193. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.cpp +0 -62
  194. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.h +0 -40
  195. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.cpp +0 -17
  196. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.h +0 -32
  197. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/States.cpp +0 -16
  198. package/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/States.h +0 -20
  199. package/android/build/generated/source/codegen/schema.json +0 -1
  200. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +0 -8
  201. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +0 -18
  202. package/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +0 -6
  203. package/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +0 -1
  204. package/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +0 -0
  205. package/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +0 -0
  206. package/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +0 -4
  207. package/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_debug_fragment_shader.glsl.flat +0 -0
  208. package/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_debug_vertex_shader.glsl.flat +0 -0
  209. package/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_fragment_shader.glsl.flat +0 -0
  210. package/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_vertex_shader.glsl.flat +0 -0
  211. package/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +0 -5
  212. package/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +0 -2
  213. package/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +0 -2
  214. package/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
  215. package/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
  216. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  217. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/BuildConfig.class +0 -0
  218. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  219. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  220. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  221. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderManager.class +0 -0
  222. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  223. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/ShaderUtils.class +0 -0
  224. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  225. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.class +0 -0
  226. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.class +0 -0
  227. package/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +0 -6
  228. package/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +0 -8
  229. package/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +0 -8
  230. package/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +0 -1
  231. package/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +0 -1
  232. package/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/debug_fragment_shader.glsl +0 -13
  233. package/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/debug_vertex_shader.glsl +0 -13
  234. package/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/fragment_shader.glsl +0 -181
  235. package/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/vertex_shader.glsl +0 -20
  236. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  237. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/BuildConfig.class +0 -0
  238. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  239. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  240. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  241. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderManager.class +0 -0
  242. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  243. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/ShaderUtils.class +0 -0
  244. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  245. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.class +0 -0
  246. package/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.class +0 -0
  247. package/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +0 -0
  248. package/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +0 -5
  249. package/android/build/outputs/logs/manifest-merger-debug-report.txt +0 -17
  250. package/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GridRenderLayer$VertexInfo.class.uniqueId0 +0 -0
  251. package/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GridRenderLayer.class.uniqueId1 +0 -0
  252. package/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GridRenderLayerView.class.uniqueId2 +0 -0
  253. package/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
  254. package/lib/commonjs/android/build/generated/source/buildConfig/debug/com/aguacerowx/reactnative/BuildConfig.java +0 -10
  255. package/lib/commonjs/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.java +0 -43
  256. package/lib/commonjs/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.java +0 -22
  257. package/lib/commonjs/android/build/generated/source/codegen/jni/AguaceroWxReactNativeSpec-generated.cpp +0 -22
  258. package/lib/commonjs/android/build/generated/source/codegen/jni/AguaceroWxReactNativeSpec.h +0 -24
  259. package/lib/commonjs/android/build/generated/source/codegen/jni/CMakeLists.txt +0 -28
  260. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/AguaceroWxReactNativeSpecJSI-generated.cpp +0 -17
  261. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/AguaceroWxReactNativeSpecJSI.h +0 -19
  262. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.cpp +0 -22
  263. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.h +0 -24
  264. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.cpp +0 -16
  265. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.h +0 -23
  266. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.cpp +0 -62
  267. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.h +0 -40
  268. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.cpp +0 -17
  269. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.h +0 -32
  270. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/States.cpp +0 -16
  271. package/lib/commonjs/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/States.h +0 -20
  272. package/lib/commonjs/android/build/generated/source/codegen/schema.json +0 -1
  273. package/lib/commonjs/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +0 -8
  274. package/lib/commonjs/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +0 -18
  275. package/lib/commonjs/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +0 -6
  276. package/lib/commonjs/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +0 -1
  277. package/lib/commonjs/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +0 -0
  278. package/lib/commonjs/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +0 -0
  279. package/lib/commonjs/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +0 -4
  280. package/lib/commonjs/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_debug_fragment_shader.glsl.flat +0 -0
  281. package/lib/commonjs/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_debug_vertex_shader.glsl.flat +0 -0
  282. package/lib/commonjs/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_fragment_shader.glsl.flat +0 -0
  283. package/lib/commonjs/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_vertex_shader.glsl.flat +0 -0
  284. package/lib/commonjs/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +0 -5
  285. package/lib/commonjs/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +0 -2
  286. package/lib/commonjs/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +0 -2
  287. package/lib/commonjs/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
  288. package/lib/commonjs/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
  289. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  290. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/BuildConfig.class +0 -0
  291. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  292. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  293. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  294. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderManager.class +0 -0
  295. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  296. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/ShaderUtils.class +0 -0
  297. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  298. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.class +0 -0
  299. package/lib/commonjs/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.class +0 -0
  300. package/lib/commonjs/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +0 -6
  301. package/lib/commonjs/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +0 -8
  302. package/lib/commonjs/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +0 -8
  303. package/lib/commonjs/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +0 -1
  304. package/lib/commonjs/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +0 -1
  305. package/lib/commonjs/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/debug_fragment_shader.glsl +0 -13
  306. package/lib/commonjs/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/debug_vertex_shader.glsl +0 -13
  307. package/lib/commonjs/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/fragment_shader.glsl +0 -181
  308. package/lib/commonjs/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/vertex_shader.glsl +0 -20
  309. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  310. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/BuildConfig.class +0 -0
  311. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  312. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  313. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  314. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderManager.class +0 -0
  315. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  316. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/ShaderUtils.class +0 -0
  317. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  318. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.class +0 -0
  319. package/lib/commonjs/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.class +0 -0
  320. package/lib/commonjs/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +0 -0
  321. package/lib/commonjs/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +0 -5
  322. package/lib/commonjs/android/build/outputs/logs/manifest-merger-debug-report.txt +0 -17
  323. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GridRenderLayer$VertexInfo.class.uniqueId0 +0 -0
  324. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GridRenderLayer.class.uniqueId1 +0 -0
  325. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GridRenderLayerView.class.uniqueId2 +0 -0
  326. package/lib/commonjs/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
  327. package/lib/module/android/build/generated/source/buildConfig/debug/com/aguacerowx/reactnative/BuildConfig.java +0 -10
  328. package/lib/module/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.java +0 -43
  329. package/lib/module/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.java +0 -22
  330. package/lib/module/android/build/generated/source/codegen/jni/AguaceroWxReactNativeSpec-generated.cpp +0 -22
  331. package/lib/module/android/build/generated/source/codegen/jni/AguaceroWxReactNativeSpec.h +0 -24
  332. package/lib/module/android/build/generated/source/codegen/jni/CMakeLists.txt +0 -28
  333. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/AguaceroWxReactNativeSpecJSI-generated.cpp +0 -17
  334. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/AguaceroWxReactNativeSpecJSI.h +0 -19
  335. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.cpp +0 -22
  336. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ComponentDescriptors.h +0 -24
  337. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.cpp +0 -16
  338. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/EventEmitters.h +0 -23
  339. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.cpp +0 -62
  340. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/Props.h +0 -40
  341. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.cpp +0 -17
  342. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/ShadowNodes.h +0 -32
  343. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/States.cpp +0 -16
  344. package/lib/module/android/build/generated/source/codegen/jni/react/renderer/components/AguaceroWxReactNativeSpec/States.h +0 -20
  345. package/lib/module/android/build/generated/source/codegen/schema.json +0 -1
  346. package/lib/module/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +0 -8
  347. package/lib/module/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +0 -18
  348. package/lib/module/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +0 -6
  349. package/lib/module/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +0 -1
  350. package/lib/module/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +0 -0
  351. package/lib/module/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +0 -0
  352. package/lib/module/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +0 -4
  353. package/lib/module/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_debug_fragment_shader.glsl.flat +0 -0
  354. package/lib/module/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_debug_vertex_shader.glsl.flat +0 -0
  355. package/lib/module/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_fragment_shader.glsl.flat +0 -0
  356. package/lib/module/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/raw_vertex_shader.glsl.flat +0 -0
  357. package/lib/module/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +0 -5
  358. package/lib/module/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +0 -2
  359. package/lib/module/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +0 -2
  360. package/lib/module/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
  361. package/lib/module/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
  362. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  363. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/BuildConfig.class +0 -0
  364. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  365. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  366. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  367. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/GridRenderManager.class +0 -0
  368. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  369. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/ShaderUtils.class +0 -0
  370. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  371. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.class +0 -0
  372. package/lib/module/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.class +0 -0
  373. package/lib/module/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +0 -6
  374. package/lib/module/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +0 -8
  375. package/lib/module/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +0 -8
  376. package/lib/module/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +0 -1
  377. package/lib/module/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +0 -1
  378. package/lib/module/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/debug_fragment_shader.glsl +0 -13
  379. package/lib/module/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/debug_vertex_shader.glsl +0 -13
  380. package/lib/module/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/fragment_shader.glsl +0 -181
  381. package/lib/module/android/build/intermediates/packaged_res/debug/packageDebugResources/raw/vertex_shader.glsl +0 -20
  382. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/AguaceroPackage.class +0 -0
  383. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/BuildConfig.class +0 -0
  384. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer$VertexInfo.class +0 -0
  385. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayer.class +0 -0
  386. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderLayerView.class +0 -0
  387. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/GridRenderManager.class +0 -0
  388. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/InspectorModule.class +0 -0
  389. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/ShaderUtils.class +0 -0
  390. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/aguacerowx/reactnative/WeatherFrameProcessorModule.class +0 -0
  391. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/GridRenderLayerManagerDelegate.class +0 -0
  392. package/lib/module/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/GridRenderLayerManagerInterface.class +0 -0
  393. package/lib/module/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +0 -0
  394. package/lib/module/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +0 -5
  395. package/lib/module/android/build/outputs/logs/manifest-merger-debug-report.txt +0 -17
  396. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GridRenderLayer$VertexInfo.class.uniqueId0 +0 -0
  397. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GridRenderLayer.class.uniqueId1 +0 -0
  398. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GridRenderLayerView.class.uniqueId2 +0 -0
  399. package/lib/module/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
  400. package/lib/module/lib/commonjs/android/build.gradle +0 -108
  401. package/lib/module/lib/commonjs/android/src/main/AndroidManifest.xml +0 -7
  402. package/lib/module/lib/commonjs/ios/compiled-shaders/Shaders-device.metallib +0 -0
  403. package/lib/module/lib/commonjs/ios/compiled-shaders/Shaders-simulator.metallib +0 -0
@@ -1,320 +1,320 @@
1
- #include <metal_stdlib>
2
- using namespace metal;
3
-
4
- // Struct to match the vertex buffer layout in Swift
5
- struct Vertex {
6
- float2 position [[attribute(0)]];
7
- float2 texCoord [[attribute(1)]];
8
- };
9
-
10
- // Struct for passing data from vertex to fragment shader
11
- struct RasterizerData {
12
- float4 position [[position]];
13
- float2 texCoord;
14
- };
15
-
16
- // Uniforms passed from the CPU to the fragment shader
17
- struct FragmentUniforms {
18
- float opacity;
19
- float2 dataRange;
20
- float scale;
21
- float offset;
22
- float missingQuantized;
23
- float2 textureSize;
24
- int smoothing;
25
- int scaleType;
26
- int isPtype;
27
- int isMRMS;
28
- };
29
-
30
- // --- Vertex Shader (Unchanged) ---
31
- vertex RasterizerData vertex_main(const Vertex in [[stage_in]],
32
- constant float4x4 &mvp [[buffer(1)]]) {
33
- RasterizerData out;
34
- out.position = mvp * float4(in.position, 0.0, 1.0);
35
- out.texCoord = in.texCoord;
36
- return out;
37
- }
38
-
39
-
40
- // --- HELPER FUNCTIONS FOR FRAGMENT SHADER ---
41
-
42
- // Dequantizes a signed value (-127 to 127) into a physical value
43
- float dequantize_val(float q_val, constant FragmentUniforms &uniforms) {
44
- if (abs(q_val - uniforms.missingQuantized) < 0.5) {
45
- return -9999.0;
46
- }
47
- float intermediate = q_val * uniforms.scale + uniforms.offset;
48
- if (uniforms.scaleType == 1) { // 1 = sqrt
49
- return intermediate * abs(intermediate);
50
- }
51
- return intermediate;
52
- }
53
-
54
- // Samples texture, converts 0-255 to signed -128-127 range.
55
- // Returns a quantized value, or a large positive sentinel for missing data.
56
- float get_value(texture2d<float, access::sample> dataTexture, sampler dataSampler, float2 coord, constant FragmentUniforms &uniforms) {
57
- // Note: The sampler should be set to 'nearest' when calling this for ptype logic.
58
- float value_0_to_255 = dataTexture.sample(dataSampler, coord).r * 255.0;
59
- float val = value_0_to_255 - 128.0;
60
- float missing_in_texture_range_0_255 = uniforms.missingQuantized + 128.0;
61
- if (abs(value_0_to_255 - missing_in_texture_range_0_255) < 0.5) {
62
- return 99999.0; // Sentinel for "missing"
63
- }
64
- return val;
65
- }
66
-
67
- // Maps a physical value to a precipitation type category
68
- // Maps a physical value to a precipitation type category
69
- float get_ptype_from_physical(float val, constant FragmentUniforms &uniforms) { // ADD uniforms parameter
70
- if (val < 0.0) return -1.0;
71
-
72
- // Models: 0-100 rain, 100-200 snow, 200-300 freezing rain, 300-400 ice pellets
73
- if (val < 100.0) return 0.0;
74
- if (val < 200.0) return 1.0;
75
- if (val < 300.0) return 2.0;
76
- if (val < 400.0) return 3.0;
77
- return -1.0;
78
- }
79
-
80
- // --- Main Fragment Shader ---
81
- fragment float4 fragment_main(RasterizerData in [[stage_in]],
82
- constant FragmentUniforms &uniforms [[buffer(0)]],
83
- texture2d<float, access::sample> dataTexture [[texture(0)]],
84
- texture2d<float, access::sample> colormapTexture [[texture(1)]],
85
- sampler dataSampler [[sampler(0)]],
86
- sampler colormapSampler [[sampler(1)]])
87
- {
88
- float raw_value;
89
- float alpha_multiplier = 1.0; // Used for alpha feathering at data edges
90
-
91
- if (uniforms.smoothing == 0) { // Nearest neighbor
92
- float quantized_value = get_value(dataTexture, dataSampler, in.texCoord, uniforms);
93
- if (quantized_value >= 99999.0) {
94
- discard_fragment();
95
- }
96
- raw_value = dequantize_val(quantized_value, uniforms);
97
-
98
- } else { // Bilinear interpolation
99
- float2 texel_size = 1.0 / uniforms.textureSize;
100
- float2 tex_coord_in_texels = in.texCoord * uniforms.textureSize;
101
- float2 bl_texel_index = floor(tex_coord_in_texels - 0.5);
102
- float2 f = fract(tex_coord_in_texels - 0.5); // Interpolation factors
103
-
104
- // Coordinates of the 4 neighboring texels
105
- float2 v00_coord = (bl_texel_index + float2(0.5, 0.5)) * texel_size;
106
- float2 v10_coord = (bl_texel_index + float2(1.5, 0.5)) * texel_size;
107
- float2 v01_coord = (bl_texel_index + float2(0.5, 1.5)) * texel_size;
108
- float2 v11_coord = (bl_texel_index + float2(1.5, 1.5)) * texel_size;
109
-
110
- if (uniforms.isPtype == 1) {
111
- // --- ENHANCED PTYPE-SPECIFIC INTERPOLATION ---
112
- float v00 = dequantize_val(get_value(dataTexture, dataSampler, v00_coord, uniforms), uniforms);
113
- float v10 = dequantize_val(get_value(dataTexture, dataSampler, v10_coord, uniforms), uniforms);
114
- float v01 = dequantize_val(get_value(dataTexture, dataSampler, v01_coord, uniforms), uniforms);
115
- float v11 = dequantize_val(get_value(dataTexture, dataSampler, v11_coord, uniforms), uniforms);
116
-
117
- float p00 = get_ptype_from_physical(v00, uniforms);
118
- float p10 = get_ptype_from_physical(v10, uniforms);
119
- float p01 = get_ptype_from_physical(v01, uniforms);
120
- float p11 = get_ptype_from_physical(v11, uniforms);
121
-
122
- // Count unique valid precipitation types
123
- bool has_type_0 = false;
124
- bool has_type_1 = false;
125
- bool has_type_2 = false;
126
- bool has_type_3 = false;
127
- int valid_count = 0;
128
-
129
- if (p00 >= 0.0) {
130
- int ptype = int(p00);
131
- if (ptype == 0) has_type_0 = true;
132
- else if (ptype == 1) has_type_1 = true;
133
- else if (ptype == 2) has_type_2 = true;
134
- else if (ptype == 3) has_type_3 = true;
135
- valid_count++;
136
- }
137
- if (p10 >= 0.0) {
138
- int ptype = int(p10);
139
- if (ptype == 0) has_type_0 = true;
140
- else if (ptype == 1) has_type_1 = true;
141
- else if (ptype == 2) has_type_2 = true;
142
- else if (ptype == 3) has_type_3 = true;
143
- valid_count++;
144
- }
145
- if (p01 >= 0.0) {
146
- int ptype = int(p01);
147
- if (ptype == 0) has_type_0 = true;
148
- else if (ptype == 1) has_type_1 = true;
149
- else if (ptype == 2) has_type_2 = true;
150
- else if (ptype == 3) has_type_3 = true;
151
- valid_count++;
152
- }
153
- if (p11 >= 0.0) {
154
- int ptype = int(p11);
155
- if (ptype == 0) has_type_0 = true;
156
- else if (ptype == 1) has_type_1 = true;
157
- else if (ptype == 2) has_type_2 = true;
158
- else if (ptype == 3) has_type_3 = true;
159
- valid_count++;
160
- }
161
-
162
- if (valid_count == 0) discard_fragment();
163
-
164
- // Count how many unique types we have
165
- int unique_types = 0;
166
- if (has_type_0) unique_types++;
167
- if (has_type_1) unique_types++;
168
- if (has_type_2) unique_types++;
169
- if (has_type_3) unique_types++;
170
-
171
- if (unique_types == 1) {
172
- // ALL SAME TYPE - smooth interpolation across all valid pixels
173
- float total_value = 0.0;
174
- float total_weight = 0.0;
175
-
176
- if (p00 >= 0.0) {
177
- float weight = (1.0 - f.x) * (1.0 - f.y);
178
- total_value += v00 * weight;
179
- total_weight += weight;
180
- }
181
- if (p10 >= 0.0) {
182
- float weight = f.x * (1.0 - f.y);
183
- total_value += v10 * weight;
184
- total_weight += weight;
185
- }
186
- if (p01 >= 0.0) {
187
- float weight = (1.0 - f.x) * f.y;
188
- total_value += v01 * weight;
189
- total_weight += weight;
190
- }
191
- if (p11 >= 0.0) {
192
- float weight = f.x * f.y;
193
- total_value += v11 * weight;
194
- total_weight += weight;
195
- }
196
-
197
- if (total_weight <= 0.0) discard_fragment();
198
- raw_value = total_value / total_weight;
199
-
200
- } else {
201
- // MULTIPLE TYPES - weighted voting to determine dominant type
202
- float type_weight_0 = 0.0;
203
- float type_weight_1 = 0.0;
204
- float type_weight_2 = 0.0;
205
- float type_weight_3 = 0.0;
206
-
207
- if (p00 >= 0.0) {
208
- float w = (1.0 - f.x) * (1.0 - f.y);
209
- int ptype = int(p00);
210
- if (ptype == 0) type_weight_0 += w;
211
- else if (ptype == 1) type_weight_1 += w;
212
- else if (ptype == 2) type_weight_2 += w;
213
- else if (ptype == 3) type_weight_3 += w;
214
- }
215
- if (p10 >= 0.0) {
216
- float w = f.x * (1.0 - f.y);
217
- int ptype = int(p10);
218
- if (ptype == 0) type_weight_0 += w;
219
- else if (ptype == 1) type_weight_1 += w;
220
- else if (ptype == 2) type_weight_2 += w;
221
- else if (ptype == 3) type_weight_3 += w;
222
- }
223
- if (p01 >= 0.0) {
224
- float w = (1.0 - f.x) * f.y;
225
- int ptype = int(p01);
226
- if (ptype == 0) type_weight_0 += w;
227
- else if (ptype == 1) type_weight_1 += w;
228
- else if (ptype == 2) type_weight_2 += w;
229
- else if (ptype == 3) type_weight_3 += w;
230
- }
231
- if (p11 >= 0.0) {
232
- float w = f.x * f.y;
233
- int ptype = int(p11);
234
- if (ptype == 0) type_weight_0 += w;
235
- else if (ptype == 1) type_weight_1 += w;
236
- else if (ptype == 2) type_weight_2 += w;
237
- else if (ptype == 3) type_weight_3 += w;
238
- }
239
-
240
- // Find the type with the highest weight at this pixel location
241
- float max_type_weight = 0.0;
242
- float winning_type = -1.0;
243
- if (type_weight_0 > max_type_weight) { max_type_weight = type_weight_0; winning_type = 0.0; }
244
- if (type_weight_1 > max_type_weight) { max_type_weight = type_weight_1; winning_type = 1.0; }
245
- if (type_weight_2 > max_type_weight) { max_type_weight = type_weight_2; winning_type = 2.0; }
246
- if (type_weight_3 > max_type_weight) { max_type_weight = type_weight_3; winning_type = 3.0; }
247
-
248
- if (winning_type == -1.0) discard_fragment();
249
-
250
- // Now smoothly interpolate only among pixels of the winning type
251
- float total_value = 0.0;
252
- float total_weight = 0.0;
253
-
254
- if (p00 == winning_type) {
255
- float weight = (1.0 - f.x) * (1.0 - f.y);
256
- total_value += v00 * weight;
257
- total_weight += weight;
258
- }
259
- if (p10 == winning_type) {
260
- float weight = f.x * (1.0 - f.y);
261
- total_value += v10 * weight;
262
- total_weight += weight;
263
- }
264
- if (p01 == winning_type) {
265
- float weight = (1.0 - f.x) * f.y;
266
- total_value += v01 * weight;
267
- total_weight += weight;
268
- }
269
- if (p11 == winning_type) {
270
- float weight = f.x * f.y;
271
- total_value += v11 * weight;
272
- total_weight += weight;
273
- }
274
-
275
- if (total_weight <= 0.0) discard_fragment();
276
- raw_value = total_value / total_weight;
277
- }
278
-
279
- // Force full alpha to prevent dark borders between ptype regions
280
- alpha_multiplier = 1.0;
281
-
282
- } else {
283
- // --- STANDARD INTERPOLATION (CONTINUOUS) ---
284
- float v00_q = get_value(dataTexture, dataSampler, v00_coord, uniforms);
285
- float v10_q = get_value(dataTexture, dataSampler, v10_coord, uniforms);
286
- float v01_q = get_value(dataTexture, dataSampler, v01_coord, uniforms);
287
- float v11_q = get_value(dataTexture, dataSampler, v11_coord, uniforms);
288
-
289
- float total_value_q = 0.0;
290
- float total_weight = 0.0;
291
- if (v00_q < 99999.0) { float w = (1.0-f.x)*(1.0-f.y); total_value_q+=v00_q*w; total_weight+=w; }
292
- if (v10_q < 99999.0) { float w = f.x*(1.0-f.y); total_value_q+=v10_q*w; total_weight+=w; }
293
- if (v01_q < 99999.0) { float w = (1.0-f.x)*f.y; total_value_q+=v01_q*w; total_weight+=w; }
294
- if (v11_q < 99999.0) { float w = f.x*f.y; total_value_q+=v11_q*w; total_weight+=w; }
295
-
296
- if (total_weight <= 0.0) discard_fragment();
297
- raw_value = dequantize_val(total_value_q / total_weight, uniforms);
298
- alpha_multiplier = total_weight; // Feather the edges of the data
299
- }
300
- }
301
-
302
- // --- COMMON FINAL STEPS ---
303
-
304
- if (raw_value < uniforms.dataRange.x) {
305
- discard_fragment();
306
- }
307
-
308
- float colormap_coord = (raw_value - uniforms.dataRange.x) / (uniforms.dataRange.y - uniforms.dataRange.x);
309
- colormap_coord = clamp(colormap_coord, 0.0, 1.0);
310
-
311
- float4 color = colormapTexture.sample(colormapSampler, float2(colormap_coord, 0.5));
312
-
313
- // Discard if the colormap specifies transparency
314
- if (color.a < 0.1) {
315
- discard_fragment();
316
- }
317
-
318
- float final_alpha = color.a * uniforms.opacity * alpha_multiplier;
319
- return float4(color.rgb * final_alpha, final_alpha);
1
+ #include <metal_stdlib>
2
+ using namespace metal;
3
+
4
+ // Struct to match the vertex buffer layout in Swift
5
+ struct Vertex {
6
+ float2 position [[attribute(0)]];
7
+ float2 texCoord [[attribute(1)]];
8
+ };
9
+
10
+ // Struct for passing data from vertex to fragment shader
11
+ struct RasterizerData {
12
+ float4 position [[position]];
13
+ float2 texCoord;
14
+ };
15
+
16
+ // Uniforms passed from the CPU to the fragment shader
17
+ struct FragmentUniforms {
18
+ float opacity;
19
+ float2 dataRange;
20
+ float scale;
21
+ float offset;
22
+ float missingQuantized;
23
+ float2 textureSize;
24
+ int smoothing;
25
+ int scaleType;
26
+ int isPtype;
27
+ int isMRMS;
28
+ };
29
+
30
+ // --- Vertex Shader (Unchanged) ---
31
+ vertex RasterizerData vertex_main(const Vertex in [[stage_in]],
32
+ constant float4x4 &mvp [[buffer(1)]]) {
33
+ RasterizerData out;
34
+ out.position = mvp * float4(in.position, 0.0, 1.0);
35
+ out.texCoord = in.texCoord;
36
+ return out;
37
+ }
38
+
39
+
40
+ // --- HELPER FUNCTIONS FOR FRAGMENT SHADER ---
41
+
42
+ // Dequantizes a signed value (-127 to 127) into a physical value
43
+ float dequantize_val(float q_val, constant FragmentUniforms &uniforms) {
44
+ if (abs(q_val - uniforms.missingQuantized) < 0.5) {
45
+ return -9999.0;
46
+ }
47
+ float intermediate = q_val * uniforms.scale + uniforms.offset;
48
+ if (uniforms.scaleType == 1) { // 1 = sqrt
49
+ return intermediate * abs(intermediate);
50
+ }
51
+ return intermediate;
52
+ }
53
+
54
+ // Samples texture, converts 0-255 to signed -128-127 range.
55
+ // Returns a quantized value, or a large positive sentinel for missing data.
56
+ float get_value(texture2d<float, access::sample> dataTexture, sampler dataSampler, float2 coord, constant FragmentUniforms &uniforms) {
57
+ // Note: The sampler should be set to 'nearest' when calling this for ptype logic.
58
+ float value_0_to_255 = dataTexture.sample(dataSampler, coord).r * 255.0;
59
+ float val = value_0_to_255 - 128.0;
60
+ float missing_in_texture_range_0_255 = uniforms.missingQuantized + 128.0;
61
+ if (abs(value_0_to_255 - missing_in_texture_range_0_255) < 0.5) {
62
+ return 99999.0; // Sentinel for "missing"
63
+ }
64
+ return val;
65
+ }
66
+
67
+ // Maps a physical value to a precipitation type category
68
+ // Maps a physical value to a precipitation type category
69
+ float get_ptype_from_physical(float val, constant FragmentUniforms &uniforms) { // ADD uniforms parameter
70
+ if (val < 0.0) return -1.0;
71
+
72
+ // Models: 0-100 rain, 100-200 snow, 200-300 freezing rain, 300-400 ice pellets
73
+ if (val < 100.0) return 0.0;
74
+ if (val < 200.0) return 1.0;
75
+ if (val < 300.0) return 2.0;
76
+ if (val < 400.0) return 3.0;
77
+ return -1.0;
78
+ }
79
+
80
+ // --- Main Fragment Shader ---
81
+ fragment float4 fragment_main(RasterizerData in [[stage_in]],
82
+ constant FragmentUniforms &uniforms [[buffer(0)]],
83
+ texture2d<float, access::sample> dataTexture [[texture(0)]],
84
+ texture2d<float, access::sample> colormapTexture [[texture(1)]],
85
+ sampler dataSampler [[sampler(0)]],
86
+ sampler colormapSampler [[sampler(1)]])
87
+ {
88
+ float raw_value;
89
+ float alpha_multiplier = 1.0; // Used for alpha feathering at data edges
90
+
91
+ if (uniforms.smoothing == 0) { // Nearest neighbor
92
+ float quantized_value = get_value(dataTexture, dataSampler, in.texCoord, uniforms);
93
+ if (quantized_value >= 99999.0) {
94
+ discard_fragment();
95
+ }
96
+ raw_value = dequantize_val(quantized_value, uniforms);
97
+
98
+ } else { // Bilinear interpolation
99
+ float2 texel_size = 1.0 / uniforms.textureSize;
100
+ float2 tex_coord_in_texels = in.texCoord * uniforms.textureSize;
101
+ float2 bl_texel_index = floor(tex_coord_in_texels - 0.5);
102
+ float2 f = fract(tex_coord_in_texels - 0.5); // Interpolation factors
103
+
104
+ // Coordinates of the 4 neighboring texels
105
+ float2 v00_coord = (bl_texel_index + float2(0.5, 0.5)) * texel_size;
106
+ float2 v10_coord = (bl_texel_index + float2(1.5, 0.5)) * texel_size;
107
+ float2 v01_coord = (bl_texel_index + float2(0.5, 1.5)) * texel_size;
108
+ float2 v11_coord = (bl_texel_index + float2(1.5, 1.5)) * texel_size;
109
+
110
+ if (uniforms.isPtype == 1) {
111
+ // --- ENHANCED PTYPE-SPECIFIC INTERPOLATION ---
112
+ float v00 = dequantize_val(get_value(dataTexture, dataSampler, v00_coord, uniforms), uniforms);
113
+ float v10 = dequantize_val(get_value(dataTexture, dataSampler, v10_coord, uniforms), uniforms);
114
+ float v01 = dequantize_val(get_value(dataTexture, dataSampler, v01_coord, uniforms), uniforms);
115
+ float v11 = dequantize_val(get_value(dataTexture, dataSampler, v11_coord, uniforms), uniforms);
116
+
117
+ float p00 = get_ptype_from_physical(v00, uniforms);
118
+ float p10 = get_ptype_from_physical(v10, uniforms);
119
+ float p01 = get_ptype_from_physical(v01, uniforms);
120
+ float p11 = get_ptype_from_physical(v11, uniforms);
121
+
122
+ // Count unique valid precipitation types
123
+ bool has_type_0 = false;
124
+ bool has_type_1 = false;
125
+ bool has_type_2 = false;
126
+ bool has_type_3 = false;
127
+ int valid_count = 0;
128
+
129
+ if (p00 >= 0.0) {
130
+ int ptype = int(p00);
131
+ if (ptype == 0) has_type_0 = true;
132
+ else if (ptype == 1) has_type_1 = true;
133
+ else if (ptype == 2) has_type_2 = true;
134
+ else if (ptype == 3) has_type_3 = true;
135
+ valid_count++;
136
+ }
137
+ if (p10 >= 0.0) {
138
+ int ptype = int(p10);
139
+ if (ptype == 0) has_type_0 = true;
140
+ else if (ptype == 1) has_type_1 = true;
141
+ else if (ptype == 2) has_type_2 = true;
142
+ else if (ptype == 3) has_type_3 = true;
143
+ valid_count++;
144
+ }
145
+ if (p01 >= 0.0) {
146
+ int ptype = int(p01);
147
+ if (ptype == 0) has_type_0 = true;
148
+ else if (ptype == 1) has_type_1 = true;
149
+ else if (ptype == 2) has_type_2 = true;
150
+ else if (ptype == 3) has_type_3 = true;
151
+ valid_count++;
152
+ }
153
+ if (p11 >= 0.0) {
154
+ int ptype = int(p11);
155
+ if (ptype == 0) has_type_0 = true;
156
+ else if (ptype == 1) has_type_1 = true;
157
+ else if (ptype == 2) has_type_2 = true;
158
+ else if (ptype == 3) has_type_3 = true;
159
+ valid_count++;
160
+ }
161
+
162
+ if (valid_count == 0) discard_fragment();
163
+
164
+ // Count how many unique types we have
165
+ int unique_types = 0;
166
+ if (has_type_0) unique_types++;
167
+ if (has_type_1) unique_types++;
168
+ if (has_type_2) unique_types++;
169
+ if (has_type_3) unique_types++;
170
+
171
+ if (unique_types == 1) {
172
+ // ALL SAME TYPE - smooth interpolation across all valid pixels
173
+ float total_value = 0.0;
174
+ float total_weight = 0.0;
175
+
176
+ if (p00 >= 0.0) {
177
+ float weight = (1.0 - f.x) * (1.0 - f.y);
178
+ total_value += v00 * weight;
179
+ total_weight += weight;
180
+ }
181
+ if (p10 >= 0.0) {
182
+ float weight = f.x * (1.0 - f.y);
183
+ total_value += v10 * weight;
184
+ total_weight += weight;
185
+ }
186
+ if (p01 >= 0.0) {
187
+ float weight = (1.0 - f.x) * f.y;
188
+ total_value += v01 * weight;
189
+ total_weight += weight;
190
+ }
191
+ if (p11 >= 0.0) {
192
+ float weight = f.x * f.y;
193
+ total_value += v11 * weight;
194
+ total_weight += weight;
195
+ }
196
+
197
+ if (total_weight <= 0.0) discard_fragment();
198
+ raw_value = total_value / total_weight;
199
+
200
+ } else {
201
+ // MULTIPLE TYPES - weighted voting to determine dominant type
202
+ float type_weight_0 = 0.0;
203
+ float type_weight_1 = 0.0;
204
+ float type_weight_2 = 0.0;
205
+ float type_weight_3 = 0.0;
206
+
207
+ if (p00 >= 0.0) {
208
+ float w = (1.0 - f.x) * (1.0 - f.y);
209
+ int ptype = int(p00);
210
+ if (ptype == 0) type_weight_0 += w;
211
+ else if (ptype == 1) type_weight_1 += w;
212
+ else if (ptype == 2) type_weight_2 += w;
213
+ else if (ptype == 3) type_weight_3 += w;
214
+ }
215
+ if (p10 >= 0.0) {
216
+ float w = f.x * (1.0 - f.y);
217
+ int ptype = int(p10);
218
+ if (ptype == 0) type_weight_0 += w;
219
+ else if (ptype == 1) type_weight_1 += w;
220
+ else if (ptype == 2) type_weight_2 += w;
221
+ else if (ptype == 3) type_weight_3 += w;
222
+ }
223
+ if (p01 >= 0.0) {
224
+ float w = (1.0 - f.x) * f.y;
225
+ int ptype = int(p01);
226
+ if (ptype == 0) type_weight_0 += w;
227
+ else if (ptype == 1) type_weight_1 += w;
228
+ else if (ptype == 2) type_weight_2 += w;
229
+ else if (ptype == 3) type_weight_3 += w;
230
+ }
231
+ if (p11 >= 0.0) {
232
+ float w = f.x * f.y;
233
+ int ptype = int(p11);
234
+ if (ptype == 0) type_weight_0 += w;
235
+ else if (ptype == 1) type_weight_1 += w;
236
+ else if (ptype == 2) type_weight_2 += w;
237
+ else if (ptype == 3) type_weight_3 += w;
238
+ }
239
+
240
+ // Find the type with the highest weight at this pixel location
241
+ float max_type_weight = 0.0;
242
+ float winning_type = -1.0;
243
+ if (type_weight_0 > max_type_weight) { max_type_weight = type_weight_0; winning_type = 0.0; }
244
+ if (type_weight_1 > max_type_weight) { max_type_weight = type_weight_1; winning_type = 1.0; }
245
+ if (type_weight_2 > max_type_weight) { max_type_weight = type_weight_2; winning_type = 2.0; }
246
+ if (type_weight_3 > max_type_weight) { max_type_weight = type_weight_3; winning_type = 3.0; }
247
+
248
+ if (winning_type == -1.0) discard_fragment();
249
+
250
+ // Now smoothly interpolate only among pixels of the winning type
251
+ float total_value = 0.0;
252
+ float total_weight = 0.0;
253
+
254
+ if (p00 == winning_type) {
255
+ float weight = (1.0 - f.x) * (1.0 - f.y);
256
+ total_value += v00 * weight;
257
+ total_weight += weight;
258
+ }
259
+ if (p10 == winning_type) {
260
+ float weight = f.x * (1.0 - f.y);
261
+ total_value += v10 * weight;
262
+ total_weight += weight;
263
+ }
264
+ if (p01 == winning_type) {
265
+ float weight = (1.0 - f.x) * f.y;
266
+ total_value += v01 * weight;
267
+ total_weight += weight;
268
+ }
269
+ if (p11 == winning_type) {
270
+ float weight = f.x * f.y;
271
+ total_value += v11 * weight;
272
+ total_weight += weight;
273
+ }
274
+
275
+ if (total_weight <= 0.0) discard_fragment();
276
+ raw_value = total_value / total_weight;
277
+ }
278
+
279
+ // Force full alpha to prevent dark borders between ptype regions
280
+ alpha_multiplier = 1.0;
281
+
282
+ } else {
283
+ // --- STANDARD INTERPOLATION (CONTINUOUS) ---
284
+ float v00_q = get_value(dataTexture, dataSampler, v00_coord, uniforms);
285
+ float v10_q = get_value(dataTexture, dataSampler, v10_coord, uniforms);
286
+ float v01_q = get_value(dataTexture, dataSampler, v01_coord, uniforms);
287
+ float v11_q = get_value(dataTexture, dataSampler, v11_coord, uniforms);
288
+
289
+ float total_value_q = 0.0;
290
+ float total_weight = 0.0;
291
+ if (v00_q < 99999.0) { float w = (1.0-f.x)*(1.0-f.y); total_value_q+=v00_q*w; total_weight+=w; }
292
+ if (v10_q < 99999.0) { float w = f.x*(1.0-f.y); total_value_q+=v10_q*w; total_weight+=w; }
293
+ if (v01_q < 99999.0) { float w = (1.0-f.x)*f.y; total_value_q+=v01_q*w; total_weight+=w; }
294
+ if (v11_q < 99999.0) { float w = f.x*f.y; total_value_q+=v11_q*w; total_weight+=w; }
295
+
296
+ if (total_weight <= 0.0) discard_fragment();
297
+ raw_value = dequantize_val(total_value_q / total_weight, uniforms);
298
+ alpha_multiplier = total_weight; // Feather the edges of the data
299
+ }
300
+ }
301
+
302
+ // --- COMMON FINAL STEPS ---
303
+
304
+ if (raw_value < uniforms.dataRange.x) {
305
+ discard_fragment();
306
+ }
307
+
308
+ float colormap_coord = (raw_value - uniforms.dataRange.x) / (uniforms.dataRange.y - uniforms.dataRange.x);
309
+ colormap_coord = clamp(colormap_coord, 0.0, 1.0);
310
+
311
+ float4 color = colormapTexture.sample(colormapSampler, float2(colormap_coord, 0.5));
312
+
313
+ // Discard if the colormap specifies transparency
314
+ if (color.a < 0.1) {
315
+ discard_fragment();
316
+ }
317
+
318
+ float final_alpha = color.a * uniforms.opacity * alpha_multiplier;
319
+ return float4(color.rgb * final_alpha, final_alpha);
320
320
  }