diff --git a/stepmania/src/RageDisplay_D3D.cpp b/stepmania/src/RageDisplay_D3D.cpp index 0e8dc7b5c0..bcedfc6f8b 100644 --- a/stepmania/src/RageDisplay_D3D.cpp +++ b/stepmania/src/RageDisplay_D3D.cpp @@ -931,9 +931,6 @@ void RageDisplay_D3D::UpdateTexture( rect.bottom = height - yoffset; D3DLOCKED_RECT lr; - - - pTex->LockRect( 0, &lr, &rect, 0 ); // copy each row @@ -945,14 +942,6 @@ void RageDisplay_D3D::UpdateTexture( memcpy( dst, src, (rect.right-rect.left)*bytes_per_pixel ); } pTex->UnlockRect( 0 ); - -// SDL_SaveBMP( (SDL_Surface*)img, "testing-SDL.bmp" ); - -// D3DXSaveTextureToFile( -// "testing-D3D.bmp", -// D3DXIFF_BMP, -// pTex, -// NULL ); } void RageDisplay_D3D::SetAlphaTest( bool b )