Search found 6 matches

by rvl2
Wed Sep 23, 2009 1:02 am
Forum: Bug reports
Topic: Windows Crash on NVIDIA GT 8400 cards
Replies: 3
Views: 1188

Your example works fine on my setup: Windows 7 64-bit, NVIDIA 9400M. Most probably this is not Irrlicht problem 2 things for your friends to try: 1. Update drivers. 2. Turn off "Threaded optimization" in NVIDIA control panel. By the way :) http://www.theinquirer.net/inquirer/news/1028703/n...
by rvl2
Mon Sep 21, 2009 10:48 am
Forum: Bug reports
Topic: Projection matrix bug in OpenGL driver
Replies: 0
Views: 743

Projection matrix bug in OpenGL driver

COpenGLDriver.cpp has the following lines in COpenGLDriver::setTransform(...) method // flip z to compensate OpenGLs right-hand coordinate system glmat[12] *= -1.0f; The comment is very strange as in OpenGL matrix glmat[12] is x-offset. The bug is not visible in usual cases because native Irrlicht c...
by rvl2
Sat Sep 19, 2009 11:46 pm
Forum: Bug reports
Topic: [fixed]quick fix for ogl-es brunch on WinCE
Replies: 1
Views: 875

[fixed]quick fix for ogl-es brunch on WinCE

Just to make it compilable after huge 16 sept merge from hybrid. Bug with missing attribute names (IGUISkin.h) is in trunk too. Index: include/IGUISkin.h =================================================================== --- include/IGUISkin.h (revision 2695) +++ include/IGUISkin.h (working copy) @...
by rvl2
Wed Aug 26, 2009 2:43 pm
Forum: Bug reports
Topic: [fixed]CursorControl bug when resizing window
Replies: 3
Views: 1160

By the way, in WinCE the GetCursorPos() (used by CursorControl) returns FALSE on some devices (like my Eten Glofish X500 and WM5 SDK simulator). As result the default mouse handling code of camera nodes doesn't work as expected. The code below fixes the problem (CIrrDeviceWinCE.h): POINT p; if (!Get...
by rvl2
Sun Aug 23, 2009 9:23 pm
Forum: Bug reports
Topic: "Data misaligning" exception in memset32() on ARM
Replies: 2
Views: 549

"Data misaligning" exception in memset32() on ARM

I've got the exception with burning video driver on WM5 simulator (real device terminates the program silently). Some background info about the problem http://blogs.msdn.com/grantri/archive/2004/07/14/183524.aspx When backbuffer is of 16-bit format (true for WinCE) the destination pointer transferre...
by rvl2
Sun Aug 23, 2009 11:27 am
Forum: Bug reports
Topic: WinCE device, no thumb dragging for GUI scrollbars
Replies: 1
Views: 501

WinCE device, no thumb dragging for GUI scrollbars

Scrollbar's thumb is not dragged on my PDA due forgotten updates of mouse button state. Minimal patch for current ogl-es branch: Index: CIrrDeviceWinCE.cpp =================================================================== --- CIrrDeviceWinCE.cpp (revision 2662) +++ CIrrDeviceWinCE.cpp (working cop...