aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/FbPixmap.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/FbPixmap.cc')
-rw-r--r--src/FbTk/FbPixmap.cc11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/FbTk/FbPixmap.cc b/src/FbTk/FbPixmap.cc
index edc0e53..bbc8fcb 100644
--- a/src/FbTk/FbPixmap.cc
+++ b/src/FbTk/FbPixmap.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: FbPixmap.cc,v 1.9 2004/01/08 22:05:34 fluxgen Exp $ 22// $Id: FbPixmap.cc,v 1.10 2004/01/11 12:48:46 fluxgen Exp $
23 23
24#include "FbPixmap.hh" 24#include "FbPixmap.hh"
25#include "App.hh" 25#include "App.hh"
@@ -50,6 +50,15 @@ FbPixmap::FbPixmap(Pixmap pm):m_pm(0),
50 (*this) = pm; 50 (*this) = pm;
51} 51}
52 52
53FbPixmap::FbPixmap(const FbDrawable &src,
54 unsigned int width, unsigned int height,
55 int depth):m_pm(0),
56 m_width(0), m_height(0),
57 m_depth(0) {
58
59 create(src.drawable(), width, height, depth);
60}
61
53FbPixmap::FbPixmap(Drawable src, 62FbPixmap::FbPixmap(Drawable src,
54 unsigned int width, unsigned int height, 63 unsigned int width, unsigned int height,
55 int depth):m_pm(0), 64 int depth):m_pm(0),