Search Unity

  1. Unity Asset Manager is now available in public beta. Try it out now and join the conversation here in the forums.
    Dismiss Notice

Vulkan renderer preview feedback thread

Discussion in 'Graphics Experimental Previews' started by strandborg, Sep 29, 2016.

  1. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    This thread is intended for feedback and discussion regarding the recently released Vulkan renderer preview ( https://blogs.unity3d.com/?p=42634 ).

    Have a problem? Got some feedback? Post it here!
     
  2. AurimasBlazulionis

    AurimasBlazulionis

    Joined:
    Aug 13, 2013
    Posts:
    209
    I got it a build running. But I think the compiler is not mature enough or simply vulkan does not allow these things, because there are multiple errors thrown when compiling a pretty complex grass shader. It throws out bunch of errors. Here is a list of them:

    Code (CSharp):
    1. 'out; must be an array: undefined 146
    2. 'out; must be an array: cullDistance 147
    3. 'scalar swizzle' : not supported with this profile: es 150
    4. 'assign' : |-value required (can't modify a const) 166
    5. 'gl_ClipDistance' left of left of '[' is not of type array, matrix or vector 166
    6. 'gl_ClipDistance' : undeclared identifier 166
    7. 'phase3_gl_TessLevelOuter' : left of '[' is not of type array, matrix or vector 166
    8. 'phase3_gl_TessLevelOuter' : undeclared identifier 166
    Should I file a bug report?
     
  3. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Hey,

    Thanks for testing! This looks like a bug in the shader compiler. Please test it first with GLCore renderer as well (my guess is that it might fail there as well), and either way, please file a bug report with a repro.

    Cheers,
    Mikko
     
  4. AurimasBlazulionis

    AurimasBlazulionis

    Joined:
    Aug 13, 2013
    Posts:
    209
    GLCore is known not to work as well. But all right, I will file the bug report.
     
  5. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Then it is very likely that this is the same exact issue, caused by the shader compiler because both vulkan and gl use hlslcc for translation. Thanks for reporting it though, we'll take a look.
     
  6. Kolyasisan

    Kolyasisan

    Joined:
    Feb 2, 2015
    Posts:
    397
    Umm, I kinda can't use cutout shaders on Android deploy. All the textures have alpha checked, it doesn't use Graphics job and still cutout shaders don't, well, cutout.
     
  7. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Hmm cutouts should work... which device are you testing it on? Does this also happen on Windows standalone when targeting Vulkan? In any case, please file a bug with repro project and we'll check it out.
     
  8. Kolyasisan

    Kolyasisan

    Joined:
    Feb 2, 2015
    Posts:
    397
    It happens on 2 android devices and in Android editor, nothing of that happens while targeting standalone. Gotta file a bug report now...

    EDIT: figured out what was the problem, it didn't work because of "Alpha is transparency" turned on. Had to disable it. Strange.
     
    Last edited: Sep 29, 2016
  9. Arowx

    Arowx

    Joined:
    Nov 12, 2009
    Posts:
    8,194
    Builds and Starts up OK then stalls with a 'grayish' screen post Unity Logo.

    App Log File (above)

    Windows 10 PC latest AMD drivers, a quick one default cube test scene/project seems to work OK?
     
  10. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Was this with Graphics Jobs on or off? The error saying VK_ERROR_DEVICE_LOST seems kinda fatal =). Can you send us a small repro project where this happens?
     
  11. toxtronyx

    toxtronyx

    Joined:
    Aug 21, 2014
    Posts:
    114
    Machine:
    Intel Xeon E3-1231
    8Gbyte RAM
    Geforce GTX 750 Ti
    Windows 7 Pro

    What should I say? I had almost no compatibility issues after migrating from 5.3.6. The overall performance with everything left at default (no graphics jobs) is in our project around 10-20fps higher. The overall look is far smoother. Way less z-buffer issues and very nice shadows. Conclusion: GREAT JOB FOLKS! Can't await to get my hands dirty with a more stable version.
     
    dylanHart likes this.
  12. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Awesome! Is this on desktop standalone, or on Android? If desktop, which graphics API were you using previously?
     
  13. Arowx

    Arowx

    Joined:
    Nov 12, 2009
    Posts:
    8,194
    Graphic Jobs Off.
    Standalone.
    As stated a simple test scene works.

    It looks like it might not be terminal just a recoverable hiccup.
     
  14. Arowx

    Arowx

    Joined:
    Nov 12, 2009
    Posts:
    8,194
    OK It's when I use the default instance shader, even on a few cubes it crashes.
     
  15. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Okay, please file a bug with a repro project and we'll take a look.
     
  16. toxtronyx

    toxtronyx

    Joined:
    Aug 21, 2014
    Posts:
    114
    Desktop and DX11.
     
  17. Arowx

    Arowx

    Joined:
    Nov 12, 2009
    Posts:
    8,194
    Case 837045 raised.
     
  18. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Yep, this was indeed the same case, and I finally got around to take a look at it. There were a few fixes needed to the shader compiler (and the fixes are in the process of trickling down to 5.5 and 5.4), but the content also has some problems: the domain shader outputs triangles, while the geometry shader takes points in. DX11 seems to silently ignore this, but both OpenGL and Vulkan implementations, if they wish to be conformant, have to detect and reject these cases. The shaders need to be reworked somewhat so that either the domain shader outputs points or the geometry shader takes in triangles; I didn't look into the shader any further than that.
     
  19. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Here's what I've gathered so far:
    - NVidia GPU renders just fine.
    - On my AMD GPU I'm not getting any errors, but the cubes are not rendered either.

    I'll have to investigate this a bit further. Thanks for the report!
     
  20. Kolyasisan

    Kolyasisan

    Joined:
    Feb 2, 2015
    Posts:
    397
    I found an annoying bug. Vulkan tends to mess up some image effects in built version of the game. Applied 2 screenshots, one of editor and other of build. Notice how bloom (from cinematic image effects) is messed up. Новый точечный рисунок (6).png Новый точечный рисунок (5).png
     
  21. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Hey,

    Care to file a bug report with a repro project? Thanks.
     
  22. Kolyasisan

    Kolyasisan

    Joined:
    Feb 2, 2015
    Posts:
    397
    Wow, that was fast. Okay, here's the case number: 837530
     
  23. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    So, I found the problem: turns out Vulkan is the only desktop platform where half-precision float actually means 16-bit floats in the shader code, and the Bloom effect just accumulates the FP16 rounding errors all the way up to the lens dirt.

    You can work around the problem by editing Bloom.cginc and replacing all occurrences of 'half' with 'float'. Meanwhile, I've assigned the bug report to the image effects team to fix properly.
     
  24. Kolyasisan

    Kolyasisan

    Joined:
    Feb 2, 2015
    Posts:
    397
    Wow, that was completely unexpected. Vulkan sure is a strange API. Thanks for the reply!
     
  25. kalineh

    kalineh

    Joined:
    Dec 23, 2015
    Posts:
    241
    Our editor-build seems to run okay. A brief look shows steamvr perf graph seems to show more CPU and full GPU utilization, but the in-headset performance feels smoother. GPU time on the unity stats window is slightly lower than non-vulkan. I'll do some proper profiling on final build if I can resolve crash bug (report: #838394).
     
  26. xDavidLeon

    xDavidLeon

    Joined:
    Jun 9, 2014
    Posts:
    123
  27. dyox

    dyox

    Joined:
    Aug 19, 2011
    Posts:
    619
    Hello, i'm not able to start a window build with vulkan api. It crash.
    Windows 8.1
    Geforce GTX 850m (latest drivers : 376.33)

    I'm not sure if it's the correct thread, but here are logs if it's usefull.
    Unity Player [version: Unity 5.6.0b3_358ff4ed3952]

    nvoglv64.dll caused an Access Violation (0xc0000005)
    in module nvoglv64.dll at 0033:73d13306.

    Error occurred at 2016-12-27_114744.
    D:\TerrainEngine.5.6\Builds\VK\Cubic.exe, run by Thomas.
    29% memory in use.
    8076 MB physical memory [5662 MB free].
    19340 MB paging file [16692 MB free].
    134217728 MB user address space [134217331 MB free].
    Read from location 00000080 caused an access violation.

    Context:
    RDI: 0x03455930 RSI: 0x00000000 RAX: 0x00a5dbb0
    RBX: 0x00000000 RCX: 0x00000000 RDX: 0x0092f0f0
    RIP: 0x73d13306 RBP: 0x0092f089 SegCs: 0x00000033
    EFlags: 0x00010246 RSP: 0x0092efb8 SegSs: 0x0000002b
    R8: 0x00000000 R9: 0x00000000 R10: 0x00000000
    R11: 0x0092f0f0 R12: 0x00000701 R13: 0x00090446
    R14: 0x00000780 R15: 0x00000001

    Bytes at CS:EIP:
    8b 81 80 00 00 00 89 02 33 c0 c3 cc cc cc cc cc

    Stack:
    0x0092efb8: 73cec2a5 00000000 0ce35560 00000000 ...s....`U......
    0x0092efc8: 0092f010 00000000 067f1b00 00000000 ................
    0x0092efd8: 00000000 00000000 00000001 00000000 ................
    0x0092efe8: 73cd42f9 00000000 00000003 00000000 .B.s............
    0x0092eff8: 0092f0a1 00000000 0092f1a8 00000000 ................
    0x0092f008: 0ce329a0 00000000 3b9acde8 00000000 .).........;....
    0x0092f018: 518f9e37 00007ff7 00000000 00000000 7..Q............
    0x0092f028: 0ce329a0 00000000 00000003 00000032 .)..........2...
    0x0092f038: 00000000 00000780 00000438 00000001 ........8.......
    0x0092f048: 00000013 00000000 00000000 00000000 ................
    0x0092f058: 00000000 00000000 00000001 00000001 ................
    0x0092f068: 00000000 00000001 00000000 00000000 ................
    0x0092f078: 0261af6c 00000000 00000002 00000008 l.a.............
    0x0092f088: 00000780 00000438 00000001 00000001 ....8...........
    0x0092f098: 00004000 00004000 00000800 00000001 .@...@..........
    0x0092f0a8: 00000001 00000001 00000001 00000000 ................
    0x0092f0b8: 00090446 00000000 00000701 00000000 F...............
    0x0092f0c8: 03455930 00000000 00000701 00000000 0YE.............
    0x0092f0d8: 00000780 00000000 0092f240 00000000 ........@.......
    0x0092f0e8: 518fe019 00007ff7 0ce329a0 00000000 ...Q.....)......
    0x0092f0f8: 0ce329a0 00000000 0092f1a8 00000000 .)..............
    0x0092f108: 00000780 00000438 00000780 00000438 ....8.......8...
    0x0092f118: 00000000 00000000 0092f158 00000000 ........X.......
    0x0092f128: 73a820eb 00000000 3b9aed28 00000000 . .s....(..;....
    0x0092f138: 00000000 00000000 00000000 00000000 ................
    0x0092f148: 51580000 00007ff7 00090446 00000000 ..XQ....F.......
    0x0092f158: 00000002 00000008 00000780 00000438 ............8...
    0x0092f168: 00000001 00000001 00004000 00004000 .........@...@..
    0x0092f178: 00000800 00000001 00000001 00000001 ................
    0x0092f188: 0000009f 00000000 00000438 00000000 ........8.......
    0x0092f198: 518dfa3d 00007ff7 00000001 00000000 =..Q............
    0x0092f1a8: 00000032 00000000 00000780 00000000 2...............
    0x0092f1b8: 03c567d0 00000000 529e34a0 00007ff7 .g.......4.R....
    0x0092f1c8: 00000780 00000000 00000780 00000000 ................
    0x0092f1d8: 51f2ac46 00007ff7 529e34a0 00007ff7 F..Q.....4.R....
    0x0092f1e8: 51f2fb3e 00007ff7 00000000 00000000 >..Q............
    0x0092f1f8: 5271cd30 00007ff7 00090446 00000000 0.qR....F.......
    0x0092f208: 00000780 00000000 00000438 00000000 ........8.......
    0x0092f218: 518e304f 00007ff7 00000780 00000000 O0.Q............
    0x0092f228: 03c567d0 00000000 00090446 00000000 .g......F.......
    0x0092f238: a705348f 00007ff9 00090446 00000000 .4......F.......
    0x0092f248: 00000780 00000438 00000780 00000438 ....8.......8...
    0x0092f258: 0000003c 00000001 00000000 00000001 <...............
    0x0092f268: 00000030 00000028 00000438 00000000 0...(...8.......
    0x0092f278: 518e346c 00007ff7 00000001 00000000 l4.Q............
    0x0092f288: 00000780 00000438 00000438 00000000 ....8...8.......
    0x0092f298: 00000780 00000000 00000780 00000000 ................
    0x0092f2a8: 00000438 00007ff9 0000003c 00007ff9 8.......<.......
    0x0092f2b8: 00000001 00000000 00000000 00000000 ................
    0x0092f2c8: 00000000 00007ff7 00000001 00000000 ................
    0x0092f2d8: 0092f5dc 00000000 0092f5d4 00000000 ................
    0x0092f2e8: 0092f5d8 00000000 00000438 00000000 ........8.......
    0x0092f2f8: 00000015 00000000 00000015 00000000 ................
    0x0092f308: 518e52c1 00007ff7 0000003c 00000000 .R.Q....<.......
    0x0092f318: 0092f490 00000000 03435188 00000000 .........QC.....
    0x0092f328: 00000000 00000000 00000438 696e6565 ........8...eeni
    0x0092f338: 0000003c 00000000 00000001 00000000 <...............
    0x0092f348: 00000000 00000000 00000000 00000000 ................
    0x0092f358: 00000001 00000000 0092f5dc 00000000 ................
    0x0092f368: 0092f5d4 00000000 0092f5d8 00000000 ................
    0x0092f378: 03435188 00000000 0092f490 00000000 .QC.............
    0x0092f388: 51ea53dc 00007ff7 0000003c 00000000 .S.Q....<.......
    0x0092f398: 00000000 00000000 0000003c 00000000 ........<.......
    0x0092f3a8: 02689370 00000000 00000438 00000000 p.h.....8.......
    0x0092f3b8: 0000003c 00000000 00000001 00000000 <...............
    0x0092f3c8: 0092f500 00000000 00000000 00000000 ................
    0x0092f3d8: 0092f5dc 00000000 0092f5d4 00000000 ................
    0x0092f3e8: 0092f5d8 00000000 00000015 00000000 ................
    0x0092f3f8: 00000015 00000000 00000014 00000000 ................
    0x0092f408: 00000015 00000000 00000000 00000000 ................
    0x0092f418: 00000780 00000438 02689390 00000000 ....8.....h.....
    0x0092f428: 00000012 00000000 52dd87f7 0000b506 ...........R....
    0x0092f438: 00000012 00000000 00000042 00000000 ........B.......
    0x0092f448: 00000000 00000000 00000438 00000000 ........8.......
    0x0092f458: 00000001 00000000 0092f5f1 00000000 ................
    0x0092f468: a4457bca 00007ff9 02621b40 00000000 .{E.....@.b.....
    0x0092f478: 00000001 00000000 00000000 00000000 ................
    0x0092f488: 0000035c 00000000 00000000 00000000 \...............
    0x0092f498: ffffffff 00007ff9 00000048 00000000 ........H.......
    0x0092f4a8: 00000001 00000000 00000000 00000000 ................
    0x0092f4b8: 00000000 00000000 00000070 00000000 ........p.......
    0x0092f4c8: ffffffff ffffffff ffffffff ffffffff ................
    0x0092f4d8: a4457ba8 00007ff9 a4457bca 00007ff9 .{E......{E.....
    0x0092f4e8: 00000001 00000000 048a8ed0 00000000 ................
    0x0092f4f8: 00000000 00000000 00000000 00000000 ................
    0x0092f508: 00000000 00000000 00000000 00000000 ................
    0x0092f518: 00000000 00000000 00000001 00000000 ................
    0x0092f528: 00000000 00000000 00000780 00000000 ................
    0x0092f538: 00000438 00000000 00000001 00000000 8...............
    0x0092f548: 03c54da0 00000000 03435140 00000000 .M......@QC.....
    0x0092f558: 00000015 00000000 0092f5f1 00000000 ................
    0x0092f568: 515f2ba7 00007ff7 00000000 00007ff7 .+_Q............
    0x0092f578: 00000015 00000000 00000780 00000000 ................
    0x0092f588: 00000438 00000000 0092f600 00000000 8...............
    0x0092f598: 515f0b01 00007ff7 0092f600 00000000 .._Q............
    0x0092f5a8: 00000000 00000000 0092f5dc 00000000 ................
    0x0092f5b8: 0092f5d4 00000000 0092f5d8 00000000 ................
    0x0092f5c8: a440272c 00007ff9 02000010 00000004 ,'@.............
    0x0092f5d8: 00000004 00000004 00000000 00000000 ................
    0x0092f5e8: 5165f2ee 00007ff7 00000042 00000000 ..eQ....B.......
    0x0092f5f8: 0092f690 00000000 03c4a880 00000000 ................
    0x0092f608: 515f1186 00007ff7 02689390 00000000 .._Q......h.....
    0x0092f618: 51d41cc4 00007ff7 00000000 00000000 ...Q............
    0x0092f628: 00000780 00000000 00000438 00000000 ........8.......
    0x0092f638: 03c4a800 00000000 0092f6a9 00000000 ................
    0x0092f648: 51d5105d 00007ff7 00000001 00000000 ]..Q............
    0x0092f658: 00000001 00000000 00000001 00000000 ................
    0x0092f668: 03c4a880 00000000 00000000 00000000 ................
    0x0092f678: 00000000 00000000 00000007 00000000 ................
    0x0092f688: 00000000 00000000 02688810 00000000 ..........h.....
    0x0092f698: 0000001f 00000000 0092f6d8 00000000 ................
    0x0092f6a8: 0000001f 00000000 00000042 00007ff9 ........B.......
    0x0092f6b8: 02689390 00000000 0000001e 00000000 ..h.............
    0x0092f6c8: 00000000 00000000 0000001e 00000000 ................
    0x0092f6d8: 00000042 00007ff7 00000000 00000000 B...............
    0x0092f6e8: 00000000 00000000 00000000 00000000 ................
    0x0092f6f8: 00000000 00000000 0092f810 00000000 ................
    0x0092f708: 515f8d6a 00007ff7 00000000 00000000 j._Q............
    0x0092f718: 52a17920 00007ff7 00000000 00000000 y.R............
    0x0092f728: 00000004 00000000 00000000 00000000 ................
    0x0092f738: 00000000 00007ff7 0000001d 00000000 ................
    0x0092f748: 526dfa98 00007ff7 00000000 00000000 ..mR............
    0x0092f758: 02689370 00000000 00000012 00000000 p.h.............
    0x0092f768: 526aa6e8 00007ff7 00000012 00000000 ..jR............
    0x0092f778: 00000042 00007ff7 00000000 00000000 B...............
    0x0092f788: 00637465 00646567 529e42f0 00007ff7 etc.ged..B.R....
    0x0092f798: 00000003 00000000 00000042 00000000 ........B.......
    0x0092f7a8: 0260b990 00000000 0260b9e0 00000000 ..`.......`.....
    0x0092f7b8: 0260b9e0 00000000 00000000 00000000 ..`.............
    0x0092f7c8: 022f1200 00000000 02614100 00000000 ../......Aa.....
    0x0092f7d8: 0000002e 00000000 00000042 00000000 ........B.......
    0x0092f7e8: 0000002e 00000000 00000042 00000000 ........B.......
    0x0092f7f8: 022f1270 00000000 026136d0 00000000 p./......6a.....
    0x0092f808: 00000037 00000000 024d0830 06100800 7.......0.M.....
    0x0092f818: 00000037 00000000 00000042 00000000 7.......B.......
    0x0092f828: 02613710 00000000 00000031 00000000 .7a.....1.......
    0x0092f838: 024d2a60 00000000 00000031 00000000 `*M.....1.......
    0x0092f848: 00000042 00007ff7 02614160 00000000 B.......`Aa.....
    0x0092f858: 00000029 00000000 1c004143 01c0003f ).......CA..?...
    0x0092f868: 00000029 00000000 00000042 00000000 ).......B.......
    0x0092f878: 02613850 00000000 00000038 00000000 P8a.....8.......
    0x0092f888: 523e0e01 00007ff7 00000038 00000000 ..>R....8.......
    0x0092f898: 00000042 00007ff7 0092f900 00000000 B...............
    0x0092f8a8: 51f2d30f 00007ff7 0000000f 00000000 ...Q............
    0x0092f8b8: 00000000 00000000 00000000 00000000 ................
    0x0092f8c8: 022f1200 00000000 022f1200 00000000 ../......./.....
    0x0092f8d8: 02613690 00000000 00000032 00000000 .6a.....2.......
    0x0092f8e8: 00000000 00000000 00000032 00000000 ........2.......
    0x0092f8f8: 00000042 00007ff7 529e42f0 00007ff7 B........B.R....
    0x0092f908: 024d1f20 00000000 024d0830 00000000 .M.....0.M.....
    0x0092f918: 526dfa01 00007ff7 00000000 00000000 ..mR............
    0x0092f928: 51f424de 00007ff7 00000000 00000000 .$.Q............
    0x0092f938: 00000000 00000000 00000000 00000000 ................
    0x0092f948: 51580000 00007ff7 00000000 00000000 ..XQ............
    0x0092f958: 51f3400c 00007ff7 00000000 00000000 .@.Q............
    0x0092f968: 00000000 00000000 00000000 00000000 ................
    0x0092f978: 00000000 00000000 00000000 00000000 ................
    0x0092f988: 00000000 00000000 00000068 00000000 ........h.......
    0x0092f998: 00992194 00000000 00992174 00000000 .!......t!......
    0x0092f9a8: 00992122 00000000 00000000 00000000 "!..............
    0x0092f9b8: 00000000 00000000 00000000 00000000 ................
    0x0092f9c8: 00000000 00000401 00000001 00000000 ................
    0x0092f9d8: 00000000 00000000 00000000 00000000 ................
    0x0092f9e8: 00010001 00000000 00000000 00000000 ................
    0x0092f9f8: 00000000 00000000 00000000 00000000 ................
    0x0092fa08: a66e16ad 00007ff9 00000000 00000000 ..n.............
    0x0092fa18: 00000000 00000000 00000000 00000000 ................
    0x0092fa28: 00000000 00000000 00000000 00000000 ................
    0x0092fa38: a7014409 00007ff9 00000000 00000000 .D..............
    0x0092fa48: 00000000 00000000 00000000 00000000 ................
    0x0092fa58: 00000000 00000000 00000000 00000000 ................
    0x0092fa68: a449cd48 00007ff9 0092e140 00000000 H.I.....@.......
    0x0092fa78: 0092e140 00000000 00000000 00000000 @...............
    0x0092fa88: 00000000 00000000 00000000 00000000 ................
    0x0092fa98: 00000000 00000000 00000000 00000000 ................
    0x0092faa8: 00000000 00000000 00000000 00000000 ................
    0x0092fab8: 00000000 00000000 00000000 00000000 ................
    0x0092fac8: 00000000 00000000 00000000 00000000 ................
    0x0092fad8: 00000000 00000000 00000000 00000000 ................
    0x0092fae8: 00000000 00000000 00000000 00000000 ................
    0x0092faf8: 00000000 00000000 00000000 00000000 ................
    0x0092fb08: 00000000 00000000 00000000 00000000 ................
    0x0092fb18: 00000000 00000000 00000000 00000000 ................
    0x0092fb28: 00000000 00000000 00000000 00000000 ................
    0x0092fb38: 00000000 00000000 00000000 00000000 ................
    0x0092fb48: 00000000 00000000 00000000 00000000 ................
    0x0092fb58: 00000000 00000000 00000000 00000000 ................
    0x0092fb68: 00000000 00000000 00000000 00000000 ................
    0x0092fb78: 00000000 00000000 00000000 00000000 ................
    0x0092fb88: 00000000 00000000 00000000 00000000 ................
    0x0092fb98: 00000000 00000000 00000000 00000000 ................
    0x0092fba8: 00000000 00000000 00000000 00000000 ................
    0x0092fbb8: 00000000 00000000 00000000 00000000 ................
    0x0092fbc8: 00000000 00000000 00000000 00000000 ................
    0x0092fbd8: 00000000 00000000 00000000 00000000 ................
    0x0092fbe8: 00000000 00000000 00000000 00000000 ................
    0x0092fbf8: 00000000 00000000 00000000 00000000 ................
    0x0092fc08: 00000000 00000000 00000000 00000000 ................
    0x0092fc18: 00000000 00000000 00000000 00000000 ................
    0x0092fc28: 00000000 00000000 00000000 00000000 ................
    0x0092fc38: 00000000 00000000 00000000 00000000 ................
    0x0092fc48: 00000000 00000000 00000000 00000000 ................
    0x0092fc58: 00000000 00000000 00000000 00000000 ................
    0x0092fc68: 00000000 00000000 00000000 00000000 ................
    0x0092fc78: 00000000 00000000 00000000 00000000 ................
    0x0092fc88: 00000000 00000000 00000000 00000000 ................
    0x0092fc98: 00000000 00000000 00000000 00000000 ................
    0x0092fca8: 00000000 00000000 00000000 00000000 ................
    0x0092fcb8: 00000000 00000000 00000000 00000000 ................
    0x0092fcc8: 00000000 00000000 00000000 00000000 ................
    0x0092fcd8: 00000000 00000000 00000000 00000000 ................
    0x0092fce8: 00000000 00000000 00000000 00000000 ................
    0x0092fcf8: 00000000 00000000 00000000 00000000 ................
    0x0092fd08: 00000000 00000000 00000000 00000000 ................
    0x0092fd18: 00000000 00000000 00000000 00000000 ................
    0x0092fd28: 00000000 00000000 00000000 00000000 ................
    0x0092fd38: 00000000 00000000 00000000 00000000 ................
    0x0092fd48: 00000000 00000000 00000000 00000000 ................
    0x0092fd58: 00000000 00000000 00000000 00000000 ................
    0x0092fd68: 00000000 00000000 00000000 00000000 ................
    0x0092fd78: 00000000 00000000 00000000 00000000 ................
    0x0092fd88: 00000000 00000000 00000000 00000000 ................
    0x0092fd98: 00000000 00000000 00000000 00000000 ................
    0x0092fda8: 00000000 00000000 00000000 00000000 ................
    0x0092fdb8: 00000000 00000000 00000000 00000000 ................
    0x0092fdc8: 00000000 00000000 00000000 00000000 ................
    0x0092fdd8: 00000000 00000000 00000000 00000000 ................
    0x0092fde8: 00000000 00000000 00000000 00000000 ................
    0x0092fdf8: 00000000 00000000 00000000 00000000 ................
    0x0092fe08: 00000000 00000000 00000000 00000000 ................
    0x0092fe18: 00000000 00000000 00000000 00000000 ................
    0x0092fe28: 00000000 00000000 00000000 00000000 ................
    0x0092fe38: 00000000 00000000 00000000 00000000 ................
    0x0092fe48: 00000000 00000000 00000000 00000000 ................
    0x0092fe58: 00000000 00000000 00000000 00000000 ................
    0x0092fe68: 00000000 00000000 00000000 00000000 ................
    0x0092fe78: 00000000 00000000 00000000 00000000 ................
    0x0092fe88: 00000000 00000000 00000000 00000000 ................
    0x0092fe98: 00000000 00000000 00000000 00000000 ................
    0x0092fea8: 00000000 00000000 00000000 00000000 ................
    0x0092feb8: 00000000 00000000 00000000 00000000 ................
    0x0092fec8: 00000000 00000000 00000000 00000000 ................
    0x0092fed8: 00000000 00000000 00000000 00000000 ................
    0x0092fee8: 00000000 00000000 00000000 00000000 ................
    0x0092fef8: 00000000 00000000 00000000 00000000 ................
    0x0092ff08: 00000000 00000000 00000000 00000000 ................
    0x0092ff18: 00000000 00000000 00000000 00000000 ................
    0x0092ff28: 00000000 00000000 00000000 00000000 ................
    0x0092ff38: 00000000 00000000 00000000 00000000 ................
    0x0092ff48: 00000000 00000000 00000000 00000000 ................
    0x0092ff58: 00000000 00000000 00000000 00000000 ................
    0x0092ff68: 00000000 00000000 00000000 00000000 ................
    0x0092ff78: 00000000 00000000 00000000 00000000 ................
    0x0092ff88: 00000000 00000000 00000000 00000000 ................
    0x0092ff98: 00000000 00000000 00000000 00000000 ................
    0x0092ffa8: 00000000 00000000 00000000 00000000 ................
    0x0092ffb8: 00000000 00000000 00000000 00000000 ................
    0x0092ffc8: 00000000 00000000 00000000 00000000 ................
    0x0092ffd8: 00000000 00000000 00000000 00000000 ................
    0x0092ffe8: 00000000 00000000 00000000 00000000 ................
    0x0092fff8: 00000000 00000000 ........

    Module 1
    C:\Windows\SYSTEM32\xinput1_3.dll
    Image Base: 0x00400000 Image Size: 0x0001e000
    File Size: 107368 File Time: 2007-04-04_175422
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® DirectX for Windows®
    FileDesc: Microsoft Common Controller API
    FileVer: 9.18.944.0
    ProdVer: 9.18.944.0

    Module 2
    C:\Windows\system32\nvoglv64.dll
    Image Base: 0x72e10000 Image Size: 0x0214f000
    File Size: 34703416 File Time: 2016-12-12_033718
    Version:
    Company: NVIDIA Corporation
    Product: NVIDIA Compatible OpenGL ICD
    FileDesc: NVIDIA Compatible OpenGL ICD
    FileVer: 21.21.13.7633
    ProdVer: 21.21.13.7633


    == [end of error.log] ==

    Initialize engine version: 5.6.0b3 (358ff4ed3952)
    GfxDevice: creating device client; threaded=1
    [Vulkan init] extensions: count=4
    [Vulkan init] extensions: name=VK_KHR_surface, enabled=1
    [Vulkan init] extensions: name=VK_KHR_win32_surface, enabled=1
    [Vulkan init] extensions: name=VK_EXT_debug_report, enabled=0
    [Vulkan init] extensions: name=VK_NV_external_memory_capabilities, enabled=0
    [Vulkan init] extensions: count=8
    [Vulkan init] extensions: name=VK_KHR_swapchain, enabled=1
    [Vulkan init] extensions: name=VK_NV_glsl_shader, enabled=0
    [Vulkan init] extensions: name=VK_KHR_sampler_mirror_clamp_to_edge, enabled=0
    [Vulkan init] extensions: name=VK_NV_dedicated_allocation, enabled=0
    [Vulkan init] extensions: name=VK_NV_external_memory, enabled=0
    [Vulkan init] extensions: name=VK_NV_external_memory_win32, enabled=0
    [Vulkan init] extensions: name=VK_NV_win32_keyed_mutex, enabled=0
    [Vulkan init] extensions: name=VK_NVX_device_generated_commands, enabled=0
    Vulkan API version 1.0.24
    Vulkan vendor=[NVIDIA] id=[10de]
    Vulkan renderer=[GTX 850M] id=[1391]
    Vulkan device type 2
    Vulkan driverversion=[0x5e084000] uint=[1577598976]
    Vulkan PSO: cache data not found [path=C:/Users/Thomas/AppData/Local/Temp/DefaultCompany/TerrainEngine_5_6/vulkan_pso_cache.bin]
    Begin MonoManager ReloadAssembly
    Platform assembly: D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\UnityEngine.dll (this message is harmless)
    Loading D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\UnityEngine.dll into Unity Child Domain
    Platform assembly: D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\Assembly-CSharp-firstpass.dll (this message is harmless)
    Loading D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\Assembly-CSharp-firstpass.dll into Unity Child Domain
    Platform assembly: D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\Assembly-CSharp.dll (this message is harmless)
    Loading D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\Assembly-CSharp.dll into Unity Child Domain
    Platform assembly: D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\Assembly-UnityScript.dll (this message is harmless)
    Loading D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\Assembly-UnityScript.dll into Unity Child Domain
    Platform assembly: D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\UnityEngine.UI.dll (this message is harmless)
    Loading D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\UnityEngine.UI.dll into Unity Child Domain
    Platform assembly: D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\UnityEngine.Networking.dll (this message is harmless)
    Loading D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\UnityEngine.Networking.dll into Unity Child Domain
    Platform assembly: D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\UnityEngine.TestRunner.dll (this message is harmless)
    Loading D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\UnityEngine.TestRunner.dll into Unity Child Domain
    Platform assembly: D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\nunit.framework.dll (this message is harmless)
    Loading D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\nunit.framework.dll into Unity Child Domain
    - Completed reload, in 0.180 seconds
    Platform assembly: D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\System.Core.dll (this message is harmless)
    Platform assembly: D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Managed\System.dll (this message is harmless)
    desktop: 1920x1080 60Hz; virtual: 1920x1080 at 0,0
    <RI> Initializing input.

    <RI> Input initialized.

    InitializeOrResetSwapChain 1920x1080 samples=1
    Crash!!!
    SymInit: Symbol-SearchPath: '.;D:\TerrainEngine.5.6\Builds\VK;D:\TerrainEngine.5.6\Builds\VK;C:\Windows;C:\Windows\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 530, UserName: 'Thomas'
    OS-Version: 6.3.9600 () 0x300-0x1
    D:\TerrainEngine.5.6\Builds\VK\Cubic.exe:Cubic.exe (00007FF751580000), size: 24256512 (result: 0), SymType: '-exported-', PDB: 'D:\TerrainEngine.5.6\Builds\VK\Cubic.exe', fileVersion: 5.6.0.36852
    C:\Windows\SYSTEM32\ntdll.dll:ntdll.dll (00007FF9A6FC0000), size: 1728512 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\ntdll.dll', fileVersion: 6.3.9600.17278
    C:\Windows\system32\KERNEL32.DLL:KERNEL32.DLL (00007FF9A66E0000), size: 1286144 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\KERNEL32.DLL', fileVersion: 6.3.9600.17056
    C:\Windows\system32\KERNELBASE.dll:KERNELBASE.dll (00007FF9A4400000), size: 1110016 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\KERNELBASE.dll', fileVersion: 6.3.9600.17278
    C:\Windows\SYSTEM32\MFPlat.DLL:MFPlat.DLL (00007FF988990000), size: 880640 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\MFPlat.DLL', fileVersion: 12.0.9600.17238
    C:\Windows\SYSTEM32\MFReadWrite.dll:MFReadWrite.dll (00007FF991F90000), size: 368640 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\MFReadWrite.dll', fileVersion: 12.0.9600.17238
    C:\Windows\SYSTEM32\HID.DLL:HID.DLL (00007FF9A3540000), size: 53248 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\HID.DLL', fileVersion: 6.3.9600.16384
    C:\Windows\system32\USER32.dll:USER32.dll (00007FF9A68F0000), size: 1511424 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\USER32.dll', fileVersion: 6.3.9600.17344
    C:\Windows\SYSTEM32\VERSION.dll:VERSION.dll (00007FF9A14E0000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\VERSION.dll', fileVersion: 6.3.9600.16384
    C:\Windows\system32\ole32.dll:eek:le32.dll (00007FF9A4DA0000), size: 1540096 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\ole32.dll', fileVersion: 6.3.9600.17042
    C:\Windows\system32\SHLWAPI.dll:SHLWAPI.dll (00007FF9A6E20000), size: 331776 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\SHLWAPI.dll', fileVersion: 6.3.9600.16384
    C:\Windows\system32\ADVAPI32.dll:ADVAPI32.dll (00007FF9A5220000), size: 675840 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\ADVAPI32.dll', fileVersion: 6.3.9600.17031
    C:\Windows\system32\GDI32.dll:GDI32.dll (00007FF9A5020000), size: 1327104 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\GDI32.dll', fileVersion: 6.3.9600.17246
    C:\Windows\system32\SHELL32.dll:SHELL32.dll (00007FF9A52D0000), size: 21032960 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\SHELL32.dll', fileVersion: 6.3.9600.17331
    C:\Windows\SYSTEM32\OPENGL32.dll:OPENGL32.dll (00007FF993A80000), size: 1183744 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\OPENGL32.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\WINMM.dll:WINMM.dll (00007FF9A0260000), size: 126976 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\WINMM.dll', fileVersion: 6.3.9600.17078
    C:\Windows\system32\WS2_32.dll:WS2_32.dll (00007FF9A4FC0000), size: 360448 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WS2_32.dll', fileVersion: 6.3.9600.16384
    C:\Windows\system32\OLEAUT32.dll:OLEAUT32.dll (00007FF9A6820000), size: 790528 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\OLEAUT32.dll', fileVersion: 6.3.9600.17403
    C:\Windows\system32\IMM32.dll:IMM32.dll (00007FF9A4F20000), size: 212992 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\IMM32.dll', fileVersion: 6.3.9600.17031
    C:\Windows\SYSTEM32\DNSAPI.dll:DNSAPI.dll (00007FF9A3970000), size: 667648 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\DNSAPI.dll', fileVersion: 6.3.9600.17039
    C:\Windows\SYSTEM32\IPHLPAPI.DLL:IPHLPAPI.DLL (00007FF99D690000), size: 167936 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\IPHLPAPI.DLL', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\WINHTTP.dll:WINHTTP.dll (00007FF99AA90000), size: 806912 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\WINHTTP.dll', fileVersion: 6.3.9600.16384
    C:\Windows\system32\msvcrt.dll:msvcrt.dll (00007FF9A5170000), size: 684032 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\msvcrt.dll', fileVersion: 7.0.9600.16384
    C:\Windows\SYSTEM32\cfgmgr32.dll:cfgmgr32.dll (00007FF9A47F0000), size: 303104 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\cfgmgr32.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\combase.dll:combase.dll (00007FF9A4A80000), size: 1925120 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\combase.dll', fileVersion: 6.3.9600.17031
    C:\Windows\system32\RPCRT4.dll:RPCRT4.dll (00007FF9A4840000), size: 1273856 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\RPCRT4.dll', fileVersion: 6.3.9600.17216
    C:\Windows\SYSTEM32\sechost.dll:sechost.dll (00007FF9A4F60000), size: 356352 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\sechost.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\GLU32.dll:GLU32.dll (00007FF9A1DD0000), size: 180224 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\GLU32.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\DDRAW.dll:DDRAW.dll (00007FF993980000), size: 999424 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\DDRAW.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\WINMMBASE.dll:WINMMBASE.dll (00007FF9A13B0000), size: 172032 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\WINMMBASE.dll', fileVersion: 6.3.9600.17080
    C:\Windows\system32\NSI.dll:NSI.dll (00007FF9A4D80000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\NSI.dll', fileVersion: 6.3.9600.16384
    C:\Windows\system32\MSCTF.dll:MSCTF.dll (00007FF9A6E80000), size: 1282048 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MSCTF.dll', fileVersion: 6.3.9600.17031
    C:\Windows\SYSTEM32\WINNSI.DLL:WINNSI.DLL (00007FF99D670000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\WINNSI.DLL', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\DCIMAN32.dll:DCIMAN32.dll (00007FF9A2240000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\DCIMAN32.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\DEVOBJ.dll:DEVOBJ.dll (00007FF9A31A0000), size: 155648 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\DEVOBJ.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\RTWorkQ.DLL:RTWorkQ.DLL (00007FF995700000), size: 147456 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\RTWorkQ.DLL', fileVersion: 12.0.9600.16384
    C:\Windows\SYSTEM32\AVRT.dll:AVRT.dll (00007FF9A1F10000), size: 45056 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\AVRT.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\kernel.appcore.dll:kernel.appcore.dll (00007FF9A3010000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\kernel.appcore.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\CRYPTBASE.dll:CRYPTBASE.dll (00007FF9A41A0000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\CRYPTBASE.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\bcryptPrimitives.dll:bcryptPrimitives.dll (00007FF9A4140000), size: 393216 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\bcryptPrimitives.dll', fileVersion: 6.3.9600.17120
    C:\Windows\system32\uxtheme.dll:uxtheme.dll (00007FF9A3020000), size: 1183744 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\uxtheme.dll', fileVersion: 6.3.9600.17031
    C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll:tiptsf.dll (00007FF999AC0000), size: 622592 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll', fileVersion: 6.3.9600.17135
    D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Mono\mono.dll:mono.dll (00007FF990620000), size: 2998272 (result: 0), SymType: '-exported-', PDB: 'D:\TerrainEngine.5.6\Builds\VK\Cubic_Data\Mono\mono.dll', fileVersion: 1.0.0.1
    C:\Windows\system32\PSAPI.DLL:pSAPI.DLL (00007FF9A4C60000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\PSAPI.DLL', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\MSWSOCK.dll:MSWSOCK.dll (00007FF9A3B60000), size: 360448 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\MSWSOCK.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\shcore.dll:shcore.dll (00007FF9A2930000), size: 651264 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\shcore.dll', fileVersion: 6.3.9600.17238
    C:\Windows\system32\dwmapi.dll:dwmapi.dll (00007FF9A2760000), size: 131072 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dwmapi.dll', fileVersion: 6.3.9600.17238
    C:\Windows\SYSTEM32\vulkan-1.dll:vulkan-1.dll (00007FF999EA0000), size: 282624 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\vulkan-1.dll', fileVersion: 1.0.26.0
    C:\Windows\system32\nvoglv64.dll:nvoglv64.dll (0000000072E10000), size: 34926592 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\nvoglv64.dll', fileVersion: 21.21.13.7633
    C:\Windows\system32\SETUPAPI.dll:SETUPAPI.dll (00007FF9A6A70000), size: 1916928 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\SETUPAPI.dll', fileVersion: 6.3.9600.17031
    C:\Windows\SYSTEM32\WTSAPI32.dll:WTSAPI32.dll (00007FF9A2A30000), size: 69632 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\WTSAPI32.dll', fileVersion: 6.3.9600.16384
    C:\Windows\system32\WINTRUST.dll:WINTRUST.dll (00007FF9A45C0000), size: 311296 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WINTRUST.dll', fileVersion: 6.3.9600.17085
    C:\Windows\system32\CRYPT32.dll:CRYPT32.dll (00007FF9A4610000), size: 1961984 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\CRYPT32.dll', fileVersion: 6.3.9600.17475
    C:\Windows\system32\MSASN1.dll:MSASN1.dll (00007FF9A43E0000), size: 73728 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MSASN1.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\ntmarta.dll:ntmarta.dll (00007FF99C470000), size: 196608 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\ntmarta.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\clbcatq.dll:clbcatq.dll (00007FF9A4CD0000), size: 671744 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\clbcatq.dll', fileVersion: 2001.12.10530.16384
    C:\Windows\System32\MMDevApi.dll:MMDevApi.dll (00007FF9A23A0000), size: 401408 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\MMDevApi.dll', fileVersion: 6.3.9600.17031
    C:\Windows\SYSTEM32\wdmaud.drv:wdmaud.drv (00007FF9A1A00000), size: 245760 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\wdmaud.drv', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\ksuser.dll:ksuser.dll (00007FF99DF60000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\ksuser.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\AUDIOSES.DLL:AUDIOSES.DLL (00007FF99B880000), size: 516096 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\AUDIOSES.DLL', fileVersion: 6.3.9600.17415
    C:\Windows\SYSTEM32\powrprof.dll:powrprof.dll (00007FF9A42E0000), size: 282624 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\powrprof.dll', fileVersion: 6.3.9600.17031
    C:\Windows\SYSTEM32\msacm32.drv:msacm32.drv (00007FF9A19A0000), size: 45056 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\msacm32.drv', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\MSACM32.dll:MSACM32.dll (00007FF9A1540000), size: 110592 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\MSACM32.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\midimap.dll:midimap.dll (00007FF9A17B0000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\midimap.dll', fileVersion: 6.3.9600.16384
    C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9600.17031_none_6242a4b3ecbb55a1\comctl32.dll:comctl32.dll (00007FF9A2500000), size: 2465792 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9600.17031_none_6242a4b3ecbb55a1\comctl32.dll', fileVersion: 6.10.9600.17031
    C:\Windows\SYSTEM32\oleacc.dll:eek:leacc.dll (00007FF9A13E0000), size: 405504 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\oleacc.dll', fileVersion: 7.2.9600.16384
    C:\Windows\SYSTEM32\xinput1_3.dll:xinput1_3.dll (0000000000400000), size: 122880 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\xinput1_3.dll', fileVersion: 9.18.944.0
    C:\Windows\SYSTEM32\WINSTA.dll:WINSTA.dll (00007FF9A4250000), size: 356352 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\WINSTA.dll', fileVersion: 6.3.9600.16384
    C:\Windows\SYSTEM32\dbghelp.dll:dbghelp.dll (00007FF99AB60000), size: 1605632 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\dbghelp.dll', fileVersion: 6.3.9600.16520
    C:\Windows\SYSTEM32\SspiCli.dll:SspiCli.dll (00007FF9A4110000), size: 176128 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SYSTEM32\SspiCli.dll', fileVersion: 6.3.9600.16408

    ========== OUTPUTING STACK TRACE ==================

    0x0000000073CEC2A5 (nvoglv64) DrvPresentBuffers
    0x0000000073CD42F9 (nvoglv64) DrvPresentBuffers
    0x00007FF7518F9E37 (Cubic) physx::shdfnd::Allocator::`default constructor closure'
    0x00007FF7518FE019 (Cubic) physx::shdfnd::Allocator::`default constructor closure'
    0x00007FF7518DFA3D (Cubic) physx::shdfnd::Allocator::`default constructor closure'
    0x00007FF7518E304F (Cubic) physx::shdfnd::Allocator::`default constructor closure'
    0x00007FF7518E346C (Cubic) physx::shdfnd::Allocator::`default constructor closure'
    0x00007FF7518E52C1 (Cubic) physx::shdfnd::Allocator::`default constructor closure'
    0x00007FF751EA53DC (Cubic) physx::shdfnd::Foundation::getErrorMutex
    ERROR: SymGetSymFromAddr64, GetLastError: 'Tentative d’accès à une adresse non valide.' (Address: 00007FF7515F2BA7)
    0x00007FF7515F2BA7 (Cubic)
    0x00007FF751D5105D (Cubic) physx::shdfnd::Foundation::getTempAllocMutex
    ERROR: SymGetSymFromAddr64, GetLastError: 'Tentative d’accès à une adresse non valide.' (Address: 00007FF7515F8D6A)
    0x00007FF7515F8D6A (Cubic)
    0x00007FF751F3400C (Cubic) physx::shdfnd::Foundation::getErrorMutex
    0x00007FF9A66E16AD (KERNEL32) BaseThreadInitThunk
    0x00007FF9A7014409 (ntdll) RtlUserThreadStart

    ========== END OF STACKTRACE ===========

    **** Crash! ****

    I have one shader error when building, i can not fix it, it's out of my shader code :

    'UnityGetRawLightMaskOrProbeOcclusions': no matching 2 parameter function
    Compiling Vertex program
    Platform defines: UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP
     
    Last edited: Dec 27, 2016
  28. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Have you tried disabling Graphics Jobs in player settings? There were some known issues that we've since fixed but that didn't make it into 5.6b3 yet.

     
  29. dyox

    dyox

    Joined:
    Aug 19, 2011
    Posts:
    619
    Yes, i was aware of this problem :
    VK.png

    Do you need more details or information ?
     
    Last edited: Dec 27, 2016
  30. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    That looks correct. Please file a bug report with a repro project, our QA will see if they can reproduce it.
     
  31. dyox

    dyox

    Joined:
    Aug 19, 2011
    Posts:
    619
    Ok thank you. It's sent. Case 865143
     
  32. AlteredPlanets

    AlteredPlanets

    Joined:
    Aug 12, 2013
    Posts:
    455
    Hello, so in the final version of 5.6 can I expect to fps increase ?or just the same fps but on vulkan.Because thats how it is in the experiemental version
     
  33. sgower

    sgower

    Joined:
    Mar 9, 2015
    Posts:
    316
    Has anyone managed to get Vulkan working with SteamVR? Because when I launch my game, it appears in the monitor window, but the headset doesn't display the game. The SteamVR little window says my game is unresponsive.
     
  34. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    It's currently not supported. We're working with Valve to get Vulkan running on SteamVR (It'll require some adjustments on both Unity and SteamVR side). Stay tuned.
     
  35. sgower

    sgower

    Joined:
    Mar 9, 2015
    Posts:
    316
    Ok, it's very good to know this....because now I don't need to worry about what's wrong with my project. :) As you know, VR is extremely demanding of CPU/GPU so getting a performance boost would be very helpful.
     
  36. sgower

    sgower

    Joined:
    Mar 9, 2015
    Posts:
    316
    The release notes for 5.6b9 says:
    "VR: Added initial Vulkan support for OpenVR"

    Does this mean this will work for SteamVR? Also does anyone have any information regarding when Vulkan in the Editor mode will work?
     
  37. sniffle63

    sniffle63

    Joined:
    Aug 31, 2013
    Posts:
    365
    Im using 5.60f3 and Vulkan works on my windows 7(at 100-170 fps) and surface pro 2(at about 25 fps), and it crash's on my windows 10. The build crash gives this error log
    https://hastebin.com/ucefowicav.tex
    Works in the editor on the win 10 and on webgl


    (on a side not, it does increase FPS alot. My game went from steady 60 fps to 120+ fps up to 170 fps using vulkan on the computers it worked on)
     
  38. AlteredPlanets

    AlteredPlanets

    Joined:
    Aug 12, 2013
    Posts:
    455
    does it work in editor on windows 7 or 8?
     
  39. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Hi, do you have the latest GPU drivers installed on your Win10 machine? If so, please file a bug report with hardware specs so we can take a look.
     
  40. sniffle63

    sniffle63

    Joined:
    Aug 31, 2013
    Posts:
    365
    Checking now
     
  41. elias_t

    elias_t

    Joined:
    Sep 17, 2010
    Posts:
    1,367
    Hi.

    I cannot run an empty scene with Vulkan api. It crashes on startup.

    Windows 7 64, Amd RX 480 latest drivers.

    Initialize engine version: 5.6.0f3 (497a0f351392)
    GfxDevice: creating device client; threaded=1
    [Vulkan init] extensions: count=3
    [Vulkan init] extensions: name=VK_KHR_surface, enabled=1
    [Vulkan init] extensions: name=VK_KHR_win32_surface, enabled=1
    [Vulkan init] extensions: name=VK_EXT_debug_report, enabled=0
    [Vulkan init] extensions: count=10
    [Vulkan init] extensions: name=VK_KHR_sampler_mirror_clamp_to_edge, enabled=0
    [Vulkan init] extensions: name=VK_KHR_swapchain, enabled=1
    [Vulkan init] extensions: name=VK_AMD_rasterization_order, enabled=0
    [Vulkan init] extensions: name=VK_AMD_shader_ballot, enabled=0
    [Vulkan init] extensions: name=VK_AMD_shader_trinary_minmax, enabled=0
    [Vulkan init] extensions: name=VK_AMD_shader_explicit_vertex_parameter, enabled=0
    [Vulkan init] extensions: name=VK_AMD_gcn_shader, enabled=0
    [Vulkan init] extensions: name=VK_AMD_draw_indirect_count, enabled=0
    [Vulkan init] extensions: name=VK_AMD_negative_viewport_height, enabled=0
    [Vulkan init] extensions: name=VK_AMD_gpu_shader_half_float, enabled=0
    Vulkan API version 1.0.37
    Vulkan vendor=[ATI] id=[1002]
    Vulkan renderer=[Radeon (TM) RX 480 Graphics] id=[67df]
    Vulkan device type 2
    Vulkan driverversion=[0x00404001] uint=[4210689]
    Vulkan: default RenderTexture HDR format: 11 (109)
    Vulkan PSO: cache data not found [path=C:/Users/elias/AppData/Local/Tmp/DefaultCompany/Vulkan/vulkan_pso_cache.bin]
    Shader 'Hidden/InternalErrorShader' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/InternalErrorShader' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/InternalErrorShader' - Setting to default shader.
    Begin MonoManager ReloadAssembly
    Platform assembly: C:\Users\elias\Desktop\test_Data\Managed\UnityEngine.dll (this message is harmless)
    Loading C:\Users\elias\Desktop\test_Data\Managed\UnityEngine.dll into Unity Child Domain
    Platform assembly: C:\Users\elias\Desktop\test_Data\Managed\UnityEngine.UI.dll (this message is harmless)
    Loading C:\Users\elias\Desktop\test_Data\Managed\UnityEngine.UI.dll into Unity Child Domain
    Platform assembly: C:\Users\elias\Desktop\test_Data\Managed\UnityEngine.Networking.dll (this message is harmless)
    Loading C:\Users\elias\Desktop\test_Data\Managed\UnityEngine.Networking.dll into Unity Child Domain
    - Completed reload, in 0.012 seconds
    Platform assembly: C:\Users\elias\Desktop\test_Data\Managed\System.Core.dll (this message is harmless)
    Platform assembly: C:\Users\elias\Desktop\test_Data\Managed\System.dll (this message is harmless)
    Shader 'Hidden/Internal-DeferredShading' uses 5 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-DeferredShading' uses 4 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-DeferredShading' uses 6 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-DeferredShading' uses 7 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-DeferredShading' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-DeferredShading' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-DeferredShading' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DeferredShading' - Setting to default shader.
    Shader 'Hidden/Internal-DeferredReflections' uses 5 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-DeferredReflections' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-DeferredReflections' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-DeferredReflections' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DeferredReflections' - Setting to default shader.
    Shader 'Hidden/Internal-ScreenSpaceShadows' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-ScreenSpaceShadows' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-ScreenSpaceShadows' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-ScreenSpaceShadows' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-ScreenSpaceShadows' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-ScreenSpaceShadows' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-ScreenSpaceShadows' - Setting to default shader.
    Shader 'Hidden/Internal-PrePassLighting' uses 3 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-PrePassLighting' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-PrePassLighting' uses 4 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-PrePassLighting' uses 5 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-PrePassLighting' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-PrePassLighting' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-PrePassLighting' - Setting to default shader.
    Shader 'Hidden/Internal-DepthNormalsTexture' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-DepthNormalsTexture' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-DepthNormalsTexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DepthNormalsTexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DepthNormalsTexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DepthNormalsTexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DepthNormalsTexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DepthNormalsTexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DepthNormalsTexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DepthNormalsTexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DepthNormalsTexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-DepthNormalsTexture' - Setting to default shader.
    Shader 'Hidden/Internal-MotionVectors' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-MotionVectors' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-MotionVectors' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-MotionVectors' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-MotionVectors' - Setting to default shader.
    Shader 'Hidden/Internal-Halo' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-Halo' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-Halo' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/Internal-Halo' - Setting to default shader.
    Shader 'Hidden/Internal-Flare' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-Flare' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-Flare' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/Internal-Flare' - Setting to default shader.
    Shader 'Legacy Shaders/Diffuse' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Legacy Shaders/Diffuse' uses 3 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Legacy Shaders/Diffuse' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Legacy Shaders/Diffuse' uses 4 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Legacy Shaders/Diffuse' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Legacy Shaders/VertexLit' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Legacy Shaders/VertexLit' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Legacy Shaders/VertexLit' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Legacy Shaders/VertexLit' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Legacy Shaders/VertexLit' - Setting to default shader.
    Shader 'Legacy Shaders/Diffuse': failed to set fallback shader 'Legacy Shaders/VertexLit'
    WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - Pass 'FORWARD' has no vertex shader
    WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - Pass 'FORWARD' has no vertex shader
    WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - Pass 'PREPASS' has no vertex shader
    WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - Pass 'PREPASS' has no vertex shader
    WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - Pass 'DEFERRED' has no vertex shader
    WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - Pass 'META' has no vertex shader
    WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - All passes removed
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - Setting to default shader.
    Shader 'Hidden/CubeBlur' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/CubeBlur' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/CubeBlur' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/CubeBlur' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/CubeBlur' - Setting to default shader.
    Shader 'Hidden/CubeCopy' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/CubeCopy' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/CubeCopy' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/CubeCopy' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/CubeCopy' - Setting to default shader.
    Shader 'Hidden/CubeBlend' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/CubeBlend' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/CubeBlend' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/CubeBlend' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/CubeBlend' - Setting to default shader.
    Shader 'Sprites/Default' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Sprites/Default' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Sprites/Default' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Sprites/Default' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Sprites/Default' - Setting to default shader.
    Shader 'UI/Default' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'UI/Default' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'UI/Default' - Pass 'DEFAULT' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'UI/Default' - Setting to default shader.
    Shader 'Hidden/VideoDecode' uses 3 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/VideoDecode' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/VideoDecode' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/VideoDecode' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/VideoDecode' - Pass 'YCBCR_TO_RGB1' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/VideoDecode' - Setting to default shader.
    Shader 'Hidden/Internal-StencilWrite' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-StencilWrite' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-StencilWrite' - Setting to default shader.
    Shader 'Hidden/Internal-CombineDepthNormals' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-CombineDepthNormals' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-CombineDepthNormals' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-CombineDepthNormals' - Setting to default shader.
    Shader 'Hidden/BlitCopy' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/BlitCopy' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/BlitCopy' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/BlitCopy' - Setting to default shader.
    Shader 'Hidden/BlitCopyDepth' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/BlitCopyDepth' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/BlitCopyDepth' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/BlitCopyDepth' - Setting to default shader.
    Shader 'Hidden/Internal-GUITextureClip' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-GUITextureClip' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-GUITextureClip' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/Internal-GUITextureClip' - Setting to default shader.
    Shader 'Hidden/Internal-GUITextureClipText' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-GUITextureClipText' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-GUITextureClipText' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/Internal-GUITextureClipText' - Setting to default shader.
    Shader 'Hidden/Internal-GUITexture' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-GUITexture' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-GUITexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/Internal-GUITexture' - Setting to default shader.
    Shader 'Hidden/Internal-GUITextureBlit' uses 2 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/Internal-GUITextureBlit' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/Internal-GUITextureBlit' - Pass '' has no vertex shader
    ERROR: Shader Shader is not supported on this GPU (none of subshaders/fallbacks are suitable)WARNING: Shader Unsupported: 'Hidden/Internal-GUITextureBlit' - Setting to default shader.
    Shader 'Hidden/ConvertTexture' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/ConvertTexture' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/ConvertTexture' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/ConvertTexture' - Setting to default shader.
    Shader 'Hidden/VR/BlitCopyFromTexArray' uses 1 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    Shader 'Hidden/VR/BlitCopyFromTexArray' uses 0 texture parameters, more than the -1 supported by the current graphics device.

    (Filename: Line: 0)

    WARNING: Shader Unsupported: 'Hidden/VR/BlitCopyFromTexArray' - Pass '' has no vertex shader
    WARNING: Shader Unsupported: 'Hidden/VR/BlitCopyFromTexArray' - Setting to default shader.
    Crash!!!
    SymInit: Symbol-SearchPath: '.;C:\Users\elias\Desktop;C:\Users\elias\Desktop;C:\Windows;C:\Windows\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 530, UserName: 'elias'
    OS-Version: 6.1.7601 (Service Pack 1) 0x100-0x1
    C:\Users\elias\Desktop\test.exe:test.exe (000C0000), size: 18976768 (result: 0), SymType: '-exported-', PDB: 'C:\Users\elias\Desktop\test.exe', fileVersion: 5.6.0.31247
    C:\Windows\SysWOW64\ntdll.dll:ntdll.dll (77E00000), size: 1572864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SysWOW64\ntdll.dll', fileVersion: 6.1.7601.23418
    C:\Windows\syswow64\kernel32.dll:kernel32.dll (75910000), size: 1114112 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\kernel32.dll', fileVersion: 6.1.7601.23418
    C:\Windows\syswow64\KERNELBASE.dll:KERNELBASE.dll (77540000), size: 290816 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\KERNELBASE.dll', fileVersion: 6.1.7601.23418
    C:\Windows\system32\HID.DLL:HID.DLL (75370000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\HID.DLL', fileVersion: 6.1.7600.16385
    C:\Windows\syswow64\msvcrt.dll:msvcrt.dll (75DB0000), size: 704512 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\msvcrt.dll', fileVersion: 7.0.7601.17744
    C:\Windows\syswow64\USER32.dll:USER32.dll (77680000), size: 1048576 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\USER32.dll', fileVersion: 6.1.7600.16385
    C:\Windows\syswow64\GDI32.dll:GDI32.dll (77840000), size: 589824 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\GDI32.dll', fileVersion: 6.1.7601.23457
    C:\Windows\syswow64\LPK.dll:LPK.dll (77DD0000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\LPK.dll', fileVersion: 6.1.7601.23453
    C:\Windows\syswow64\USP10.dll:USP10.dll (77120000), size: 643072 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\USP10.dll', fileVersion: 1.626.7601.19054
    C:\Windows\syswow64\ADVAPI32.dll:ADVAPI32.dll (76B20000), size: 659456 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\ADVAPI32.dll', fileVersion: 6.1.7601.23418
    C:\Windows\SysWOW64\sechost.dll:sechost.dll (758E0000), size: 102400 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SysWOW64\sechost.dll', fileVersion: 6.1.7601.18869
    C:\Windows\syswow64\RPCRT4.dll:RPCRT4.dll (76C40000), size: 983040 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\RPCRT4.dll', fileVersion: 6.1.7601.23452
    C:\Windows\syswow64\SspiCli.dll:SspiCli.dll (75710000), size: 393216 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\SspiCli.dll', fileVersion: 6.1.7601.23452
    C:\Windows\syswow64\CRYPTBASE.dll:CRYPTBASE.dll (75700000), size: 49152 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\CRYPTBASE.dll', fileVersion: 6.1.7601.23452
    C:\Windows\system32\VERSION.dll:VERSION.dll (73D40000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\VERSION.dll', fileVersion: 6.1.7600.16385
    C:\Windows\syswow64\ole32.dll:eek:le32.dll (75C40000), size: 1429504 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\ole32.dll', fileVersion: 6.1.7601.23392
    C:\Windows\syswow64\SHLWAPI.dll:SHLWAPI.dll (76AC0000), size: 356352 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\SHLWAPI.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\SHELL32.dll:SHELL32.dll (75E60000), size: 12894208 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\SHELL32.dll', fileVersion: 6.1.7601.23418
    C:\Windows\system32\OPENGL32.dll:OPENGL32.dll (73590000), size: 819200 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\OPENGL32.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\GLU32.dll:GLU32.dll (75340000), size: 139264 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\GLU32.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\DDRAW.dll:DDRAW.dll (743F0000), size: 946176 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DDRAW.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\DCIMAN32.dll:DCIMAN32.dll (75380000), size: 24576 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DCIMAN32.dll', fileVersion: 6.1.7601.23453
    C:\Windows\syswow64\SETUPAPI.dll:SETUPAPI.dll (75A20000), size: 1691648 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\SETUPAPI.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\CFGMGR32.dll:CFGMGR32.dll (77510000), size: 159744 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\CFGMGR32.dll', fileVersion: 6.1.7601.17621
    C:\Windows\syswow64\OLEAUT32.dll:OLEAUT32.dll (77210000), size: 585728 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\OLEAUT32.dll', fileVersion: 6.1.7601.19144
    C:\Windows\syswow64\DEVOBJ.dll:DEVOBJ.dll (76C20000), size: 73728 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\DEVOBJ.dll', fileVersion: 6.1.7601.17621
    C:\Windows\system32\dwmapi.dll:dwmapi.dll (75300000), size: 77824 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dwmapi.dll', fileVersion: 6.1.7601.18917
    C:\Windows\system32\WINMM.dll:WINMM.dll (745E0000), size: 204800 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WINMM.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\WS2_32.dll:WS2_32.dll (771D0000), size: 217088 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\WS2_32.dll', fileVersion: 6.1.7601.23451
    C:\Windows\syswow64\NSI.dll:NSI.dll (757F0000), size: 24576 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\NSI.dll', fileVersion: 6.1.7600.16385
    C:\Windows\syswow64\IMM32.dll:IMM32.dll (77590000), size: 393216 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\IMM32.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\MSCTF.dll:MSCTF.dll (75810000), size: 835584 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\MSCTF.dll', fileVersion: 6.1.7601.18731
    C:\Windows\system32\DNSAPI.dll:DNSAPI.dll (743A0000), size: 278528 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\DNSAPI.dll', fileVersion: 6.1.7601.17570
    C:\Windows\system32\IPHLPAPI.DLL:IPHLPAPI.DLL (75320000), size: 114688 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\IPHLPAPI.DLL', fileVersion: 6.1.7601.17514
    C:\Windows\system32\WINNSI.DLL:WINNSI.DLL (752F0000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WINNSI.DLL', fileVersion: 6.1.7600.16385
    C:\Windows\system32\WINHTTP.dll:WINHTTP.dll (73530000), size: 360448 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\WINHTTP.dll', fileVersion: 6.1.7601.23451
    C:\Windows\system32\webio.dll:webio.dll (74350000), size: 327680 (result: 0), SymType: '-nosymbols-', PDB: 'C:\Windows\system32\webio.dll', fileVersion: 6.1.7601.23375
    C:\Users\elias\Desktop\test_Data\Mono\mono.dll:mono.dll (10000000), size: 2297856 (result: 0), SymType: '-exported-', PDB: 'C:\Users\elias\Desktop\test_Data\Mono\mono.dll', fileVersion: 1.0.0.1
    C:\Windows\syswow64\PSAPI.DLL:pSAPI.DLL (75780000), size: 20480 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\PSAPI.DLL', fileVersion: 6.1.7600.16385
    C:\Windows\system32\MSWSOCK.dll:MSWSOCK.dll (64F30000), size: 245760 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MSWSOCK.dll', fileVersion: 6.1.7601.23451
    C:\Windows\System32\wship6.dll:wship6.dll (75280000), size: 24576 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\wship6.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\uxtheme.dll:uxtheme.dll (6F980000), size: 524288 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\uxtheme.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\vulkan-1.dll:vulkan-1.dll (734E0000), size: 294912 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\vulkan-1.dll', fileVersion: 1.0.37.0
    C:\Windows\SysWow64\amdvlk32.dll:amdvlk32.dll (72260000), size: 8073216 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\SysWow64\amdvlk32.dll', fileVersion: 1.0.37.0
    C:\Windows\syswow64\WINTRUST.dll:WINTRUST.dll (77780000), size: 192512 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\WINTRUST.dll', fileVersion: 6.1.7601.18839
    C:\Windows\syswow64\CRYPT32.dll:CRYPT32.dll (778D0000), size: 1183744 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\CRYPT32.dll', fileVersion: 6.1.7601.18839
    C:\Windows\syswow64\MSASN1.dll:MSASN1.dll (77500000), size: 49152 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\MSASN1.dll', fileVersion: 6.1.7601.17514
    C:\Windows\syswow64\CLBCatQ.DLL:CLBCatQ.DLL (777B0000), size: 536576 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\syswow64\CLBCatQ.DLL', fileVersion: 2001.12.8530.16385
    C:\Windows\System32\MMDevApi.dll:MMDevApi.dll (74A90000), size: 233472 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\MMDevApi.dll', fileVersion: 6.1.7601.17514
    C:\Windows\System32\PROPSYS.dll:pROPSYS.dll (733E0000), size: 1003520 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\PROPSYS.dll', fileVersion: 7.0.7601.17514
    C:\Windows\system32\wdmaud.drv:wdmaud.drv (73BE0000), size: 196608 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\wdmaud.drv', fileVersion: 6.1.7601.17514
    C:\Windows\system32\ksuser.dll:ksuser.dll (75290000), size: 16384 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\ksuser.dll', fileVersion: 6.1.7601.19091
    C:\Windows\system32\AVRT.dll:AVRT.dll (74C80000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\AVRT.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\AUDIOSES.DLL:AUDIOSES.DLL (733A0000), size: 221184 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\AUDIOSES.DLL', fileVersion: 6.1.7601.18741
    C:\Windows\system32\msacm32.drv:msacm32.drv (75270000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\msacm32.drv', fileVersion: 6.1.7600.16385
    C:\Windows\system32\MSACM32.dll:MSACM32.dll (73BC0000), size: 81920 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\MSACM32.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\midimap.dll:midimap.dll (74650000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\midimap.dll', fileVersion: 6.1.7600.16385
    C:\Windows\system32\dbghelp.dll:dbghelp.dll (744E0000), size: 962560 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\system32\dbghelp.dll', fileVersion: 6.1.7601.17514

    ========== OUTPUTING STACK TRACE ==================

    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 006521A2)
    0x006521A2 (test)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 006525D4)
    0x006525D4 (test)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00619D81)
    0x00619D81 (test)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00619E41)
    0x00619E41 (test)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 0061C5E7)
    0x0061C5E7 (test)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 0024192E)
    0x0024192E (test)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 007ACAFC)
    0x007ACAFC (test)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 0013723C)
    0x0013723C (test)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00903E58)
    0x00903E58 (test)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00941AD4)
    0x00941AD4 (test)
    0x7592338A (kernel32) BaseThreadInitThunk
    0x77E39902 (ntdll) RtlInitializeExceptionChain
    0x77E398D5 (ntdll) RtlInitializeExceptionChain

    ========== END OF STACKTRACE ===========

    **** Crash! ****
     
  42. suityn

    suityn

    Joined:
    Nov 19, 2015
    Posts:
    9
    Hi

    For me it works if i uncheck "graphics jobs". I get an incredible increase of FPS of x10 as DrawMeshInstanced seems to dont work at all.
     
  43. AlteredPlanets

    AlteredPlanets

    Joined:
    Aug 12, 2013
    Posts:
    455
    so it works if you disable graphic jobs?
     
  44. ajbenjamin

    ajbenjamin

    Joined:
    Apr 19, 2017
    Posts:
    1
    Hi , Is there a way to extract room impulse responses in the unity after creating a custom room and then placing a source and a receiver and acquiring the room impulse responses recorded by the receiver.
     
  45. suityn

    suityn

    Joined:
    Nov 19, 2015
    Posts:
    9
    it "works" i mean my project run, without unchecking graphics jobs i don't even get to the default options windows
    But seems that DrawMeshInstanced don't work as things painted with that are not rendered.... that is why i get x10 FPS
     
  46. LukaKotar

    LukaKotar

    Joined:
    Sep 25, 2011
    Posts:
    394
    My project crashes on Vulkan unless I lower the overall texture resolution in the quality settings. Does Vulkan require more VRAM? On OpenGL, I'm sitting at 1771 MB total VRAM usage (out of 1996 MB usable).
     
  47. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Hey, sorry for the late reply as most people are on vacation during July. We've noticed the same behavior very recently, and we're looking into this.
     
  48. Sebioff

    Sebioff

    Joined:
    Dec 22, 2013
    Posts:
    218
    Gave Vulkan a try today since faster rendering would certainly be nice :D
    All tests were done on Windows standalone builds in an extreme scene with tons of drawcalls (I figured that'd be where Vulkans strengths would be most noticeable...but maybe not?).

    Windows 10
    NVidia GeForce GTX 1060 6GB, latest drivers (July 18th)
    Unity 5.6.2p3
    • without Graphics Jobs Vulkan is slightly faster (6-8%), with Graphics Jobs it's significantly slower (a lot of extra time is spent in WaitForRenderJobs)
    • when using Graphics Jobs there are some issues with rendering transparent objects (render on top of everything else) and the Rendering Profiler doesn't work properly
    Without Graphics Jobs:
    norenderjobs.png

    With Graphics Jobs:
    renderjobs.png
     
  49. strandborg

    strandborg

    Joined:
    Dec 8, 2014
    Posts:
    32
    Hi, can you file a bug with a repro project on the transparent object rendering issue, and report the bug number back to me please? Thanks.
     
  50. Sebioff

    Sebioff

    Joined:
    Dec 22, 2013
    Posts:
    218
    Seems to be happening due to a combination of things. I wasn't able to boil it down to a small repro project within time, so I ended up submitting our entire main project.

    Case 936991 for the transparency issue/flickering when using Graphics Jobs.
    Case 936978 for another smaller issue happening with Vulkan + linear color space.