Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3090 in orxonox.OLD for orxonox/branches/images/importer/material.h


Ignore:
Timestamp:
Dec 5, 2004, 12:10:08 AM (21 years ago)
Author:
bensch
Message:

orxonox/branches/images: new bmp-readin-Function (no more SDL)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/images/importer/material.h

    r3089 r3090  
    6666
    6767 private:
    68   struct tImageJPG
     68  struct Image
    6969  {
    7070    int rowSpan;
    71     int sizeX;
    72     int sizeY;
     71    unsigned long sizeX;
     72    unsigned long sizeY;
    7373    GLubyte *data;
    7474  };
     
    9090
    9191  bool loadJPG (char* jpgName, GLuint* texture);
    92   void decodeJPG(jpeg_decompress_struct* cinfo, tImageJPG *pImageData);
     92  void decodeJPG(jpeg_decompress_struct* cinfo, Image *pImageData);
    9393
    9494  bool loadTexToGL (int hight, int width, void* rawImage, GLuint* texture);
Note: See TracChangeset for help on using the changeset viewer.