Posts

Nvidia/Nokia and New-Year Nexus:

So in my last post, it had become clear that Nokia had removed the "-direct3d" support from Qt. While this is still technically true, with the help of some Trolltech employees, I have been set on the correct path of righteousness once again. I'm now using QPaintEngine* paintEngine() const; and getting it to return 0, as discussed in my first post. This should allow me to continue to use updated Qt toolkits with my DX10/DX11 development. When installing Nexus monitor onto a remote PC, it was obvious that Qt4 had some very strange issues with dependencies. It appears i was getting "Side by Side configuration errors" looking up the event viewer, the .exe was failing to find a correct version of a debug .dll. After a lot of testing and analysis, Microsoft MSVC2008 Pro ships with version MSVC90d.dll 9.0.21022.8 , when installing the SP1 update for MSVC, this version is changed to 9.0.30729.1 , after that another ATL security patch was released making the version 9.0...
Direct-Qt - Qt4.x and Microsoft Direct3D So Qt4.3 introduced a Windows Direct3D class to help D3D/Qt compatibility, Obviously a change of heart occurred at Nokia as the feature was removed in Qt4.6, preferring instead to promote OGL as their defacto standard. (#$!@%$#%@!%) While OGL 3.2 is certainly catching up on some of legacy issues that have left it behind, D3D is just better optimized for consumer videocards and Windows users. The feature set and integration is far better with D3D than that of OGL. OGL requires quite an investment in time to sort the messy setup. Glu, Glew, Glee, Glut, and then compiling them for the x64 Windows environment for which you need some headers from glew, some from Microsoft some from Kronos and then hope that the correct OGL3.2 compliant drivers play along, which currently are not available from Nvidia for my Asus laptop. (So i had to modify my nvdisp.inf use desktop drivers on my lappy.... Grrrr) On top of that the one thing that kept OGL useful fo...

3D DevIL in a 2D QT World.

Image
I will now attempt to create my first Qt Application: :) We will use the "QApplication" object as our starting point, which is only used once regardless of how many windows or widgets are used, It must be called before any other objects related to the GUI, if we wish to instead make a console application we would instead use the "QCoreApplication" object. Design Goals: Create a simple windowed application that has a basic GUI, and allows images to be loaded from DevIL or FreeImage libraries into a 3D OGL window for display. I first use QMainApplication to subclass my own "MainWindow" this window is the parent window which handles memory handling and all associated window parameters. I then add a MenuBar which has "File" with a SubMenu "Open" this opens a FileDialog QString and parses the selected filename. I then add an OpenGL window as our central widget, by making our own "GLMain" sub-class which will handle all GL drawing ...

Qt and the Beast...

Before compiling DevIL libraries, I downloaded the Qt 4.5 GPL/LGPL Windows SDK and compiled static Windows Qt x64 Libs under MSVC 2008. http://www.qtsoftware.com/ Qt will allow me to keep my design goals of CrossPlatform (Linux x64/Windows 7 x64) development with LGPL license. I will start off by commending "Trolltech" owned by "Nokia" for having a very elegant application development framework, which I have decided to support due to it's GPL/LGPL, CrossPlatform development prowess and well thought out design along with great levels of documentation and attention to detail. Initial compilation was quite easy to setup, a path environment variable was needed in Vista. I also loaded the Qt MSVC 2008 plugin which made integration with MSVC quite good. The only real caveats compiling the libs under MSVC can be described here: http://blog.shadowgears.com/2008/10/making-qt4-dance-with-msvc-2008.html With thanks to the author for providing the most important command l...

Microsoft and the DevIL

Steps to compiling DevIL under Vista x64. http://openil.sourceforge.net/ After downloading and unzipping DevIL 1.78 Windows SDK, load the project into MSVC, and hit compile. 1) fatal error C1083: Cannot open include file: 'IL/config.h': No such file or directory. (9 Errors /0 Warnings) It would seem that DevIL uses some "configure.bat" to configure the appropriate options for "config.h.in" and should output "config.h" otherwise we get the above error. As I'm new to 3rd party library compiling under MSVC, it would be nice to have a readme that explains in depth what is meant to happen at this stage. Configure.bat returns a "file not found" error in either a DOS box, or MSVC console. Over the last few days i have compiled Qt and Freeimage, Freeglut, etc without any such manually hacking or guess work. Regardless i manually change "config.h.in" to be "config.h" and rebuild. As I'm not aware if the makefiles are ev...