Any 3D Game or Engine with examples/demos which just work (compile&run) out of the box on linux ?

Prokop Hapala prokophapala at gmail.com
Fri Oct 18 21:30:13 UTC 2019


On Friday, 18 October 2019 at 20:09:47 UTC, Aldo wrote:
> Try to move that libnuklear.so or rename it to nuklear.so. I 
> checked bindbc code and saw :
>
>     version(Windows) {
>         const(char)[][1] libNames = ["nuklear.dll"];
>     }
>     else version(OSX) {
>         const(char)[][1] libNames = ["nuklear.dylib"];
>     }
>     else version(Posix) {
>         const(char)[][2] libNames = [
>             "nuklear.so",
>             "/usr/local/lib/nuklear.so",
>         ];
>     }

Great! progress! ... It shown loading splash screen and moving 
loading bar, when it reach the end, it segfault

prokop at prokop-Lenovo-ideapad-Y700-15ISK:~/git_SW/_Dlang/dagon-demo$ ./dagondemo
Loading scene "TestScene"
Segmentation fault (core dumped)

possibly it it connected with the error I saw during compilation:
Copying files for dagon...
Invalid source/import path: 
/home/prokop/git_SW/_Dlang/dagon-demo/shaders


More information about the Digitalmars-d-learn mailing list