mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-26 09:41:34 +11:00
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
|
/* Copyright (c) 2013-2017 Jeffrey Pfau
|
||
|
*
|
||
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||
|
#ifndef M_CACHE_SET_H
|
||
|
#define M_CACHE_SET_H
|
||
|
|
||
|
#include <mgba-util/common.h>
|
||
|
|
||
|
CXX_GUARD_START
|
||
|
|
||
|
#include <mgba/core/bitmap-cache.h>
|
||
|
#include <mgba/core/map-cache.h>
|
||
|
#include <mgba/core/tile-cache.h>
|
||
|
#include <mgba-util/vector.h>
|
||
|
|
||
|
DECLARE_VECTOR(mMapCacheSet, struct mMapCache);
|
||
|
DECLARE_VECTOR(mBitmapCacheSet, struct mBitmapCache);
|
||
|
DECLARE_VECTOR(mTileCacheSet, struct mTileCache);
|
||
|
|
||
|
struct mCacheSet {
|
||
|
struct mMapCacheSet maps;
|
||
|
struct mBitmapCacheSet bitmaps;
|
||
|
struct mTileCacheSet tiles;
|
||
|
};
|
||
|
|
||
|
void mCacheSetInit(struct mCacheSet*, size_t nMaps, size_t nBitmaps, size_t nTiles);
|
||
|
void mCacheSetDeinit(struct mCacheSet*);
|
||
|
|
||
|
void mCacheSetAssignVRAM(struct mCacheSet*, void* vram);
|
||
|
|
||
|
void mCacheSetWriteVRAM(struct mCacheSet*, uint32_t address);
|
||
|
void mCacheSetWritePalette(struct mCacheSet*, uint32_t entry, color_t color);
|
||
|
|
||
|
CXX_GUARD_END
|
||
|
|
||
|
#endif
|