2014-03-15 16:59:03 +00:00
|
|
|
// SONIC ROBO BLAST 2
|
|
|
|
//-----------------------------------------------------------------------------
|
2020-01-06 22:16:27 +00:00
|
|
|
// Copyright (C) 2013-2016 by Matthew "Kaito Sinclaire" Walsh.
|
2023-03-31 12:53:31 +00:00
|
|
|
// Copyright (C) 2013-2023 by Sonic Team Junior.
|
2014-03-15 16:59:03 +00:00
|
|
|
//
|
|
|
|
// This program is free software distributed under the
|
|
|
|
// terms of the GNU General Public License, version 2.
|
|
|
|
// See the 'LICENSE' file for more details.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
/// \file m_anigif.h
|
|
|
|
/// \brief Animated GIF creation movie mode.
|
|
|
|
|
|
|
|
#ifndef __M_ANIGIF_H__
|
|
|
|
#define __M_ANIGIF_H__
|
|
|
|
|
|
|
|
#include "doomdef.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "screen.h"
|
|
|
|
|
|
|
|
#if NUMSCREENS > 2
|
|
|
|
#define HAVE_ANIGIF
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_ANIGIF
|
|
|
|
INT32 GIF_open(const char *filename);
|
|
|
|
void GIF_frame(void);
|
|
|
|
INT32 GIF_close(void);
|
|
|
|
#endif
|
|
|
|
|
2020-06-27 15:56:15 +00:00
|
|
|
extern consvar_t cv_gif_optimize, cv_gif_downscale, cv_gif_dynamicdelay, cv_gif_localcolortable;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
#endif
|