~ubuntu-branches/ubuntu/trusty/mupen64plus-video-rice/trusty

« back to all changes in this revision

Viewing changes to src/GraphicsContext.h

  • Committer: Package Import Robot
  • Author(s): Sven Eckelmann
  • Date: 2013-07-05 22:53:25 UTC
  • mfrom: (1.2.2) (3.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130705225325-k0fbb2m44xnrju66
Tags: 2.0-1
* New Upstream Version
* Upload to unstable
* debian/control:
  - Build-Depend on debhelper 9.20130604 for support of parameters when
    detecting targets in dh_auto_*
* debian/rules:
  - Work around new debhelper 9.20130624 dh_auto_{clean,test} behavior
    which is causing a FTBFS by adding an explicit
    override_dh_auto_{clean,test} rule
* debian/watch:
  - Verify new upstream versions using GPG key 954F81B094AA5BB226F5

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
    bool IsWindowed() {return m_bWindowed;}
58
58
 
59
59
    virtual bool Initialize(uint32 dwWidth, uint32 dwHeight, BOOL bWindowed );
 
60
    virtual bool ResizeInitialize(uint32 dwWidth, uint32 dwHeight, BOOL bWindowed );
60
61
    virtual void CleanUp();
61
62
 
62
63
    virtual void Clear(ClearFlag flags, uint32 color=0xFF000000, float depth=1.0f) = 0;
73
74
    static  int          m_maxAnisotropy;
74
75
 
75
76
protected:
76
 
    static  uint32      m_dwWindowStyle;     // Saved window style for mode switches
77
 
    static  uint32      m_dwWindowExStyle;   // Saved window style for mode switches
78
 
    static  uint32      m_dwStatusWindowStyle;     // Saved window style for mode switches
 
77
    static  uint32      m_dwWindowStyle;       // Saved window style for mode switches
 
78
    static  uint32      m_dwWindowExStyle;     // Saved window style for mode switches
 
79
    static  uint32      m_dwStatusWindowStyle; // Saved window style for mode switches
79
80
 
80
81
    static  bool        m_deviceCapsIsInitialized;
81
82