Ismail
02/21/2024, 2:53 PMArtem Kobzar
02/21/2024, 2:56 PMOleksandr Karpovich [JB]
02/21/2024, 3:11 PMIsmail
02/21/2024, 6:38 PMArtem Kobzar
02/21/2024, 7:13 PMwasmJs
target or with js
? If wasmJs
, Safari still doesn't have some required proposals (so, if you need Safari right now, it's better to use Compose for Web with js
)Artem Kobzar
02/21/2024, 7:14 PMrebok
02/21/2024, 7:15 PMIsmail
02/21/2024, 7:56 PMrebok
02/21/2024, 7:58 PMIsmail
02/21/2024, 8:02 PMrebok
02/21/2024, 9:07 PMOpenGLLibrary.nativeJs.kt:
``
```package org.jetbrains.skiko
internal actual fun loadOpenGLLibrary() {
when (hostOs) {
// It is deprecated. See <https://developer.apple.com/documentation/opengles>
OS.Ios -> throw RenderException("OpenGL on iOS isn't supported")
// Do nothing as we don't know for sure which OS supports OpenGL.
// If there is support, we assume that it is already linked.
// If there is no support, there will be a native crash
// (to throw a RenderException we need to investigate case by case)
else -> Unit
}
}
`````rebok
02/21/2024, 9:07 PMrebok
02/21/2024, 9:08 PMrebok
02/21/2024, 9:09 PMIsmail
02/22/2024, 8:46 AMArtem Kobzar
02/22/2024, 10:30 AMOleksandr Karpovich [JB]
02/22/2024, 10:32 AMIsmail
02/22/2024, 10:41 AMrebok
02/22/2024, 10:54 AMrebok
02/27/2024, 3:00 PMOleksandr Karpovich [JB]
02/27/2024, 3:00 PMrebok
02/27/2024, 3:03 PMJak Fayz
04/22/2025, 11:48 AM