Maybe you have to add a few files to the project too.
Georg
PS: Hybrid, should I make a diff of a corrected xcode-project?
Search found 13 matches
- Wed Sep 20, 2006 1:58 pm
- Forum: Beginners Help
- Topic: Compiling with Xcode 2.4
- Replies: 4
- Views: 364
- Mon Sep 11, 2006 4:21 pm
- Forum: Bug reports
- Topic: [MacOS X] 3D model loaders 1.1
- Replies: 8
- Views: 539
- Mon Sep 04, 2006 9:20 pm
- Forum: Beginners Help
- Topic: Fullscreen mac mouse problem (bug ot setup issue?)
- Replies: 4
- Views: 179
- Mon Sep 04, 2006 2:25 pm
- Forum: Beginners Help
- Topic: Fullscreen mac mouse problem (bug ot setup issue?)
- Replies: 4
- Views: 179
- Tue Aug 29, 2006 4:15 pm
- Forum: Beginners Help
- Topic: MacOSX Irrlicht 1.1 not compiling
- Replies: 7
- Views: 227
- Sun Aug 27, 2006 8:21 pm
- Forum: Beginners Help
- Topic: MacOSX Irrlicht 1.1 not compiling
- Replies: 7
- Views: 227
First: Install svn
Unfortunately there is only 1.3.1 prebuilt, but you could install the latest version with fink.
Second: Type into the terminal:
Georg
Unfortunately there is only 1.3.1 prebuilt, but you could install the latest version with fink.
Second: Type into the terminal:
Code: Select all
svn checkout https://svn.sourceforge.net/svnroot/irrlicht ~/Desktop/irrlicht
- Sat Aug 26, 2006 10:37 pm
- Forum: Bug reports
- Topic: PNG Loader Bug and Fix
- Replies: 10
- Views: 586
- Sat Aug 26, 2006 10:34 pm
- Forum: Beginners Help
- Topic: MacOSX Irrlicht 1.1 not compiling
- Replies: 7
- Views: 227
- Sat Aug 26, 2006 10:16 pm
- Forum: Bug reports
- Topic: PNG Loader Bug and Fix
- Replies: 10
- Views: 586
- Sat Aug 26, 2006 9:33 pm
- Forum: Bug reports
- Topic: PNG Loader Bug and Fix
- Replies: 10
- Views: 586
Again there is a bug in revision 172. The final color mode should be ARGB, not BGRA Patch: Index: CImageLoaderPNG.cpp =================================================================== --- CImageLoaderPNG.cpp (revision 172) +++ CImageLoaderPNG.cpp (working copy) @@ -186,9 +186,9 @@ (png_uint_32*)&a...
- Wed Aug 23, 2006 9:29 pm
- Forum: Beginners Help
- Topic: Irrlicht 1.1, opengl and 2d transparency
- Replies: 16
- Views: 720
- Wed Aug 23, 2006 6:16 pm
- Forum: Beginners Help
- Topic: New Beginner (Mac OS X)
- Replies: 5
- Views: 244
- Wed Aug 23, 2006 4:25 pm
- Forum: Bug reports
- Topic: PNG Loader Bug and Fix
- Replies: 10
- Views: 586
PNG Loader Bug and Fix
I found some strange behaviour when I loaded PNGs with an alpha channel. Example: http://krimskrams.macsoftwaretest.ch/irrlicht/wrong_png.jpg Fixed: http://krimskrams.macsoftwaretest.ch/irrlicht/fixed_png.jpg The problem was, that the old code tried to just use the ARGB data. The error was: PNGs hav...