Inheritance diagram for ImageFilterFadeIn:


Public Member Functions | |
| char * | GetDescription () const |
| void | FilterFrame (uint8_t *pixels, int width, int height, double position, double frame_delta) |
Definition at line 93 of file image_filters.cc.
|
||||||||||||||||||||||||
|
Implements ImageFilter. Definition at line 101 of file image_filters.cc. 00102 {
00103 for ( uint8_t *p = pixels; p < ( pixels + width * height * 3 ); ++p )
00104 *p = uint8_t( *p * position + 0.5 );
00105 }
|
|
|
Implements ImageFilter. Definition at line 96 of file image_filters.cc. 00097 {
00098 return _( "Fade In" );
00099 }
|
1.4.2