mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-20 10:19:22 +00:00
Add sprite to the waypoint marker
This commit is contained in:
parent
ab5965cc8d
commit
0544beb00d
4 changed files with 71 additions and 7 deletions
|
@ -235,8 +235,8 @@ RwRaster *RwRasterGetCurrentContext(void) { return Raster::getCurrentContext(
|
|||
RwBool RwRasterClear(RwInt32 pixelValue);
|
||||
RwBool RwRasterClearRect(RwRect * rpRect, RwInt32 pixelValue);
|
||||
RwRaster *RwRasterShowRaster(RwRaster * raster, void *dev, RwUInt32 flags);
|
||||
RwUInt8 *RwRasterLock(RwRaster * raster, RwUInt8 level, RwInt32 lockMode);
|
||||
RwRaster *RwRasterUnlock(RwRaster * raster);
|
||||
RwUInt8 *RwRasterLock(RwRaster * raster, RwUInt8 level, RwInt32 lockMode) { return raster->lock(level, lockMode); }
|
||||
RwRaster *RwRasterUnlock(RwRaster * raster) { raster->unlock(0); return raster; }
|
||||
RwUInt8 *RwRasterLockPalette(RwRaster * raster, RwInt32 lockMode);
|
||||
RwRaster *RwRasterUnlockPalette(RwRaster * raster);
|
||||
RwInt32 RwRasterRegisterPlugin(RwInt32 size, RwUInt32 pluginID, RwPluginObjectConstructor constructCB, RwPluginObjectDestructor destructCB, RwPluginObjectCopy copyCB);
|
||||
|
|
|
@ -104,6 +104,14 @@ enum RwRasterFormat
|
|||
rwRASTERFORMATMASK = 0xff00
|
||||
};
|
||||
|
||||
enum RwRasterLockMode
|
||||
{
|
||||
rwRASTERLOCKWRITE = rw::Raster::LOCKWRITE,
|
||||
rwRASTERLOCKREAD = rw::Raster::LOCKREAD,
|
||||
rwRASTERLOCKNOFETCH = rw::Raster::LOCKNOFETCH,
|
||||
rwRASTERLOCKRAW = rw::Raster::LOCKRAW,
|
||||
};
|
||||
|
||||
enum RwRasterFlipMode
|
||||
{
|
||||
rwRASTERFLIPDONTWAIT = 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue