is there a way to get both working on windows ? it...
# kotlin-native
s
is there a way to get both working on windows ? it works fine on macOS but on windows i get: unresolved reference
Copy code
import platform.OpenGL.*
import platform.OpenGLCommon.*
o
see https://github.com/JetBrains/kotlin-native/tree/master/platformLibs/src/platform for what is available on each platform. I’d suggest to use MPP to abstract out platform-specific OGL treatment.
s
i will try that thanks!