Add alpha blending support to surfaces
diff --git a/vncviewer/Surface.h b/vncviewer/Surface.h
index 9b1788a..7d16468 100644
--- a/vncviewer/Surface.h
+++ b/vncviewer/Surface.h
@@ -44,6 +44,9 @@
void draw(int src_x, int src_y, int x, int y, int w, int h);
void draw(Surface* dst, int src_x, int src_y, int x, int y, int w, int h);
+ void blend(int src_x, int src_y, int x, int y, int w, int h);
+ void blend(Surface* dst, int src_x, int src_y, int x, int y, int w, int h);
+
protected:
void alloc();
void dealloc();