- Timestamp:
- 03/21/12 18:36:20 (14 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/bmp/ReaderWriterBMP.cpp
r12991 r13041 547 547 { 548 548 public: 549 549 550 550 ReaderWriterBMP() 551 551 { 552 552 supportsExtension("bmp","BMP Image format"); 553 553 } 554 554 555 555 const char* className() const { return "BMP Image Reader"; } 556 556 … … 616 616 617 617 unsigned char *imageData = bmp_load(fin, s, t, internalFormat); 618 if (imageData == 0) return ReadResult::ERROR_IN_READING_FILE; 618 if (imageData == 0) return ReadResult::ERROR_IN_READING_FILE; 619 619 620 620 unsigned int pixelFormat;
