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

« back to all changes in this revision

Viewing changes to gui/aqua_glue.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:
19
19
#ifndef AQUA_GLUE_H
20
20
#define AQUA_GLUE_H
21
21
 
 
22
#ifdef HAVE_CONFIG_H
 
23
#include "gnashconfig.h"
 
24
#endif
 
25
 
 
26
 
22
27
#include "gnash.h"
23
28
#include "snappingrange.h"
24
29
#include <AGL/agl.h>
32
37
    virtual ~AquaGlue() { }
33
38
    virtual bool init(int argc, char **argv[]) = 0;
34
39
    virtual bool prepDrawingArea(int width, int height, AGLDrawable drawable) = 0;
35
 
    virtual render_handler* createRenderHandler() = 0;
 
40
    virtual Renderer* createRenderHandler() = 0;
36
41
    virtual void render() = 0;
37
42
  protected:
38
43
    int _bpp;