50 lines
673 B
C++
50 lines
673 B
C++
![]() |
#include <cstdio>
|
||
|
#include <assert.h>
|
||
|
|
||
|
#include "rwbase.h"
|
||
|
#include "rwplg.h"
|
||
|
#include "rwpipeline.h"
|
||
|
#include "rwobjects.h"
|
||
|
#include "rwengine.h"
|
||
|
|
||
|
namespace rw {
|
||
|
|
||
|
Engine engines[NUM_PLATFORMS];
|
||
|
|
||
|
namespace null {
|
||
|
|
||
|
void
|
||
|
rasterCreate(Raster*)
|
||
|
{
|
||
|
assert(0 && "rasterCreate not implemented");
|
||
|
}
|
||
|
|
||
|
uint8*
|
||
|
rasterLock(Raster*, int32)
|
||
|
{
|
||
|
assert(0 && "lockRaster not implemented");
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
rasterUnlock(Raster*, int32)
|
||
|
{
|
||
|
assert(0 && "unlockRaster not implemented");
|
||
|
}
|
||
|
|
||
|
int32
|
||
|
rasterNumLevels(Raster*, int32)
|
||
|
{
|
||
|
assert(0 && "rasterNumLevels not implemented");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
rasterFromImage(Raster*, Image*)
|
||
|
{
|
||
|
assert(0 && "rasterFromImage not implemented");
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|