Search found 14 matches
- Sun Aug 14, 2016 8:27 pm
- Forum: Beginners Help
- Topic: Choppy FPS camera on Linux
- Replies: 8
- Views: 1290
Re: Choppy FPS camera on Linux
In fact minetest has the same problem with wayland, reported as bug: https://github.com/minetest/minetest/issues/1763 TLDR: in the long term, wayland might implement a legacy solution that suits x11 applications like minetest, but until then, it will continue to not work. If/when irrlicht supports t...
- Wed Jul 13, 2016 11:20 pm
- Forum: Open Discussion and Dev Announcements
- Topic: Irrlicht 1.8.4 released
- Replies: 8
- Views: 28781
Re: Irrlicht 1.8.4 released
Its really great to see this release. Many thanks for anybody who has made it possible!
- Mon May 16, 2016 1:49 am
- Forum: Bug reports
- Topic: [GLES branch bug] Not telling OS that key event was handled
- Replies: 1
- Views: 823
Re: [GLES branch bug] Not telling OS that key event was hand
Okay I've tested my fix now and it does what it should, so the bug is really there, and I've already described the way to fix it.
- Sat May 14, 2016 1:58 pm
- Forum: Bug reports
- Topic: [GLES branch bug] Not telling OS that key event was handled
- Replies: 1
- Views: 823
[GLES branch bug] Not telling OS that key event was handled
Hi, minetest is atm on svn revision 5122. From what I see, there is a bug in source/Irrlicht/Android/CIrrDeviceAndroid.cpp, function CIrrDeviceAndroid::handleInput: In line 491 of the file there is "device->postEventFromUser(event)". Then status is returned. According to the docs in androi...
- Sun Feb 28, 2016 7:55 pm
- Forum: Bug reports
- Topic: Full international character support for system clipboard
- Replies: 1
- Views: 1175
Full international character support for system clipboard
Hello, It would be cool for irrlicht to support a real stringw/wchar_t * based clipboard, for internationalized text. Current clipboard supports only extends from 0 to 255. That means that if your wchar_t type is UCS based (its that way on all platforms I think), then anything above U+0FF doesn't wo...
- Sat Nov 21, 2015 3:04 pm
- Forum: Bug reports
- Topic: [fixed] Fix pasting bug on X11 + linux
- Replies: 4
- Views: 1738
Re: [fixed] Fix pasting bug on X11 + linux
Thanks for merging. About making a release: it would surely get the fix to users faster, considering that Ubuntu 16.04 xenial (which is an LTS, so will exist for 5 years) has its feature freeze on Feb 18 2016, and irrlicht will take some time to get from released upstream to first debian packages, t...
- Sat Nov 21, 2015 7:06 am
- Forum: Bug reports
- Topic: [fixed] Fix pasting bug on X11 + linux
- Replies: 4
- Views: 1738
Re: [patch] Fix pasting bug on X11 + linux
Note that the patch might not apply cleanly. But its only a three-liner, so very easy to apply manually.
- Sat Nov 21, 2015 4:53 am
- Forum: Bug reports
- Topic: [fixed] Fix pasting bug on X11 + linux
- Replies: 4
- Views: 1738
Re: [patch] Fix pasting bug on X11 + linux
It would be great if the patch could be applied both to the 1.8 and 1.9 branches, the bug affects both.
- Sat Nov 21, 2015 4:51 am
- Forum: Bug reports
- Topic: [fixed] Fix pasting bug on X11 + linux
- Replies: 4
- Views: 1738
[fixed] Fix pasting bug on X11 + linux
Before, you couldn't paste from external applications to Irrlicht based ones on Linux. This patch fixes this bug. See also the report http://sourceforge.net/p/irrlicht/bugs/435/ and the downstream bug report https://github.com/minetest/minetest/issues/373 . The fix is very simple, it corrects wrongl...
- Sun Sep 06, 2015 10:31 pm
- Forum: Bug reports
- Topic: [fixed]Crash with irrlicht 1.8.2 and gcc 5.2 on linux
- Replies: 8
- Views: 2946
Re: Crash with irrlicht 1.8.2 and gcc 5.2 on linux
Hi, from inspecting your patch, and reading docs, I see that after you do pack( push, [n]) , you have to pop as well. I've therefore wondered where that pop was done, and found the comment in irrpack.h: // Always include the irrunpack.h file right after the last type declared // like this, and do ...
- Sun Sep 06, 2015 7:25 pm
- Forum: Bug reports
- Topic: [fixed]Crash with irrlicht 1.8.2 and gcc 5.2 on linux
- Replies: 8
- Views: 2946
Re: Crash with irrlicht 1.8.2 and gcc 5.2 on linux
Did a git bisect on one of the git mirrors, and found the commit where the crash starts to happen: Author: cutealien <cutealien@dfc29bdd-3216-0410-991c-e03cc46cb475> Date: Wed Aug 26 21:04:11 2015 +0000 Merge branch releases/1.8 revisions 5104:5120 into trunk: - Fix compiling on GCC5 o...
- Sun Sep 06, 2015 7:14 pm
- Forum: Bug reports
- Topic: [fixed]Crash with irrlicht 1.8.2 and gcc 5.2 on linux
- Replies: 8
- Views: 2946
Re: Crash with irrlicht 1.8.2 and gcc 5.2 on linux
Here is a valgrind stacktrace, for the case it is helpful: https://gist.github.com/anonymous/6f49bedfc3a31267c07d
- Sun Sep 06, 2015 6:56 pm
- Forum: Bug reports
- Topic: [fixed]Crash with irrlicht 1.8.2 and gcc 5.2 on linux
- Replies: 8
- Views: 2946
Re: Crash with irrlicht 1.8.2 and gcc 5.2 on linux
Stacktrace for the user interface example is here: https://gist.github.com/anonymous/4ef001f9cad93d714811 In this setup, I ran with my ubuntu system provided 1.8.1 (perfectly fine) .so binary, only compiling with 1.8.2 headers triggers the bug. Its more though than just an incompatibility between 1....
- Sun Sep 06, 2015 9:50 am
- Forum: Bug reports
- Topic: [fixed]Crash with irrlicht 1.8.2 and gcc 5.2 on linux
- Replies: 8
- Views: 2946
[fixed]Crash with irrlicht 1.8.2 and gcc 5.2 on linux
Hello, minetest dev here, some of our arch linux users had reported a reproducible crash a few seconds after starting minetest after their last system upgrade . ( minetest tracker bug ). We have determined that it was no minetest bug, as they have reported that the irrlicht examples fail as well. Th...