remove virtual IsSoftwareRenderer()

This commit is contained in:
Glenn Maynard
2004-05-23 22:38:44 +00:00
parent d5b79a4cd3
commit e0ceb30f93
4 changed files with 0 additions and 9 deletions
-2
View File
@@ -157,8 +157,6 @@ public:
virtual void Update(float fDeltaTime) { }
virtual bool IsSoftwareRenderer() = 0;
// Don't override this. Override TryVideoMode() instead.
// This will set the video mode to be as close as possible to params.
// Return true if device was re-created and we need to reload textures.
-5
View File
@@ -337,11 +337,6 @@ void RageDisplay_D3D::Update(float fDeltaTime)
#endif
}
bool RageDisplay_D3D::IsSoftwareRenderer()
{
return false;
}
RageDisplay_D3D::~RageDisplay_D3D()
{
LOG->Trace( "RageDisplay_D3D::~RageDisplay()" );
-1
View File
@@ -23,7 +23,6 @@ public:
~RageDisplay_D3D();
void Update(float fDeltaTime);
bool IsSoftwareRenderer();
void ResolutionChanged();
const PixelFormatDesc *GetPixelFormatDesc(PixelFormat pf) const;
-1
View File
@@ -11,7 +11,6 @@ public:
RageDisplay_Null( VideoModeParams p );
void Update( float fDeltaTime ) { }
bool IsSoftwareRenderer() { return false; }
void ResolutionChanged() { }
const PixelFormatDesc *GetPixelFormatDesc(PixelFormat pf) const;