Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 15, 2006, 1:12:24 PM (18 years ago)
Author:
amaechler
Message:

branches/atmospheric_engine: fog & changed init & activate fcts from bool to void

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/atmospheric_engine/src/lib/graphics/effects/volfog_effect.cc

    r7810 r8455  
    2929
    3030//#include <GL/glext.h> //OpenGL Extensions
    31 //#include <GL/glxext.h> // GLX Extensions 
     31//#include <GL/glxext.h> // GLX Extensions
    3232
    3333#ifndef GL_EXT_fog_coord
     
    7676}
    7777
    78 bool VolFogEffect::init()
     78void VolFogEffect::init()
    7979{
    8080        PRINTF(0)("Initalize VolFogEffect\n");
     
    9292        // Set fog color
    9393        float fogColor[4] = {0.6f,0.58f,0.79f,0.0f};
    94        
     94
    9595
    9696        glFogCoordfEXT       = (PFNGLFOGCOORDFEXTPROC)glXGetProcAddressARB((const GLubyte*)"glFogCoordfEXT");
     
    117117
    118118        if (glewGetExtension("GL_EXT_fog_coord"))
    119         {
    120119                PRINTF(0)("GL_EXT_fog_coord extension found\n");
    121                 return true;
    122         }
    123         else
    124         {
    125                 PRINTF(0)("GL_EXT_fog_coord extension NOT found\n");
    126                 return false;
    127         }
    128 }
    129 
    130 
    131 bool VolFogEffect::activate()
     120}
     121
     122
     123void VolFogEffect::activate()
    132124{
    133125        PRINTF(0)("Activating VolFogEffect\n");
    134126}
    135127
    136 bool VolFogEffect::deactivate()
     128void VolFogEffect::deactivate()
    137129{
    138130        PRINTF(0)("Deactivating VolFogEffect\n");
     
    160152        //glEnable(GL_BLEND);
    161153        //glBlendFunc(GL_SRC_ALPHA, GL_DST_ALPHA);
    162        
     154
    163155        int i;
    164156        glLoadIdentity();
    165157
    166        
     158
    167159        glBegin( GL_LINES );
    168160                glNormal3f(0,1,0);
     
    210202* ticks the effect if there is any time dependancy
    211203*/
    212 void VolFogEffect::tick(float dt)       
    213 {
    214 }
     204void VolFogEffect::tick(float dt)
     205{
     206}
Note: See TracChangeset for help on using the changeset viewer.