Search found 2 matches

by former_
Wed Aug 27, 2008 11:05 am
Forum: Beginners Help
Topic: [Bug?]draw2DImage renders dirtily
Replies: 6
Views: 240

to JP Thanks for answering. But then, I have a question. when I create non-pow2 texture by addTexture() (in environment which does not support non-pow2 texture ) and render it by draw2DImage(), it seems incorrect. Why? here's code: #pragma comment( lib, "irrlicht.lib" ) #include <irrlicht....
by former_
Wed Aug 27, 2008 8:36 am
Forum: Beginners Help
Topic: [Bug?]draw2DImage renders dirtily
Replies: 6
Views: 240

[Bug?]draw2DImage renders dirtily

following code renders a dirty image. #pragma comment( lib, "irrlicht.lib" ) #include <irrlicht.h> using namespace irr; using namespace video; using namespace core; int main(int argc, char* argv[]) { IrrlichtDevice* device = createDevice( EDT_DIRECT3D9, dimension2di( 150, 350 ) ); IVideoDr...