#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "utils/errors.h"
#include "netsurf/bitmap.h"
#include "monkey/output.h"
#include "monkey/bitmap.h"
Go to the source code of this file.
◆ bitmap_create()
static void * bitmap_create |
( |
int |
width, |
|
|
int |
height, |
|
|
enum gui_bitmap_flags |
flags |
|
) |
| |
|
static |
◆ bitmap_destroy()
static void bitmap_destroy |
( |
void * |
bitmap | ) |
|
|
static |
◆ bitmap_get_buffer()
static unsigned char * bitmap_get_buffer |
( |
void * |
bitmap | ) |
|
|
static |
◆ bitmap_get_height()
static int bitmap_get_height |
( |
void * |
bitmap | ) |
|
|
static |
◆ bitmap_get_opaque()
static bool bitmap_get_opaque |
( |
void * |
bitmap | ) |
|
|
static |
◆ bitmap_get_rowstride()
static size_t bitmap_get_rowstride |
( |
void * |
bitmap | ) |
|
|
static |
◆ bitmap_get_width()
static int bitmap_get_width |
( |
void * |
bitmap | ) |
|
|
static |
◆ bitmap_modified()
static void bitmap_modified |
( |
void * |
bitmap | ) |
|
|
static |
◆ bitmap_render()
◆ bitmap_set_opaque()
static void bitmap_set_opaque |
( |
void * |
bitmap, |
|
|
bool |
opaque |
|
) |
| |
|
static |
◆ bitmap_table
Initial value:= {
}
int bitmap_get_width(void *bitmap)
get width of a bitmap.
int bitmap_get_height(void *bitmap)
get height of a bitmap.
static void bitmap_modified(void *bitmap)
static size_t bitmap_get_rowstride(void *bitmap)
static nserror bitmap_render(struct bitmap *bitmap, struct hlcache_handle *content)
static unsigned char * bitmap_get_buffer(void *bitmap)
static void bitmap_set_opaque(void *bitmap, bool opaque)
static bool bitmap_get_opaque(void *bitmap)
static void * bitmap_create(int width, int height, enum gui_bitmap_flags flags)
static void bitmap_destroy(void *bitmap)
Definition at line 115 of file bitmap.c.
◆ monkey_bitmap_table