mirror of
https://github.com/aap/librw.git
synced 2025-01-24 01:32:18 +00:00
12 lines
232 B
C
12 lines
232 B
C
|
namespace rw {
|
||
|
namespace gl3 {
|
||
|
|
||
|
void rasterCreate(Raster *raster);
|
||
|
uint8 *rasterLock(Raster*, int32 level);
|
||
|
void rasterUnlock(Raster*, int32);
|
||
|
int32 rasterNumLevels(Raster*);
|
||
|
void rasterFromImage(Raster *raster, Image *image);
|
||
|
|
||
|
}
|
||
|
}
|