libgdx / libgdx

Desktop/Android/HTML5/iOS Java game development framework
http://www.libgdx.com/
Apache License 2.0
23.31k stars 6.44k forks source link

Pixmap.drawline causes JVM crash from com.badlogic.gdx.graphics.g2d.Gdx2DPixmap::getPixel #5395

Closed EtK2000 closed 6 years ago

EtK2000 commented 6 years ago

Issue details

I have a function which generates heightmaps for me based off parameters. When I try to build a Mesh from the Texture the whole JVM crashes. This only happens when Texture size >= 256x256.

Reproduction steps/code

Randomly generate a Texture of the given size. The resulting Texture displays in an Actor, but when I try to generate a heightmap terrain from it I get a crash. This is how I try to load the heightmap:

TerrainChunk(int width, int height, float heightModifier, TextureRegion tr) {
    if (width * height > Short.MAX_VALUE)
        throw new IllegalArgumentException("Chunk size too big, width*height must be <= 32767");

    heightScale = 10 * Math.max(1, heightModifier);

    this.heightMap = new float[width * height];
    this.width = (short) width;
    this.height = (short) height;
    this.vertices = new float[heightMap.length * vertexSize];
    this.indices = new short[heightMap.length * 6];
    boolean shouldDispose = !tr.getTexture().getTextureData().isPrepared();
    if (shouldDispose)
        tr.getTexture().getTextureData().prepare();
    Pixmap heightmap = tr.getTexture().getTextureData().consumePixmap();
    Color color = new Color();

    for (int y = 0, idh = 0; y < tr.getRegionHeight(); y++) {
        for (int x = 0; x < tr.getRegionWidth(); x++) {
            Color.rgba8888ToColor(color, heightmap.getPixel(tr.getRegionX() + x, tr.getRegionY() + y));
            heightMap[idh++] = color.g;
        }
    }
    if (shouldDispose)
        heightmap.dispose();

    buildIndices();
    buildVertices();

    calcNormals();
}

Version of LibGDX and/or relevant dependencies

1.9.9

Stacktrace

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000065ac7081, pid=9992, tid=0x000000000000118c
#
# JRE version: Java(TM) SE Runtime Environment (8.0_181-b13) (build 1.8.0_181-b13)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.181-b13 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C  [gdx64.dll+0x7081]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

---------------  T H R E A D  ---------------

Current thread (0x000000001c038800):  JavaThread "LWJGL Application" [_thread_in_native, id=4492, stack(0x000000001d870000,0x000000001d970000)]

siginfo: ExceptionCode=0xc0000005, reading address 0x00000000372d1000

Registers:
RAX=0x0000000000ffff00, RBX=0x000000002a659250, RCX=0x00000000372d0ffe, RDX=0x0000000000ff0000
RSP=0x000000001d96ed78, RBP=0x000000001d96ee20, RSI=0x00000000d678de10, RDI=0x000000002c6ac170
R8 =0x0000000000000002, R9 =0x00000000372d0080, R10=0x0000000002b021c9, R11=0x00000000d678de10
R12=0x0000000000000000, R13=0x000000001d96ee78, R14=0x000000001d96ee08, R15=0x000000001c038800
RIP=0x0000000065ac7081, EFLAGS=0x0000000000010206

Top of Stack: (sp=0x000000001d96ed78)
0x000000001d96ed78:   0000000065ad2289 ffffffffffffffff
0x000000001d96ed88:   000000001e1b9410 000000001d22cd68
0x000000001d96ed98:   00000000d678de10 000000001d22cd68
0x000000001d96eda8:   0000000002b02247 0000000002497e85
0x000000001d96edb8:   00000000000001b8 000000001d96ee68
0x000000001d96edc8:   0000000002a8b94c 0000000000000003
0x000000001d96edd8:   000000001e1b8030 000000002c6127c0
0x000000001d96ede8:   000000001e1b4128 00000000d679d020
0x000000001d96edf8:   00000000024aaafd 000000001d96ee68
0x000000001d96ee08:   0000000081c094d0 0000000002497e40
0x000000001d96ee18:   0000000002497e40 00000000d678de10
0x000000001d96ee28:   0000000002b035b4 00000000d678ddf0
0x000000001d96ee38:   000000001d96ee78 0000000300000002
0x000000001d96ee48:   000000002c6aaac8 000000001bf95688
0x000000001d96ee58:   0000000000000000 000000001d96eed8
0x000000001d96ee68:   0000000002497e40 0000000002497e40 

Instructions: (pc=0x0000000065ac7081)
0x0000000065ac7061:   b7 01 66 c1 c0 08 0f b7 c0 c3 0f 1f 44 00 00 0f
0x0000000065ac7071:   b6 01 c1 e0 10 89 c2 0f b6 41 01 c1 e0 08 09 d0
0x0000000065ac7081:   0f b6 51 02 09 d0 c3 0f 1f 84 00 00 00 00 00 8b
0x0000000065ac7091:   01 0f c8 c3 90 66 2e 0f 1f 84 00 00 00 00 00 0f 

Register to memory mapping:

RAX=0x0000000000ffff00 is an unknown value
RBX=0x000000002a659250 is an unknown value
RCX=0x00000000372d0ffe is an unknown value
RDX=0x0000000000ff0000 is an unknown value
RSP=0x000000001d96ed78 is pointing into the stack for thread: 0x000000001c038800
RBP=0x000000001d96ee20 is pointing into the stack for thread: 0x000000001c038800
RSI=0x00000000d678de10 is an oop
com.badlogic.gdx.graphics.g2d.Gdx2DPixmap 
 - klass: 'com/badlogic/gdx/graphics/g2d/Gdx2DPixmap'
RDI=0x000000002c6ac170 is pointing into metadata
R8 =0x0000000000000002 is an unknown value
R9 =0x00000000372d0080 is an unknown value
R10=0x0000000002b021c9 is at entry_point+73 in (nmethod*)0x0000000002b02010
R11=0x00000000d678de10 is an oop
com.badlogic.gdx.graphics.g2d.Gdx2DPixmap 
 - klass: 'com/badlogic/gdx/graphics/g2d/Gdx2DPixmap'
R12=0x0000000000000000 is an unknown value
R13=0x000000001d96ee78 is pointing into the stack for thread: 0x000000001c038800
R14=0x000000001d96ee08 is pointing into the stack for thread: 0x000000001c038800
R15=0x000000001c038800 is a thread

Stack: [0x000000001d870000,0x000000001d970000],  sp=0x000000001d96ed78,  free space=1019k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C  [gdx64.dll+0x7081]
C  [gdx64.dll+0x12289]
C  0x0000000002b02247

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
J 1817  com.badlogic.gdx.graphics.g2d.Gdx2DPixmap.getPixel(JII)I (0 bytes) @ 0x0000000002b021c9 [0x0000000002b02180+0x49]
J 1836 C2 com.badlogic.gdx.graphics.Pixmap.getPixel(II)I (10 bytes) @ 0x0000000002b035b4 [0x0000000002b03560+0x54]
j  com.etk2000.mygame.client.world.Terrain$TerrainChunk.<init>(IIFLcom/badlogic/gdx/graphics/g2d/TextureRegion;)V+184
j  com.etk2000.mygame.client.world.Terrain.<init>(Lcom/badlogic/gdx/graphics/Texture;IIF[Ljava/lang/String;)V+197
j  com.etk2000.mygame.client.screen.__Test__Dgen.lambda$1()V+101
j  com.etk2000.mygame.client.screen.__Test__Dgen$$Lambda$94.run()V+4
j  com.etk2000.mygame.client.util.Util$11.clicked(Lcom/badlogic/gdx/scenes/scene2d/InputEvent;FF)V+29
j  com.badlogic.gdx.scenes.scene2d.utils.ClickListener.touchUp(Lcom/badlogic/gdx/scenes/scene2d/InputEvent;FFII)V+108
J 2613 C1 com.badlogic.gdx.scenes.scene2d.InputListener.handle(Lcom/badlogic/gdx/scenes/scene2d/Event;)Z (320 bytes) @ 0x0000000002db029c [0x0000000002daf200+0x109c]
j  com.badlogic.gdx.scenes.scene2d.Stage.touchUp(IIII)Z+213
J 2794 C1 com.badlogic.gdx.backends.lwjgl.LwjglInputEx.processEvents()V (448 bytes) @ 0x0000000002e693d4 [0x0000000002e68760+0xc74]
j  com.badlogic.gdx.backends.lwjgl.LwjglApplicationEx.mainLoop()V+588
j  com.badlogic.gdx.backends.lwjgl.LwjglApplicationEx$1.run()V+27
v  ~StubRoutines::call_stub

---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x000000001adf5800 JavaThread "Timer" daemon [_thread_blocked, id=256, stack(0x000000003b220000,0x000000003b320000)]
  0x000000001c959800 JavaThread "LWJGL Timer" daemon [_thread_blocked, id=13284, stack(0x000000003b120000,0x000000003b220000)]
  0x0000000002394800 JavaThread "DestroyJavaVM" [_thread_blocked, id=11892, stack(0x0000000002280000,0x0000000002380000)]
=>0x000000001c038800 JavaThread "LWJGL Application" [_thread_in_native, id=4492, stack(0x000000001d870000,0x000000001d970000)]
  0x000000001aa36800 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2128, stack(0x000000001b480000,0x000000001b580000)]
  0x000000001a9c3000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=9460, stack(0x000000001b280000,0x000000001b380000)]
  0x000000001a9b7000 JavaThread "thread-2" daemon [_thread_blocked, id=6428, stack(0x000000001b040000,0x000000001b140000)]
  0x000000001a9b4000 JavaThread "thread-1" daemon [_thread_blocked, id=10528, stack(0x000000001af40000,0x000000001b040000)]
  0x0000000019405800 JavaThread "Service Thread" daemon [_thread_blocked, id=7496, stack(0x000000001a540000,0x000000001a640000)]
  0x000000001937c800 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=9232, stack(0x000000001a440000,0x000000001a540000)]
  0x000000001937b800 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=1420, stack(0x000000001a340000,0x000000001a440000)]
  0x0000000019372000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=4764, stack(0x000000001a240000,0x000000001a340000)]
  0x0000000019362000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=8396, stack(0x000000001a140000,0x000000001a240000)]
  0x000000001935e800 JavaThread "JDWP Command Reader" daemon [_thread_in_native, id=10452, stack(0x000000001a040000,0x000000001a140000)]
  0x0000000019352000 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=12304, stack(0x0000000019f40000,0x000000001a040000)]
  0x0000000019346800 JavaThread "JDWP Transport Listener: dt_socket" daemon [_thread_blocked, id=2524, stack(0x0000000019e40000,0x0000000019f40000)]
  0x000000001933d000 JavaThread "Attach Listener" daemon [_thread_blocked, id=10156, stack(0x0000000019a00000,0x0000000019b00000)]
  0x000000001933b000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5236, stack(0x0000000019900000,0x0000000019a00000)]
  0x0000000019330800 JavaThread "Finalizer" daemon [_thread_blocked, id=5764, stack(0x0000000019710000,0x0000000019810000)]
  0x000000001744d800 JavaThread "Reference Handler" daemon [_thread_blocked, id=11332, stack(0x0000000019210000,0x0000000019310000)]

Other Threads:
  0x0000000017449000 VMThread [stack: 0x0000000019110000,0x0000000019210000] [id=4596]
  0x000000001941f800 WatcherThread [stack: 0x000000001a640000,0x000000001a740000] [id=12708]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap:
 PSYoungGen      total 38400K, used 12428K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 37% used [0x00000000d5c00000,0x00000000d6823230,0x00000000d7c80000)
  from space 5120K, 0% used [0x00000000d8180000,0x00000000d8180000,0x00000000d8680000)
  to   space 5120K, 0% used [0x00000000d7c80000,0x00000000d7c80000,0x00000000d8180000)
 ParOldGen       total 74752K, used 14076K [0x0000000081400000, 0x0000000085d00000, 0x00000000d5c00000)
  object space 74752K, 18% used [0x0000000081400000,0x00000000821bf208,0x0000000085d00000)
 Metaspace       used 22464K, capacity 23145K, committed 23424K, reserved 1071104K
  class space    used 2489K, capacity 2661K, committed 2688K, reserved 1048576K

Card table byte_map: [0x0000000011850000,0x0000000011c50000] byte_map_base: 0x0000000011446000

Marking Bits: (ParMarkBitMap*) 0x00000000695a2d00
 Begin Bits: [0x0000000012700000, 0x00000000146b0000)
 End Bits:   [0x00000000146b0000, 0x0000000016660000)

Polling page: 0x00000000009a0000

CodeCache: size=245760Kb used=9594Kb max_used=10543Kb free=236165Kb
 bounds [0x0000000002490000, 0x0000000002ef0000, 0x0000000011490000]
 total_blobs=3419 nmethods=2663 adapters=676
 compilation: enabled

Compilation events (10 events):
Event: 27.676 Thread 0x000000001937c800 2928       1       com.badlogic.gdx.scenes.scene2d.Group::setCullingArea (6 bytes)
Event: 27.676 Thread 0x000000001937c800 nmethod 2928 0x00000000026c3750 code [0x00000000026c38a0, 0x00000000026c39d0]
Event: 27.779 Thread 0x000000001937c800 2930       3       com.badlogic.gdx.graphics.g2d.TextureRegion::setRegion (129 bytes)
Event: 27.779 Thread 0x000000001937c800 nmethod 2930 0x000000000270b090 code [0x000000000270b280, 0x000000000270bad8]
Event: 27.779 Thread 0x000000001937c800 2931       3       com.badlogic.gdx.graphics.g2d.TextureRegion::setRegion (71 bytes)
Event: 27.780 Thread 0x000000001937c800 nmethod 2931 0x00000000025b8bd0 code [0x00000000025b8dc0, 0x00000000025b9548]
Event: 27.780 Thread 0x000000001937c800 2929       3       com.badlogic.gdx.graphics.g2d.TextureRegion::<init> (20 bytes)
Event: 27.780 Thread 0x000000001937c800 nmethod 2929 0x00000000025d4890 code [0x00000000025d4a00, 0x00000000025d4ca8]
Event: 27.782 Thread 0x0000000019372000 2932       4       com.badlogic.gdx.graphics.g2d.TextureRegion::getRegionX (17 bytes)
Event: 27.783 Thread 0x000000001937b800 2933       4       com.badlogic.gdx.graphics.g2d.TextureRegion::getRegionY (17 bytes)

GC Heap History (10 events):
Event: 1.130 GC heap before
{Heap before GC invocations=1 (full 0):
 PSYoungGen      total 38400K, used 33280K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 100% used [0x00000000d5c00000,0x00000000d7c80000,0x00000000d7c80000)
  from space 5120K, 0% used [0x00000000d8180000,0x00000000d8180000,0x00000000d8680000)
  to   space 5120K, 0% used [0x00000000d7c80000,0x00000000d7c80000,0x00000000d8180000)
 ParOldGen       total 87552K, used 0K [0x0000000081400000, 0x0000000086980000, 0x00000000d5c00000)
  object space 87552K, 0% used [0x0000000081400000,0x0000000081400000,0x0000000086980000)
 Metaspace       used 13572K, capacity 13900K, committed 14208K, reserved 1062912K
  class space    used 1531K, capacity 1648K, committed 1664K, reserved 1048576K
Event: 1.135 GC heap after
Heap after GC invocations=1 (full 0):
 PSYoungGen      total 38400K, used 5089K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 0% used [0x00000000d5c00000,0x00000000d5c00000,0x00000000d7c80000)
  from space 5120K, 99% used [0x00000000d7c80000,0x00000000d8178528,0x00000000d8180000)
  to   space 5120K, 0% used [0x00000000d8180000,0x00000000d8180000,0x00000000d8680000)
 ParOldGen       total 87552K, used 199K [0x0000000081400000, 0x0000000086980000, 0x00000000d5c00000)
  object space 87552K, 0% used [0x0000000081400000,0x0000000081431f88,0x0000000086980000)
 Metaspace       used 13572K, capacity 13900K, committed 14208K, reserved 1062912K
  class space    used 1531K, capacity 1648K, committed 1664K, reserved 1048576K
}
Event: 2.798 GC heap before
{Heap before GC invocations=2 (full 0):
 PSYoungGen      total 38400K, used 38369K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 100% used [0x00000000d5c00000,0x00000000d7c80000,0x00000000d7c80000)
  from space 5120K, 99% used [0x00000000d7c80000,0x00000000d8178528,0x00000000d8180000)
  to   space 5120K, 0% used [0x00000000d8180000,0x00000000d8180000,0x00000000d8680000)
 ParOldGen       total 87552K, used 200K [0x0000000081400000, 0x0000000086980000, 0x00000000d5c00000)
  object space 87552K, 0% used [0x0000000081400000,0x0000000081432100,0x0000000086980000)
 Metaspace       used 17856K, capacity 18157K, committed 18560K, reserved 1064960K
  class space    used 1966K, capacity 2089K, committed 2176K, reserved 1048576K
Event: 2.806 GC heap after
Heap after GC invocations=2 (full 0):
 PSYoungGen      total 38400K, used 5093K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 0% used [0x00000000d5c00000,0x00000000d5c00000,0x00000000d7c80000)
  from space 5120K, 99% used [0x00000000d8180000,0x00000000d8679420,0x00000000d8680000)
  to   space 5120K, 0% used [0x00000000d7c80000,0x00000000d7c80000,0x00000000d8180000)
 ParOldGen       total 87552K, used 5769K [0x0000000081400000, 0x0000000086980000, 0x00000000d5c00000)
  object space 87552K, 6% used [0x0000000081400000,0x00000000819a2510,0x0000000086980000)
 Metaspace       used 17856K, capacity 18157K, committed 18560K, reserved 1064960K
  class space    used 1966K, capacity 2089K, committed 2176K, reserved 1048576K
}
Event: 3.484 GC heap before
{Heap before GC invocations=3 (full 0):
 PSYoungGen      total 38400K, used 38373K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 100% used [0x00000000d5c00000,0x00000000d7c80000,0x00000000d7c80000)
  from space 5120K, 99% used [0x00000000d8180000,0x00000000d8679420,0x00000000d8680000)
  to   space 5120K, 0% used [0x00000000d7c80000,0x00000000d7c80000,0x00000000d8180000)
 ParOldGen       total 87552K, used 5772K [0x0000000081400000, 0x0000000086980000, 0x00000000d5c00000)
  object space 87552K, 6% used [0x0000000081400000,0x00000000819a3390,0x0000000086980000)
 Metaspace       used 19908K, capacity 20373K, committed 20608K, reserved 1067008K
  class space    used 2184K, capacity 2325K, committed 2432K, reserved 1048576K
Event: 3.488 GC heap after
Heap after GC invocations=3 (full 0):
 PSYoungGen      total 38400K, used 5094K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 0% used [0x00000000d5c00000,0x00000000d5c00000,0x00000000d7c80000)
  from space 5120K, 99% used [0x00000000d7c80000,0x00000000d81798a0,0x00000000d8180000)
  to   space 5120K, 0% used [0x00000000d8180000,0x00000000d8180000,0x00000000d8680000)
 ParOldGen       total 87552K, used 8148K [0x0000000081400000, 0x0000000086980000, 0x00000000d5c00000)
  object space 87552K, 9% used [0x0000000081400000,0x0000000081bf5300,0x0000000086980000)
 Metaspace       used 19908K, capacity 20373K, committed 20608K, reserved 1067008K
  class space    used 2184K, capacity 2325K, committed 2432K, reserved 1048576K
}
Event: 5.216 GC heap before
{Heap before GC invocations=4 (full 0):
 PSYoungGen      total 38400K, used 37032K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 95% used [0x00000000d5c00000,0x00000000d7b30a40,0x00000000d7c80000)
  from space 5120K, 99% used [0x00000000d7c80000,0x00000000d81798a0,0x00000000d8180000)
  to   space 5120K, 0% used [0x00000000d8180000,0x00000000d8180000,0x00000000d8680000)
 ParOldGen       total 87552K, used 8148K [0x0000000081400000, 0x0000000086980000, 0x00000000d5c00000)
  object space 87552K, 9% used [0x0000000081400000,0x0000000081bf5300,0x0000000086980000)
 Metaspace       used 20759K, capacity 21241K, committed 21296K, reserved 1069056K
  class space    used 2294K, capacity 2411K, committed 2432K, reserved 1048576K
Event: 5.224 GC heap after
Heap after GC invocations=4 (full 0):
 PSYoungGen      total 38400K, used 5099K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 0% used [0x00000000d5c00000,0x00000000d5c00000,0x00000000d7c80000)
  from space 5120K, 99% used [0x00000000d8180000,0x00000000d867ad68,0x00000000d8680000)
  to   space 5120K, 0% used [0x00000000d7c80000,0x00000000d7c80000,0x00000000d8180000)
 ParOldGen       total 87552K, used 12039K [0x0000000081400000, 0x0000000086980000, 0x00000000d5c00000)
  object space 87552K, 13% used [0x0000000081400000,0x0000000081fc1ea0,0x0000000086980000)
 Metaspace       used 20759K, capacity 21241K, committed 21296K, reserved 1069056K
  class space    used 2294K, capacity 2411K, committed 2432K, reserved 1048576K
}
Event: 5.224 GC heap before
{Heap before GC invocations=5 (full 1):
 PSYoungGen      total 38400K, used 5099K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 0% used [0x00000000d5c00000,0x00000000d5c00000,0x00000000d7c80000)
  from space 5120K, 99% used [0x00000000d8180000,0x00000000d867ad68,0x00000000d8680000)
  to   space 5120K, 0% used [0x00000000d7c80000,0x00000000d7c80000,0x00000000d8180000)
 ParOldGen       total 87552K, used 12039K [0x0000000081400000, 0x0000000086980000, 0x00000000d5c00000)
  object space 87552K, 13% used [0x0000000081400000,0x0000000081fc1ea0,0x0000000086980000)
 Metaspace       used 20759K, capacity 21241K, committed 21296K, reserved 1069056K
  class space    used 2294K, capacity 2411K, committed 2432K, reserved 1048576K
Event: 5.265 GC heap after
Heap after GC invocations=5 (full 1):
 PSYoungGen      total 38400K, used 0K [0x00000000d5c00000, 0x00000000d8680000, 0x0000000100000000)
  eden space 33280K, 0% used [0x00000000d5c00000,0x00000000d5c00000,0x00000000d7c80000)
  from space 5120K, 0% used [0x00000000d8180000,0x00000000d8180000,0x00000000d8680000)
  to   space 5120K, 0% used [0x00000000d7c80000,0x00000000d7c80000,0x00000000d8180000)
 ParOldGen       total 74752K, used 14076K [0x0000000081400000, 0x0000000085d00000, 0x00000000d5c00000)
  object space 74752K, 18% used [0x0000000081400000,0x00000000821bf208,0x0000000085d00000)
 Metaspace       used 20758K, capacity 21239K, committed 21296K, reserved 1069056K
  class space    used 2293K, capacity 2410K, committed 2432K, reserved 1048576K
}

Deoptimization events (10 events):
Event: 19.362 Thread 0x000000001c038800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002eb1190 method=com.badlogic.gdx.scenes.scene2d.Actor.hit(FFZ)Lcom/badlogic/gdx/scenes/scene2d/Actor; @ 11
Event: 19.362 Thread 0x000000001c038800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002dfe6c4 method=com.badlogic.gdx.scenes.scene2d.Actor.hit(FFZ)Lcom/badlogic/gdx/scenes/scene2d/Actor; @ 11
Event: 27.779 Thread 0x000000001c038800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002b0f298 method=com.badlogic.gdx.graphics.Texture.getWidth()I @ 4
Event: 27.779 Thread 0x000000001c038800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002b06cd8 method=com.badlogic.gdx.graphics.Texture.getHeight()I @ 4
Event: 27.782 Thread 0x000000001c038800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002b0f298 method=com.badlogic.gdx.graphics.Texture.getWidth()I @ 4
Event: 27.782 Thread 0x000000001c038800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002b06cd8 method=com.badlogic.gdx.graphics.Texture.getHeight()I @ 4
Event: 27.782 Thread 0x000000001c038800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002b0f298 method=com.badlogic.gdx.graphics.Texture.getWidth()I @ 4
Event: 27.782 Thread 0x000000001c038800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002b06cd8 method=com.badlogic.gdx.graphics.Texture.getHeight()I @ 4
Event: 27.782 Thread 0x000000001c038800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002b0f298 method=com.badlogic.gdx.graphics.Texture.getWidth()I @ 4
Event: 27.782 Thread 0x000000001c038800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002b06cd8 method=com.badlogic.gdx.graphics.Texture.getHeight()I @ 4

Classes redefined (0 events):
No events

Internal exceptions (10 events):
Event: 1.860 Thread 0x000000001a9b4000 Implicit null exception at 0x00000000028b6b2f to 0x00000000028b6b9d
Event: 2.645 Thread 0x000000001c038800 Exception <a 'java/lang/UnsatisfiedLinkError': The specified module could not be found.

> (0x00000000d71921a0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u181\11358\hotspot\src\share\vm\prims\jni.cpp, line 735]
Event: 2.646 Thread 0x000000001c038800 Exception <a 'java/lang/UnsatisfiedLinkError': The specified module could not be found.

> (0x00000000d71926c8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u181\11358\hotspot\src\share\vm\prims\jni.cpp, line 735]
Event: 2.647 Thread 0x000000001c038800 Exception <a 'java/lang/UnsatisfiedLinkError': The specified module could not be found.

> (0x00000000d7192c78) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u181\11358\hotspot\src\share\vm\prims\jni.cpp, line 735]
Event: 2.650 Thread 0x000000001c038800 Exception <a 'java/lang/UnsatisfiedLinkError'> (0x00000000d71b6fd0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u181\11358\hotspot\src\share\vm\oops\instanceKlass.cpp, line 959]
Event: 3.294 Thread 0x000000001c038800 Exception <a 'java/io/FileNotFoundException'> (0x00000000d7a82458) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u181\11358\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 3.706 Thread 0x000000001c038800 Exception <a 'java/io/FileNotFoundException'> (0x00000000d5c507a0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u181\11358\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 3.992 Thread 0x000000001c038800 Exception <a 'java/io/FileNotFoundException'> (0x00000000d60374e0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u181\11358\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 4.519 Thread 0x000000001c038800 Exception <a 'java/lang/NullPointerException'> (0x00000000d6fc8370) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u181\11358\hotspot\src\share\vm\interpreter\linkResolver.cpp, line 1185]
Event: 4.529 Thread 0x000000001c038800 Exception <a 'java/io/FileNotFoundException'> (0x00000000d70e6cc0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u181\11358\hotspot\src\share\vm\prims\jni.cpp, line 709]

Events (10 events):
Event: 27.782 Thread 0x000000001c038800 DEOPT UNPACKING pc=0x00000000024d583b sp=0x000000001d96ed88 mode 2
Event: 27.782 Thread 0x000000001c038800 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000002b06cd8
Event: 27.782 Thread 0x000000001c038800 DEOPT PACKING pc=0x0000000002b06cd8 sp=0x000000001d96ee30
Event: 27.782 Thread 0x000000001c038800 DEOPT UNPACKING pc=0x00000000024d583b sp=0x000000001d96ed88 mode 2
Event: 27.782 Thread 0x000000001c038800 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000002b0f298
Event: 27.782 Thread 0x000000001c038800 DEOPT PACKING pc=0x0000000002b0f298 sp=0x000000001d96ee30
Event: 27.782 Thread 0x000000001c038800 DEOPT UNPACKING pc=0x00000000024d583b sp=0x000000001d96ed88 mode 2
Event: 27.782 Thread 0x000000001c038800 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000000002b06cd8
Event: 27.782 Thread 0x000000001c038800 DEOPT PACKING pc=0x0000000002b06cd8 sp=0x000000001d96ee30
Event: 27.782 Thread 0x000000001c038800 DEOPT UNPACKING pc=0x00000000024d583b sp=0x000000001d96ed88 mode 2

Dynamic libraries:
0x00007ff77fa60000 - 0x00007ff77fa97000     C:\Program Files\Java\jre1.8.0_181\bin\javaw.exe
0x00007ff987120000 - 0x00007ff987301000     C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ff985f80000 - 0x00007ff986032000     C:\WINDOWS\System32\KERNEL32.DLL
0x00007ff983550000 - 0x00007ff9837c3000     C:\WINDOWS\System32\KERNELBASE.dll
0x00007ff985c30000 - 0x00007ff985cd1000     C:\WINDOWS\System32\ADVAPI32.dll
0x00007ff985d40000 - 0x00007ff985dde000     C:\WINDOWS\System32\msvcrt.dll
0x00007ff985bb0000 - 0x00007ff985c0b000     C:\WINDOWS\System32\sechost.dll
0x00007ff986b30000 - 0x00007ff986c54000     C:\WINDOWS\System32\RPCRT4.dll
0x00007ff986c60000 - 0x00007ff986df0000     C:\WINDOWS\System32\USER32.dll
0x00007ff9842f0000 - 0x00007ff984310000     C:\WINDOWS\System32\win32u.dll
0x00007ff986f20000 - 0x00007ff986f48000     C:\WINDOWS\System32\GDI32.dll
0x00007ff984410000 - 0x00007ff9845a2000     C:\WINDOWS\System32\gdi32full.dll
0x00007ff9838d0000 - 0x00007ff98396f000     C:\WINDOWS\System32\msvcp_win.dll
0x00007ff9837d0000 - 0x00007ff9838ca000     C:\WINDOWS\System32\ucrtbase.dll
0x00007ff9726d0000 - 0x00007ff972939000     C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.17134.320_none_fb3d992f3069e403\COMCTL32.dll
0x00007ff986620000 - 0x00007ff986943000     C:\WINDOWS\System32\combase.dll
0x00007ff983970000 - 0x00007ff9839ea000     C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ff986e50000 - 0x00007ff986e7d000     C:\WINDOWS\System32\IMM32.DLL
0x0000000068ca0000 - 0x0000000068d72000     C:\Program Files\Java\jre1.8.0_181\bin\msvcr100.dll
0x0000000068d80000 - 0x0000000069622000     C:\Program Files\Java\jre1.8.0_181\bin\server\jvm.dll
0x00007ff986040000 - 0x00007ff986048000     C:\WINDOWS\System32\PSAPI.DLL
0x00007ff97fec0000 - 0x00007ff97fec9000     C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007ff97ff30000 - 0x00007ff97ff3a000     C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ff981300000 - 0x00007ff981323000     C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ff9846f0000 - 0x00007ff98475c000     C:\WINDOWS\System32\WS2_32.dll
0x00007ff980f90000 - 0x00007ff980fba000     C:\WINDOWS\SYSTEM32\winmmbase.dll
0x00007ff9843c0000 - 0x00007ff984409000     C:\WINDOWS\System32\cfgmgr32.dll
0x0000000069680000 - 0x000000006968f000     C:\Program Files\Java\jre1.8.0_181\bin\verify.dll
0x0000000069650000 - 0x0000000069679000     C:\Program Files\Java\jre1.8.0_181\bin\java.dll
0x0000000068bc0000 - 0x0000000068bf5000     C:\Program Files\Java\jre1.8.0_181\bin\jdwp.dll
0x0000000068bb0000 - 0x0000000068bb8000     C:\Program Files\Java\jre1.8.0_181\bin\npt.dll
0x0000000068c80000 - 0x0000000068c96000     C:\Program Files\Java\jre1.8.0_181\bin\zip.dll
0x00007ff984770000 - 0x00007ff985baf000     C:\WINDOWS\System32\SHELL32.dll
0x00007ff987040000 - 0x00007ff9870e9000     C:\WINDOWS\System32\shcore.dll
0x00007ff9839f0000 - 0x00007ff9840fd000     C:\WINDOWS\System32\windows.storage.dll
0x00007ff985ce0000 - 0x00007ff985d31000     C:\WINDOWS\System32\shlwapi.dll
0x00007ff9834b0000 - 0x00007ff9834c1000     C:\WINDOWS\System32\kernel.appcore.dll
0x00007ff983490000 - 0x00007ff9834af000     C:\WINDOWS\System32\profapi.dll
0x00007ff983440000 - 0x00007ff98348c000     C:\WINDOWS\System32\powrprof.dll
0x00007ff983430000 - 0x00007ff98343a000     C:\WINDOWS\System32\FLTLIB.DLL
0x0000000068ba0000 - 0x0000000068ba9000     C:\Program Files\Java\jre1.8.0_181\bin\dt_socket.dll
0x00007ff972490000 - 0x00007ff9724a6000     C:\WINDOWS\system32\napinsp.dll
0x00007ff96f7b0000 - 0x00007ff96f7ca000     C:\WINDOWS\system32\pnrpnsp.dll
0x00007ff97fc60000 - 0x00007ff97fc79000     C:\WINDOWS\system32\NLAapi.dll
0x00007ff982c50000 - 0x00007ff982cb6000     C:\WINDOWS\System32\mswsock.dll
0x00007ff982a10000 - 0x00007ff982ace000     C:\WINDOWS\SYSTEM32\DNSAPI.dll
0x00007ff984610000 - 0x00007ff984618000     C:\WINDOWS\System32\NSI.dll
0x00007ff9829d0000 - 0x00007ff982a08000     C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ff977b70000 - 0x00007ff977b7e000     C:\WINDOWS\System32\winrnr.dll
0x00007ff973670000 - 0x00007ff973685000     C:\WINDOWS\System32\wshbth.dll
0x00007ff9798e0000 - 0x00007ff979952000     C:\WINDOWS\System32\fwpuclnt.dll
0x00007ff982f90000 - 0x00007ff982fb5000     C:\WINDOWS\SYSTEM32\bcrypt.dll
0x00007ff97a4a0000 - 0x00007ff97a4aa000     C:\Windows\System32\rasadhlp.dll
0x0000000068b90000 - 0x0000000068b9d000     C:\Program Files\Java\jre1.8.0_181\bin\management.dll
0x00000000689f0000 - 0x0000000068b89000     C:\Program Files\Java\jre1.8.0_181\bin\awt.dll
0x00007ff984620000 - 0x00007ff9846e2000     C:\WINDOWS\System32\OLEAUT32.dll
0x00007ff981790000 - 0x00007ff98181b000     C:\WINDOWS\SYSTEM32\apphelp.dll
0x00007ff981a10000 - 0x00007ff981aa8000     C:\WINDOWS\system32\uxtheme.dll
0x00007ff986050000 - 0x00007ff9861c4000     C:\WINDOWS\System32\MSCTF.dll
0x00007ff981ae0000 - 0x00007ff981b09000     C:\WINDOWS\system32\dwmapi.dll
0x00007ff986950000 - 0x00007ff986aa1000     C:\WINDOWS\System32\ole32.dll
0x0000000068c10000 - 0x0000000068c34000     C:\Program Files\Java\jre1.8.0_181\bin\sunec.dll
0x0000000068c60000 - 0x0000000068c7a000     C:\Program Files\Java\jre1.8.0_181\bin\net.dll
0x00007ff97e460000 - 0x00007ff97e476000     C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
0x00007ff97e8f0000 - 0x00007ff97e90a000     C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
0x0000000068c40000 - 0x0000000068c51000     C:\Program Files\Java\jre1.8.0_181\bin\nio.dll
0x00007ff982e00000 - 0x00007ff982e17000     C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ff982830000 - 0x00007ff982863000     C:\WINDOWS\system32\rsaenh.dll
0x00007ff983330000 - 0x00007ff983358000     C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ff982e20000 - 0x00007ff982e2b000     C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ff9606e0000 - 0x00007ff960767000     C:\Windows\System32\OpenCL.DLL
0x0000000068c00000 - 0x0000000068c0b000     C:\Program Files\Java\jre1.8.0_181\bin\sunmscapi.dll
0x00007ff984100000 - 0x00007ff9842e2000     C:\WINDOWS\System32\CRYPT32.dll
0x00007ff9834d0000 - 0x00007ff9834e2000     C:\WINDOWS\System32\MSASN1.dll
0x0000000180000000 - 0x0000000180038000     %userdir%\AppData\Local\Temp\jna--1599805399\jna2025755302605035027.dll
0x00007ff970890000 - 0x00007ff9708c4000     \\?\C:\PROGRA~1\VideoLAN\VLC\libvlc.dll
0x00007ff9544c0000 - 0x00007ff954774000     \\?\C:\PROGRA~1\VideoLAN\VLC\libvlccore.dll
0x0000000065ac0000 - 0x0000000065b26000     %userdir%\AppData\Local\Temp\libgdx\2f373f83\gdx64.dll
0x000000001d330000 - 0x000000001d383000     %userdir%\AppData\Local\Temp\libgdx\dc0f0009\lwjgl64.dll
0x00007ff96a470000 - 0x00007ff96a590000     C:\WINDOWS\SYSTEM32\OPENGL32.dll
0x00007ff96e150000 - 0x00007ff96e17c000     C:\WINDOWS\SYSTEM32\GLU32.dll
0x000000001d390000 - 0x000000001d3f4000     %userdir%\AppData\Local\Temp\libgdx\dc0f0009\OpenAL64.dll
0x00007ff986e80000 - 0x00007ff986f20000     C:\WINDOWS\System32\clbcatq.dll
0x00007ff97cb40000 - 0x00007ff97cbb6000     C:\WINDOWS\System32\MMDevApi.dll
0x00007ff983240000 - 0x00007ff983267000     C:\WINDOWS\System32\DEVOBJ.dll
0x00007ff97f110000 - 0x00007ff97f2c4000     C:\WINDOWS\System32\PROPSYS.dll
0x00007ff96d390000 - 0x00007ff96d41f000     C:\WINDOWS\SYSTEM32\dsound.dll
0x00007ff974db0000 - 0x00007ff974edc000     C:\WINDOWS\SYSTEM32\AUDIOSES.DLL
0x00007ff97f770000 - 0x00007ff97f8bd000     C:\WINDOWS\SYSTEM32\wintypes.dll
0x00007ff97e9f0000 - 0x00007ff97e9fa000     C:\WINDOWS\SYSTEM32\AVRT.dll
0x0000000066020000 - 0x00000000685fd000     C:\WINDOWS\System32\DriverStore\FileRepository\nvlti.inf_amd64_1de103eddb42fc9a\nvoglv64.dll
0x00007ff9861d0000 - 0x00007ff98661b000     C:\WINDOWS\System32\SETUPAPI.dll
0x00007ff97ef20000 - 0x00007ff97ef33000     C:\WINDOWS\SYSTEM32\WTSAPI32.dll
0x00007ff9834f0000 - 0x00007ff983547000     C:\WINDOWS\System32\WINTRUST.dll
0x00007ff982550000 - 0x00007ff982581000     C:\WINDOWS\SYSTEM32\ntmarta.dll
0x00007ff953f90000 - 0x00007ff954219000     C:\WINDOWS\system32\nvspcap64.dll
0x00007ff982ea0000 - 0x00007ff982ef6000     C:\WINDOWS\SYSTEM32\WINSTA.dll
0x00007ff978420000 - 0x00007ff9784b7000     C:\WINDOWS\System32\TextInputFramework.dll
0x00007ff97a180000 - 0x00007ff97a49e000     C:\WINDOWS\System32\CoreUIComponents.dll
0x00007ff981330000 - 0x00007ff98140a000     C:\WINDOWS\System32\CoreMessaging.dll
0x00007ff97b4c0000 - 0x00007ff97b568000     C:\WINDOWS\SYSTEM32\mscms.dll
0x00007ff97ff40000 - 0x00007ff97ff50000     C:\WINDOWS\SYSTEM32\ColorAdapterClient.dll
0x00007ff967760000 - 0x00007ff9677a3000     C:\WINDOWS\SYSTEM32\icm32.dll
0x00007ff982130000 - 0x00007ff9821eb000     C:\WINDOWS\system32\dxgi.dll
0x00007ff980610000 - 0x00007ff98091b000     C:\WINDOWS\system32\d3d11.dll
0x00007ff95b870000 - 0x00007ff95b95c000     C:\WINDOWS\System32\DriverStore\FileRepository\nvlti.inf_amd64_1de103eddb42fc9a\nvldumdx.dll
0x00007ff985c10000 - 0x00007ff985c2d000     C:\WINDOWS\System32\imagehlp.dll
0x00007ff9479c0000 - 0x00007ff949e6e000     C:\WINDOWS\System32\DriverStore\FileRepository\nvlti.inf_amd64_1de103eddb42fc9a\nvwgf2umx.dll
0x00007ff97a750000 - 0x00007ff97ac35000     C:\WINDOWS\system32\nvapi64.dll
0x00007ff9763c0000 - 0x00007ff97731d000     C:\WINDOWS\SYSTEM32\igd10iumd64.dll
0x00007ff982f60000 - 0x00007ff982f86000     C:\WINDOWS\SYSTEM32\ncrypt.dll
0x00007ff982f20000 - 0x00007ff982f56000     C:\WINDOWS\SYSTEM32\NTASN1.dll
0x00007ff978a50000 - 0x00007ff97948f000     C:\WINDOWS\SYSTEM32\igdusc64.dll
0x00000000621c0000 - 0x0000000062313000     %userdir%\AppData\Local\Temp\libgdx\4efb981b\gdx-controllers-desktop64.dll
0x00007ff965250000 - 0x00007ff965293000     C:\WINDOWS\SYSTEM32\DINPUT8.dll
0x00007ff9784c0000 - 0x00007ff978539000     C:\WINDOWS\SYSTEM32\inputhost.dll
0x00007ff982080000 - 0x00007ff98208c000     C:\WINDOWS\SYSTEM32\HID.DLL
0x00007ff9786a0000 - 0x00007ff9787b4000     C:\Windows\System32\Windows.UI.dll
0x00007ff9578d0000 - 0x00007ff9579e2000     C:\Program Files\VideoLAN\VLC\plugins\misc\libxml_plugin.dll
0x000000002bff0000 - 0x000000002c543000     %userdir%\AppData\Local\Temp\libgdx\b58ce819\gdx-bullet64.dll
0x00007ff944ac0000 - 0x00007ff945ead000     C:\WINDOWS\System32\DriverStore\FileRepository\nvlti.inf_amd64_1de103eddb42fc9a\nvd3dumx.dll
0x0000000069a80000 - 0x0000000069b2f000     %userdir%\AppData\Local\Temp\libgdx\8a91b1cc\gdx-freetype64.dll
0x00007ff95d760000 - 0x00007ff95d929000     C:\WINDOWS\SYSTEM32\dbghelp.dll

VM Arguments:
jvm_args: -agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost:64790 -DXmx128m -DXX:MaxMetaspaceSize=32m -DXss4m -DXX:+UnlockDiagnosticVMOptions -D_bullet=C:/libgdx-1.9.8/extensions/gdx-bullet/jni/vs/gdxBullet/x64/Debug/gdxBullet.dll -Dfile.encoding=UTF-8 
java_command: com.etk2000.mygame.desktop.DesktopLauncher -d -w
java_class_path (initial): D:\tsys\src\desktop\bin\main;D:\tsys\src\desktop\bin\default;D:\tsys\src\client\bin\default;D:\tsys\src\client\bin\main;D:\tsys\src\core\bin\default;D:\tsys\src\core\bin\main;D:\tsys\src\clsl\bin;%userdir%\.gradle\caches\modules-2\files-2.1\com.badlogicgames.gdx\gdx-backend-lwjgl\1.9.9-SNAPSHOT\aa26333db77165646c5d8eda4aa74090d085489e\gdx-backend-lwjgl-1.9.9-SNAPSHOT.jar;%userdir%\.gradle\caches\modules-2\files-2.1\com.badlogicgames.gdx\gdx-platform\1.9.9-SNAPSHOT\686100e9b2c80712b4201d6ef6c648f12005e273\gdx-platform-1.9.9-SNAPSHOT-natives-desktop.jar;%userdir%\.gradle\caches\modules-2\files-2.1\com.badlogicgames.gdx\gdx-freetype-platform\1.9.9-SNAPSHOT\ef02398497288af683ad4031489145c3b2c64f28\gdx-freetype-platform-1.9.9-SNAPSHOT-natives-desktop.jar;%userdir%\.gradle\caches\modules-2\files-2.1\com.badlogicgames.gdx\gdx-bullet-platform\1.9.9-SNAPSHOT\1eb0f79f3237c98f7be9a9a0c39deb573f191db0\gdx-bullet-platform-1.9.9-SNAPSHOT-natives-desktop.jar;%userdir%\.gradle\caches\modules-2\files-2.1\com.badlogicgames.gdx\gdx-controllers-desktop\1.9.9-SNAPSHOT\2416dfedd256441dc7d1fcf438195ae84d9ce4af\gdx-controllers-desktop-1.9.9-SNAPSHOT.jar;%userdir%\.gradle\caches\modules-2\files-2.1\com.badlogicgames.gdx\gdx-controllers-platform\1.9.9-SNAPSHOT\b588bfa7c8f0392a2e873d78dbebf486ac9f536c\gdx-controllers-platform-1.9.9-SNAPSHOT-natives-desktop.jar;%userdir%\.gradle\caches\modules-2\files-2.1\uk.co.caprica\vlcj\3.10.1\c429b2ea1db1c199aab3b568eb69ee40cc790c63\vlcj-3.10.1.jar;%userdir%\.gradle\caches\modules-2\files-2.1\org.fusesource.jansi\jansi\1.16\b1aaf0028852164ab6b4057192ccd0ba7dedd3a5\jansi-1.16.jar;%userdir%\.gradle\caches\modules-2\files-2.1\com.badlogicgames.gdx\gdx-bullet\1.9.9-SNAPSHOT\f00af38ba3af7ed32fc6e78712852ae9f2f9352d\gdx-bullet-1.9.9-SNAPSHOT.jar;%userdir%\.gradle\caches\modules-2\files-2.1\com.badlogicgames.gdx\gdx-controlle
Launcher Type: SUN_STANDARD

Environment Variables:
PATH=C:/Program Files/Java/jre1.8.0_181/bin/server;C:/Program Files/Java/jre1.8.0_181/bin;C:/Program Files/Java/jre1.8.0_181/lib/amd64;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\Git\cmd;%userdir%\AppData\Local\Microsoft\WindowsApps;;%userdir%\eclipse\java-latest\android-latest-released\eclipse;
USERNAME=EtK2000
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 60 Stepping 3, GenuineIntel

---------------  S Y S T E M  ---------------

OS: Windows 10.0 , 64 bit Build 17134 (10.0.17134.1)

CPU:total 8 (initial active 8) (4 cores per cpu, 2 threads per core) family 6 model 60 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2

Memory: 4k page, physical 8298776k(2947804k free), swap 10506824k(4159872k free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (25.181-b13) for windows-amd64 JRE (1.8.0_181-b13), built on Jul  7 2018 04:01:33 by "java_re" with MS VC++ 10.0 (VS2010)

time: Mon Oct 08 16:33:28 2018
elapsed time: 27 seconds (0d 0h 0m 27s)

Please select the affected platforms

If more info is required I can supply it. I'd assume a simple test project would help, so I'll try to make one.

vuvkar commented 1 year ago

What was the issue and how did you solve it? I have the same problem, and my guess is the wrong usage of Pixmap, but I am not sure where.