blob: 639168d2212167c86296818355dfb26808f35bb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __image_h
#define __image_h
#include "render.h"
#include "geom.h"
void RrImageDraw(RrPixel32 *target, RrTextureRGBA *rgba,
gint target_w, gint target_h,
RrRect *area);
#endif
|