

Public Member Functions | |
| virtual void | operator() (float u, float v, float w, unsigned char *pixel) |
| ShadowMaskTextureFunction () | |
Public Attributes | |
| float | dummy |
|
|
Definition at line 290 of file render.cpp. 00290 {};
|
|
||||||||||||||||||||
|
Implements TexelFunctionObject. Definition at line 295 of file render.cpp. 00297 {
00298 unsigned char a = u > 0.0f ? 255 : 0;
00299 pixel[0] = a;
00300 pixel[1] = a;
00301 pixel[2] = a;
00302 pixel[3] = a;
00303 }
|
|
|
Definition at line 292 of file render.cpp. |
1.4.1