~ubuntu-branches/debian/wheezy/gource/wheezy

« back to all changes in this revision

Viewing changes to src/core/settings.h

  • Committer: Package Import Robot
  • Author(s): Andrew Caudwell
  • Date: 2012-04-24 11:25:45 UTC
  • mfrom: (1.2.13)
  • Revision ID: package-import@ubuntu.com-20120424112545-18fbnycu9xrsl4s5
Tags: 0.38-1
* New upstream release (closes: #667189)
* New build dependencies on libglm-dev and libboost-filesystem-dev. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
    virtual void commandLineOption(const std::string& name, const std::string& value) {}
34
34
 
35
 
    bool parseRectangle(const std::string& value, int* x=0, int* y=0);
 
35
    bool parseRectangle(const std::string& value, int& x, int& y);
 
36
    bool parseViewport(const std::string& value, int& x, int& y, bool& no_resize);
 
37
 
36
38
public:
37
39
    int display_width;
38
40
    int display_height;
39
41
    bool multisample;
40
42
    bool fullscreen;
41
43
    bool transparent;
 
44
    bool resizable;
42
45
    bool vsync;
43
 
    
 
46
 
44
47
    std::string output_ppm_filename;
45
48
    int output_framerate;
46
49