mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #7621 from lioncash/const
Common/GLContext: Make member functions const qualified where applicable
This commit is contained in:
commit
3fa81f39fb
@ -24,11 +24,11 @@ public:
|
||||
|
||||
virtual ~GLContext();
|
||||
|
||||
Mode GetMode() { return m_opengl_mode; }
|
||||
Mode GetMode() const { return m_opengl_mode; }
|
||||
bool IsGLES() const { return m_opengl_mode == Mode::OpenGLES; }
|
||||
|
||||
u32 GetBackBufferWidth() { return m_backbuffer_width; }
|
||||
u32 GetBackBufferHeight() { return m_backbuffer_height; }
|
||||
u32 GetBackBufferWidth() const { return m_backbuffer_width; }
|
||||
u32 GetBackBufferHeight() const { return m_backbuffer_height; }
|
||||
|
||||
virtual bool IsHeadless() const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user