From 77cd6e7efe596fc0def59130891936199efbf4a9 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 17 Sep 2004 05:46:43 +0000 Subject: [PATCH] cleanup --- stepmania/src/RageBitmapTexture.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/stepmania/src/RageBitmapTexture.h b/stepmania/src/RageBitmapTexture.h index 6e3d461d67..bb6a177a3c 100644 --- a/stepmania/src/RageBitmapTexture.h +++ b/stepmania/src/RageBitmapTexture.h @@ -1,12 +1,9 @@ -/* - * RageBitmapTexture: Holder for a static texture with metadata. - */ +/* RageBitmapTexture: Holder for a static texture with metadata. */ #ifndef RAGEBITMAPTEXTURE_H #define RAGEBITMAPTEXTURE_H #include "RageTexture.h" -struct SDL_Surface; class RageBitmapTexture : public RageTexture { @@ -22,8 +19,6 @@ private: void Create(); // called by constructor and Reload void Destroy(); unsigned m_uTexHandle; // treat as unsigned in OpenGL, ID3D8Texture* for D3D - - SDL_Surface *CreateImg(int &pixfmt); }; #endif