2004-09-04 20:41:28 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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, see <http://www.gnu.org/licenses/>.
|
2004-09-04 20:41:28 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_RISCOS_BITMAP_H_
|
|
|
|
#define _NETSURF_RISCOS_BITMAP_H_
|
|
|
|
|
2008-07-27 02:29:15 +04:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include "oslib/osspriteop.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "image/bitmap.h"
|
2005-06-23 21:22:28 +04:00
|
|
|
|
2004-09-04 20:41:28 +04:00
|
|
|
struct osspriteop_area;
|
|
|
|
|
|
|
|
struct bitmap {
|
2004-10-18 01:16:00 +04:00
|
|
|
int width;
|
|
|
|
int height;
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2006-02-22 04:58:19 +03:00
|
|
|
unsigned int state;
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2006-02-22 04:58:19 +03:00
|
|
|
void *private_word;
|
2009-03-27 05:46:30 +03:00
|
|
|
void (*invalidate)(void *bitmap, void *private_word);
|
2005-06-23 21:22:28 +04:00
|
|
|
|
|
|
|
osspriteop_area *sprite_area; /** Uncompressed data, or NULL */
|
|
|
|
char *compressed; /** Compressed data, or NULL */
|
|
|
|
char filename[12]; /** Data filename, or '/0' */
|
|
|
|
|
|
|
|
struct bitmap *previous; /** Previous bitmap */
|
|
|
|
struct bitmap *next; /** Next bitmap */
|
|
|
|
|
2004-09-04 20:41:28 +04:00
|
|
|
};
|
|
|
|
|
2005-12-31 07:29:00 +03:00
|
|
|
struct bitmap *bitmap_create_file(char *file);
|
2006-03-24 06:44:37 +03:00
|
|
|
void bitmap_overlay_sprite(struct bitmap *bitmap, const osspriteop_header *s);
|
2005-06-23 21:22:28 +04:00
|
|
|
void bitmap_initialise_memory(void);
|
|
|
|
void bitmap_quit(void);
|
|
|
|
void bitmap_maintain(void);
|
|
|
|
|
|
|
|
/** Whether maintenance of the pool states is needed
|
|
|
|
*/
|
|
|
|
extern bool bitmap_maintenance;
|
|
|
|
|
|
|
|
/** Whether maintenance of the pool is high priority
|
|
|
|
*/
|
|
|
|
extern bool bitmap_maintenance_priority;
|
|
|
|
|
2006-01-02 05:52:53 +03:00
|
|
|
/** Maximum amount of memory for direct images
|
|
|
|
*/
|
|
|
|
extern unsigned int bitmap_direct_size;
|
|
|
|
|
|
|
|
/** Total size of compressed area
|
|
|
|
*/
|
|
|
|
extern unsigned int bitmap_compressed_size;
|
|
|
|
|
2004-09-04 20:41:28 +04:00
|
|
|
#endif
|