#include <image_filters.h>
Inheritance diagram for GDKImageFilterAdapter:


Public Member Functions | |
| GDKImageFilterAdapter (ImageFilter *filter) | |
| virtual | ~GDKImageFilterAdapter () |
| char * | GetDescription () const |
| void | FilterFrame (uint8_t *pixels, int width, int height, double position, double frame_delta) |
Private Attributes | |
| ImageFilter * | filter |
Since not all filters will require additional GUI functionality, this class is provided as a convenience to wrap the non-GDK filters into basic GDK filters.
Definition at line 95 of file image_filters.h.
|
|
Definition at line 101 of file image_filters.h. 00101 { this->filter = filter; }
|
|
|
Definition at line 102 of file image_filters.h. References filter. 00102 { delete filter; }
|
|
||||||||||||||||||||||||
|
Implements ImageFilter. Definition at line 104 of file image_filters.h. References filter, and ImageFilter::FilterFrame(). 00105 {
00106 return this->filter->FilterFrame( pixels, width, height, position, frame_delta );
00107 }
|
|
|
Implements ImageFilter. Definition at line 103 of file image_filters.h. References filter, and ImageFilter::GetDescription(). 00103 { return this->filter->GetDescription( ); }
|
|
|
Definition at line 98 of file image_filters.h. Referenced by FilterFrame(), GetDescription(), and ~GDKImageFilterAdapter(). |
1.4.2