Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3454 in orxonox.OLD for orxonox/trunk/src/importer/windowHandler.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/windowHandler.cc

    r3140 r3454  
    1616#include "windowHandler.h"
    1717#include <stdio.h>
     18
     19/**
     20   \brief Resizes the Window
     21   \param width the new size in the width.
     22   \param height the new size in the height.
     23*/
    1824void WindowHandler::ReSizeGLScene(GLsizei width, GLsizei height) // Resize And Initialize The GL Window
    1925{
     
    3945}
    4046
    41 
     47/**
     48   \brief initializes openGL
     49*/
    4250int WindowHandler::InitGL(GLvoid)                                                                               // All Setup For OpenGL Goes Here
    4351{
     
    5361}
    5462
    55 
     63/**
     64   \brief kills the window
     65*/
    5666GLvoid WindowHandler::KillGLWindow(GLvoid) // Properly Kill The Window
    5767{
     
    5969}
    6070
    61 
     71/**
     72   \brief creates a new Window for the scene
     73   \param title the name of the Window
     74   \param width the width of the window
     75   \param height the height of the window
     76   \param bits the bits per pixel to use
     77   \param fullscreenflag TRUE if fullscreen FALSE if windowed/
     78   \returns FALSE if initialisation failed, TRUE otherwise
     79*/
    6280BOOL WindowHandler::CreateGLWindow(char* title, int width, int height, int bits, BOOL fullscreenflag)
    6381{
Note: See TracChangeset for help on using the changeset viewer.