3f32dfa87e
lots of modifications to the render API, prefixing everything, making proper names for everything. the structures are not hidden/opaque yet, but the naming scheme of the public API works much better now.
9 lines
161 B
C
9 lines
161 B
C
#ifndef __image_h
|
|
#define __image_h
|
|
|
|
#include "render.h"
|
|
#include "../kernel/geom.h"
|
|
|
|
void image_draw(pixel32 *target, RrTextureRGBA *rgba, Rect *area);
|
|
|
|
#endif
|