Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3454 in orxonox.OLD for orxonox/trunk/src/importer/texture.cc


Ignore:
Timestamp:
Mar 3, 2005, 6:35:04 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk/importer: doxygen-tags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/importer/texture.cc

    r3365 r3454  
    190190   \brief Loads a Texture to the openGL-environment.
    191191   \param pImage The Image to load to openGL
    192    \param texture The Texture to apply it to.
    193192*/
    194193bool Texture::loadTexToGL (Image* pImage)
     
    260259   \brief Makes the Programm ready to Read-in a texture-File
    261260   1. Checks what type of Image should be imported
    262    2. ToDO: Checks where to find the Image
     261   \todo Checks where to find the Image
    263262*/
    264263bool Texture::loadImage(char* imageName)
     
    304303   \brief reads in a Windows BMP-file, and imports it to openGL.
    305304   \param bmpName The name of the Image to load.
    306    \param texture A pointer to the Texture which should be read to.
    307305*/
    308306bool Texture::loadBMP (char* bmpName)
     
    408406   \brief reads in a jpg-file
    409407   \param jpgName the Name of the Image to load
    410    \param texture a reference to the Texture to write the image to
    411408*/
    412409bool Texture::loadJPG (char* jpgName)
     
    508505   \brief reads in a tga-file
    509506   \param tgaName the Name of the Image to load
    510    \param texture a reference to the Texture to write the image to
    511507*/
    512508bool Texture::loadTGA(const char * tgaName)
     
    565561   \param filename the Name of the Image to load
    566562   \param fTGA a Pointer to a File, that should be read
    567    \param texture a reference to the Texture to write the image to
    568563*/
    569564bool Texture::loadUncompressedTGA(const char * filename, FILE * fTGA)
     
    639634   \param filename the Name of the Image to load
    640635   \param fTGA a Pointer to a File, that should be read
    641    \param texture a reference to the Texture to write the image to
    642636*/
    643637bool Texture::loadCompressedTGA(const char * filename, FILE * fTGA)
     
    816810
    817811
    818 /*
    819 static int ST_is_power_of_two(unsigned int number)
    820 {
    821   return (number & (number - 1)) == 0;
    822 }
    823 */
    824 
    825812/**
    826813   \brief reads in a png-file
    827814   \param pngName the Name of the Image to load
    828    \param texture a reference to the Texture to write the image to
    829815*/
    830816bool Texture::loadPNG(const char* pngName)
Note: See TracChangeset for help on using the changeset viewer.