2010-10-17 09:07:16 +00:00
|
|
|
/* ZZ Open GL graphics plugin
|
|
|
|
* Copyright (c)2009-2010 zeydlitz@gmail.com, arcum42@gmail.com
|
|
|
|
* Based on Zerofrog's ZeroGS KOSMOS (c)2005-2008
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2010-10-17 15:49:34 +00:00
|
|
|
#ifndef ZZOGLSHOOTS_H_INCLUDED
|
|
|
|
#define ZZOGLSHOOTS_H_INCLUDED
|
2010-10-17 09:07:16 +00:00
|
|
|
|
|
|
|
void SaveSnapshot(const char* filename);
|
|
|
|
bool SaveRenderTarget(const char* filename, int width, int height, int jpeg);
|
2012-05-07 19:51:58 +00:00
|
|
|
bool SaveTexture(const char* filename, u32 textarget, u32 tex, int width, int height, int ext_format = 0);
|
2010-10-17 09:07:16 +00:00
|
|
|
bool SaveJPEG(const char* filename, int width, int height, const void* pdata, int quality);
|
|
|
|
bool SaveTGA(const char* filename, int width, int height, void* pdata);
|
2012-05-07 19:51:58 +00:00
|
|
|
bool SaveBMP(const char* filename, int width, int height, void* pdata);
|
2010-10-17 09:07:16 +00:00
|
|
|
void Stop_Avi();
|
|
|
|
void Delete_Avi_Capture();
|
|
|
|
|
|
|
|
void StartCapture();
|
|
|
|
void StopCapture();
|
2010-10-17 15:49:34 +00:00
|
|
|
void CaptureFrame();
|
|
|
|
|
2012-05-07 19:51:58 +00:00
|
|
|
enum {
|
|
|
|
EXT_TGA = 0,
|
|
|
|
EXT_BMP = 1,
|
|
|
|
EXT_JPG = 2
|
|
|
|
};
|
|
|
|
|
2010-10-17 15:49:34 +00:00
|
|
|
#endif // ZZOGLSHOOTS_H_INCLUDED
|