Search found 4 matches

by one_eddie
Tue May 10, 2005 7:17 am
Forum: Beginners Help
Topic: Texture drawing problem
Replies: 0
Views: 146

Texture drawing problem

Take look at this picture: http://img224.echo.cx/img224/8159/image22dx.jpg

I run windowed app, desktop is 32bpp, app is running at 24bpp, DX8 (32 bpp shows the same), textures are at 24bpp bmp. Texture has a gradient, but it's not drawn well.

Please tell me, how to fix this?
by one_eddie
Sat Apr 23, 2005 7:09 pm
Forum: Beginners Help
Topic: How do I use XML in Irrlicht?
Replies: 5
Views: 386

Irrlicht has build in classes to handle XML:

I'm using this code to read configuration, this function is calles before createDevice
void CMainApp::readConfiguration(CONFIGURATION& rConfig)
{
// Create
IReadFile* pFile = createReadFile( "App.xml" );
if ( !pFile )
throw new CAppException( TEXT ...
by one_eddie
Fri Apr 22, 2005 5:20 am
Forum: Beginners Help
Topic: IrrLicht static link in VC.NET (2003) - problems
Replies: 7
Views: 684

I don't think you can mix compile types. I think the Irrlicht library you are using is in Release build and the program you are compiling is in Debug build.

They both are in debug mode.

This is just a guess - I don't have much experience of what you are trying to do.

So, how can i link a ...
by one_eddie
Wed Apr 20, 2005 10:55 am
Forum: Beginners Help
Topic: IrrLicht static link in VC.NET (2003) - problems
Replies: 7
Views: 684

IrrLicht static link in VC.NET (2003) - problems

Please forgive me i'm new to english.

I'v got VC.NET 2003 from MSDNAA.
I'v got a problem with IrrLicht.
I set IrrLicht to Static lib in General properities -> General -> Configuration type

Then i add this:
#if defined(WIN32) && !defined(IRRLICHT_STATIC)
#ifdef IRRLICHT_EXPORTS
#define IRRLICHT ...