pkgsrc/mbone/vic/patches/patch-ar
joerg 050476bae9 Add DragonFly support. Fix compilation with GCC 3.4+:
When method_ is not set, assume it means the default dither algorithm,
set it to NULL in disable(). This can also avoid possible segfaults.
Bump revision.
2006-02-27 15:49:56 +00:00

25 lines
882 B
Text

$NetBSD: patch-ar,v 1.2 2006/02/27 15:49:56 joerg Exp $
--- color-ed.cc.orig 1995-11-14 05:46:10.000000000 +0000
+++ color-ed.cc
@@ -173,14 +173,17 @@ class EDWindowRenderer : public PseudoWi
public:
EDWindowRenderer(VideoWindow* vw, int decimation, EDColorModel& cm) :
PseudoWindowRenderer(vw, decimation, cm.graylut()),
- cm_(cm) { }
+ cm_(cm), method_(NULL) { }
void render(const u_char* frm, int off, int x, int w, int h) {
- (this->*method_)(frm, off, x, w, h);
+ if (this->method_)
+ (this->*method_)(frm, off, x, w, h);
+ else
+ dither_null(frm, off, x, w, h);
}
protected:
EDColorModel& cm_;
virtual void update();
- virtual void disable() { method_ = PseudoWindowRenderer::dither_null; }
+ virtual void disable() { method_ = NULL; }
EDMethod method_;
void dither_422(const u_char* frm, u_int off, u_int x,
u_int width, u_int height) const;