Dominaezzz / kotlin-imgui

Kotlin bindings for Dear ImGui
MIT License
83 stars 4 forks source link

UnsatisfiedLinkError: GLIBC_2.29 not found #22

Closed breandan closed 3 years ago

breandan commented 3 years ago

I encountered the following error when trying kotlin-imgui 0.1.7 on Ubuntu 18.04 with JDK 11.0.9.

Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/libcimgui7590039100609315263.so: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required by /tmp/libcimgui7590039100609315263.so)
        at java.base/java.lang.ClassLoader$NativeLibrary.load0(Native Method)
        at java.base/java.lang.ClassLoader$NativeLibrary.load(ClassLoader.java:2442)
        at java.base/java.lang.ClassLoader$NativeLibrary.loadLibrary(ClassLoader.java:2498)
        at java.base/java.lang.ClassLoader.loadLibrary0(ClassLoader.java:2694)
        at java.base/java.lang.ClassLoader.loadLibrary(ClassLoader.java:2627)
        at java.base/java.lang.Runtime.load0(Runtime.java:768)
        at java.base/java.lang.System.load(System.java:1837)
        at com.imgui.UtilsKt.loadCImGuiNativeLibs(Utils.kt:58)
        at com.imgui.ImGui.<clinit>(ImGui.kt:308)
        at org.acejump.tracejump.HelloImGuiKt.main(HelloImGui.kt:15)
        at org.acejump.tracejump.HelloImGuiKt.main(HelloImGui.kt)

Here is my build.gradle.kts excerpt:

    val imguiVersion = "0.1.7"
    implementation("com.kotlin-imgui:imgui:$imguiVersion")
    implementation("com.kotlin-imgui:imgui-glfw:$imguiVersion")
    implementation("com.kotlin-imgui:imgui-opengl:$imguiVersion")

    // For jvm binaries
    implementation("com.kotlin-imgui:cimgui-jvmlinuxx64:$imguiVersion")
    implementation("com.kotlin-imgui:cimgui-jvmmacosx64:$imguiVersion")
    implementation("com.kotlin-imgui:cimgui-jvmmingwx64:$imguiVersion")
nlbuescher commented 3 years ago

version `GLIBC_2.29' not found

Which version of glibc do you have installed?

breandan commented 3 years ago

Ah, I suppose that's the problem. It looks like Ubuntu 18.04 ships with glibc 2.27. Running ldd --version returns:

ldd (Ubuntu GLIBC 2.27-3ubuntu1.4) 2.27
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.
nlbuescher commented 3 years ago

yes, that's definitely the problem. For now, install version 2.29 or greater, if you can. I'm not sure if 2.29 is too new or not to be a reasonable version.

Dominaezzz commented 3 years ago

If 2.27 is the latest version that is shipped, then this library should probably support that. Not yet sure what arguments to make this work.

Does Kotlin/Native have the same issue for you or is it just JVM?

nlbuescher commented 3 years ago

Native should have the same issue, since the library is built with Ubuntu 20.04. Although I'm also surprised because the error originates inside the system's libm, so maybe this is not a kotlin-imgui problem, but a partial update problem?

reference:

/tmp/libcimgui7590039100609315263.so: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found

breandan commented 3 years ago

Have not tried Kotlin native yet, although I suspect it's probably an issue for Dear ImGui? FWIW, I tried @SpaiR / imgui-java and encountered the same issue. Hesitant to install a later version of glibc because so many packages depend on 2.27 and I've read that updating manually can cause bad things to happen.

nlbuescher commented 3 years ago

yeah, like Dominic said, if 2.27 is the latest version that's supported on an active LTS release, then this library should support that. We can try to build again with the oldest active LTS release, but we need to find a workaround for SWIG because we need version ≥ 4.0, and that's only shipped since 20.04.

Dominaezzz commented 3 years ago

Ah rip, forgot about SWIG. That suddenly makes this quite difficult. I was considering statically linking https://github.com/Dominaezzz/kotlin-imgui/blob/798ab09ff4d61e545d7fb3d0f4ba0f55daa17eb4/cimgui/build.gradle.kts#L314 but since libm is doing the asking instead of cimgui then I don't think that'll work.

It's rather unfortunate but it might be easiest for you to upgrade to Ubuntu 20.04 .

nlbuescher commented 3 years ago

we can probably install the right SWIG version manually on an 18.04 target, but that'll take some time to test for sure.

nlbuescher commented 3 years ago

@Dominaezzz do we know why SWIG 3 doesn't work?

Dominaezzz commented 3 years ago

I don't remember anymore. Swig 3 and swig 4 generated code are not compatible and it may have just been that I had swig 4 on my computer and stuck to it. Maybe some directives didn't work. Might be worth trying in a branch and seeing what happens. I prefer if we used swig 4 on old Ubuntu, but that probably means building it from source.

nlbuescher commented 3 years ago

I just checked the download on the SWIG website, and it does indeed download an archive with the source code, so installing SWIG 4 on Ubuntu 18.04 the intended way will require us to build from source... Maybe there's some other package manager we can use to get a binary? Maybe a PPA?

nlbuescher commented 3 years ago

I made a test branch where I build swig 4 from source with the ubuntu-latest (18.04) runner, and the build tests pass. Is that enough for proof of concept or do we need to test further?

Dominaezzz commented 3 years ago

Oh awesome!! (Sorry, forgot to reply yesterday). I think that should be enough tbh. All that's left is for @breandan to check that it works. We can tag it 0.1.8, I'm confident enough. Luckily BinTray will still let us publish for now.

nlbuescher commented 3 years ago

Luckily BinTray will still let us publish for now.

That sounds ominous 😅

breandan commented 3 years ago

Tried building from 9071880 but I probably did something wrong. Here is my build output:

Click to expand! ``` breandan@romulus:~/IdeaProjects/kotlin-imgui$ ./gradlew build > Configure project :cimgui Kotlin Multiplatform Projects are an Alpha feature. See: https://kotlinlang.org/docs/reference/evolution/components-stability.html. To hide this message, add 'kotlin.mpp.stability.nowarn=true' to the Gradle properties. Some Kotlin/Native targets cannot be built on this linux_x64 machine and are disabled: * In project ':cimgui': * target 'mingwX64' (can be built with a mingw_x64 host) * target 'macosX64' (can be built with a macos_x64 host) * In project ':imgui': * target 'mingwX64' (can be built with a mingw_x64 host) * target 'macosX64' (can be built with a macos_x64 host) * In project ':imgui-glfw': * target 'mingwX64' (can be built with a mingw_x64 host) * target 'macosX64' (can be built with a macos_x64 host) * In project ':imgui-opengl': * target 'mingwX64' (can be built with a mingw_x64 host) * target 'macosX64' (can be built with a macos_x64 host) To hide this message, add 'kotlin.native.ignoreDisabledTargets=true' to the Gradle properties. > Task :imgui:compileKotlinJvm FAILED w: ATTENTION! This build uses unsafe internal compiler arguments: -XXLanguage:+InlineClasses This mode is not recommended for production use, as no stability/compatibility guarantees are given on compiler or generated code. Use it at your own risk! e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImColor.kt: (20, 23): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImColor.kt: (22, 26): None of the following functions can be called with the arguments supplied: public constructor ImColor(ptr: cimgui.internal.ImColor) defined in com.imgui.ImColor public constructor ImColor(col: Vec4) defined in com.imgui.ImColor public constructor ImColor(rgba: UInt) defined in com.imgui.ImColor e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImColor.kt: (29, 7): None of the following functions can be called with the arguments supplied: public constructor ImColor(ptr: cimgui.internal.ImColor) defined in com.imgui.ImColor public constructor ImColor(col: Vec4) defined in com.imgui.ImColor public constructor ImColor(rgba: UInt) defined in com.imgui.ImColor e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImColor.kt: (31, 36): None of the following functions can be called with the arguments supplied: public constructor ImColor(ptr: cimgui.internal.ImColor) defined in com.imgui.ImColor public constructor ImColor(col: Vec4) defined in com.imgui.ImColor public constructor ImColor(rgba: UInt) defined in com.imgui.ImColor e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImColor.kt: (38, 7): None of the following functions can be called with the arguments supplied: public constructor ImColor(ptr: cimgui.internal.ImColor) defined in com.imgui.ImColor public constructor ImColor(col: Vec4) defined in com.imgui.ImColor public constructor ImColor(rgba: UInt) defined in com.imgui.ImColor e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImColor.kt: (40, 35): None of the following functions can be called with the arguments supplied: public constructor ImColor(ptr: cimgui.internal.ImColor) defined in com.imgui.ImColor public constructor ImColor(col: Vec4) defined in com.imgui.ImColor public constructor ImColor(rgba: UInt) defined in com.imgui.ImColor e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImColor.kt: (41, 25): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImColor.kt: (50, 20): Type mismatch: inferred type is ImColor but SWIGTYPE_p_ImColor! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImColor.kt: (54, 21): Type mismatch: inferred type is ImColor but SWIGTYPE_p_ImColor! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawCmd.kt: (13, 26): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawCmd.kt: (27, 31): Type mismatch: inferred type is SWIGTYPE_p_ImDrawCmd but ImDrawCmd was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawCmd.kt: (30, 23): Type mismatch: inferred type is ImDrawCmd but SWIGTYPE_p_ImDrawCmd! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawData.kt: (29, 28): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawData.kt: (32, 29): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawData.kt: (35, 34): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawData.kt: (37, 31): Type mismatch: inferred type is SWIGTYPE_p_ImDrawData but ImDrawData was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawData.kt: (40, 22): Type mismatch: inferred type is ImDrawData but SWIGTYPE_p_ImDrawData! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawData.kt: (44, 34): Type mismatch: inferred type is ImDrawData but SWIGTYPE_p_ImDrawData! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawData.kt: (49, 33): Type mismatch: inferred type is ImDrawData but SWIGTYPE_p_ImDrawData! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawData.kt: (49, 38): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawData.kt: (54, 24): Type mismatch: inferred type is ImDrawData but SWIGTYPE_p_ImDrawData! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (72, 7): None of the following functions can be called with the arguments supplied: public constructor ImDrawList(ptr: cimgui.internal.ImDrawList) defined in com.imgui.ImDrawList public constructor ImDrawList(sharedData: ImDrawListSharedData) defined in com.imgui.ImDrawList e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (72, 34): Type mismatch: inferred type is ImDrawListSharedData but SWIGTYPE_p_ImDrawListSharedData! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (87, 39): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (87, 44): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (87, 51): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (87, 58): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (87, 65): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (103, 28): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (103, 33): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (114, 34): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (114, 39): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (123, 36): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (123, 41): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (127, 27): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (142, 33): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (142, 59): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (142, 68): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (142, 77): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (142, 87): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (170, 45): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (170, 71): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (170, 78): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (170, 85): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (170, 92): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (171, 25): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (171, 33): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (171, 41): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (171, 49): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (196, 40): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (196, 66): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (196, 75): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (196, 84): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (197, 17): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (212, 28): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (212, 33): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (212, 40): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (225, 26): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (225, 31): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (236, 32): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (236, 37): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (247, 28): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (247, 33): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (262, 32): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (262, 37): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (262, 44): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (262, 51): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (262, 58): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (280, 38): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (280, 43): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (280, 50): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (280, 57): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (280, 64): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (297, 28): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (297, 33): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (297, 42): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (312, 34): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (312, 39): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (312, 48): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (328, 44): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (328, 49): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (328, 58): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (341, 30): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (341, 35): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (356, 33): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (356, 38): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (356, 58): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (357, 22): Type mismatch: inferred type is ImVec4? but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (371, 34): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (371, 39): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (371, 46): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (371, 53): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (386, 40): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (386, 45): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (386, 52): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (386, 59): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (393, 30): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (397, 35): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (401, 30): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (404, 65): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (404, 78): Callable reference resolution ambiguity: public constructor ImDrawList(ptr: cimgui.internal.ImDrawList) defined in com.imgui.ImDrawList public constructor ImDrawList(sharedData: ImDrawListSharedData) defined in com.imgui.ImDrawList e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (414, 28): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (414, 33): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (425, 32): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (425, 37): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (438, 40): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (438, 45): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (438, 52): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (438, 59): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (445, 26): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (449, 31): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (454, 29): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (454, 34): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (460, 43): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (460, 48): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (472, 29): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (472, 34): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (472, 46): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (482, 27): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (486, 28): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (490, 29): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (512, 43): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (512, 48): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (512, 54): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (512, 60): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (512, 66): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (512, 72): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (512, 80): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (512, 88): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (513, 25): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (531, 29): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (531, 34): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (531, 40): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (547, 35): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (547, 40): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (547, 46): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (547, 52): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (547, 60): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (555, 28): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (559, 30): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (569, 28): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (569, 33): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (569, 41): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (581, 33): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (581, 38): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (581, 46): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (593, 33): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (593, 38): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (593, 54): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (599, 39): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (603, 30): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (607, 33): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (611, 35): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (615, 36): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (619, 36): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (623, 34): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (627, 34): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawList.kt: (631, 24): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawListSplitter.kt: (17, 31): Type mismatch: inferred type is SWIGTYPE_p_ImDrawListSplitter but ImDrawListSplitter was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawListSplitter.kt: (20, 30): Type mismatch: inferred type is ImDrawListSplitter but SWIGTYPE_p_ImDrawListSplitter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawListSplitter.kt: (24, 40): Type mismatch: inferred type is ImDrawListSplitter but SWIGTYPE_p_ImDrawListSplitter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawListSplitter.kt: (28, 30): Type mismatch: inferred type is ImDrawListSplitter but SWIGTYPE_p_ImDrawListSplitter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawListSplitter.kt: (28, 35): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawListSplitter.kt: (32, 42): Type mismatch: inferred type is ImDrawListSplitter but SWIGTYPE_p_ImDrawListSplitter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawListSplitter.kt: (32, 47): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawListSplitter.kt: (36, 30): Type mismatch: inferred type is ImDrawListSplitter but SWIGTYPE_p_ImDrawListSplitter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawListSplitter.kt: (36, 35): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawListSplitter.kt: (40, 32): Type mismatch: inferred type is ImDrawListSplitter but SWIGTYPE_p_ImDrawListSplitter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawVert.kt: (11, 21): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImDrawVert.kt: (14, 20): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (41, 36): Type mismatch: inferred type is SWIGTYPE_p_ImFontGlyph but ImFontGlyph was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (44, 31): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (47, 39): Callable reference resolution ambiguity: public constructor ImFontAtlas() defined in com.imgui.ImFontAtlas public constructor ImFontAtlas(ptr: cimgui.internal.ImFontAtlas) defined in com.imgui.ImFontAtlas e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (50, 35): Callable reference resolution ambiguity: public constructor ImFontConfig() defined in com.imgui.ImFontConfig public constructor ImFontConfig(ptr: cimgui.internal.ImFontConfig) defined in com.imgui.ImFontConfig e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (76, 31): Type mismatch: inferred type is SWIGTYPE_p_ImFont but ImFont was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (90, 21): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (98, 25): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (102, 29): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (110, 45): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (113, 28): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (116, 65): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (116, 87): Type mismatch: inferred type is SWIGTYPE_p_ImFontGlyph but ImFontGlyph was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (118, 85): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (119, 24): Type mismatch: inferred type is SWIGTYPE_p_ImFontGlyph but ImFontGlyph was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (121, 69): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (123, 60): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (126, 22): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (129, 97): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (132, 52): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (142, 25): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (142, 30): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (142, 50): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (159, 27): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (159, 32): Type mismatch: inferred type is ImDrawList but SWIGTYPE_p_ImDrawList! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (159, 52): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (159, 74): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (166, 28): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (170, 28): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFont.kt: (174, 20): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (62, 28): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (65, 33): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (67, 31): Type mismatch: inferred type is SWIGTYPE_p_ImFontAtlas but ImFontAtlas was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (82, 40): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (82, 45): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (83, 9): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (87, 40): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (89, 75): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (90, 7): Type mismatch: inferred type is ImFontConfig but SWIGTYPE_p_ImFontConfig! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (90, 28): Callable reference resolution ambiguity: public constructor ImFont() defined in com.imgui.ImFont public constructor ImFont(ptr: cimgui.internal.ImFont) defined in com.imgui.ImFont e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (92, 90): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (93, 7): Type mismatch: inferred type is ImFontConfig? but SWIGTYPE_p_ImFontConfig! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (93, 29): Callable reference resolution ambiguity: public constructor ImFont() defined in com.imgui.ImFont public constructor ImFont(ptr: cimgui.internal.ImFont) defined in com.imgui.ImFont e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (101, 36): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (101, 63): Type mismatch: inferred type is ImFontConfig? but SWIGTYPE_p_ImFontConfig! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (102, 13): Callable reference resolution ambiguity: public constructor ImFont() defined in com.imgui.ImFont public constructor ImFont(ptr: cimgui.internal.ImFont) defined in com.imgui.ImFont e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (110, 54): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (111, 9): Type mismatch: inferred type is ImFontConfig? but SWIGTYPE_p_ImFontConfig! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (112, 13): Callable reference resolution ambiguity: public constructor ImFont() defined in com.imgui.ImFont public constructor ImFont(ptr: cimgui.internal.ImFont) defined in com.imgui.ImFont e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (114, 51): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (121, 34): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (121, 39): Type mismatch: inferred type is ImFontAtlasCustomRect but SWIGTYPE_p_ImFontAtlasCustomRect! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (121, 49): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (121, 63): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (125, 23): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (129, 28): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (133, 32): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (137, 30): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (141, 40): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (141, 60): Callable reference resolution ambiguity: public constructor ImFontAtlasCustomRect() defined in com.imgui.ImFontAtlasCustomRect public constructor ImFontAtlasCustomRect(ptr: cimgui.internal.ImFontAtlasCustomRect) defined in com.imgui.ImFontAtlasCustomRect e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (144, 45): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (147, 57): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (150, 42): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (153, 41): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (156, 42): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (159, 40): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (161, 76): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (164, 44): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (166, 55): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (169, 26): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlas.kt: (173, 25): Type mismatch: inferred type is ImFontAtlas but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlasCustomRect.kt: (35, 29): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlasCustomRect.kt: (38, 29): Callable reference resolution ambiguity: public constructor ImFont() defined in com.imgui.ImFont public constructor ImFont(ptr: cimgui.internal.ImFont) defined in com.imgui.ImFont e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlasCustomRect.kt: (40, 31): Type mismatch: inferred type is SWIGTYPE_p_ImFontAtlasCustomRect but ImFontAtlasCustomRect was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlasCustomRect.kt: (42, 67): Type mismatch: inferred type is ImFontAtlasCustomRect but SWIGTYPE_p_ImFontAtlasCustomRect! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontAtlasCustomRect.kt: (45, 35): Type mismatch: inferred type is ImFontAtlasCustomRect but SWIGTYPE_p_ImFontAtlasCustomRect! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontConfig.kt: (39, 35): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontConfig.kt: (42, 29): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontConfig.kt: (66, 32): Callable reference resolution ambiguity: public constructor ImFont() defined in com.imgui.ImFont public constructor ImFont(ptr: cimgui.internal.ImFont) defined in com.imgui.ImFont e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontConfig.kt: (68, 31): Type mismatch: inferred type is SWIGTYPE_p_ImFontConfig but ImFontConfig was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontConfig.kt: (71, 26): Type mismatch: inferred type is ImFontConfig but SWIGTYPE_p_ImFontConfig! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontGlyphRangesBuilder.kt: (21, 31): Type mismatch: inferred type is SWIGTYPE_p_ImFontGlyphRangesBuilder but ImFontGlyphRangesBuilder was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontGlyphRangesBuilder.kt: (24, 38): Type mismatch: inferred type is ImFontGlyphRangesBuilder but SWIGTYPE_p_ImFontGlyphRangesBuilder! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontGlyphRangesBuilder.kt: (29, 42): Type mismatch: inferred type is ImFontGlyphRangesBuilder but SWIGTYPE_p_ImFontGlyphRangesBuilder! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontGlyphRangesBuilder.kt: (34, 38): Type mismatch: inferred type is ImFontGlyphRangesBuilder but SWIGTYPE_p_ImFontGlyphRangesBuilder! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontGlyphRangesBuilder.kt: (38, 36): Type mismatch: inferred type is ImFontGlyphRangesBuilder but SWIGTYPE_p_ImFontGlyphRangesBuilder! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontGlyphRangesBuilder.kt: (41, 74): Type mismatch: inferred type is ImFontGlyphRangesBuilder but SWIGTYPE_p_ImFontGlyphRangesBuilder! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontGlyphRangesBuilder.kt: (44, 37): Type mismatch: inferred type is ImFontGlyphRangesBuilder but SWIGTYPE_p_ImFontGlyphRangesBuilder! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImFontGlyphRangesBuilder.kt: (48, 38): Type mismatch: inferred type is ImFontGlyphRangesBuilder but SWIGTYPE_p_ImFontGlyphRangesBuilder! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (312, 64): Callable reference resolution ambiguity: public constructor ImGuiPayload() defined in com.imgui.ImGuiPayload public constructor ImGuiPayload(ptr: cimgui.internal.ImGuiPayload) defined in com.imgui.ImGuiPayload e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (334, 28): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (343, 30): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (351, 33): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (419, 21): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (480, 29): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (480, 56): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (485, 31): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (588, 23): Type mismatch: inferred type is ImFontAtlas? but SWIGTYPE_p_ImFontAtlas! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (588, 51): Type mismatch: inferred type is SWIGTYPE_p_ImGuiContext but ImGuiContext was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (602, 22): Type mismatch: inferred type is ImGuiContext? but SWIGTYPE_p_ImGuiContext! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (755, 15): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (819, 86): Callable reference resolution ambiguity: public constructor ImDrawList(ptr: cimgui.internal.ImDrawList) defined in com.imgui.ImDrawList public constructor ImDrawList(sharedData: ImDrawListSharedData) defined in com.imgui.ImDrawList e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (827, 23): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (840, 78): Type mismatch: inferred type is SWIGTYPE_p_ImGuiContext but ImGuiContext was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (846, 82): Callable reference resolution ambiguity: public constructor ImGuiPayload() defined in com.imgui.ImGuiPayload public constructor ImGuiPayload(ptr: cimgui.internal.ImGuiPayload) defined in com.imgui.ImGuiPayload e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (848, 66): Callable reference resolution ambiguity: public constructor ImDrawData() defined in com.imgui.ImDrawData public constructor ImDrawData(ptr: cimgui.internal.ImDrawData) defined in com.imgui.ImDrawData e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (851, 39): Type mismatch: inferred type is SWIGTYPE_p_ImDrawListSharedData but ImDrawListSharedData was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (853, 54): Callable reference resolution ambiguity: public constructor ImFont() defined in com.imgui.ImFont public constructor ImFont(ptr: cimgui.internal.ImFont) defined in com.imgui.ImFont e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (857, 89): Callable reference resolution ambiguity: public constructor ImDrawList(ptr: cimgui.internal.ImDrawList) defined in com.imgui.ImDrawList public constructor ImDrawList(sharedData: ImDrawListSharedData) defined in com.imgui.ImDrawList e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (870, 51): Callable reference resolution ambiguity: public constructor ImGuiIO() defined in com.imgui.ImGuiIO public constructor ImGuiIO(ptr: cimgui.internal.ImGuiIO) defined in com.imgui.ImGuiIO e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (891, 74): Type mismatch: inferred type is SWIGTYPE_p_ImGuiStorage but ImGuiStorage was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (893, 60): Callable reference resolution ambiguity: public constructor ImGuiStyle() defined in com.imgui.ImGuiStyle public constructor ImGuiStyle(ptr: cimgui.internal.ImGuiStyle) defined in com.imgui.ImGuiStyle e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (898, 46): Callable reference resolution ambiguity: public constructor ImVec4() defined in com.imgui.ImVec4 public constructor ImVec4(ptr: cimgui.internal.ImVec4) defined in com.imgui.ImVec4 public constructor ImVec4(x: Float, y: Float, z: Float, w: Float) defined in com.imgui.ImVec4 e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (912, 78): Callable reference resolution ambiguity: public constructor ImDrawList(ptr: cimgui.internal.ImDrawList) defined in com.imgui.ImDrawList public constructor ImDrawList(sharedData: ImDrawListSharedData) defined in com.imgui.ImDrawList e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (931, 44): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (931, 53): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (931, 61): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (931, 69): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (931, 81): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (952, 48): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (952, 57): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (952, 65): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (952, 87): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (953, 17): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1072, 30): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1129, 29): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1129, 38): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1133, 78): Type mismatch: inferred type is ImVec2? but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1141, 24): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1146, 27): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1146, 39): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1169, 32): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1287, 31): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1306, 24): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1306, 40): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1312, 16): Type mismatch: inferred type is ImFont but SWIGTYPE_p_ImFont! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1337, 39): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1347, 37): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1392, 58): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1402, 67): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1427, 25): Type mismatch: inferred type is ImGuiContext but SWIGTYPE_p_ImGuiContext! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1432, 22): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1446, 28): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1484, 34): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1499, 28): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1499, 54): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1506, 27): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1535, 23): Type mismatch: inferred type is ImGuiStorage but SWIGTYPE_p_ImGuiStorage! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1572, 26): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1582, 31): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1588, 27): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1598, 32): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1625, 23): Type mismatch: inferred type is ImGuiStyle? but SWIGTYPE_p_ImGuiStyle! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1759, 26): Type mismatch: inferred type is ImGuiStyle? but SWIGTYPE_p_ImGuiStyle! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1763, 23): Type mismatch: inferred type is ImGuiStyle? but SWIGTYPE_p_ImGuiStyle! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1767, 24): Type mismatch: inferred type is ImGuiStyle? but SWIGTYPE_p_ImGuiStyle! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1776, 21): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1831, 29): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGui.kt: (1844, 27): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiColorMod.kt: (13, 29): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiGroupData.kt: (12, 33): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiGroupData.kt: (15, 36): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiGroupData.kt: (18, 36): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (39, 29): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (41, 23): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromKValue(value: Vec2): Unit defined in com.imgui in file Utils.kt internal fun ImVec4.fromKValue(value: Vec4): Unit defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (75, 30): Callable reference resolution ambiguity: public constructor ImFontAtlas() defined in com.imgui.ImFontAtlas public constructor ImFontAtlas(ptr: cimgui.internal.ImFontAtlas) defined in com.imgui.ImFontAtlas e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (84, 36): Callable reference resolution ambiguity: public constructor ImFont() defined in com.imgui.ImFont public constructor ImFont(ptr: cimgui.internal.ImFont) defined in com.imgui.ImFont e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (87, 41): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (89, 35): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromKValue(value: Vec2): Unit defined in com.imgui in file Utils.kt internal fun ImVec4.fromKValue(value: Vec4): Unit defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (117, 26): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (119, 20): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromKValue(value: Vec2): Unit defined in com.imgui in file Utils.kt internal fun ImVec4.fromKValue(value: Vec4): Unit defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (198, 28): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (204, 30): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (209, 31): Type mismatch: inferred type is SWIGTYPE_p_ImGuiIO but ImGuiIO was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (253, 60): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (298, 68): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (327, 31): Type mismatch: inferred type is ImGuiIO but SWIGTYPE_p_ImGuiIO! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (331, 36): Type mismatch: inferred type is ImGuiIO but SWIGTYPE_p_ImGuiIO! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (335, 34): Type mismatch: inferred type is ImGuiIO but SWIGTYPE_p_ImGuiIO! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiIO.kt: (339, 21): Type mismatch: inferred type is ImGuiIO but SWIGTYPE_p_ImGuiIO! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiInputTextCallbackData.kt: (48, 31): Type mismatch: inferred type is SWIGTYPE_p_ImGuiInputTextCallbackData but ImGuiInputTextCallbackData was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiInputTextCallbackData.kt: (51, 44): Type mismatch: inferred type is ImGuiInputTextCallbackData but SWIGTYPE_p_ImGuiInputTextCallbackData! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiInputTextCallbackData.kt: (54, 80): Type mismatch: inferred type is ImGuiInputTextCallbackData but SWIGTYPE_p_ImGuiInputTextCallbackData! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiInputTextCallbackData.kt: (61, 44): Type mismatch: inferred type is ImGuiInputTextCallbackData but SWIGTYPE_p_ImGuiInputTextCallbackData! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiInputTextCallbackData.kt: (65, 40): Type mismatch: inferred type is ImGuiInputTextCallbackData but SWIGTYPE_p_ImGuiInputTextCallbackData! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiListClipper.kt: (36, 7): None of the following functions can be called with the arguments supplied: public constructor ImGuiListClipper(ptr: cimgui.internal.ImGuiListClipper) defined in com.imgui.ImGuiListClipper public constructor ImGuiListClipper(itemsCount: Int, itemsHeight: Float) defined in com.imgui.ImGuiListClipper e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiListClipper.kt: (39, 28): Type mismatch: inferred type is ImGuiListClipper but SWIGTYPE_p_ImGuiListClipper! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiListClipper.kt: (43, 26): Type mismatch: inferred type is ImGuiListClipper but SWIGTYPE_p_ImGuiListClipper! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiListClipper.kt: (46, 54): Type mismatch: inferred type is ImGuiListClipper but SWIGTYPE_p_ImGuiListClipper! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiListClipper.kt: (49, 30): Type mismatch: inferred type is ImGuiListClipper but SWIGTYPE_p_ImGuiListClipper! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiOnceUponAFrame.kt: (15, 31): Type mismatch: inferred type is SWIGTYPE_p_ImGuiOnceUponAFrame but ImGuiOnceUponAFrame was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiOnceUponAFrame.kt: (18, 33): Type mismatch: inferred type is ImGuiOnceUponAFrame but SWIGTYPE_p_ImGuiOnceUponAFrame! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiPayload.kt: (36, 31): Type mismatch: inferred type is SWIGTYPE_p_ImGuiPayload but ImGuiPayload was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiPayload.kt: (39, 24): Type mismatch: inferred type is ImGuiPayload but SWIGTYPE_p_ImGuiPayload! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiPayload.kt: (42, 74): Type mismatch: inferred type is ImGuiPayload but SWIGTYPE_p_ImGuiPayload! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiPayload.kt: (44, 62): Type mismatch: inferred type is ImGuiPayload but SWIGTYPE_p_ImGuiPayload! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiPayload.kt: (46, 60): Type mismatch: inferred type is ImGuiPayload but SWIGTYPE_p_ImGuiPayload! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiPayload.kt: (49, 26): Type mismatch: inferred type is ImGuiPayload but SWIGTYPE_p_ImGuiPayload! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiSizeCallbackData.kt: (10, 21): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiSizeCallbackData.kt: (13, 29): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiSizeCallbackData.kt: (16, 29): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStorage.kt: (22, 33): Type mismatch: inferred type is ImGuiStorage but SWIGTYPE_p_ImGuiStorage! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStorage.kt: (26, 24): Type mismatch: inferred type is ImGuiStorage but SWIGTYPE_p_ImGuiStorage! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStorage.kt: (29, 89): Type mismatch: inferred type is ImGuiStorage but SWIGTYPE_p_ImGuiStorage! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStorage.kt: (32, 87): Type mismatch: inferred type is ImGuiStorage but SWIGTYPE_p_ImGuiStorage! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStorage.kt: (35, 79): Type mismatch: inferred type is ImGuiStorage but SWIGTYPE_p_ImGuiStorage! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStorage.kt: (39, 28): Type mismatch: inferred type is ImGuiStorage but SWIGTYPE_p_ImGuiStorage! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStorage.kt: (43, 26): Type mismatch: inferred type is ImGuiStorage but SWIGTYPE_p_ImGuiStorage! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStorage.kt: (47, 27): Type mismatch: inferred type is ImGuiStorage but SWIGTYPE_p_ImGuiStorage! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStorage.kt: (51, 25): Type mismatch: inferred type is ImGuiStorage but SWIGTYPE_p_ImGuiStorage! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStoragePair.kt: (17, 54): Type mismatch: inferred type is SWIGTYPE_p_ImGuiStoragePair but ImGuiStoragePair was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStoragePair.kt: (21, 12): Type mismatch: inferred type is SWIGTYPE_p_ImGuiStoragePair but ImGuiStoragePair was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStoragePair.kt: (24, 30): Type mismatch: inferred type is ImGuiStoragePair but SWIGTYPE_p_ImGuiStoragePair! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (20, 31): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (29, 31): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (32, 34): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (50, 30): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (59, 29): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (62, 34): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (65, 35): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (98, 33): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (101, 37): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (104, 38): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (107, 40): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (124, 31): Type mismatch: inferred type is SWIGTYPE_p_ImGuiStyle but ImGuiStyle was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (128, 51): Unresolved reference. None of the following candidates is applicable because of receiver type mismatch: internal fun ImVec2.fromCValue(): Vec2 defined in com.imgui in file Utils.kt internal fun ImVec4.fromCValue(): Vec4 defined in com.imgui in file Utils.kt e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (132, 30): Type mismatch: inferred type is ImGuiStyle but SWIGTYPE_p_ImGuiStyle! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiStyle.kt: (136, 24): Type mismatch: inferred type is ImGuiStyle but SWIGTYPE_p_ImGuiStyle! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (23, 31): Type mismatch: inferred type is SWIGTYPE_p_ImGuiTextBuffer but ImGuiTextBuffer was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (26, 28): Type mismatch: inferred type is ImGuiTextBuffer but SWIGTYPE_p_ImGuiTextBuffer! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (30, 29): Type mismatch: inferred type is ImGuiTextBuffer but SWIGTYPE_p_ImGuiTextBuffer! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (33, 55): Type mismatch: inferred type is ImGuiTextBuffer but SWIGTYPE_p_ImGuiTextBuffer! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (35, 55): Type mismatch: inferred type is ImGuiTextBuffer but SWIGTYPE_p_ImGuiTextBuffer! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (38, 27): Type mismatch: inferred type is ImGuiTextBuffer but SWIGTYPE_p_ImGuiTextBuffer! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (42, 29): Type mismatch: inferred type is ImGuiTextBuffer but SWIGTYPE_p_ImGuiTextBuffer! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (45, 55): Type mismatch: inferred type is ImGuiTextBuffer but SWIGTYPE_p_ImGuiTextBuffer! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (47, 51): Type mismatch: inferred type is ImGuiTextBuffer but SWIGTYPE_p_ImGuiTextBuffer! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (50, 29): Type mismatch: inferred type is ImGuiTextBuffer but SWIGTYPE_p_ImGuiTextBuffer! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextBuffer.kt: (53, 49): Type mismatch: inferred type is ImGuiTextBuffer but SWIGTYPE_p_ImGuiTextBuffer! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextFilter.kt: (23, 47): None of the following functions can be called with the arguments supplied: public constructor ImGuiTextFilter(ptr: cimgui.internal.ImGuiTextFilter) defined in com.imgui.ImGuiTextFilter public constructor ImGuiTextFilter(defaultFilter: String) defined in com.imgui.ImGuiTextFilter e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextFilter.kt: (26, 27): Type mismatch: inferred type is ImGuiTextFilter but SWIGTYPE_p_ImGuiTextFilter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextFilter.kt: (30, 27): Type mismatch: inferred type is ImGuiTextFilter but SWIGTYPE_p_ImGuiTextFilter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextFilter.kt: (33, 80): Type mismatch: inferred type is ImGuiTextFilter but SWIGTYPE_p_ImGuiTextFilter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextFilter.kt: (35, 61): Type mismatch: inferred type is ImGuiTextFilter but SWIGTYPE_p_ImGuiTextFilter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextFilter.kt: (37, 95): Type mismatch: inferred type is ImGuiTextFilter but SWIGTYPE_p_ImGuiTextFilter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextFilter.kt: (41, 29): Type mismatch: inferred type is ImGuiTextFilter but SWIGTYPE_p_ImGuiTextFilter! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextRange.kt: (21, 31): Type mismatch: inferred type is SWIGTYPE_p_ImGuiTextRange but ImGuiTextRange was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextRange.kt: (23, 51): Type mismatch: inferred type is SWIGTYPE_p_ImGuiTextRange but ImGuiTextRange was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextRange.kt: (26, 28): Type mismatch: inferred type is ImGuiTextRange but SWIGTYPE_p_ImGuiTextRange! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImGuiTextRange.kt: (29, 54): Type mismatch: inferred type is ImGuiTextRange but SWIGTYPE_p_ImGuiTextRange! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImVec2.kt: (19, 31): Type mismatch: inferred type is SWIGTYPE_p_ImVec2 but ImVec2 was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImVec2.kt: (21, 49): Type mismatch: inferred type is SWIGTYPE_p_ImVec2 but ImVec2 was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImVec2.kt: (24, 20): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImVec4.kt: (25, 31): Type mismatch: inferred type is SWIGTYPE_p_ImVec4 but ImVec4 was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImVec4.kt: (32, 12): Type mismatch: inferred type is SWIGTYPE_p_ImVec4 but ImVec4 was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/generated/com/imgui/ImVec4.kt: (35, 20): Type mismatch: inferred type is ImVec4 but SWIGTYPE_p_ImVec4! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/kotlin/com/imgui/HandWrittenJvm.kt: (47, 63): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/kotlin/com/imgui/HandWrittenJvm.kt: (79, 43): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/kotlin/com/imgui/HandWrittenJvm.kt: (79, 55): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/kotlin/com/imgui/HandWrittenJvm.kt: (81, 43): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/kotlin/com/imgui/HandWrittenJvm.kt: (81, 55): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/kotlin/com/imgui/HandWrittenJvm.kt: (166, 5): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/kotlin/com/imgui/HandWrittenJvm.kt: (197, 4): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/kotlin/com/imgui/HandWrittenJvm.kt: (223, 5): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected e: /home/breandan/IdeaProjects/kotlin-imgui/imgui/src/jvmMain/kotlin/com/imgui/HandWrittenJvm.kt: (254, 4): Type mismatch: inferred type is ImVec2 but SWIGTYPE_p_ImVec2! was expected FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':imgui:compileKotlinJvm'. > Compilation error. See log for more details * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 9s 28 actionable tasks: 1 executed, 27 up-to-date ```

I think I'll wait for 0.1.8 to be published. Thank you for all the help!

nlbuescher commented 3 years ago

@breandan 0.1.8 should be live if you can give it a try

Dominaezzz commented 3 years ago

0.1.8 should be available now, so you can give it a go. :crossed_fingers:

breandan commented 3 years ago

Just tried running the following snippet on 0.1.8 but it crashed.

import com.imgui.ImGui

fun main() {
  with(ImGui) {
    text("Hello, world ${123}")
    if (button("Save")) {
      println("Save")
    }
  }
}

Here is the core dump in case it helps:

Click to expand! ``` # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007f4bb4972386, pid=31689, tid=31691 # # JRE version: OpenJDK Runtime Environment AdoptOpenJDK (11.0.9+11) (build 11.0.9+11) # Java VM: OpenJDK 64-Bit Server VM AdoptOpenJDK (11.0.9+11, mixed mode, tiered, compressed oops, g1 gc, linux-amd64) # Problematic frame: # C [libcimgui9269180519683231306.so+0xab386] ImGui::GetCurrentWindow()+0x16 # # Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport %p %s %c %d %P %E" (or dumping to /home/breandan/IdeaProjects/HelloImGui/core.31689) # # If you would like to submit a bug report, please visit: # https://github.com/AdoptOpenJDK/openjdk-support/issues # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # --------------- S U M M A R Y ------------ Command Line: -javaagent:/home/breandan/.local/share/JetBrains/Toolbox/apps/IDEA-U/ch-0/211.6305.21/lib/idea_rt.jar=32923:/home/breandan/.local/share/JetBrains/Toolbox/apps/IDEA-U/ch-0/211.6305.21/bin -Dfile.encoding=UTF-8 HelloImGuiKt Host: Intel(R) Xeon(R) CPU E3-1505M v5 @ 2.80GHz, 8 cores, 62G, Ubuntu 18.04.5 LTS Time: Fri Mar 12 15:54:26 2021 EST elapsed time: 0.222271 seconds (0d 0h 0m 0s) --------------- T H R E A D --------------- Current thread (0x00007f4c0002a800): JavaThread "main" [_thread_in_native, id=31691, stack(0x00007f4c06bbe000,0x00007f4c06cbf000)] Stack: [0x00007f4c06bbe000,0x00007f4c06cbf000], sp=0x00007f4c06cbd5a0, free space=1021k Native frames: (J=compiled Java code, A=aot compiled Java code, j=interpreted, Vv=VM code, C=native code) C [libcimgui9269180519683231306.so+0xab386] ImGui::GetCurrentWindow()+0x16 C [libcimgui9269180519683231306.so+0xe82b5] ImGui::TextV(char const*, __va_list_tag*)+0x15 C [libcimgui9269180519683231306.so+0x11abc2] igText+0x152 C [libcimgui9269180519683231306.so+0x154af0] Java_cimgui_internal_CImGuiJNI_igText+0x70 j cimgui.internal.CImGuiJNI.igText(Ljava/lang/String;)V+0 j cimgui.internal.CImGui.igText(Ljava/lang/String;)V+1 j com.imgui.ImGui.text(Ljava/lang/String;)V+8 j HelloImGuiKt.main()V+16 j HelloImGuiKt.main([Ljava/lang/String;)V+0 v ~StubRoutines::call_stub V [libjvm.so+0x8bedd9] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, Thread*)+0x3b9 V [libjvm.so+0x940f4a] jni_invoke_static(JNIEnv_*, JavaValue*, _jobject*, JNICallType, _jmethodID*, JNI_ArgumentPusher*, Thread*) [clone .isra.70] [clone .constprop.264]+0x2fa V [libjvm.so+0x943564] jni_CallStaticVoidMethod+0x164 C [libjli.so+0x567a] JavaMain+0xd5a Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j cimgui.internal.CImGuiJNI.igText(Ljava/lang/String;)V+0 j cimgui.internal.CImGui.igText(Ljava/lang/String;)V+1 j com.imgui.ImGui.text(Ljava/lang/String;)V+8 j HelloImGuiKt.main()V+16 j HelloImGuiKt.main([Ljava/lang/String;)V+0 v ~StubRoutines::call_stub siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000001a80 Register to memory mapping: RAX=0x0 is NULL RBX={method} {0x00007f4bbca593f8} 'igText' '(Ljava/lang/String;)V' in 'cimgui/internal/CImGuiJNI' RCX=0x00007f4c005cf600 points into unknown readable memory: 00 00 00 00 00 00 00 00 RDX=0x0000000000000001 is an unknown value RSP=0x00007f4c06cbd5a0 is pointing into the stack for thread: 0x00007f4c0002a800 RBP=0x00007f4c06cbd5a0 is pointing into the stack for thread: 0x00007f4c0002a800 RSI=0x00007f4c06cbd760 is pointing into the stack for thread: 0x00007f4c0002a800 RDI=0x00007f4c005cf5f0 points into unknown readable memory: 48 65 6c 6c 6f 2c 20 77 R8 =0x00007f4c06cbd790 is pointing into the stack for thread: 0x00007f4c0002a800 R9 =0x0 is NULL R10=0x0000000000000006 is an unknown value R11=0x00007f4bb4972370: _ZN5ImGui16GetCurrentWindowEv+0x0000000000000000 in /tmp/libcimgui9269180519683231306.so at 0x00007f4bb48c7000 R12=0x0 is NULL R13={method} {0x00007f4bbca593f8} 'igText' '(Ljava/lang/String;)V' in 'cimgui/internal/CImGuiJNI' R14=0x00007f4c06cbd840 is pointing into the stack for thread: 0x00007f4c0002a800 R15=0x00007f4c0002a800 is a thread Registers: RAX=0x0000000000000000, RBX=0x00007f4bbca593f8, RCX=0x00007f4c005cf600, RDX=0x0000000000000001 RSP=0x00007f4c06cbd5a0, RBP=0x00007f4c06cbd5a0, RSI=0x00007f4c06cbd760, RDI=0x00007f4c005cf5f0 R8 =0x00007f4c06cbd790, R9 =0x0000000000000000, R10=0x0000000000000006, R11=0x00007f4bb4972370 R12=0x0000000000000000, R13=0x00007f4bbca593f8, R14=0x00007f4c06cbd840, R15=0x00007f4c0002a800 RIP=0x00007f4bb4972386, EFLAGS=0x0000000000010202, CSGSFS=0x002b000000000033, ERR=0x0000000000000004 TRAPNO=0x000000000000000e Top of Stack: (sp=0x00007f4c06cbd5a0) 0x00007f4c06cbd5a0: 00007f4c06cbd5f0 00007f4bb49af2b5 0x00007f4c06cbd5b0: 0000000000000020 00007f4c000008d0 0x00007f4c06cbd5c0: 0000000000000002 800000000000000e 0x00007f4c06cbd5d0: 0000000000000000 0000000000000000 Instructions: (pc=0x00007f4bb4972386) 0x00007f4bb4972286: 83 c4 10 5d c3 0f 1f 44 00 00 55 48 89 e5 48 83 0x00007f4bb4972296: ec 20 48 89 7d f8 89 75 f4 48 8b 7d f8 8b 75 f4 0x00007f4bb49722a6: 3b 77 04 48 89 7d e8 0f 8e 17 00 00 00 8b 75 f4 0x00007f4bb49722b6: 48 8b 7d e8 e8 c1 f2 fc ff 48 8b 7d e8 89 c6 e8 0x00007f4bb49722c6: e6 13 fd ff 8b 45 f4 48 8b 4d e8 89 01 48 83 c4 0x00007f4bb49722d6: 20 5d c3 0f 1f 80 00 00 00 00 55 48 89 e5 48 89 0x00007f4bb49722e6: 7d f8 48 8b 7d f8 83 3f 00 0f 94 c0 24 01 0f b6 0x00007f4bb49722f6: c0 5d c3 0f 1f 80 00 00 00 00 55 48 89 e5 48 83 0x00007f4bb4972306: ec 20 48 89 7d f8 89 75 f4 48 8b 7d f8 8b 75 f4 0x00007f4bb4972316: 3b 37 48 89 7d e8 0f 8d 05 00 00 00 e9 1f 00 00 0x00007f4bb4972326: 00 48 8d 3d 31 f4 0c 00 48 8d 35 33 f4 0c 00 ba 0x00007f4bb4972336: 54 05 00 00 48 8d 0d ad 15 0d 00 e8 ca db fc ff 0x00007f4bb4972346: 48 8b 45 e8 48 8b 48 08 48 63 55 f4 48 c1 e2 03 0x00007f4bb4972356: 48 01 d1 48 89 c8 48 83 c4 20 5d c3 66 2e 0f 1f 0x00007f4bb4972366: 84 00 00 00 00 00 0f 1f 40 00 55 48 89 e5 48 8b 0x00007f4bb4972376: 05 5d fc 31 00 48 8b 00 48 89 45 f8 48 8b 45 f8 0x00007f4bb4972386: 48 8b 80 80 1a 00 00 c6 80 80 00 00 00 01 48 8b 0x00007f4bb4972396: 45 f8 48 8b 80 80 1a 00 00 5d c3 66 2e 0f 1f 84 0x00007f4bb49723a6: 00 00 00 00 00 0f 1f 44 00 00 55 48 89 e5 48 83 0x00007f4bb49723b6: ec 10 48 89 7d f8 48 8b 7d f8 83 3f 00 48 89 7d 0x00007f4bb49723c6: f0 0f 8e 05 00 00 00 e9 1f 00 00 00 48 8d 3d d7 0x00007f4bb49723d6: 82 0d 00 48 8d 35 88 f3 0c 00 ba 5e 05 00 00 48 0x00007f4bb49723e6: 8d 0d 40 15 0d 00 e8 1f db fc ff 48 8b 45 f0 48 0x00007f4bb49723f6: 8b 48 08 8b 10 83 ea 01 48 63 f2 48 c1 e6 04 48 0x00007f4bb4972406: 01 f1 48 89 c8 48 83 c4 10 5d c3 66 2e 0f 1f 84 0x00007f4bb4972416: 00 00 00 00 00 0f 1f 44 00 00 55 48 89 e5 48 83 0x00007f4bb4972426: ec 20 48 89 7d f8 48 89 75 f0 48 8b 75 f8 48 8b 0x00007f4bb4972436: 7d f0 f3 0f 10 07 48 8b 7d f0 f3 0f 10 4f 04 48 0x00007f4bb4972446: 89 f7 48 89 75 e8 e8 7f dc fc ff 48 8b 75 e8 48 0x00007f4bb4972456: 83 c6 08 48 8b 7d f0 f3 0f 10 47 08 48 8b 7d f0 0x00007f4bb4972466: f3 0f 10 4f 0c 48 89 f7 e8 5d dc fc ff 48 83 c4 0x00007f4bb4972476: 20 5d c3 0f 1f 80 00 00 00 00 55 48 89 e5 48 83 Stack slot to memory mapping: stack at sp + 0 slots: 0x00007f4c06cbd5f0 is pointing into the stack for thread: 0x00007f4c0002a800 stack at sp + 1 slots: 0x00007f4bb49af2b5: _ZN5ImGui5TextVEPKcP13__va_list_tag+0x0000000000000015 in /tmp/libcimgui9269180519683231306.so at 0x00007f4bb48c7000 stack at sp + 2 slots: 0x0000000000000020 is an unknown value stack at sp + 3 slots: 0x00007f4c000008d0 points into unknown readable memory: 00 01 00 01 00 00 01 00 stack at sp + 4 slots: 0x0000000000000002 is an unknown value stack at sp + 5 slots: 0x800000000000000e is an unknown value stack at sp + 6 slots: 0x0 is NULL stack at sp + 7 slots: 0x0 is NULL --------------- P R O C E S S --------------- Threads class SMR info: _java_thread_list=0x00007f4c00548740, length=11, elements={ 0x00007f4c0002a800, 0x00007f4c002df000, 0x00007f4c002e3800, 0x00007f4c002f8000, 0x00007f4c002fa000, 0x00007f4c002fc800, 0x00007f4c002fe800, 0x00007f4c0039a000, 0x00007f4b8c09e000, 0x00007f4c00546800, 0x00007f4c00547000 } Java Threads: ( => current thread ) =>0x00007f4c0002a800 JavaThread "main" [_thread_in_native, id=31691, stack(0x00007f4c06bbe000,0x00007f4c06cbf000)] 0x00007f4c002df000 JavaThread "Reference Handler" daemon [_thread_blocked, id=31700, stack(0x00007f4bbc0f5000,0x00007f4bbc1f6000)] 0x00007f4c002e3800 JavaThread "Finalizer" daemon [_thread_blocked, id=31701, stack(0x00007f4bb5eff000,0x00007f4bb6000000)] 0x00007f4c002f8000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=31702, stack(0x00007f4bb5ad5000,0x00007f4bb5bd6000)] 0x00007f4c002fa000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=31703, stack(0x00007f4bb59d4000,0x00007f4bb5ad5000)] 0x00007f4c002fc800 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=31704, stack(0x00007f4bb58d3000,0x00007f4bb59d4000)] 0x00007f4c002fe800 JavaThread "Sweeper thread" daemon [_thread_blocked, id=31705, stack(0x00007f4bb57d2000,0x00007f4bb58d3000)] 0x00007f4c0039a000 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=31706, stack(0x00007f4bb56d1000,0x00007f4bb57d2000)] 0x00007f4b8c09e000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=31707, stack(0x00007f4bb55d0000,0x00007f4bb56d1000)] 0x00007f4c00546800 JavaThread "Monitor Ctrl-Break" daemon [_thread_in_native, id=31709, stack(0x00007f4bb50a7000,0x00007f4bb51a8000)] 0x00007f4c00547000 JavaThread "Service Thread" daemon [_thread_blocked, id=31710, stack(0x00007f4bb4fa6000,0x00007f4bb50a7000)] Other Threads: 0x00007f4c002d7000 VMThread "VM Thread" [stack: 0x00007f4bbc1f8000,0x00007f4bbc2f8000] [id=31699] 0x00007f4c00549800 WatcherThread [stack: 0x00007f4bb4ea6000,0x00007f4bb4fa6000] [id=31711] 0x00007f4c00043000 GCTaskThread "GC Thread#0" [stack: 0x00007f4be7610000,0x00007f4be7710000] [id=31692] 0x00007f4c00080000 ConcurrentGCThread "G1 Main Marker" [stack: 0x00007f4be4c9e000,0x00007f4be4d9e000] [id=31693] 0x00007f4c00082000 ConcurrentGCThread "G1 Conc#0" [stack: 0x00007f4be4b9c000,0x00007f4be4c9c000] [id=31694] 0x00007f4c0020a800 ConcurrentGCThread "G1 Refine#0" [stack: 0x00007f4be4292000,0x00007f4be4392000] [id=31695] 0x00007f4c0020c000 ConcurrentGCThread "G1 Young RemSet Sampling" [stack: 0x00007f4be4190000,0x00007f4be4290000] [id=31696] Threads with active compile tasks: VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap address: 0x0000000413800000, size: 16072 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 Narrow klass base: 0x0000000800000000, Narrow klass shift: 0 Compressed class space size: 1073741824 Address: 0x0000000800000000 Heap: garbage-first heap total 1032192K, used 4096K [0x0000000413800000, 0x0000000800000000) region size 4096K, 2 young (8192K), 0 survivors (0K) Metaspace used 8265K, capacity 8374K, committed 8704K, reserved 1056768K class space used 647K, capacity 703K, committed 768K, reserved 1048576K Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, A=archive, TAMS=top-at-mark-start (previous, next) | 0|0x0000000413800000, 0x0000000413800000, 0x0000000413c00000| 0%| F| |TAMS 0x0000000413800000, 0x0000000413800000| Untracked | 1|0x0000000413c00000, 0x0000000413c00000, 0x0000000414000000| 0%| F| |TAMS 0x0000000413c00000, 0x0000000413c00000| Untracked | 2|0x0000000414000000, 0x0000000414000000, 0x0000000414400000| 0%| F| |TAMS 0x0000000414000000, 0x0000000414000000| Untracked | 3|0x0000000414400000, 0x0000000414400000, 0x0000000414800000| 0%| F| |TAMS 0x0000000414400000, 0x0000000414400000| Untracked | 4|0x0000000414800000, 0x0000000414800000, 0x0000000414c00000| 0%| F| |TAMS 0x0000000414800000, 0x0000000414800000| Untracked | 5|0x0000000414c00000, 0x0000000414c00000, 0x0000000415000000| 0%| F| |TAMS 0x0000000414c00000, 0x0000000414c00000| Untracked | 6|0x0000000415000000, 0x0000000415000000, 0x0000000415400000| 0%| F| |TAMS 0x0000000415000000, 0x0000000415000000| Untracked | 7|0x0000000415400000, 0x0000000415400000, 0x0000000415800000| 0%| F| |TAMS 0x0000000415400000, 0x0000000415400000| Untracked | 8|0x0000000415800000, 0x0000000415800000, 0x0000000415c00000| 0%| F| |TAMS 0x0000000415800000, 0x0000000415800000| Untracked | 9|0x0000000415c00000, 0x0000000415c00000, 0x0000000416000000| 0%| F| |TAMS 0x0000000415c00000, 0x0000000415c00000| Untracked | 10|0x0000000416000000, 0x0000000416000000, 0x0000000416400000| 0%| F| |TAMS 0x0000000416000000, 0x0000000416000000| Untracked | 11|0x0000000416400000, 0x0000000416400000, 0x0000000416800000| 0%| F| |TAMS 0x0000000416400000, 0x0000000416400000| Untracked | 12|0x0000000416800000, 0x0000000416800000, 0x0000000416c00000| 0%| F| |TAMS 0x0000000416800000, 0x0000000416800000| Untracked | 13|0x0000000416c00000, 0x0000000416c00000, 0x0000000417000000| 0%| F| |TAMS 0x0000000416c00000, 0x0000000416c00000| Untracked | 14|0x0000000417000000, 0x0000000417000000, 0x0000000417400000| 0%| F| |TAMS 0x0000000417000000, 0x0000000417000000| Untracked | 15|0x0000000417400000, 0x0000000417400000, 0x0000000417800000| 0%| F| |TAMS 0x0000000417400000, 0x0000000417400000| Untracked | 16|0x0000000417800000, 0x0000000417800000, 0x0000000417c00000| 0%| F| |TAMS 0x0000000417800000, 0x0000000417800000| Untracked | 17|0x0000000417c00000, 0x0000000417c00000, 0x0000000418000000| 0%| F| |TAMS 0x0000000417c00000, 0x0000000417c00000| Untracked | 18|0x0000000418000000, 0x0000000418000000, 0x0000000418400000| 0%| F| |TAMS 0x0000000418000000, 0x0000000418000000| Untracked | 19|0x0000000418400000, 0x0000000418400000, 0x0000000418800000| 0%| F| |TAMS 0x0000000418400000, 0x0000000418400000| Untracked | 20|0x0000000418800000, 0x0000000418800000, 0x0000000418c00000| 0%| F| |TAMS 0x0000000418800000, 0x0000000418800000| Untracked | 21|0x0000000418c00000, 0x0000000418c00000, 0x0000000419000000| 0%| F| |TAMS 0x0000000418c00000, 0x0000000418c00000| Untracked | 22|0x0000000419000000, 0x0000000419000000, 0x0000000419400000| 0%| F| |TAMS 0x0000000419000000, 0x0000000419000000| Untracked | 23|0x0000000419400000, 0x0000000419400000, 0x0000000419800000| 0%| F| |TAMS 0x0000000419400000, 0x0000000419400000| Untracked | 24|0x0000000419800000, 0x0000000419800000, 0x0000000419c00000| 0%| F| |TAMS 0x0000000419800000, 0x0000000419800000| Untracked | 25|0x0000000419c00000, 0x0000000419c00000, 0x000000041a000000| 0%| F| |TAMS 0x0000000419c00000, 0x0000000419c00000| Untracked | 26|0x000000041a000000, 0x000000041a000000, 0x000000041a400000| 0%| F| |TAMS 0x000000041a000000, 0x000000041a000000| Untracked | 27|0x000000041a400000, 0x000000041a400000, 0x000000041a800000| 0%| F| |TAMS 0x000000041a400000, 0x000000041a400000| Untracked | 28|0x000000041a800000, 0x000000041a800000, 0x000000041ac00000| 0%| F| |TAMS 0x000000041a800000, 0x000000041a800000| Untracked | 29|0x000000041ac00000, 0x000000041ac00000, 0x000000041b000000| 0%| F| |TAMS 0x000000041ac00000, 0x000000041ac00000| Untracked | 30|0x000000041b000000, 0x000000041b000000, 0x000000041b400000| 0%| F| |TAMS 0x000000041b000000, 0x000000041b000000| Untracked | 31|0x000000041b400000, 0x000000041b400000, 0x000000041b800000| 0%| F| |TAMS 0x000000041b400000, 0x000000041b400000| Untracked | 32|0x000000041b800000, 0x000000041b800000, 0x000000041bc00000| 0%| F| |TAMS 0x000000041b800000, 0x000000041b800000| Untracked | 33|0x000000041bc00000, 0x000000041bc00000, 0x000000041c000000| 0%| F| |TAMS 0x000000041bc00000, 0x000000041bc00000| Untracked | 34|0x000000041c000000, 0x000000041c000000, 0x000000041c400000| 0%| F| |TAMS 0x000000041c000000, 0x000000041c000000| Untracked | 35|0x000000041c400000, 0x000000041c400000, 0x000000041c800000| 0%| F| |TAMS 0x000000041c400000, 0x000000041c400000| Untracked | 36|0x000000041c800000, 0x000000041c800000, 0x000000041cc00000| 0%| F| |TAMS 0x000000041c800000, 0x000000041c800000| Untracked | 37|0x000000041cc00000, 0x000000041cc00000, 0x000000041d000000| 0%| F| |TAMS 0x000000041cc00000, 0x000000041cc00000| Untracked | 38|0x000000041d000000, 0x000000041d000000, 0x000000041d400000| 0%| F| |TAMS 0x000000041d000000, 0x000000041d000000| Untracked | 39|0x000000041d400000, 0x000000041d400000, 0x000000041d800000| 0%| F| |TAMS 0x000000041d400000, 0x000000041d400000| Untracked | 40|0x000000041d800000, 0x000000041d800000, 0x000000041dc00000| 0%| F| |TAMS 0x000000041d800000, 0x000000041d800000| Untracked | 41|0x000000041dc00000, 0x000000041dc00000, 0x000000041e000000| 0%| F| |TAMS 0x000000041dc00000, 0x000000041dc00000| Untracked | 42|0x000000041e000000, 0x000000041e000000, 0x000000041e400000| 0%| F| |TAMS 0x000000041e000000, 0x000000041e000000| Untracked | 43|0x000000041e400000, 0x000000041e400000, 0x000000041e800000| 0%| F| |TAMS 0x000000041e400000, 0x000000041e400000| Untracked | 44|0x000000041e800000, 0x000000041e800000, 0x000000041ec00000| 0%| F| |TAMS 0x000000041e800000, 0x000000041e800000| Untracked | 45|0x000000041ec00000, 0x000000041ec00000, 0x000000041f000000| 0%| F| |TAMS 0x000000041ec00000, 0x000000041ec00000| Untracked | 46|0x000000041f000000, 0x000000041f000000, 0x000000041f400000| 0%| F| |TAMS 0x000000041f000000, 0x000000041f000000| Untracked | 47|0x000000041f400000, 0x000000041f400000, 0x000000041f800000| 0%| F| |TAMS 0x000000041f400000, 0x000000041f400000| Untracked | 48|0x000000041f800000, 0x000000041f800000, 0x000000041fc00000| 0%| F| |TAMS 0x000000041f800000, 0x000000041f800000| Untracked | 49|0x000000041fc00000, 0x000000041fc00000, 0x0000000420000000| 0%| F| |TAMS 0x000000041fc00000, 0x000000041fc00000| Untracked | 50|0x0000000420000000, 0x0000000420000000, 0x0000000420400000| 0%| F| |TAMS 0x0000000420000000, 0x0000000420000000| Untracked | 51|0x0000000420400000, 0x0000000420400000, 0x0000000420800000| 0%| F| |TAMS 0x0000000420400000, 0x0000000420400000| Untracked | 52|0x0000000420800000, 0x0000000420800000, 0x0000000420c00000| 0%| F| |TAMS 0x0000000420800000, 0x0000000420800000| Untracked | 53|0x0000000420c00000, 0x0000000420c00000, 0x0000000421000000| 0%| F| |TAMS 0x0000000420c00000, 0x0000000420c00000| Untracked | 54|0x0000000421000000, 0x0000000421000000, 0x0000000421400000| 0%| F| |TAMS 0x0000000421000000, 0x0000000421000000| Untracked | 55|0x0000000421400000, 0x0000000421400000, 0x0000000421800000| 0%| F| |TAMS 0x0000000421400000, 0x0000000421400000| Untracked | 56|0x0000000421800000, 0x0000000421800000, 0x0000000421c00000| 0%| F| |TAMS 0x0000000421800000, 0x0000000421800000| Untracked | 57|0x0000000421c00000, 0x0000000421c00000, 0x0000000422000000| 0%| F| |TAMS 0x0000000421c00000, 0x0000000421c00000| Untracked | 58|0x0000000422000000, 0x0000000422000000, 0x0000000422400000| 0%| F| |TAMS 0x0000000422000000, 0x0000000422000000| Untracked | 59|0x0000000422400000, 0x0000000422400000, 0x0000000422800000| 0%| F| |TAMS 0x0000000422400000, 0x0000000422400000| Untracked | 60|0x0000000422800000, 0x0000000422800000, 0x0000000422c00000| 0%| F| |TAMS 0x0000000422800000, 0x0000000422800000| Untracked | 61|0x0000000422c00000, 0x0000000422c00000, 0x0000000423000000| 0%| F| |TAMS 0x0000000422c00000, 0x0000000422c00000| Untracked | 62|0x0000000423000000, 0x0000000423000000, 0x0000000423400000| 0%| F| |TAMS 0x0000000423000000, 0x0000000423000000| Untracked | 63|0x0000000423400000, 0x0000000423400000, 0x0000000423800000| 0%| F| |TAMS 0x0000000423400000, 0x0000000423400000| Untracked | 64|0x0000000423800000, 0x0000000423800000, 0x0000000423c00000| 0%| F| |TAMS 0x0000000423800000, 0x0000000423800000| Untracked | 65|0x0000000423c00000, 0x0000000423c00000, 0x0000000424000000| 0%| F| |TAMS 0x0000000423c00000, 0x0000000423c00000| Untracked | 66|0x0000000424000000, 0x0000000424000000, 0x0000000424400000| 0%| F| |TAMS 0x0000000424000000, 0x0000000424000000| Untracked | 67|0x0000000424400000, 0x0000000424400000, 0x0000000424800000| 0%| F| |TAMS 0x0000000424400000, 0x0000000424400000| Untracked | 68|0x0000000424800000, 0x0000000424800000, 0x0000000424c00000| 0%| F| |TAMS 0x0000000424800000, 0x0000000424800000| Untracked | 69|0x0000000424c00000, 0x0000000424c00000, 0x0000000425000000| 0%| F| |TAMS 0x0000000424c00000, 0x0000000424c00000| Untracked | 70|0x0000000425000000, 0x0000000425000000, 0x0000000425400000| 0%| F| |TAMS 0x0000000425000000, 0x0000000425000000| Untracked | 71|0x0000000425400000, 0x0000000425400000, 0x0000000425800000| 0%| F| |TAMS 0x0000000425400000, 0x0000000425400000| Untracked | 72|0x0000000425800000, 0x0000000425800000, 0x0000000425c00000| 0%| F| |TAMS 0x0000000425800000, 0x0000000425800000| Untracked | 73|0x0000000425c00000, 0x0000000425c00000, 0x0000000426000000| 0%| F| |TAMS 0x0000000425c00000, 0x0000000425c00000| Untracked | 74|0x0000000426000000, 0x0000000426000000, 0x0000000426400000| 0%| F| |TAMS 0x0000000426000000, 0x0000000426000000| Untracked | 75|0x0000000426400000, 0x0000000426400000, 0x0000000426800000| 0%| F| |TAMS 0x0000000426400000, 0x0000000426400000| Untracked | 76|0x0000000426800000, 0x0000000426800000, 0x0000000426c00000| 0%| F| |TAMS 0x0000000426800000, 0x0000000426800000| Untracked | 77|0x0000000426c00000, 0x0000000426c00000, 0x0000000427000000| 0%| F| |TAMS 0x0000000426c00000, 0x0000000426c00000| Untracked | 78|0x0000000427000000, 0x0000000427000000, 0x0000000427400000| 0%| F| |TAMS 0x0000000427000000, 0x0000000427000000| Untracked | 79|0x0000000427400000, 0x0000000427400000, 0x0000000427800000| 0%| F| |TAMS 0x0000000427400000, 0x0000000427400000| Untracked | 80|0x0000000427800000, 0x0000000427800000, 0x0000000427c00000| 0%| F| |TAMS 0x0000000427800000, 0x0000000427800000| Untracked | 81|0x0000000427c00000, 0x0000000427c00000, 0x0000000428000000| 0%| F| |TAMS 0x0000000427c00000, 0x0000000427c00000| Untracked | 82|0x0000000428000000, 0x0000000428000000, 0x0000000428400000| 0%| F| |TAMS 0x0000000428000000, 0x0000000428000000| Untracked | 83|0x0000000428400000, 0x0000000428400000, 0x0000000428800000| 0%| F| |TAMS 0x0000000428400000, 0x0000000428400000| Untracked | 84|0x0000000428800000, 0x0000000428800000, 0x0000000428c00000| 0%| F| |TAMS 0x0000000428800000, 0x0000000428800000| Untracked | 85|0x0000000428c00000, 0x0000000428c00000, 0x0000000429000000| 0%| F| |TAMS 0x0000000428c00000, 0x0000000428c00000| Untracked | 86|0x0000000429000000, 0x0000000429000000, 0x0000000429400000| 0%| F| |TAMS 0x0000000429000000, 0x0000000429000000| Untracked | 87|0x0000000429400000, 0x0000000429400000, 0x0000000429800000| 0%| F| |TAMS 0x0000000429400000, 0x0000000429400000| Untracked | 88|0x0000000429800000, 0x0000000429800000, 0x0000000429c00000| 0%| F| |TAMS 0x0000000429800000, 0x0000000429800000| Untracked | 89|0x0000000429c00000, 0x0000000429c00000, 0x000000042a000000| 0%| F| |TAMS 0x0000000429c00000, 0x0000000429c00000| Untracked | 90|0x000000042a000000, 0x000000042a000000, 0x000000042a400000| 0%| F| |TAMS 0x000000042a000000, 0x000000042a000000| Untracked | 91|0x000000042a400000, 0x000000042a400000, 0x000000042a800000| 0%| F| |TAMS 0x000000042a400000, 0x000000042a400000| Untracked | 92|0x000000042a800000, 0x000000042a800000, 0x000000042ac00000| 0%| F| |TAMS 0x000000042a800000, 0x000000042a800000| Untracked | 93|0x000000042ac00000, 0x000000042ac00000, 0x000000042b000000| 0%| F| |TAMS 0x000000042ac00000, 0x000000042ac00000| Untracked | 94|0x000000042b000000, 0x000000042b000000, 0x000000042b400000| 0%| F| |TAMS 0x000000042b000000, 0x000000042b000000| Untracked | 95|0x000000042b400000, 0x000000042b400000, 0x000000042b800000| 0%| F| |TAMS 0x000000042b400000, 0x000000042b400000| Untracked | 96|0x000000042b800000, 0x000000042b800000, 0x000000042bc00000| 0%| F| |TAMS 0x000000042b800000, 0x000000042b800000| Untracked | 97|0x000000042bc00000, 0x000000042bc00000, 0x000000042c000000| 0%| F| |TAMS 0x000000042bc00000, 0x000000042bc00000| Untracked | 98|0x000000042c000000, 0x000000042c000000, 0x000000042c400000| 0%| F| |TAMS 0x000000042c000000, 0x000000042c000000| Untracked | 99|0x000000042c400000, 0x000000042c400000, 0x000000042c800000| 0%| F| |TAMS 0x000000042c400000, 0x000000042c400000| Untracked | 100|0x000000042c800000, 0x000000042c800000, 0x000000042cc00000| 0%| F| |TAMS 0x000000042c800000, 0x000000042c800000| Untracked | 101|0x000000042cc00000, 0x000000042cc00000, 0x000000042d000000| 0%| F| |TAMS 0x000000042cc00000, 0x000000042cc00000| Untracked | 102|0x000000042d000000, 0x000000042d000000, 0x000000042d400000| 0%| F| |TAMS 0x000000042d000000, 0x000000042d000000| Untracked | 103|0x000000042d400000, 0x000000042d400000, 0x000000042d800000| 0%| F| |TAMS 0x000000042d400000, 0x000000042d400000| Untracked | 104|0x000000042d800000, 0x000000042d800000, 0x000000042dc00000| 0%| F| |TAMS 0x000000042d800000, 0x000000042d800000| Untracked | 105|0x000000042dc00000, 0x000000042dc00000, 0x000000042e000000| 0%| F| |TAMS 0x000000042dc00000, 0x000000042dc00000| Untracked | 106|0x000000042e000000, 0x000000042e000000, 0x000000042e400000| 0%| F| |TAMS 0x000000042e000000, 0x000000042e000000| Untracked | 107|0x000000042e400000, 0x000000042e400000, 0x000000042e800000| 0%| F| |TAMS 0x000000042e400000, 0x000000042e400000| Untracked | 108|0x000000042e800000, 0x000000042e800000, 0x000000042ec00000| 0%| F| |TAMS 0x000000042e800000, 0x000000042e800000| Untracked | 109|0x000000042ec00000, 0x000000042ec00000, 0x000000042f000000| 0%| F| |TAMS 0x000000042ec00000, 0x000000042ec00000| Untracked | 110|0x000000042f000000, 0x000000042f000000, 0x000000042f400000| 0%| F| |TAMS 0x000000042f000000, 0x000000042f000000| Untracked | 111|0x000000042f400000, 0x000000042f400000, 0x000000042f800000| 0%| F| |TAMS 0x000000042f400000, 0x000000042f400000| Untracked | 112|0x000000042f800000, 0x000000042f800000, 0x000000042fc00000| 0%| F| |TAMS 0x000000042f800000, 0x000000042f800000| Untracked | 113|0x000000042fc00000, 0x000000042fc00000, 0x0000000430000000| 0%| F| |TAMS 0x000000042fc00000, 0x000000042fc00000| Untracked | 114|0x0000000430000000, 0x0000000430000000, 0x0000000430400000| 0%| F| |TAMS 0x0000000430000000, 0x0000000430000000| Untracked | 115|0x0000000430400000, 0x0000000430400000, 0x0000000430800000| 0%| F| |TAMS 0x0000000430400000, 0x0000000430400000| Untracked | 116|0x0000000430800000, 0x0000000430800000, 0x0000000430c00000| 0%| F| |TAMS 0x0000000430800000, 0x0000000430800000| Untracked | 117|0x0000000430c00000, 0x0000000430c00000, 0x0000000431000000| 0%| F| |TAMS 0x0000000430c00000, 0x0000000430c00000| Untracked | 118|0x0000000431000000, 0x0000000431000000, 0x0000000431400000| 0%| F| |TAMS 0x0000000431000000, 0x0000000431000000| Untracked | 119|0x0000000431400000, 0x0000000431400000, 0x0000000431800000| 0%| F| |TAMS 0x0000000431400000, 0x0000000431400000| Untracked | 120|0x0000000431800000, 0x0000000431800000, 0x0000000431c00000| 0%| F| |TAMS 0x0000000431800000, 0x0000000431800000| Untracked | 121|0x0000000431c00000, 0x0000000431c00000, 0x0000000432000000| 0%| F| |TAMS 0x0000000431c00000, 0x0000000431c00000| Untracked | 122|0x0000000432000000, 0x0000000432000000, 0x0000000432400000| 0%| F| |TAMS 0x0000000432000000, 0x0000000432000000| Untracked | 123|0x0000000432400000, 0x0000000432400000, 0x0000000432800000| 0%| F| |TAMS 0x0000000432400000, 0x0000000432400000| Untracked | 124|0x0000000432800000, 0x0000000432800000, 0x0000000432c00000| 0%| F| |TAMS 0x0000000432800000, 0x0000000432800000| Untracked | 125|0x0000000432c00000, 0x0000000432c00000, 0x0000000433000000| 0%| F| |TAMS 0x0000000432c00000, 0x0000000432c00000| Untracked | 126|0x0000000433000000, 0x0000000433000000, 0x0000000433400000| 0%| F| |TAMS 0x0000000433000000, 0x0000000433000000| Untracked | 127|0x0000000433400000, 0x0000000433400000, 0x0000000433800000| 0%| F| |TAMS 0x0000000433400000, 0x0000000433400000| Untracked | 128|0x0000000433800000, 0x0000000433800000, 0x0000000433c00000| 0%| F| |TAMS 0x0000000433800000, 0x0000000433800000| Untracked | 129|0x0000000433c00000, 0x0000000433c00000, 0x0000000434000000| 0%| F| |TAMS 0x0000000433c00000, 0x0000000433c00000| Untracked | 130|0x0000000434000000, 0x0000000434000000, 0x0000000434400000| 0%| F| |TAMS 0x0000000434000000, 0x0000000434000000| Untracked | 131|0x0000000434400000, 0x0000000434400000, 0x0000000434800000| 0%| F| |TAMS 0x0000000434400000, 0x0000000434400000| Untracked | 132|0x0000000434800000, 0x0000000434800000, 0x0000000434c00000| 0%| F| |TAMS 0x0000000434800000, 0x0000000434800000| Untracked | 133|0x0000000434c00000, 0x0000000434c00000, 0x0000000435000000| 0%| F| |TAMS 0x0000000434c00000, 0x0000000434c00000| Untracked | 134|0x0000000435000000, 0x0000000435000000, 0x0000000435400000| 0%| F| |TAMS 0x0000000435000000, 0x0000000435000000| Untracked | 135|0x0000000435400000, 0x0000000435400000, 0x0000000435800000| 0%| F| |TAMS 0x0000000435400000, 0x0000000435400000| Untracked | 136|0x0000000435800000, 0x0000000435800000, 0x0000000435c00000| 0%| F| |TAMS 0x0000000435800000, 0x0000000435800000| Untracked | 137|0x0000000435c00000, 0x0000000435c00000, 0x0000000436000000| 0%| F| |TAMS 0x0000000435c00000, 0x0000000435c00000| Untracked | 138|0x0000000436000000, 0x0000000436000000, 0x0000000436400000| 0%| F| |TAMS 0x0000000436000000, 0x0000000436000000| Untracked | 139|0x0000000436400000, 0x0000000436400000, 0x0000000436800000| 0%| F| |TAMS 0x0000000436400000, 0x0000000436400000| Untracked | 140|0x0000000436800000, 0x0000000436800000, 0x0000000436c00000| 0%| F| |TAMS 0x0000000436800000, 0x0000000436800000| Untracked | 141|0x0000000436c00000, 0x0000000436c00000, 0x0000000437000000| 0%| F| |TAMS 0x0000000436c00000, 0x0000000436c00000| Untracked | 142|0x0000000437000000, 0x0000000437000000, 0x0000000437400000| 0%| F| |TAMS 0x0000000437000000, 0x0000000437000000| Untracked | 143|0x0000000437400000, 0x0000000437400000, 0x0000000437800000| 0%| F| |TAMS 0x0000000437400000, 0x0000000437400000| Untracked | 144|0x0000000437800000, 0x0000000437800000, 0x0000000437c00000| 0%| F| |TAMS 0x0000000437800000, 0x0000000437800000| Untracked | 145|0x0000000437c00000, 0x0000000437c00000, 0x0000000438000000| 0%| F| |TAMS 0x0000000437c00000, 0x0000000437c00000| Untracked | 146|0x0000000438000000, 0x0000000438000000, 0x0000000438400000| 0%| F| |TAMS 0x0000000438000000, 0x0000000438000000| Untracked | 147|0x0000000438400000, 0x0000000438400000, 0x0000000438800000| 0%| F| |TAMS 0x0000000438400000, 0x0000000438400000| Untracked | 148|0x0000000438800000, 0x0000000438800000, 0x0000000438c00000| 0%| F| |TAMS 0x0000000438800000, 0x0000000438800000| Untracked | 149|0x0000000438c00000, 0x0000000438c00000, 0x0000000439000000| 0%| F| |TAMS 0x0000000438c00000, 0x0000000438c00000| Untracked | 150|0x0000000439000000, 0x0000000439000000, 0x0000000439400000| 0%| F| |TAMS 0x0000000439000000, 0x0000000439000000| Untracked | 151|0x0000000439400000, 0x0000000439400000, 0x0000000439800000| 0%| F| |TAMS 0x0000000439400000, 0x0000000439400000| Untracked | 152|0x0000000439800000, 0x0000000439800000, 0x0000000439c00000| 0%| F| |TAMS 0x0000000439800000, 0x0000000439800000| Untracked | 153|0x0000000439c00000, 0x0000000439c00000, 0x000000043a000000| 0%| F| |TAMS 0x0000000439c00000, 0x0000000439c00000| Untracked | 154|0x000000043a000000, 0x000000043a000000, 0x000000043a400000| 0%| F| |TAMS 0x000000043a000000, 0x000000043a000000| Untracked | 155|0x000000043a400000, 0x000000043a400000, 0x000000043a800000| 0%| F| |TAMS 0x000000043a400000, 0x000000043a400000| Untracked | 156|0x000000043a800000, 0x000000043a800000, 0x000000043ac00000| 0%| F| |TAMS 0x000000043a800000, 0x000000043a800000| Untracked | 157|0x000000043ac00000, 0x000000043ac00000, 0x000000043b000000| 0%| F| |TAMS 0x000000043ac00000, 0x000000043ac00000| Untracked | 158|0x000000043b000000, 0x000000043b000000, 0x000000043b400000| 0%| F| |TAMS 0x000000043b000000, 0x000000043b000000| Untracked | 159|0x000000043b400000, 0x000000043b400000, 0x000000043b800000| 0%| F| |TAMS 0x000000043b400000, 0x000000043b400000| Untracked | 160|0x000000043b800000, 0x000000043b800000, 0x000000043bc00000| 0%| F| |TAMS 0x000000043b800000, 0x000000043b800000| Untracked | 161|0x000000043bc00000, 0x000000043bc00000, 0x000000043c000000| 0%| F| |TAMS 0x000000043bc00000, 0x000000043bc00000| Untracked | 162|0x000000043c000000, 0x000000043c000000, 0x000000043c400000| 0%| F| |TAMS 0x000000043c000000, 0x000000043c000000| Untracked | 163|0x000000043c400000, 0x000000043c400000, 0x000000043c800000| 0%| F| |TAMS 0x000000043c400000, 0x000000043c400000| Untracked | 164|0x000000043c800000, 0x000000043c800000, 0x000000043cc00000| 0%| F| |TAMS 0x000000043c800000, 0x000000043c800000| Untracked | 165|0x000000043cc00000, 0x000000043cc00000, 0x000000043d000000| 0%| F| |TAMS 0x000000043cc00000, 0x000000043cc00000| Untracked | 166|0x000000043d000000, 0x000000043d000000, 0x000000043d400000| 0%| F| |TAMS 0x000000043d000000, 0x000000043d000000| Untracked | 167|0x000000043d400000, 0x000000043d400000, 0x000000043d800000| 0%| F| |TAMS 0x000000043d400000, 0x000000043d400000| Untracked | 168|0x000000043d800000, 0x000000043d800000, 0x000000043dc00000| 0%| F| |TAMS 0x000000043d800000, 0x000000043d800000| Untracked | 169|0x000000043dc00000, 0x000000043dc00000, 0x000000043e000000| 0%| F| |TAMS 0x000000043dc00000, 0x000000043dc00000| Untracked | 170|0x000000043e000000, 0x000000043e000000, 0x000000043e400000| 0%| F| |TAMS 0x000000043e000000, 0x000000043e000000| Untracked | 171|0x000000043e400000, 0x000000043e400000, 0x000000043e800000| 0%| F| |TAMS 0x000000043e400000, 0x000000043e400000| Untracked | 172|0x000000043e800000, 0x000000043e800000, 0x000000043ec00000| 0%| F| |TAMS 0x000000043e800000, 0x000000043e800000| Untracked | 173|0x000000043ec00000, 0x000000043ec00000, 0x000000043f000000| 0%| F| |TAMS 0x000000043ec00000, 0x000000043ec00000| Untracked | 174|0x000000043f000000, 0x000000043f000000, 0x000000043f400000| 0%| F| |TAMS 0x000000043f000000, 0x000000043f000000| Untracked | 175|0x000000043f400000, 0x000000043f400000, 0x000000043f800000| 0%| F| |TAMS 0x000000043f400000, 0x000000043f400000| Untracked | 176|0x000000043f800000, 0x000000043f800000, 0x000000043fc00000| 0%| F| |TAMS 0x000000043f800000, 0x000000043f800000| Untracked | 177|0x000000043fc00000, 0x000000043fc00000, 0x0000000440000000| 0%| F| |TAMS 0x000000043fc00000, 0x000000043fc00000| Untracked | 178|0x0000000440000000, 0x0000000440000000, 0x0000000440400000| 0%| F| |TAMS 0x0000000440000000, 0x0000000440000000| Untracked | 179|0x0000000440400000, 0x0000000440400000, 0x0000000440800000| 0%| F| |TAMS 0x0000000440400000, 0x0000000440400000| Untracked | 180|0x0000000440800000, 0x0000000440800000, 0x0000000440c00000| 0%| F| |TAMS 0x0000000440800000, 0x0000000440800000| Untracked | 181|0x0000000440c00000, 0x0000000440c00000, 0x0000000441000000| 0%| F| |TAMS 0x0000000440c00000, 0x0000000440c00000| Untracked | 182|0x0000000441000000, 0x0000000441000000, 0x0000000441400000| 0%| F| |TAMS 0x0000000441000000, 0x0000000441000000| Untracked | 183|0x0000000441400000, 0x0000000441400000, 0x0000000441800000| 0%| F| |TAMS 0x0000000441400000, 0x0000000441400000| Untracked | 184|0x0000000441800000, 0x0000000441800000, 0x0000000441c00000| 0%| F| |TAMS 0x0000000441800000, 0x0000000441800000| Untracked | 185|0x0000000441c00000, 0x0000000441c00000, 0x0000000442000000| 0%| F| |TAMS 0x0000000441c00000, 0x0000000441c00000| Untracked | 186|0x0000000442000000, 0x0000000442000000, 0x0000000442400000| 0%| F| |TAMS 0x0000000442000000, 0x0000000442000000| Untracked | 187|0x0000000442400000, 0x0000000442400000, 0x0000000442800000| 0%| F| |TAMS 0x0000000442400000, 0x0000000442400000| Untracked | 188|0x0000000442800000, 0x0000000442800000, 0x0000000442c00000| 0%| F| |TAMS 0x0000000442800000, 0x0000000442800000| Untracked | 189|0x0000000442c00000, 0x0000000442c00000, 0x0000000443000000| 0%| F| |TAMS 0x0000000442c00000, 0x0000000442c00000| Untracked | 190|0x0000000443000000, 0x0000000443000000, 0x0000000443400000| 0%| F| |TAMS 0x0000000443000000, 0x0000000443000000| Untracked | 191|0x0000000443400000, 0x0000000443400000, 0x0000000443800000| 0%| F| |TAMS 0x0000000443400000, 0x0000000443400000| Untracked | 192|0x0000000443800000, 0x0000000443800000, 0x0000000443c00000| 0%| F| |TAMS 0x0000000443800000, 0x0000000443800000| Untracked | 193|0x0000000443c00000, 0x0000000443c00000, 0x0000000444000000| 0%| F| |TAMS 0x0000000443c00000, 0x0000000443c00000| Untracked | 194|0x0000000444000000, 0x0000000444000000, 0x0000000444400000| 0%| F| |TAMS 0x0000000444000000, 0x0000000444000000| Untracked | 195|0x0000000444400000, 0x0000000444400000, 0x0000000444800000| 0%| F| |TAMS 0x0000000444400000, 0x0000000444400000| Untracked | 196|0x0000000444800000, 0x0000000444800000, 0x0000000444c00000| 0%| F| |TAMS 0x0000000444800000, 0x0000000444800000| Untracked | 197|0x0000000444c00000, 0x0000000444c00000, 0x0000000445000000| 0%| F| |TAMS 0x0000000444c00000, 0x0000000444c00000| Untracked | 198|0x0000000445000000, 0x0000000445000000, 0x0000000445400000| 0%| F| |TAMS 0x0000000445000000, 0x0000000445000000| Untracked | 199|0x0000000445400000, 0x0000000445400000, 0x0000000445800000| 0%| F| |TAMS 0x0000000445400000, 0x0000000445400000| Untracked | 200|0x0000000445800000, 0x0000000445800000, 0x0000000445c00000| 0%| F| |TAMS 0x0000000445800000, 0x0000000445800000| Untracked | 201|0x0000000445c00000, 0x0000000445c00000, 0x0000000446000000| 0%| F| |TAMS 0x0000000445c00000, 0x0000000445c00000| Untracked | 202|0x0000000446000000, 0x0000000446000000, 0x0000000446400000| 0%| F| |TAMS 0x0000000446000000, 0x0000000446000000| Untracked | 203|0x0000000446400000, 0x0000000446400000, 0x0000000446800000| 0%| F| |TAMS 0x0000000446400000, 0x0000000446400000| Untracked | 204|0x0000000446800000, 0x0000000446800000, 0x0000000446c00000| 0%| F| |TAMS 0x0000000446800000, 0x0000000446800000| Untracked | 205|0x0000000446c00000, 0x0000000446c00000, 0x0000000447000000| 0%| F| |TAMS 0x0000000446c00000, 0x0000000446c00000| Untracked | 206|0x0000000447000000, 0x0000000447000000, 0x0000000447400000| 0%| F| |TAMS 0x0000000447000000, 0x0000000447000000| Untracked | 207|0x0000000447400000, 0x0000000447400000, 0x0000000447800000| 0%| F| |TAMS 0x0000000447400000, 0x0000000447400000| Untracked | 208|0x0000000447800000, 0x0000000447800000, 0x0000000447c00000| 0%| F| |TAMS 0x0000000447800000, 0x0000000447800000| Untracked | 209|0x0000000447c00000, 0x0000000447c00000, 0x0000000448000000| 0%| F| |TAMS 0x0000000447c00000, 0x0000000447c00000| Untracked | 210|0x0000000448000000, 0x0000000448000000, 0x0000000448400000| 0%| F| |TAMS 0x0000000448000000, 0x0000000448000000| Untracked | 211|0x0000000448400000, 0x0000000448400000, 0x0000000448800000| 0%| F| |TAMS 0x0000000448400000, 0x0000000448400000| Untracked | 212|0x0000000448800000, 0x0000000448800000, 0x0000000448c00000| 0%| F| |TAMS 0x0000000448800000, 0x0000000448800000| Untracked | 213|0x0000000448c00000, 0x0000000448c00000, 0x0000000449000000| 0%| F| |TAMS 0x0000000448c00000, 0x0000000448c00000| Untracked | 214|0x0000000449000000, 0x0000000449000000, 0x0000000449400000| 0%| F| |TAMS 0x0000000449000000, 0x0000000449000000| Untracked | 215|0x0000000449400000, 0x0000000449400000, 0x0000000449800000| 0%| F| |TAMS 0x0000000449400000, 0x0000000449400000| Untracked | 216|0x0000000449800000, 0x0000000449800000, 0x0000000449c00000| 0%| F| |TAMS 0x0000000449800000, 0x0000000449800000| Untracked | 217|0x0000000449c00000, 0x0000000449c00000, 0x000000044a000000| 0%| F| |TAMS 0x0000000449c00000, 0x0000000449c00000| Untracked | 218|0x000000044a000000, 0x000000044a000000, 0x000000044a400000| 0%| F| |TAMS 0x000000044a000000, 0x000000044a000000| Untracked | 219|0x000000044a400000, 0x000000044a400000, 0x000000044a800000| 0%| F| |TAMS 0x000000044a400000, 0x000000044a400000| Untracked | 220|0x000000044a800000, 0x000000044a800000, 0x000000044ac00000| 0%| F| |TAMS 0x000000044a800000, 0x000000044a800000| Untracked | 221|0x000000044ac00000, 0x000000044ac00000, 0x000000044b000000| 0%| F| |TAMS 0x000000044ac00000, 0x000000044ac00000| Untracked | 222|0x000000044b000000, 0x000000044b000000, 0x000000044b400000| 0%| F| |TAMS 0x000000044b000000, 0x000000044b000000| Untracked | 223|0x000000044b400000, 0x000000044b400000, 0x000000044b800000| 0%| F| |TAMS 0x000000044b400000, 0x000000044b400000| Untracked | 224|0x000000044b800000, 0x000000044b800000, 0x000000044bc00000| 0%| F| |TAMS 0x000000044b800000, 0x000000044b800000| Untracked | 225|0x000000044bc00000, 0x000000044bc00000, 0x000000044c000000| 0%| F| |TAMS 0x000000044bc00000, 0x000000044bc00000| Untracked | 226|0x000000044c000000, 0x000000044c000000, 0x000000044c400000| 0%| F| |TAMS 0x000000044c000000, 0x000000044c000000| Untracked | 227|0x000000044c400000, 0x000000044c400000, 0x000000044c800000| 0%| F| |TAMS 0x000000044c400000, 0x000000044c400000| Untracked | 228|0x000000044c800000, 0x000000044c800000, 0x000000044cc00000| 0%| F| |TAMS 0x000000044c800000, 0x000000044c800000| Untracked | 229|0x000000044cc00000, 0x000000044cc00000, 0x000000044d000000| 0%| F| |TAMS 0x000000044cc00000, 0x000000044cc00000| Untracked | 230|0x000000044d000000, 0x000000044d000000, 0x000000044d400000| 0%| F| |TAMS 0x000000044d000000, 0x000000044d000000| Untracked | 231|0x000000044d400000, 0x000000044d400000, 0x000000044d800000| 0%| F| |TAMS 0x000000044d400000, 0x000000044d400000| Untracked | 232|0x000000044d800000, 0x000000044d800000, 0x000000044dc00000| 0%| F| |TAMS 0x000000044d800000, 0x000000044d800000| Untracked | 233|0x000000044dc00000, 0x000000044dc00000, 0x000000044e000000| 0%| F| |TAMS 0x000000044dc00000, 0x000000044dc00000| Untracked | 234|0x000000044e000000, 0x000000044e000000, 0x000000044e400000| 0%| F| |TAMS 0x000000044e000000, 0x000000044e000000| Untracked | 235|0x000000044e400000, 0x000000044e400000, 0x000000044e800000| 0%| F| |TAMS 0x000000044e400000, 0x000000044e400000| Untracked | 236|0x000000044e800000, 0x000000044e800000, 0x000000044ec00000| 0%| F| |TAMS 0x000000044e800000, 0x000000044e800000| Untracked | 237|0x000000044ec00000, 0x000000044ec00000, 0x000000044f000000| 0%| F| |TAMS 0x000000044ec00000, 0x000000044ec00000| Untracked | 238|0x000000044f000000, 0x000000044f000000, 0x000000044f400000| 0%| F| |TAMS 0x000000044f000000, 0x000000044f000000| Untracked | 239|0x000000044f400000, 0x000000044f400000, 0x000000044f800000| 0%| F| |TAMS 0x000000044f400000, 0x000000044f400000| Untracked | 240|0x000000044f800000, 0x000000044f800000, 0x000000044fc00000| 0%| F| |TAMS 0x000000044f800000, 0x000000044f800000| Untracked | 241|0x000000044fc00000, 0x000000044fc00000, 0x0000000450000000| 0%| F| |TAMS 0x000000044fc00000, 0x000000044fc00000| Untracked | 242|0x0000000450000000, 0x0000000450000000, 0x0000000450400000| 0%| F| |TAMS 0x0000000450000000, 0x0000000450000000| Untracked | 243|0x0000000450400000, 0x0000000450400000, 0x0000000450800000| 0%| F| |TAMS 0x0000000450400000, 0x0000000450400000| Untracked | 244|0x0000000450800000, 0x0000000450800000, 0x0000000450c00000| 0%| F| |TAMS 0x0000000450800000, 0x0000000450800000| Untracked | 245|0x0000000450c00000, 0x0000000450c00000, 0x0000000451000000| 0%| F| |TAMS 0x0000000450c00000, 0x0000000450c00000| Untracked | 246|0x0000000451000000, 0x0000000451000000, 0x0000000451400000| 0%| F| |TAMS 0x0000000451000000, 0x0000000451000000| Untracked | 247|0x0000000451400000, 0x0000000451400000, 0x0000000451800000| 0%| F| |TAMS 0x0000000451400000, 0x0000000451400000| Untracked | 248|0x0000000451800000, 0x0000000451800000, 0x0000000451c00000| 0%| F| |TAMS 0x0000000451800000, 0x0000000451800000| Untracked | 249|0x0000000451c00000, 0x0000000451c00000, 0x0000000452000000| 0%| F| |TAMS 0x0000000451c00000, 0x0000000451c00000| Untracked | 250|0x0000000452000000, 0x00000004522fc060, 0x0000000452400000| 74%| E| |TAMS 0x0000000452000000, 0x0000000452000000| Complete | 251|0x0000000452400000, 0x0000000452800000, 0x0000000452800000|100%| E|CS|TAMS 0x0000000452400000, 0x0000000452400000| Complete Card table byte_map: [0x00007f4bde09c000,0x00007f4be0000000] _byte_map_base: 0x00007f4bdc000000 Marking Bits (Prev, Next): (CMBitMap*) 0x00007f4c0006f748, (CMBitMap*) 0x00007f4c0006f780 Prev Bits: [0x00007f4bcc618000, 0x00007f4bdc138000) Next Bits: [0x00007f4bbcaf8000, 0x00007f4bcc618000) Polling page: 0x00007f4c06cec000 Metaspace: Usage: Non-class: 7.49 MB capacity, 7.44 MB (>99%) used, 47.17 KB ( <1%) free+waste, 5.44 KB ( <1%) overhead. Class: 703.00 KB capacity, 647.48 KB ( 92%) used, 53.45 KB ( 8%) free+waste, 2.06 KB ( <1%) overhead. Both: 8.18 MB capacity, 8.07 MB ( 99%) used, 100.62 KB ( 1%) free+waste, 7.50 KB ( <1%) overhead. Virtual space: Non-class space: 8.00 MB reserved, 7.75 MB ( 97%) committed Class space: 1.00 GB reserved, 768.00 KB ( <1%) committed Both: 1.01 GB reserved, 8.50 MB ( <1%) committed Chunk freelists: Non-Class: 41.00 KB Class: 1.00 KB Both: 42.00 KB MaxMetaspaceSize: unlimited CompressedClassSpaceSize: 1.00 GB CodeHeap 'non-profiled nmethods': size=120032Kb used=83Kb max_used=83Kb free=119948Kb bounds [0x00007f4bef2c3000, 0x00007f4bef533000, 0x00007f4bf67fb000] CodeHeap 'profiled nmethods': size=120028Kb used=323Kb max_used=323Kb free=119704Kb bounds [0x00007f4be7d8c000, 0x00007f4be7ffc000, 0x00007f4bef2c3000] CodeHeap 'non-nmethods': size=5700Kb used=1216Kb max_used=1216Kb free=4483Kb bounds [0x00007f4be77fb000, 0x00007f4be7a6b000, 0x00007f4be7d8c000] total_blobs=906 nmethods=292 adapters=527 compilation: enabled stopped_count=0, restarted_count=0 full_count=0 Compilation events (20 events): Event: 0.183 Thread 0x00007f4c002fc800 282 3 java.io.FilterInputStream::read (9 bytes) Event: 0.183 Thread 0x00007f4c002fc800 nmethod 282 0x00007f4be7dda010 code [0x00007f4be7dda1c0, 0x00007f4be7dda380] Event: 0.183 Thread 0x00007f4c002fc800 283 3 java.io.FilterInputStream::read (11 bytes) Event: 0.183 Thread 0x00007f4c002fc800 nmethod 283 0x00007f4be7dda490 code [0x00007f4be7dda640, 0x00007f4be7dda800] Event: 0.183 Thread 0x00007f4c002fc800 284 3 java.io.FileOutputStream::write (20 bytes) Event: 0.184 Thread 0x00007f4c002fc800 nmethod 284 0x00007f4be7dda910 code [0x00007f4be7ddaae0, 0x00007f4be7ddaca0] Event: 0.184 Thread 0x00007f4c002fc800 285 3 java.io.FileDescriptor$1::getAppend (5 bytes) Event: 0.184 Thread 0x00007f4c002fc800 nmethod 285 0x00007f4be7ddad90 code [0x00007f4be7ddaf40, 0x00007f4be7ddb050] Event: 0.185 Thread 0x00007f4c002fc800 286 3 java.io.RandomAccessFile::seek (22 bytes) Event: 0.185 Thread 0x00007f4c002fc800 nmethod 286 0x00007f4be7ddb110 code [0x00007f4be7ddb2e0, 0x00007f4be7ddb510] Event: 0.188 Thread 0x00007f4c002fc800 288 3 java.lang.Class::getClassLoader (28 bytes) Event: 0.188 Thread 0x00007f4c002fc800 nmethod 288 0x00007f4be7ddb610 code [0x00007f4be7ddb840, 0x00007f4be7ddc090] Event: 0.190 Thread 0x00007f4c002fc800 289 3 java.util.zip.ZipFile$Source::hash_append (7 bytes) Event: 0.190 Thread 0x00007f4c002fc800 nmethod 289 0x00007f4be7ddc310 code [0x00007f4be7ddc4c0, 0x00007f4be7ddc5b0] Event: 0.190 Thread 0x00007f4c002fc800 290 1 java.util.jar.Attributes$Name::hashCode (5 bytes) Event: 0.190 Thread 0x00007f4c002fc800 nmethod 290 0x00007f4bef2d7890 code [0x00007f4bef2d7a40, 0x00007f4bef2d7af0] Event: 0.191 Thread 0x00007f4c002fa000 291 4 java.lang.Object:: (1 bytes) Event: 0.192 Thread 0x00007f4c002fa000 nmethod 291 0x00007f4bef2d7b90 code [0x00007f4bef2d7d20, 0x00007f4bef2d7db8] Event: 0.198 Thread 0x00007f4c002fc800 292 3 java.lang.StringLatin1::indexOf (121 bytes) Event: 0.198 Thread 0x00007f4c002fc800 nmethod 292 0x00007f4be7ddc610 code [0x00007f4be7ddc800, 0x00007f4be7ddccd0] GC Heap History (0 events): No events Deoptimization events (4 events): Event: 0.162 Thread 0x00007f4c0002a800 Uncommon trap: trap_request=0xffffff4d fr.pc=0x00007f4bef2cf9c8 relative=0x0000000000000d48 Event: 0.162 Thread 0x00007f4c0002a800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f4bef2cf9c8 method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 181 c2 Event: 0.162 Thread 0x00007f4c0002a800 DEOPT PACKING pc=0x00007f4bef2cf9c8 sp=0x00007f4c06cbc100 Event: 0.162 Thread 0x00007f4c0002a800 DEOPT UNPACKING pc=0x00007f4be78217a5 sp=0x00007f4c06cbc0a0 mode 2 Classes redefined (0 events): No events Internal exceptions (0 events): No events Events (20 events): Event: 0.170 Executing VM operation: Deoptimize done Event: 0.170 loading class sun/nio/fs/UnixFileKey Event: 0.170 loading class sun/nio/fs/UnixFileKey done Event: 0.170 loading class sun/net/www/protocol/jar/URLJarFile$URLJarFileEntry Event: 0.170 loading class sun/net/www/protocol/jar/URLJarFile$URLJarFileEntry done Event: 0.170 loading class sun/net/www/protocol/jar/JarURLConnection$JarURLInputStream Event: 0.170 loading class sun/net/www/protocol/jar/JarURLConnection$JarURLInputStream done Event: 0.171 loading class kotlin/io/ByteStreamsKt Event: 0.171 loading class kotlin/io/ByteStreamsKt done Event: 0.187 Executing VM operation: RevokeBias Event: 0.187 Executing VM operation: RevokeBias done Event: 0.187 loading class kotlin/io/CloseableKt Event: 0.187 loading class kotlin/io/CloseableKt done Event: 0.187 loading class java/io/FileOutputStream$1 Event: 0.187 loading class java/io/FileOutputStream$1 done Event: 0.189 Loaded shared library /tmp/libcimgui9269180519683231306.so Event: 0.189 loading class cimgui/internal/CImGui Event: 0.189 loading class cimgui/internal/CImGui done Event: 0.198 loading class cimgui/internal/CImGuiJNI Event: 0.198 loading class cimgui/internal/CImGuiJNI done Dynamic libraries: 413800000-452800000 rw-p 00000000 00:00 0 452800000-800000000 ---p 00000000 00:00 0 800000000-8000c0000 rw-p 00000000 00:00 0 8000c0000-840000000 ---p 00000000 00:00 0 564a1f41b000-564a1f41c000 r-xp 00000000 08:02 14972428 /usr/lib/jvm/jdk-11.0.9+11/bin/java 564a1f61c000-564a1f61d000 r--p 00001000 08:02 14972428 /usr/lib/jvm/jdk-11.0.9+11/bin/java 564a1f61d000-564a1f61e000 rw-p 00002000 08:02 14972428 /usr/lib/jvm/jdk-11.0.9+11/bin/java 564a209df000-564a20a00000 rw-p 00000000 00:00 0 [heap] 7f4b74000000-7f4b74021000 rw-p 00000000 00:00 0 7f4b74021000-7f4b78000000 ---p 00000000 00:00 0 7f4b7bd96000-7f4b7c000000 rw-p 00000000 00:00 0 7f4b7c000000-7f4b7c021000 rw-p 00000000 00:00 0 7f4b7c021000-7f4b80000000 ---p 00000000 00:00 0 7f4b80000000-7f4b80021000 rw-p 00000000 00:00 0 7f4b80021000-7f4b84000000 ---p 00000000 00:00 0 7f4b84000000-7f4b84021000 rw-p 00000000 00:00 0 7f4b84021000-7f4b88000000 ---p 00000000 00:00 0 7f4b88000000-7f4b88109000 rw-p 00000000 00:00 0 7f4b88109000-7f4b8c000000 ---p 00000000 00:00 0 7f4b8c000000-7f4b8c0be000 rw-p 00000000 00:00 0 7f4b8c0be000-7f4b90000000 ---p 00000000 00:00 0 7f4b90000000-7f4b90021000 rw-p 00000000 00:00 0 7f4b90021000-7f4b94000000 ---p 00000000 00:00 0 7f4b94000000-7f4b94021000 rw-p 00000000 00:00 0 7f4b94021000-7f4b98000000 ---p 00000000 00:00 0 7f4b98000000-7f4b980e7000 rw-p 00000000 00:00 0 7f4b980e7000-7f4b9c000000 ---p 00000000 00:00 0 7f4b9c000000-7f4b9c021000 rw-p 00000000 00:00 0 7f4b9c021000-7f4ba0000000 ---p 00000000 00:00 0 7f4ba0000000-7f4ba0021000 rw-p 00000000 00:00 0 7f4ba0021000-7f4ba4000000 ---p 00000000 00:00 0 7f4ba4000000-7f4ba4021000 rw-p 00000000 00:00 0 7f4ba4021000-7f4ba8000000 ---p 00000000 00:00 0 7f4ba8000000-7f4ba8021000 rw-p 00000000 00:00 0 7f4ba8021000-7f4bac000000 ---p 00000000 00:00 0 7f4bac000000-7f4bac021000 rw-p 00000000 00:00 0 7f4bac021000-7f4bb0000000 ---p 00000000 00:00 0 7f4bb0000000-7f4bb0021000 rw-p 00000000 00:00 0 7f4bb0021000-7f4bb4000000 ---p 00000000 00:00 0 7f4bb41d5000-7f4bb4326000 rw-p 00000000 00:00 0 7f4bb4326000-7f4bb433d000 r-xp 00000000 08:02 10225623 /lib/x86_64-linux-gnu/libgcc_s.so.1 7f4bb433d000-7f4bb453c000 ---p 00017000 08:02 10225623 /lib/x86_64-linux-gnu/libgcc_s.so.1 7f4bb453c000-7f4bb453d000 r--p 00016000 08:02 10225623 /lib/x86_64-linux-gnu/libgcc_s.so.1 7f4bb453d000-7f4bb453e000 rw-p 00017000 08:02 10225623 /lib/x86_64-linux-gnu/libgcc_s.so.1 7f4bb453e000-7f4bb46b7000 r-xp 00000000 08:02 1838560 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 7f4bb46b7000-7f4bb48b7000 ---p 00179000 08:02 1838560 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 7f4bb48b7000-7f4bb48c1000 r--p 00179000 08:02 1838560 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 7f4bb48c1000-7f4bb48c3000 rw-p 00183000 08:02 1838560 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25 7f4bb48c3000-7f4bb48c7000 rw-p 00000000 00:00 0 7f4bb48c7000-7f4bb4a91000 r-xp 00000000 08:02 7865870 /tmp/libcimgui9269180519683231306.so 7f4bb4a91000-7f4bb4c91000 ---p 001ca000 08:02 7865870 /tmp/libcimgui9269180519683231306.so 7f4bb4c91000-7f4bb4c92000 r--p 001ca000 08:02 7865870 /tmp/libcimgui9269180519683231306.so 7f4bb4c92000-7f4bb4c9c000 rw-p 001cb000 08:02 7865870 /tmp/libcimgui9269180519683231306.so 7f4bb4c9c000-7f4bb4ca1000 rw-p 00000000 00:00 0 7f4bb4ca1000-7f4bb4ca3000 r-xp 00000000 08:02 14972374 /usr/lib/jvm/jdk-11.0.9+11/lib/libextnet.so 7f4bb4ca3000-7f4bb4ea2000 ---p 00002000 08:02 14972374 /usr/lib/jvm/jdk-11.0.9+11/lib/libextnet.so 7f4bb4ea2000-7f4bb4ea3000 r--p 00001000 08:02 14972374 /usr/lib/jvm/jdk-11.0.9+11/lib/libextnet.so 7f4bb4ea3000-7f4bb4ea4000 rw-p 00002000 08:02 14972374 /usr/lib/jvm/jdk-11.0.9+11/lib/libextnet.so 7f4bb4ea4000-7f4bb4ea5000 ---p 00000000 00:00 0 7f4bb4ea5000-7f4bb4fa6000 rw-p 00000000 00:00 0 7f4bb4fa6000-7f4bb4faa000 ---p 00000000 00:00 0 7f4bb4faa000-7f4bb50a7000 rw-p 00000000 00:00 0 7f4bb50a7000-7f4bb50ab000 ---p 00000000 00:00 0 7f4bb50ab000-7f4bb51a8000 rw-p 00000000 00:00 0 7f4bb51a8000-7f4bb51be000 r-xp 00000000 08:02 14972334 /usr/lib/jvm/jdk-11.0.9+11/lib/libnet.so 7f4bb51be000-7f4bb53bd000 ---p 00016000 08:02 14972334 /usr/lib/jvm/jdk-11.0.9+11/lib/libnet.so 7f4bb53bd000-7f4bb53be000 r--p 00015000 08:02 14972334 /usr/lib/jvm/jdk-11.0.9+11/lib/libnet.so 7f4bb53be000-7f4bb53bf000 rw-p 00016000 08:02 14972334 /usr/lib/jvm/jdk-11.0.9+11/lib/libnet.so 7f4bb53bf000-7f4bb53ce000 r-xp 00000000 08:02 14972349 /usr/lib/jvm/jdk-11.0.9+11/lib/libnio.so 7f4bb53ce000-7f4bb55ce000 ---p 0000f000 08:02 14972349 /usr/lib/jvm/jdk-11.0.9+11/lib/libnio.so 7f4bb55ce000-7f4bb55cf000 r--p 0000f000 08:02 14972349 /usr/lib/jvm/jdk-11.0.9+11/lib/libnio.so 7f4bb55cf000-7f4bb55d0000 rw-p 00010000 08:02 14972349 /usr/lib/jvm/jdk-11.0.9+11/lib/libnio.so 7f4bb55d0000-7f4bb55d4000 ---p 00000000 00:00 0 7f4bb55d4000-7f4bb56d1000 rw-p 00000000 00:00 0 7f4bb56d1000-7f4bb56d5000 ---p 00000000 00:00 0 7f4bb56d5000-7f4bb57d2000 rw-p 00000000 00:00 0 7f4bb57d2000-7f4bb57d6000 ---p 00000000 00:00 0 7f4bb57d6000-7f4bb58d3000 rw-p 00000000 00:00 0 7f4bb58d3000-7f4bb58d7000 ---p 00000000 00:00 0 7f4bb58d7000-7f4bb59d4000 rw-p 00000000 00:00 0 7f4bb59d4000-7f4bb59d8000 ---p 00000000 00:00 0 7f4bb59d8000-7f4bb5ad5000 rw-p 00000000 00:00 0 7f4bb5ad5000-7f4bb5ad9000 ---p 00000000 00:00 0 7f4bb5ad9000-7f4bb5bd6000 rw-p 00000000 00:00 0 7f4bb5bd6000-7f4bb5eff000 r--p 00000000 08:02 1835024 /usr/lib/locale/locale-archive 7f4bb5eff000-7f4bb5f03000 ---p 00000000 00:00 0 7f4bb5f03000-7f4bb8000000 rw-p 00000000 00:00 0 7f4bb8000000-7f4bb8021000 rw-p 00000000 00:00 0 7f4bb8021000-7f4bbc000000 ---p 00000000 00:00 0 7f4bbc0f5000-7f4bbc0f9000 ---p 00000000 00:00 0 7f4bbc0f9000-7f4bbc1f6000 rw-p 00000000 00:00 0 7f4bbc1f6000-7f4bbc1f7000 ---p 00000000 00:00 0 7f4bbc1f7000-7f4bbcab8000 rw-p 00000000 00:00 0 7f4bbcab8000-7f4bbcaf8000 ---p 00000000 00:00 0 7f4bbcaf8000-7f4bbdab8000 rw-p 00000000 00:00 0 7f4bbdab8000-7f4bcc618000 ---p 00000000 00:00 0 7f4bcc618000-7f4bcd5d8000 rw-p 00000000 00:00 0 7f4bcd5d8000-7f4bdc138000 ---p 00000000 00:00 0 7f4bdc138000-7f4bdc330000 rw-p 00000000 00:00 0 7f4bdc330000-7f4bde09c000 ---p 00000000 00:00 0 7f4bde09c000-7f4bde294000 rw-p 00000000 00:00 0 7f4bde294000-7f4be0000000 ---p 00000000 00:00 0 7f4be0000000-7f4be0021000 rw-p 00000000 00:00 0 7f4be0021000-7f4be4000000 ---p 00000000 00:00 0 7f4be40b2000-7f4be418e000 rw-p 00000000 00:00 0 7f4be418e000-7f4be418f000 ---p 00000000 00:00 0 7f4be418f000-7f4be4290000 rw-p 00000000 00:00 0 7f4be4290000-7f4be4291000 ---p 00000000 00:00 0 7f4be4291000-7f4be4b9a000 rw-p 00000000 00:00 0 7f4be4b9a000-7f4be4b9b000 ---p 00000000 00:00 0 7f4be4b9b000-7f4be4c9c000 rw-p 00000000 00:00 0 7f4be4c9c000-7f4be4c9d000 ---p 00000000 00:00 0 7f4be4c9d000-7f4be509a000 rw-p 00000000 00:00 0 7f4be509a000-7f4be6e06000 ---p 00000000 00:00 0 7f4be6e06000-7f4be760e000 rw-p 00000000 00:00 0 7f4be760e000-7f4be760f000 ---p 00000000 00:00 0 7f4be760f000-7f4be7715000 rw-p 00000000 00:00 0 7f4be7715000-7f4be77fb000 ---p 00000000 00:00 0 7f4be77fb000-7f4be7a6b000 rwxp 00000000 00:00 0 7f4be7a6b000-7f4be7d8c000 ---p 00000000 00:00 0 7f4be7d8c000-7f4be7ffc000 rwxp 00000000 00:00 0 7f4be7ffc000-7f4bef2c3000 ---p 00000000 00:00 0 7f4bef2c3000-7f4bef533000 rwxp 00000000 00:00 0 7f4bef533000-7f4bf67fb000 ---p 00000000 00:00 0 7f4bf67fb000-7f4bfef62000 r--s 00000000 08:02 14972372 /usr/lib/jvm/jdk-11.0.9+11/lib/modules 7f4bfef62000-7f4bfef69000 r-xp 00000000 08:02 14972333 /usr/lib/jvm/jdk-11.0.9+11/lib/libzip.so 7f4bfef69000-7f4bff168000 ---p 00007000 08:02 14972333 /usr/lib/jvm/jdk-11.0.9+11/lib/libzip.so 7f4bff168000-7f4bff169000 r--p 00006000 08:02 14972333 /usr/lib/jvm/jdk-11.0.9+11/lib/libzip.so 7f4bff169000-7f4bff16a000 rw-p 00007000 08:02 14972333 /usr/lib/jvm/jdk-11.0.9+11/lib/libzip.so 7f4bff16a000-7f4bff175000 r-xp 00000000 08:02 10228414 /lib/x86_64-linux-gnu/libnss_files-2.27.so 7f4bff175000-7f4bff374000 ---p 0000b000 08:02 10228414 /lib/x86_64-linux-gnu/libnss_files-2.27.so 7f4bff374000-7f4bff375000 r--p 0000a000 08:02 10228414 /lib/x86_64-linux-gnu/libnss_files-2.27.so 7f4bff375000-7f4bff376000 rw-p 0000b000 08:02 10228414 /lib/x86_64-linux-gnu/libnss_files-2.27.so 7f4bff376000-7f4bff37c000 rw-p 00000000 00:00 0 7f4bff37c000-7f4bff393000 r-xp 00000000 08:02 10228407 /lib/x86_64-linux-gnu/libnsl-2.27.so 7f4bff393000-7f4bff592000 ---p 00017000 08:02 10228407 /lib/x86_64-linux-gnu/libnsl-2.27.so 7f4bff592000-7f4bff593000 r--p 00016000 08:02 10228407 /lib/x86_64-linux-gnu/libnsl-2.27.so 7f4bff593000-7f4bff594000 rw-p 00017000 08:02 10228407 /lib/x86_64-linux-gnu/libnsl-2.27.so 7f4bff594000-7f4bff596000 rw-p 00000000 00:00 0 7f4bff596000-7f4bff5a1000 r-xp 00000000 08:02 10228430 /lib/x86_64-linux-gnu/libnss_nis-2.27.so 7f4bff5a1000-7f4bff7a0000 ---p 0000b000 08:02 10228430 /lib/x86_64-linux-gnu/libnss_nis-2.27.so 7f4bff7a0000-7f4bff7a1000 r--p 0000a000 08:02 10228430 /lib/x86_64-linux-gnu/libnss_nis-2.27.so 7f4bff7a1000-7f4bff7a2000 rw-p 0000b000 08:02 10228430 /lib/x86_64-linux-gnu/libnss_nis-2.27.so 7f4bff7a2000-7f4bff7aa000 r-xp 00000000 08:02 10228408 /lib/x86_64-linux-gnu/libnss_compat-2.27.so 7f4bff7aa000-7f4bff9aa000 ---p 00008000 08:02 10228408 /lib/x86_64-linux-gnu/libnss_compat-2.27.so 7f4bff9aa000-7f4bff9ab000 r--p 00008000 08:02 10228408 /lib/x86_64-linux-gnu/libnss_compat-2.27.so 7f4bff9ab000-7f4bff9ac000 rw-p 00009000 08:02 10228408 /lib/x86_64-linux-gnu/libnss_compat-2.27.so 7f4bff9ac000-7f4bff9b6000 r-xp 00000000 08:02 14972376 /usr/lib/jvm/jdk-11.0.9+11/lib/libinstrument.so 7f4bff9b6000-7f4bffbb5000 ---p 0000a000 08:02 14972376 /usr/lib/jvm/jdk-11.0.9+11/lib/libinstrument.so 7f4bffbb5000-7f4bffbb6000 r--p 00009000 08:02 14972376 /usr/lib/jvm/jdk-11.0.9+11/lib/libinstrument.so 7f4bffbb6000-7f4bffbb7000 rw-p 0000a000 08:02 14972376 /usr/lib/jvm/jdk-11.0.9+11/lib/libinstrument.so 7f4bffbb7000-7f4bffbd2000 r-xp 00000000 08:02 14972328 /usr/lib/jvm/jdk-11.0.9+11/lib/libjimage.so 7f4bffbd2000-7f4bffdd2000 ---p 0001b000 08:02 14972328 /usr/lib/jvm/jdk-11.0.9+11/lib/libjimage.so 7f4bffdd2000-7f4bffdd4000 r--p 0001b000 08:02 14972328 /usr/lib/jvm/jdk-11.0.9+11/lib/libjimage.so 7f4bffdd4000-7f4bffdd5000 rw-p 0001d000 08:02 14972328 /usr/lib/jvm/jdk-11.0.9+11/lib/libjimage.so 7f4bffdd5000-7f4bffdfe000 r-xp 00000000 08:02 14972377 /usr/lib/jvm/jdk-11.0.9+11/lib/libjava.so 7f4bffdfe000-7f4bffffd000 ---p 00029000 08:02 14972377 /usr/lib/jvm/jdk-11.0.9+11/lib/libjava.so 7f4bffffd000-7f4bffffe000 r--p 00028000 08:02 14972377 /usr/lib/jvm/jdk-11.0.9+11/lib/libjava.so 7f4bffffe000-7f4bfffff000 rw-p 00029000 08:02 14972377 /usr/lib/jvm/jdk-11.0.9+11/lib/libjava.so 7f4bfffff000-7f4c00000000 rw-p 00000000 00:00 0 7f4c00000000-7f4c00648000 rw-p 00000000 00:00 0 7f4c00648000-7f4c04000000 ---p 00000000 00:00 0 7f4c0403a000-7f4c0403f000 rw-p 00000000 00:00 0 7f4c0403f000-7f4c04125000 ---p 00000000 00:00 0 7f4c04125000-7f4c04136000 r-xp 00000000 08:02 14972335 /usr/lib/jvm/jdk-11.0.9+11/lib/libverify.so 7f4c04136000-7f4c04335000 ---p 00011000 08:02 14972335 /usr/lib/jvm/jdk-11.0.9+11/lib/libverify.so 7f4c04335000-7f4c04337000 r--p 00010000 08:02 14972335 /usr/lib/jvm/jdk-11.0.9+11/lib/libverify.so 7f4c04337000-7f4c04338000 rw-p 00012000 08:02 14972335 /usr/lib/jvm/jdk-11.0.9+11/lib/libverify.so 7f4c04338000-7f4c0433f000 r-xp 00000000 08:02 10228445 /lib/x86_64-linux-gnu/librt-2.27.so 7f4c0433f000-7f4c0453e000 ---p 00007000 08:02 10228445 /lib/x86_64-linux-gnu/librt-2.27.so 7f4c0453e000-7f4c0453f000 r--p 00006000 08:02 10228445 /lib/x86_64-linux-gnu/librt-2.27.so 7f4c0453f000-7f4c04540000 rw-p 00007000 08:02 10228445 /lib/x86_64-linux-gnu/librt-2.27.so 7f4c04540000-7f4c046dd000 r-xp 00000000 08:02 10228350 /lib/x86_64-linux-gnu/libm-2.27.so 7f4c046dd000-7f4c048dc000 ---p 0019d000 08:02 10228350 /lib/x86_64-linux-gnu/libm-2.27.so 7f4c048dc000-7f4c048dd000 r--p 0019c000 08:02 10228350 /lib/x86_64-linux-gnu/libm-2.27.so 7f4c048dd000-7f4c048de000 rw-p 0019d000 08:02 10228350 /lib/x86_64-linux-gnu/libm-2.27.so 7f4c048de000-7f4c05b30000 r-xp 00000000 08:02 14972325 /usr/lib/jvm/jdk-11.0.9+11/lib/server/libjvm.so 7f4c05b30000-7f4c05d2f000 ---p 01252000 08:02 14972325 /usr/lib/jvm/jdk-11.0.9+11/lib/server/libjvm.so 7f4c05d2f000-7f4c05df1000 r--p 01251000 08:02 14972325 /usr/lib/jvm/jdk-11.0.9+11/lib/server/libjvm.so 7f4c05df1000-7f4c05e2c000 rw-p 01313000 08:02 14972325 /usr/lib/jvm/jdk-11.0.9+11/lib/server/libjvm.so 7f4c05e2c000-7f4c05e83000 rw-p 00000000 00:00 0 7f4c05e83000-7f4c0606a000 r-xp 00000000 08:02 10228322 /lib/x86_64-linux-gnu/libc-2.27.so 7f4c0606a000-7f4c0626a000 ---p 001e7000 08:02 10228322 /lib/x86_64-linux-gnu/libc-2.27.so 7f4c0626a000-7f4c0626e000 r--p 001e7000 08:02 10228322 /lib/x86_64-linux-gnu/libc-2.27.so 7f4c0626e000-7f4c06270000 rw-p 001eb000 08:02 10228322 /lib/x86_64-linux-gnu/libc-2.27.so 7f4c06270000-7f4c06274000 rw-p 00000000 00:00 0 7f4c06274000-7f4c06277000 r-xp 00000000 08:02 10228349 /lib/x86_64-linux-gnu/libdl-2.27.so 7f4c06277000-7f4c06476000 ---p 00003000 08:02 10228349 /lib/x86_64-linux-gnu/libdl-2.27.so 7f4c06476000-7f4c06477000 r--p 00002000 08:02 10228349 /lib/x86_64-linux-gnu/libdl-2.27.so 7f4c06477000-7f4c06478000 rw-p 00003000 08:02 10228349 /lib/x86_64-linux-gnu/libdl-2.27.so 7f4c06478000-7f4c06488000 r-xp 00000000 08:02 14972343 /usr/lib/jvm/jdk-11.0.9+11/lib/jli/libjli.so 7f4c06488000-7f4c06687000 ---p 00010000 08:02 14972343 /usr/lib/jvm/jdk-11.0.9+11/lib/jli/libjli.so 7f4c06687000-7f4c06688000 r--p 0000f000 08:02 14972343 /usr/lib/jvm/jdk-11.0.9+11/lib/jli/libjli.so 7f4c06688000-7f4c06689000 rw-p 00010000 08:02 14972343 /usr/lib/jvm/jdk-11.0.9+11/lib/jli/libjli.so 7f4c06689000-7f4c066a3000 r-xp 00000000 08:02 10228435 /lib/x86_64-linux-gnu/libpthread-2.27.so 7f4c066a3000-7f4c068a2000 ---p 0001a000 08:02 10228435 /lib/x86_64-linux-gnu/libpthread-2.27.so 7f4c068a2000-7f4c068a3000 r--p 00019000 08:02 10228435 /lib/x86_64-linux-gnu/libpthread-2.27.so 7f4c068a3000-7f4c068a4000 rw-p 0001a000 08:02 10228435 /lib/x86_64-linux-gnu/libpthread-2.27.so 7f4c068a4000-7f4c068a8000 rw-p 00000000 00:00 0 7f4c068a8000-7f4c068c4000 r-xp 00000000 08:02 10228515 /lib/x86_64-linux-gnu/libz.so.1.2.11 7f4c068c4000-7f4c06ac3000 ---p 0001c000 08:02 10228515 /lib/x86_64-linux-gnu/libz.so.1.2.11 7f4c06ac3000-7f4c06ac4000 r--p 0001b000 08:02 10228515 /lib/x86_64-linux-gnu/libz.so.1.2.11 7f4c06ac4000-7f4c06ac5000 rw-p 0001c000 08:02 10228515 /lib/x86_64-linux-gnu/libz.so.1.2.11 7f4c06ac5000-7f4c06aee000 r-xp 00000000 08:02 10228316 /lib/x86_64-linux-gnu/ld-2.27.so 7f4c06b40000-7f4c06bbe000 rw-p 00000000 00:00 0 7f4c06bbe000-7f4c06bc2000 ---p 00000000 00:00 0 7f4c06bc2000-7f4c06cc3000 rw-p 00000000 00:00 0 7f4c06cd8000-7f4c06cdd000 rw-p 00000000 00:00 0 7f4c06cdd000-7f4c06ce4000 ---p 00000000 00:00 0 7f4c06ce4000-7f4c06cec000 rw-s 00000000 08:02 7865869 /tmp/hsperfdata_breandan/31689 7f4c06cec000-7f4c06ced000 ---p 00000000 00:00 0 7f4c06ced000-7f4c06cee000 r--p 00000000 00:00 0 7f4c06cee000-7f4c06cef000 r--p 00029000 08:02 10228316 /lib/x86_64-linux-gnu/ld-2.27.so 7f4c06cef000-7f4c06cf0000 rw-p 0002a000 08:02 10228316 /lib/x86_64-linux-gnu/ld-2.27.so 7f4c06cf0000-7f4c06cf1000 rw-p 00000000 00:00 0 7fffb1b2c000-7fffb1b4e000 rw-p 00000000 00:00 0 [stack] 7fffb1bcb000-7fffb1bce000 r--p 00000000 00:00 0 [vvar] 7fffb1bce000-7fffb1bd0000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] VM Arguments: jvm_args: -javaagent:/home/breandan/.local/share/JetBrains/Toolbox/apps/IDEA-U/ch-0/211.6305.21/lib/idea_rt.jar=32923:/home/breandan/.local/share/JetBrains/Toolbox/apps/IDEA-U/ch-0/211.6305.21/bin -Dfile.encoding=UTF-8 java_command: HelloImGuiKt java_class_path (initial): /home/breandan/IdeaProjects/HelloImGui/build/classes/kotlin/main:/home/breandan/.gradle/caches/modules-2/files-2.1/com.kotlin-imgui/cimgui-jvmlinuxx64/0.1.8/398cb801e2f92060eb3729fd9717f2ae2ef1dff6/cimgui-jvmlinuxx64-0.1.8.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/com.kotlin-imgui/cimgui-jvmmacosx64/0.1.8/c4d27684b75bf8b84d560a2f2145d9eed1fab5d6/cimgui-jvmmacosx64-0.1.8.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/com.kotlin-imgui/cimgui-jvmmingwx64/0.1.8/2b1f2f0a0e579d64b8b903e82723827bea75bd65/cimgui-jvmmingwx64-0.1.8.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.4.21/3ad7f99fb330947a12451ea16767d192d763600a/kotlin-stdlib-jdk8-1.4.21.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/com.kotlin-imgui/imgui-jvm/0.1.8/a87dbec3a3b6c8aac44547ad764722c0ef61ff44/imgui-jvm-0.1.8.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/com.kotlin-imgui/imgui-glfw-jvm/0.1.8/d3ba51d074e8de92e3f6946c640904d87850bb2b/imgui-glfw-jvm-0.1.8.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/com.kotlin-imgui/imgui-opengl-jvm/0.1.8/add85b51768d7d9c7d1a9dd97d770420a723a6f9/imgui-opengl-jvm-0.1.8.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.4.21/26b6082f9296911bdcb8e72a7cc68692c7025a03/kotlin-stdlib-jdk7-1.4.21.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.4.21/4a668382d7c38688d3490afde93b6a113ed46698/kotlin-stdlib-1.4.21.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-common/1.4.21/7f48a062aa4b53215998780f7c245a4276828e1d/kotlin-stdlib-common-1.4.21.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/org.jetbrains/annotations/13.0/919f0dfe192fb4e063e7dacadee7f8bb9a2672a9/annotations-13.0.jar:/home/breandan/.gradle/caches/modules-2/files-2.1/com.kgl/kgl-glfw-jvm/0.1.10/8121485f230c93c41c5a36554f43d8cf6a456b03/kgl-glfw-jvm-0.1.10.jar:/home/breand Launcher Type: SUN_STANDARD [Global flags] intx CICompilerCount = 4 {product} {ergonomic} uint ConcGCThreads = 2 {product} {ergonomic} uint G1ConcRefinementThreads = 8 {product} {ergonomic} size_t G1HeapRegionSize = 4194304 {product} {ergonomic} uintx GCDrainStackTargetSize = 64 {product} {ergonomic} size_t InitialHeapSize = 1056964608 {product} {ergonomic} size_t MarkStackSize = 4194304 {product} {ergonomic} size_t MaxHeapSize = 16852713472 {product} {ergonomic} size_t MaxNewSize = 10108272640 {product} {ergonomic} size_t MinHeapDeltaBytes = 4194304 {product} {ergonomic} uintx NonNMethodCodeHeapSize = 5836300 {pd product} {ergonomic} uintx NonProfiledCodeHeapSize = 122910970 {pd product} {ergonomic} uintx ProfiledCodeHeapSize = 122910970 {pd product} {ergonomic} uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} bool SegmentedCodeCache = true {product} {ergonomic} bool UseCompressedClassPointers = true {lp64_product} {ergonomic} bool UseCompressedOops = true {lp64_product} {ergonomic} bool UseG1GC = true {product} {ergonomic} Logging: Log output configuration: #0: stdout all=warning uptime,level,tags #1: stderr all=off uptime,level,tags Environment Variables: PATH=/home/breandan/.cargo/bin:/home/breandan/.local/bin:/home/breandan/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin USERNAME=breandan SHELL=/bin/bash DISPLAY=:1 LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 Signal Handlers: SIGSEGV: [libjvm.so+0xf2b2e0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGBUS: [libjvm.so+0xf2b2e0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGFPE: [libjvm.so+0xf2b2e0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGPIPE: [libjvm.so+0xc4e590], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGXFSZ: [libjvm.so+0xc4e590], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGILL: [libjvm.so+0xf2b2e0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGUSR2: [libjvm.so+0xc4e430], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO SIGHUP: [libjvm.so+0xc4e790], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGINT: [libjvm.so+0xc4e790], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGTERM: [libjvm.so+0xc4e790], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO SIGQUIT: [libjvm.so+0xc4e790], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO --------------- S Y S T E M --------------- OS:DISTRIB_ID=Ubuntu DISTRIB_RELEASE=18.04 DISTRIB_CODENAME=bionic DISTRIB_DESCRIPTION="Ubuntu 18.04.5 LTS" uname:Linux 4.15.0-132-generic #136-Ubuntu SMP Tue Jan 12 14:58:42 UTC 2021 x86_64 OS uptime: 36 days 20:16 hours libc:glibc 2.27 NPTL 2.27 rlimit (soft/hard): STACK 8192k/infinity , CORE 0k/infinity , NPROC 256404/256404 , NOFILE 1048576/1048576 , AS infinity/infinity , CPU infinity/infinity , DATA infinity/infinity , FSIZE infinity/infinity , MEMLOCK 65536k/65536k load average:6.66 3.77 2.18 /proc/meminfo: MemTotal: 65821252 kB MemFree: 15359620 kB MemAvailable: 37871344 kB Buffers: 2910056 kB Cached: 20295132 kB SwapCached: 52 kB Active: 34641092 kB Inactive: 13016976 kB Active(anon): 24331060 kB Inactive(anon): 1643684 kB Active(file): 10310032 kB Inactive(file): 11373292 kB Unevictable: 512 kB Mlocked: 512 kB SwapTotal: 2097148 kB SwapFree: 2095356 kB Dirty: 26912 kB Writeback: 8 kB AnonPages: 24453296 kB Mapped: 4271944 kB Shmem: 1546588 kB Slab: 1902868 kB SReclaimable: 1552020 kB SUnreclaim: 350848 kB KernelStack: 42876 kB PageTables: 201244 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 35007772 kB Committed_AS: 46381200 kB VmallocTotal: 34359738367 kB VmallocUsed: 0 kB VmallocChunk: 0 kB HardwareCorrupted: 0 kB AnonHugePages: 0 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB CmaTotal: 0 kB CmaFree: 0 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB DirectMap4k: 3425088 kB DirectMap2M: 59340800 kB DirectMap1G: 5242880 kB /sys/kernel/mm/transparent_hugepage/enabled: always [madvise] never /sys/kernel/mm/transparent_hugepage/defrag (defrag/compaction efforts parameter): always defer defer+madvise [madvise] never /proc/sys/kernel/threads-max (system-wide limit on the number of threads): 512808 /proc/sys/vm/max_map_count (maximum number of memory map areas a process may have): 65530 /proc/sys/kernel/pid_max (system-wide limit on number of process identifiers): 32768 container (cgroup) information: container_type: cgroupv1 cpu_cpuset_cpus: 0-7 cpu_memory_nodes: 0 active_processor_count: 8 cpu_quota: -1 cpu_period: 100000 cpu_shares: -1 memory_limit_in_bytes: -1 memory_and_swap_limit_in_bytes: -2 memory_soft_limit_in_bytes: -1 memory_usage_in_bytes: 43920175104 memory_max_usage_in_bytes: 60297883648 Steal ticks since vm start: 0 Steal ticks percentage since vm start: 0.000 CPU:total 8 (initial active 8) (4 cores per cpu, 2 threads per core) family 6 model 94 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, rtm, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx, fma CPU Model and flags from /proc/cpuinfo: model name : Intel(R) Xeon(R) CPU E3-1505M v5 @ 2.80GHz flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d Online cpus: 0-7 Offline cpus: BIOS frequency limitation: Frequency switch latency (ns): 0 Available cpu frequencies: Current governor: powersave Core performance/turbo boost: Memory: 4k page, physical 65821252k(15359620k free), swap 2097148k(2095356k free) vm_info: OpenJDK 64-Bit Server VM (11.0.9+11) for linux-amd64 JRE (11.0.9+11), built on Oct 24 2020 15:17:19 by "" with gcc 7.5.0 END. ```
nlbuescher commented 3 years ago

ImGui needs OpenGL and GLFW to be initialized to work properly, so that example wouldn't work on any machine.

breandan commented 3 years ago

Ah my bad, should I try installing those dependencies or is there another example you would like me to try?

nlbuescher commented 3 years ago

There's a samples folder in the repository. Maybe you can try that?

breandan commented 3 years ago

When I run ../gradlew run from the samples directory, I receive the error posted above. Maybe there is a standalone project I can try? Happy to do some fiddling with the build script, I'm just not very familiar with the workflow for graphics programming so not sure where to start. Sorry for the trouble!

nlbuescher commented 3 years ago

Running the following, I have no errors on a fresh, fully updated Ubuntu 18.04 VM:

imgui-test.zip

screenshot

nlbuescher commented 3 years ago

please let me know if that test project works for you.

breandan commented 3 years ago

I can confirm the imgui-test project works, thank you again for all the help @nlbuescher @Dominaezzz!