58 lines
1.6 KiB
C
58 lines
1.6 KiB
C
/***************************************************************************
|
|
|
|
Cimage.h
|
|
|
|
(c) 2006 Laurent Carlier <lordheavy@users.sourceforge.net>
|
|
|
|
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, 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.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __CIMAGE_H
|
|
#define __CIMAGE_H
|
|
|
|
#include "main.h"
|
|
#include "SDLsurface.h"
|
|
#include "SDLwindow.h"
|
|
|
|
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
|
|
#define DEFAULT_IMAGE_FORMAT GB_IMAGE_ARGB
|
|
#else
|
|
#define DEFAULT_IMAGE_FORMAT GB_IMAGE_BGRA
|
|
#endif
|
|
|
|
|
|
typedef
|
|
struct {
|
|
GB_IMG img;
|
|
}
|
|
CIMAGE;
|
|
|
|
#ifndef __CIMAGE_CPP
|
|
extern GB_DESC CImage[];
|
|
#else
|
|
|
|
#define THIS ((CIMAGE *)_object)
|
|
#define THIS_IMAGE (&THIS->img)
|
|
#define IMAGEID ((SDLsurface *)GB_IMG_HANDLE(&THIS->img))
|
|
|
|
#endif /* __CIMAGE_CPP */
|
|
|
|
SDLsurface *CIMAGE_get(CIMAGE *);
|
|
CIMAGE *CIMAGE_create(SDLsurface *);
|
|
CIMAGE *CIMAGE_create_from_window(SDLwindow *window, int x, int y, int w, int h);
|
|
|
|
#endif /* __CIMAGE_H */
|