8#ifndef ULTRALIGHT_CAPI_BITMAP_H
9#define ULTRALIGHT_CAPI_BITMAP_H
36 const void* pixels,
size_t size,
bool should_copy);
ULExport bool ulBitmapIsEmpty(ULBitmap bitmap)
Whether or not this bitmap is empty.
ULExport bool ulBitmapWritePNG(ULBitmap bitmap, const char *path)
Write bitmap to a PNG on disk.
ULExport bool ulBitmapOwnsPixels(ULBitmap bitmap)
Whether or not this bitmap owns its own pixel buffer.
ULExport ULBitmapFormat ulBitmapGetFormat(ULBitmap bitmap)
Get the pixel format.
ULExport unsigned int ulBitmapGetWidth(ULBitmap bitmap)
Get the width in pixels.
ULExport void ulBitmapErase(ULBitmap bitmap)
Reset bitmap pixels to 0.
ULExport ULBitmap ulCreateBitmapFromPixels(unsigned int width, unsigned int height, ULBitmapFormat format, unsigned int row_bytes, const void *pixels, size_t size, bool should_copy)
Create bitmap from existing pixel buffer.
ULExport size_t ulBitmapGetSize(ULBitmap bitmap)
Get the size in bytes of the underlying pixel buffer.
ULExport void ulBitmapUnlockPixels(ULBitmap bitmap)
Unlock pixels after locking.
ULExport unsigned int ulBitmapGetBpp(ULBitmap bitmap)
Get the bytes per pixel.
ULExport void ulDestroyBitmap(ULBitmap bitmap)
Destroy a bitmap (you should only destroy Bitmaps you have explicitly created via one of the creation...
ULExport unsigned int ulBitmapGetHeight(ULBitmap bitmap)
Get the height in pixels.
ULExport ULBitmap ulCreateBitmapFromCopy(ULBitmap existing_bitmap)
Create bitmap from copy.
ULExport void * ulBitmapLockPixels(ULBitmap bitmap)
Lock pixels for reading/writing, returns pointer to pixel buffer.
ULExport ULBitmap ulCreateEmptyBitmap()
Create empty bitmap.
ULExport void ulBitmapSwapRedBlueChannels(ULBitmap bitmap)
This converts a BGRA bitmap to RGBA bitmap and vice-versa by swapping the red and blue channels.
ULExport unsigned int ulBitmapGetRowBytes(ULBitmap bitmap)
Get the number of bytes per row.
ULExport ULBitmap ulCreateBitmap(unsigned int width, unsigned int height, ULBitmapFormat format)
Create bitmap with certain dimensions and pixel format.
ULExport void * ulBitmapRawPixels(ULBitmap bitmap)
Get raw pixel buffer– you should only call this if Bitmap is already locked.
#define ULExport
Definition CAPI_Defines.h:27
struct C_Bitmap * ULBitmap
Definition CAPI_Defines.h:53
ULBitmapFormat
Definition CAPI_Defines.h:135