43 lines
892 B
C
43 lines
892 B
C
#ifndef __al_included_allegro5_bitmap_lock_h
|
|
#define __al_included_allegro5_bitmap_lock_h
|
|
|
|
#include "allegro5/bitmap.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/*
|
|
* Locking flags
|
|
*/
|
|
enum {
|
|
ALLEGRO_LOCK_READWRITE = 0,
|
|
ALLEGRO_LOCK_READONLY = 1,
|
|
ALLEGRO_LOCK_WRITEONLY = 2
|
|
};
|
|
|
|
|
|
/* Type: ALLEGRO_LOCKED_REGION
|
|
*/
|
|
typedef struct ALLEGRO_LOCKED_REGION ALLEGRO_LOCKED_REGION;
|
|
struct ALLEGRO_LOCKED_REGION {
|
|
void *data;
|
|
int format;
|
|
int pitch;
|
|
int pixel_size;
|
|
};
|
|
|
|
|
|
AL_FUNC(ALLEGRO_LOCKED_REGION*, al_lock_bitmap, (ALLEGRO_BITMAP *bitmap, int format, int flags));
|
|
AL_FUNC(ALLEGRO_LOCKED_REGION*, al_lock_bitmap_region, (ALLEGRO_BITMAP *bitmap, int x, int y, int width, int height, int format, int flags));
|
|
AL_FUNC(void, al_unlock_bitmap, (ALLEGRO_BITMAP *bitmap));
|
|
AL_FUNC(bool, al_is_bitmap_locked, (ALLEGRO_BITMAP *bitmap));
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|