~ubuntu-branches/ubuntu/saucy/gnash/saucy-proposed

« back to all changes in this revision

Viewing changes to backend/render_handler_agg_bitmap.h

  • Committer: Bazaar Package Importer
  • Author(s): Sindhudweep Narayan Sarkar
  • Date: 2009-10-07 00:06:10 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20091007000610-mj9rwqe774gizn1j
Tags: 0.8.6-0ubuntu1
new upstream release 0.8.6 (LP: #435897)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// 
2
 
//   Copyright (C) 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
3
 
// 
4
 
// This program is free software; you can redistribute it and/or modify
5
 
// it under the terms of the GNU General Public License as published by
6
 
// the Free Software Foundation; either version 3 of the License, or
7
 
// (at your option) any later version.
8
 
// 
9
 
// This program is distributed in the hope that it will be useful,
10
 
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
// GNU General Public License for more details.
13
 
// 
14
 
// You should have received a copy of the GNU General Public License
15
 
// along with this program; if not, write to the Free Software
16
 
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
 
 
18
 
#ifndef BACKEND_RENDER_HANDLER_AGG_BITMAP_H
19
 
#define BACKEND_RENDER_HANDLER_AGG_BITMAP_H
20
 
 
21
 
// This include file used only to make render_handler_agg more readable.
22
 
 
23
 
namespace gnash {
24
 
 
25
 
/// The class itself uses a template. Currently this is unnecessary and it may
26
 
/// be removed but an older implementation required this method and it may be
27
 
/// necessary again when the last missing parts of the renderer will be
28
 
/// implemented. And when might that be? I don't think I'll wait.
29
 
class agg_bitmap_info : public BitmapInfo
30
 
{
31
 
public:
32
 
 
33
 
  agg_bitmap_info(std::auto_ptr<GnashImage> im)
34
 
      :
35
 
      _image(im),
36
 
      _bpp(_image->type() == GNASH_IMAGE_RGB ? 24 : 32)
37
 
  {
38
 
  }
39
 
 
40
 
  int get_width() const { return _image->width(); }  
41
 
  int get_height() const { return _image->height();  }  
42
 
  int get_bpp() const { return _bpp; }  
43
 
  int get_rowlen() const { return _image->pitch(); }  
44
 
  boost::uint8_t* get_data() const { return _image->data(); }
45
 
  
46
 
private:
47
 
 
48
 
  std::auto_ptr<GnashImage> _image;
49
 
 
50
 
  int _bpp;
51
 
    
52
 
};
53
 
 
54
 
 
55
 
} // namespace gnash
56
 
 
57
 
#endif // BACKEND_RENDER_HANDLER_AGG_BITMAP_H