~ubuntu-branches/ubuntu/vivid/gnash/vivid-proposed

« back to all changes in this revision

Viewing changes to libcore/RunResources.h

  • Committer: Package Import Robot
  • Author(s): Gabriele Giacone
  • Date: 2012-06-30 02:35:32 UTC
  • mfrom: (1.1.20)
  • Revision ID: package-import@ubuntu.com-20120630023532-go61oics8o04jek1
Tags: 0.8.11~git20120629-1
* Git snapshot.
  + IPv6 support.
  + Fix FTBFS with gcc 4.7 and clang.
  + Fix opening of external URL with gnash standalone.
* Remove gstreamer0.10-fluendo-mp3 from runtime deps (Closes: #679527).
* Use sensible-browser instead of xdg-open (Closes: #597195).
* Set NoDiplay=true in desktop icons (Closes: #679573). 
* Switch source and binary to xz compression.
* Remove gcc4.7 and CVE-2012-1175 patches.
* Add hardening lintian overrides.

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
    void setRenderBackend(const std::string& x) { _renderer_backend = x; }
126
126
    std::string& getRenderBackend() { return _renderer_backend; }
127
127
 
128
 
    /// Set the hardware video accleration backend, none, vaapi, xv,
129
 
    /// or cairo. This is set in the users gnashrc file, or can be
 
128
    /// Set the hardware video accleration backend, none or vaapi.
 
129
    /// This is set in the users gnashrc file, or can be
130
130
    /// overridden with the --render-mode option to gnash.
131
131
    std::string& getHWAccelBackend() { return _hwaccel_backend; }
132
132
    void setHWAccelBackend(const std::string& x) { _hwaccel_backend = x; }
144
144
 
145
145
    boost::shared_ptr<const SWF::TagLoadersTable> _tagLoaders;
146
146
 
147
 
#if 1
148
147
    /// Whether to ue HW video decoding support, no value means disabled.
149
 
    /// The only currently supported values are: none, vaapi, or xv (omap)
150
 
    /// support coming.  The default is none,
 
148
    /// The only currently supported values are: none or vaapi.
 
149
    /// The default is none,
151
150
    std::string _hwaccel_backend;
152
151
 
153
152
    /// Which renderer backend to use, no value means use the default.
154
153
    /// The currently supported values are agg, opengl, or cairo. AGG
155
154
    /// being the default.
156
155
    std::string _renderer_backend;
157
 
#endif    
158
156
};
159
157
 
160
158
} // end of gnash namespace