#include <rDisplayList.h>
Public Member Functions | |
rDisplayListAlphaSensitive () | |
Protected Member Functions | |
virtual bool | OnCall () |
calls the display list, returns true if there was a list to call | |
Private Attributes | |
bool | lastAlpha_ |
the last alpha blending value |
Definition at line 116 of file rDisplayList.h.
rDisplayListAlphaSensitive::rDisplayListAlphaSensitive | ( | ) |
bool rDisplayListAlphaSensitive::OnCall | ( | ) | [protected, virtual] |
calls the display list, returns true if there was a list to call
Reimplemented from rDisplayList.
Definition at line 190 of file rDisplayList.cpp.
References lastAlpha_, rDisplayList::OnCall(), and sr_alphaBlend.
00191 { 00192 // check whether crucial settings changed 00193 if ( sr_alphaBlend != lastAlpha_ ) 00194 { 00195 lastAlpha_ = sr_alphaBlend; 00196 return false; 00197 } 00198 00199 return rDisplayList::OnCall(); 00200 }
bool rDisplayListAlphaSensitive::lastAlpha_ [private] |
the last alpha blending value
Definition at line 125 of file rDisplayList.h.
Referenced by OnCall().