aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h
diff options
context:
space:
mode:
authorvanfanel2015-07-22 13:00:45 +0200
committervanfanel2015-07-22 13:00:45 +0200
commitb706ca36f1e40d01e50d99d3e1296470f0727f3f (patch)
tree27a4c024aa2b493e039f7276a51263275ff83c23 /backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h
parent6320a008ec27499b3174cd2ea8b3926a59f2e117 (diff)
downloadscummvm-rg350-b706ca36f1e40d01e50d99d3e1296470f0727f3f.tar.gz
scummvm-rg350-b706ca36f1e40d01e50d99d3e1296470f0727f3f.tar.bz2
scummvm-rg350-b706ca36f1e40d01e50d99d3e1296470f0727f3f.zip
SDL/DISPMANX: Updated class member names, configure script and asociated files and docs to conform to fingolfin's corrections.
Diffstat (limited to 'backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h')
-rw-r--r--backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h b/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h
index c41f84ef7a..d2a52f5c69 100644
--- a/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h
+++ b/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h
@@ -31,22 +31,22 @@ struct dispmanxPage;
class DispmanXSdlGraphicsManager : public SurfaceSdlGraphicsManager {
public:
DispmanXSdlGraphicsManager(SdlEventSource *sdlEventSource);
- ~DispmanXSdlGraphicsManager();
+ ~DispmanXSdlGraphicsManager();
bool loadGFXMode();
void internUpdateScreen();
bool handleScalerHotkeys(Common::KeyCode key);
void setFullscreenMode(bool enable);
void setAspectRatioCorrection(bool enable);
void clearOverlay();
-protected:
+protected:
// Raspberry Pi Dispmanx API
- void DispmanXSetup(int width, int height);
- void DispmanXInit();
- void DispmanXUpdate();
- struct dispmanxPage *DispmanXGetFreePage();
- void DispmanXFreeResources();
- void DispmanXVideoQuit();
- struct dispvarsStruct *_dispvars;
+ void dispmanXSetup(int width, int height);
+ void dispmanXInit();
+ void dispmanXUpdate();
+ dispmanxPage *dispmanXGetFreePage();
+ void dispmanXFreeResources();
+ void dispmanXVideoQuit();
+ dispvarsStruct *_dispvars;
};
#endif /* BACKENDS_GRAPHICS_SDL_DISPMANX_H */